Proper HOST↔JoinIR ValueId separation for condition variables: - Add ConditionEnv struct (name → JoinIR-local ValueId mapping) - Add ConditionBinding struct (HOST/JoinIR ValueId pairs) - Modify condition_to_joinir to use ConditionEnv instead of builder.variable_map - Update Pattern2 lowerer to build ConditionEnv and ConditionBindings - Extend JoinInlineBoundary with condition_bindings field - Update BoundaryInjector to inject Copy instructions for condition variables This fixes the undefined ValueId errors where HOST ValueIds were being used directly in JoinIR instructions. Programs now execute (RC: 0), though loop variable exit values still need Phase 172 work. Key invariants established: 1. JoinIR uses ONLY JoinIR-local ValueIds 2. HOST↔JoinIR bridging is ONLY through JoinInlineBoundary 3. condition_to_joinir NEVER accesses builder.variable_map 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
77 lines
4.0 KiB
Markdown
77 lines
4.0 KiB
Markdown
# Self Current Task — Now (main)
|
||
|
||
## 2025‑12‑06:現状サマリ
|
||
|
||
### JoinIR / Loop / If ライン
|
||
|
||
- LoopBuilder は Phase 186‑187 で完全削除済み。**JoinIR が唯一の loop lowering 経路**。
|
||
- LoopPattern 系は Pattern1–4 まで実装・本線化済み:
|
||
- Pattern1: Simple While
|
||
- Pattern2: Loop with Break
|
||
- Pattern3: Loop with If‑Else PHI(break/continue なし)
|
||
- Pattern4: Loop with Continue(multi‑carrier 対応)
|
||
- Exit/Carrier/Boundary ラインは次の箱で SSOT 化:
|
||
- `CarrierInfo` / `ExitMeta` / `ExitBindingBuilder`
|
||
- `JoinInlineBoundary` + `LoopExitBinding`
|
||
- If lowering は IfSelectLowerer/IfMergeLowerer を中心に整理済み。Select/PHI の扱いも Phase 189 系で橋渡し済み。
|
||
- 残課題(JoinIR ライン):
|
||
- JoinIR→MIR merge の一般化(複雑な Select/PHI パターンの統合)
|
||
- JsonParserBox など実アプリ側での長期運用テスト
|
||
|
||
### JsonParser / Selfhost depth‑2 ライン
|
||
|
||
- `selfhost_build.sh --json` で Program JSON v0 emit は安定。
|
||
`.hako` 側から env 経由で JSON を読む最小ループ(`program_read_min.hako`)は動作確認済み。
|
||
- JsonParserBox / BundleResolver のループ 21 本のうち:
|
||
- 18 本は Pattern1–4 で JoinIR 対応済み(Phase 162–165)。
|
||
- `_trim` を含む一部の複合ループは、ValueId 境界や Box 登録など残課題あり。
|
||
- BoolExprLowerer / condition_to_joinir で OR/AND/NOT 付き条件式の lowering は実装完了(Phase 168–169)。
|
||
- 残課題(JsonParser/selfhost depth‑2):
|
||
- JoinIR→MIR ValueId boundary の完全一般化(条件用 ValueId を含める)
|
||
- JsonParserBox の using / Box 登録(Rust VM 側での認識)
|
||
- Program JSON v0 を JsonParserBox 経由でフル解析する line の仕上げ
|
||
|
||
### Ring0 / Runtime / CoreServices ライン
|
||
|
||
- Ring0Context + Ring0Registry で OS API 抽象化レイヤ完成:
|
||
- MemApi / IoApi / TimeApi / LogApi / FsApi / ThreadApi
|
||
- RuntimeProfile(Default / NoFs) で条件付き必須を制御。
|
||
- CoreServices(ring1‑core)として次を実装済み:
|
||
- StringService / IntegerService / BoolService
|
||
- ArrayService / MapService / ConsoleService
|
||
- PluginHost 統合 + UnifiedBoxRegistry からの自動初期化
|
||
- FileBox / FileHandleBox ライン:
|
||
- Ring0FsFileIo 経由で read / write / append / metadata 完全対応
|
||
- Default プロファイルでは必須、NoFs プロファイルでは disabled。
|
||
- Logging ライン:
|
||
- ConsoleService(user‑facing)
|
||
- Ring0.log(internal/dev)
|
||
- println!(test 専用)
|
||
の 3 層が `logging_policy.md` で整理済み。JoinIR/Loop trace も同ドキュメントに集約。
|
||
|
||
---
|
||
|
||
## 2025‑09‑08:旧スナップショット(参考)
|
||
|
||
- LLVM 側 P0 完了(BitOps/Array/Echo/Map 緑)。VInvoke(by‑name/by‑id vector) は戻り値マッピングの暫定課題を確認中(Decisions 参照)。
|
||
- selfhosting-dev の作業を main に順次取り込み。VM/MIR 基盤は main で先に整える方針。
|
||
|
||
直近タスク(当時)
|
||
1) continue/break の lowering(Builder 修正のみで表現)
|
||
- ループ文脈スタック {head, exit} を導入。
|
||
- continue に遭遇 → head(または latch)へ br を emit し終端。
|
||
- break に遭遇 → exit へ br を emit し終端。
|
||
- post‑terminated 後に emit しない制御を徹底。
|
||
2) ループ CFG の厳密化
|
||
- 単一 exit ブロックの徹底。
|
||
- Phi はヘッダでキャリー変数を合流(SSA/支配関係が崩れない形)。
|
||
3) 検証とスモーク
|
||
- Verifier 緑(dominance/SSA)。
|
||
- VM のループ代表(単純/ネスト/早期継続・脱出)。
|
||
- LLVM/Cranelift EXE に綺麗に降りる(br/phi ベースで問題なし)。
|
||
|
||
代表コマンド(例)
|
||
- ビルド: `cargo build --release`
|
||
- LLVM smoke: `LLVM_SYS_180_PREFIX=$(llvm-config-18 --prefix) NYASH_LLVM_BITOPS_SMOKE=1 ./tools/llvm_smoke.sh release`
|
||
- VInvoke 調査: `NYASH_LLVM_VINVOKE_TRACE=1 NYASH_LLVM_VINVOKE_SMOKE=1 ./tools/llvm_smoke.sh release`
|