🚀 Start Phase 15.3: Nyash compiler MVP implementation
Major milestone: - Set up apps/selfhost-compiler/ directory structure - Implement basic Nyash compiler in Nyash (CompilerBox) - Stage-1: Basic arithmetic parser (int/string/+/-/*/括弧/return) - JSON v0 output compatible with --ny-parser-pipe - Runner integration with NYASH_USE_NY_COMPILER=1 flag - Comprehensive smoke tests for PHI/Bridge/Stage-2 Technical updates: - Updated CLAUDE.md with Phase 15.3 status and MIR14 details - Statement separation policy: newline-based with minimal ASI - Fixed runaway ny-parser-pipe processes (CPU 94.9%) - Clarified MIR14 as canonical instruction set (not 13/18) - LoopForm strategy: PHI auto-generation during reverse lowering Collaborative development: - ChatGPT5 implementing compiler skeleton - Codex provided LoopForm PHI generation guidance - Claude maintaining documentation and coordination 🎉 セルフホスティングの歴史的一歩!自分自身をコンパイルする日が近いにゃ! Co-Authored-By: ChatGPT <noreply@openai.com>
This commit is contained in:
@ -31,6 +31,14 @@ MIR 13命令の美しさを最大限に活かし、外部コンパイラ依存
|
||||
- dep_tree_min_string: PyVM↔llvmlite パリティ一致、llvmlite 経路で `.ll verify → .o → EXE` 完走。
|
||||
- 一時救済ゲート `NYASH_LLVM_ESC_JSON_FIX` は受入には未使用(OFF)。
|
||||
|
||||
#### PHI 取り扱い方針(Phase‑15 中)
|
||||
- 現行: JSON v0 Bridge 側で If/Loop の PHI を生成(安定・緑)。
|
||||
- 方針: Phase‑15 ではこのまま完成させる(変更しない)。
|
||||
- 理由: LoopForm(Core‑14)導入時に、逆Loweringで PHI を自動生成する案(推薦)に寄せるため。
|
||||
- PHI は「合流点での別名付け」であり、Boxの操作ではない。
|
||||
- 抽象レイヤの純度維持(Everything is Box)。
|
||||
- 実装責務の一極化(行数削減/保守性向上)。
|
||||
|
||||
### Phase 15.3: NyashコンパイラMVP(次フェーズ着手)
|
||||
- PyVM 安定後、Nyash製パーサ/レクサ(サブセット)と MIR ビルダを段階導入
|
||||
- フラグでRustフォールバックと併存(例: `NYASH_USE_NY_COMPILER=1`)
|
||||
@ -41,16 +49,76 @@ MIR 13命令の美しさを最大限に活かし、外部コンパイラ依存
|
||||
- ステージ2: 文/式サブセット拡張(local/if/loop/call/method/new/me/substring/length/lastIndexOf)。
|
||||
- ステージ3: Ny AST→MIR JSON 降下(直接 llvmlite/PyVM へ渡す)。
|
||||
|
||||
#### Phase 15.3 — Detailed Plan(Ny compiler MVP)
|
||||
- Directory layout(selfhost compiler)
|
||||
- `apps/selfhost-compiler/compiler.nyash`(CompilerBox entry; Ny→JSON v0 emit)
|
||||
- `apps/selfhost-compiler/parser/{lexer.nyash,parser.nyash,ast.nyash}`(Stage‑2 へ段階拡張)
|
||||
- `apps/selfhost-compiler/emitter/json_v0.nyash`(将来: emit 分離。MVPは inline でも可)
|
||||
- `apps/selfhost-compiler/mir/{builder.nyash,optimizer.nyash}`(将来)
|
||||
- `apps/selfhost-compiler/tests/{stage1,stage2}`(サンプルと期待JSON)
|
||||
|
||||
- Runner integration(安全ゲート)
|
||||
- フラグ: `NYASH_USE_NY_COMPILER=1`(既定OFF)
|
||||
- 子プロセス: `--backend vm` で selfhost compiler を起動し、stdout から JSON v0 1行を収集
|
||||
- 環境: `NYASH_JSON_ONLY=1` を子に渡して余計な出力を抑制。失敗時は静かにフォールバック
|
||||
|
||||
- Stage‑1(小さく積む)
|
||||
1) return / 整数 / 文字列 / 四則 / 括弧(左結合)
|
||||
2) 文分離(最小ASI): 改行=文区切り、継続子(+ - * / . ,)やグルーピング中は継続
|
||||
3) 代表スモーク: `return 1+2*3` → JSON v0 → Bridge → MIR 実行 = 7
|
||||
|
||||
- Stage‑2(本命へ)
|
||||
- local / if / loop / call / method / new / var / 比較 / 論理(短絡)
|
||||
- PHI: Bridge 側の合流(If/Loop)に依存(Phase‑15中は現行維持)
|
||||
- 代表スモーク: nested if / loop 累積 / 短絡 and/or と if/loop の交錯
|
||||
|
||||
- Acceptance(15.3)
|
||||
- Stage‑1: 代表サンプルで JSON v0 emit → Bridge → PyVM/llvmlite で一致(差分なし)
|
||||
- Bootstrap: `tools/bootstrap_selfhost_smoke.sh` で c0→c1→c1' が PASS(フォールバックは許容)
|
||||
- Docs: 文分離ポリシー(改行+最小ASI)を公開(link: reference/language/statements.md)
|
||||
|
||||
- Smokes / Tools(更新)
|
||||
- `tools/selfhost_compiler_smoke.sh`(入口)
|
||||
- `tools/ny_stage2_bridge_smoke.sh`(算術/比較/短絡/ネストif)
|
||||
- `tools/ny_parser_stage2_phi_smoke.sh`(If/Loop の PHI 合流)
|
||||
- `tools/parity.sh --lhs pyvm --rhs llvmlite <test.nyash>`(常時)
|
||||
|
||||
Imports/Namespace plan(15.3‑late)
|
||||
- See: imports-namespace-plan.md — keep `nyash.toml` resolution in runner; accept `using` in Ny compiler as no‑op (no resolution) gated by `NYASH_ENABLE_USING=1`.
|
||||
|
||||
- Operational switches
|
||||
- `NYASH_USE_NY_COMPILER=1`(selfhost compiler 経路ON)
|
||||
- `NYASH_JSON_ONLY=1`(子プロセスの余計な出力抑止)
|
||||
- `NYASH_DISABLE_PLUGINS=1`(必要に応じて子のみ最小化)
|
||||
- 文分離: 最小ASIルール(深さ0・直前が継続子でない改行のみ終端)
|
||||
|
||||
- Risks / Rollback
|
||||
- 子プロセス出力がJSONでない→フォールバックで安全運用
|
||||
- 代表ケースで parity 不一致→selfhost 経路のみ切替OFF
|
||||
- 影響範囲: CLI/Runner 層の限定的変更(ゲートOFFなら既存経路と同値)
|
||||
|
||||
【受入(MVP)】
|
||||
- `tools/ny_roundtrip_smoke.sh` 緑(Case A/B)。
|
||||
- `apps/tests/esc_dirname_smoke.nyash` / `apps/selfhost/tools/dep_tree_min_string.nyash` を Ny パーサ経路で実行し、PyVM/llvmlite とパリティ一致(stdout/exit)。
|
||||
|
||||
#### 予告: LoopForm(Core‑14)での PHI 自動化(Phase‑15 後)
|
||||
- LoopForm を強化し、`loop.begin(loop_carried_values) / loop.iter / loop.branch / loop.end` の構造的情報から逆Loweringで PHI を合成。
|
||||
- If/短絡についても同様に、構造ブロックから合流点を決めて PHI を自動化。
|
||||
- スケジュール: Phase‑15 後(Core‑14)で検討・実装。Phase‑15 では変更しない。
|
||||
|
||||
### Phase 15.4: VM層のNyash化(PyVMからの置換)
|
||||
- PyVM を足場に、VMコアを Nyash 実装へ段階移植(命令サブセットから)
|
||||
- 動的ディスパッチで13命令処理を目標に拡張
|
||||
|
||||
詳細:[セルフホスティング戦略 2025年9月版](implementation/self-hosting-strategy-2025-09.md)
|
||||
|
||||
---
|
||||
|
||||
補足: JSON v0 の扱い(互換)
|
||||
- Phase‑15: Bridge で PHI を生成(現行継続)。
|
||||
- Core‑14 以降: LoopForm で PHI 自動化後、JSON 側の PHI は非必須(将来は除外方向)。
|
||||
- 型メタ(“+”の文字列混在/文字列比較)は継続。
|
||||
|
||||
## 📊 主要成果物
|
||||
|
||||
### コンパイラコンポーネント
|
||||
@ -65,7 +133,7 @@ MIR 13命令の美しさを最大限に活かし、外部コンパイラ依存
|
||||
### 自動生成基盤
|
||||
- [ ] boxes.yaml(Box型定義)
|
||||
- [ ] externs.yaml(C ABI境界)
|
||||
- [ ] semantics.yaml(MIR15定義)
|
||||
- [ ] semantics.yaml(MIR14定義)
|
||||
- [ ] build.rs(自動生成システム)
|
||||
|
||||
### ブートストラップ
|
||||
@ -75,13 +143,21 @@ MIR 13命令の美しさを最大限に活かし、外部コンパイラ依存
|
||||
|
||||
## 🔧 技術的アプローチ
|
||||
|
||||
### MIR 13命令の革命
|
||||
- **基本演算(5)**: Const, UnaryOp, BinOp, Compare, TypeOp
|
||||
- **メモリ(2)**: Load, Store
|
||||
- **制御(4)**: Branch, Jump, Return, Phi
|
||||
- **Box(1)**: BoxCall(すべての箱操作を統合)
|
||||
- **外部(1)**: ExternCall
|
||||
|
||||
### MIR 14命令の革命
|
||||
1. Const - 定数
|
||||
2. BinOp - 二項演算
|
||||
3. UnaryOp - 単項演算(復活!)
|
||||
4. Compare - 比較
|
||||
5. Jump - 無条件ジャンプ
|
||||
6. Branch - 条件分岐
|
||||
7. Return - 戻り値
|
||||
8. Phi - SSA合流
|
||||
9. Call - 関数呼び出し
|
||||
10. BoxCall - Box操作(配列/フィールド/メソッド統一!)
|
||||
11. ExternCall - 外部呼び出し
|
||||
12. TypeOp - 型操作
|
||||
13. Safepoint - GC安全点
|
||||
14. Barrier - メモリバリア
|
||||
この究極のシンプルさにより、直接x86変換も現実的に!
|
||||
|
||||
### バックエンドの選択肢
|
||||
@ -238,6 +314,8 @@ ny_free_buf(buffer)
|
||||
### ✅ クイックスモーク(現状)
|
||||
- PyVM↔llvmlite パリティ: `tools/parity.sh --lhs pyvm --rhs llvmlite apps/tests/esc_dirname_smoke.nyash`
|
||||
- dep_tree(ハーネスON): `NYASH_LLVM_FEATURE=llvm ./tools/build_llvm.sh apps/selfhost/tools/dep_tree_min_string.nyash -o app_dep && ./app_dep`
|
||||
- JSON v0 bridge spec: `docs/reference/ir/json_v0.md`
|
||||
- Stage‑2 smokes: `tools/ny_stage2_bridge_smoke.sh`, `tools/ny_parser_stage2_phi_smoke.sh`, `tools/ny_me_dummy_smoke.sh`
|
||||
|
||||
### 📚 関連フェーズ
|
||||
- [Phase 10: Cranelift JIT](../phase-10/)
|
||||
|
||||
@ -35,6 +35,17 @@ This roadmap is a living checklist to advance Phase 15 with small, safe boxes. U
|
||||
- No circular dependency: nyrt provides StringBox/ArrayBox via C ABI
|
||||
- Flag path: `NYASH_USE_NY_COMPILER=1` to switch rust→ny compiler; rust parser as fallback
|
||||
- Add apps/selfhost-compiler/ and minimal smokes
|
||||
- Stage‑1 checklist:
|
||||
- [ ] return/int/string/arithmetic/paren JSON v0 emit
|
||||
- [ ] Minimal ASI(newline separator + continuation tokens)
|
||||
- [ ] Smokes: `return 1+2*3` / grouping / string literal
|
||||
- Stage‑2 checklist:
|
||||
- [ ] local/if/loop/call/method/new/var/logical/compare
|
||||
- [ ] PHI 合流は Bridge に委譲(If/Loop)
|
||||
- [ ] Smokes: nested if / loop 累積 / and/or × if/loop
|
||||
4) PHI 自動化は Phase‑15 後(Core‑14 LoopForm)
|
||||
- Phase‑15: 現行の Bridge‑PHI を維持し、E2E 緑とパリティを最優先
|
||||
- Core‑14: LoopForm 強化+逆Loweringで PHI を自動生成(合流点の定型化)
|
||||
4) Bootstrap loop (c0→c1→c1')
|
||||
- Use existing trace/hash harness to compare parity; add optional CI gate
|
||||
- **This achieves self-hosting!** Nyash compiles Nyash
|
||||
@ -63,6 +74,8 @@ This roadmap is a living checklist to advance Phase 15 with small, safe boxes. U
|
||||
|
||||
- Parser path: `--parser {rust|ny}` or `NYASH_USE_NY_PARSER=1`
|
||||
- JSON dump: `NYASH_DUMP_JSON_IR=1`
|
||||
- (予告)LoopForm: Core‑14 で仕様化予定
|
||||
- Selfhost compiler: `NYASH_USE_NY_COMPILER=1`, child quiet: `NYASH_JSON_ONLY=1`
|
||||
- Load Ny plugins: `NYASH_LOAD_NY_PLUGINS=1` / `--load-ny-plugins`
|
||||
- AOT smoke: `CLIF_SMOKE_RUN=1`
|
||||
|
||||
@ -83,6 +96,8 @@ This roadmap is a living checklist to advance Phase 15 with small, safe boxes. U
|
||||
- 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
|
||||
- Phase‑15 STOP には PHI 切替を含めない(PHI は LoopForm/Core‑14 で扱う)
|
||||
- 15.3: Stage‑1 代表サンプル緑 + Bootstrap smoke(フォールバック許容)+ 文分離ポリシー公開
|
||||
- Docs/recipes usable on Windows/Unix
|
||||
|
||||
## Notes
|
||||
|
||||
@ -0,0 +1,38 @@
|
||||
# Phase 15.3 — Imports/Namespace/nyash.toml Plan
|
||||
|
||||
Status: 15.3 planning; focus remains on Stage‑1/2 compiler MVP. This document scopes when and how to bring `nyash.toml`/include/import/namespace into the selfhost path without destabilizing parity.
|
||||
|
||||
Goals
|
||||
- Keep runner‑level `nyash.toml` parsing/resolution as the source of truth during 15.3.
|
||||
- Accept `using/import` syntax in the Ny compiler as a no‑op (record only) until resolution is delegated.
|
||||
- Avoid VM changes; resolution happens before codegen.
|
||||
|
||||
Scope & Sequence (Phase 15.3)
|
||||
1) Stage‑1/2 compiler stability (primary)
|
||||
- Ny→JSON v0 → Bridge → PyVM/llvmlite parity maintained
|
||||
- PHI merge remains on Bridge (If/Loop)
|
||||
2) Imports/Namespace minimal acceptance (15.3‑late)
|
||||
- Parse `using ns` / `using "path" [as alias]` as statements in the Ny compiler
|
||||
- Do not resolve; emit no JSON entries (or emit metadata) — runner continues to strip/handle
|
||||
- Gate via `NYASH_ENABLE_USING=1`
|
||||
3) Runner remains in charge
|
||||
- Keep existing Rust runner’s `using` stripping + modules registry population
|
||||
- `nyash.toml` parsing stays in Rust (Phase 15)
|
||||
|
||||
Out of scope (Phase 15)
|
||||
- Porting `nyash.toml` parsing to Ny
|
||||
- Cross‑module codegen/linking in Ny compiler
|
||||
- Advanced include resolution / package graph
|
||||
|
||||
Acceptance (15.3)
|
||||
- Ny compiler can lex/parse `using` forms without breaking Stage‑1/2 programs
|
||||
- Runner path (Rust) continues to resolve `using` and `nyash.toml` as before (parity unchanged)
|
||||
|
||||
Looking ahead (Core‑14 / Phase 16)
|
||||
- Evaluate moving `nyash.toml` parsing to Ny as a library box (ConfigBox)
|
||||
- Unify include/import/namespace into a single resolver pass in Ny with a small JSON side channel back to the runner
|
||||
- Keep VM unchanged; all resolution before MIR build
|
||||
|
||||
Switches
|
||||
- `NYASH_ENABLE_USING=1` — enable `using` acceptance in Ny compiler (no resolution)
|
||||
- `NYASH_SKIP_TOML_ENV=1` — skip applying [env] in nyash.toml (existing)
|
||||
Reference in New Issue
Block a user