Files
hakorune/src/mir/phi_core/common.rs

58 lines
1.9 KiB
Rust
Raw Normal View History

/*!
* phi_core::common shared types and invariants (scaffold)
*
* Phase 1 keeps this minimal; future phases may move debug asserts and
* predicate set checks here for both if/loop PHI normalization.
*/
/// Placeholder for future shared PHI input type alias.
/// Using the same tuple form as MIR Phi instruction inputs.
pub type PhiInput = (crate::mir::BasicBlockId, crate::mir::ValueId);
pub fn debug_verify_phi_inputs(
function: &crate::mir::MirFunction,
merge_bb: crate::mir::BasicBlockId,
inputs: &[(crate::mir::BasicBlockId, crate::mir::ValueId)],
) {
use std::collections::HashSet;
fix(vm): implement StringBox.lastIndexOf + PHI bug fix + Stage-B compiler完全動作 🎉 ## 🎯 主要修正 ### 1️⃣ StringBox.lastIndexOf実装 (Stage-B compiler blocker解消) - **問題**: `lang/src/compiler/parser/parser_box.hako:85`で`lastIndexOf`使用も未実装 - **修正**: `src/backend/mir_interpreter/handlers/boxes_string.rs:51-60`に追加 - **実装**: `rfind()`で最後の出現位置を検索、-1でnot found表現 ### 2️⃣ VM SSA/PHI bug完全修正 (ループ内メソッド呼び出し) - **原因**: メソッド内ループ×外側ループ呼び出しでPHI生成失敗 - **修正箇所**: - `src/mir/loop_builder.rs`: Exit PHI生成実装 - `src/mir/phi_core/loop_phi.rs`: PHI incoming修正 - `src/mir/phi_core/common.rs`: ユーティリティ追加 ### 3️⃣ カナリアテスト追加 - **新規**: `tools/smokes/v2/profiles/quick/core/vm_nested_loop_method_call.sh` - **構成**: Level 0/5b/5a/5 (段階的バグ検出) - **結果**: 全テストPASS、Level 5で`[SUCCESS] VM SSA/PHI bug FIXED!`表示 ### 4️⃣ using連鎖解決修正 - **問題**: `using sh_core`が子モジュールに伝播しない - **修正**: 6ファイルに明示的`using`追加 - compiler_stageb.hako, parser_box.hako - parser_stmt_box.hako, parser_control_box.hako - parser_exception_box.hako, parser_expr_box.hako ### 5️⃣ ParserBoxワークアラウンド - **問題**: `skip_ws()`メソッド呼び出しでVMバグ発生 - **対応**: 3箇所でインライン化(PHI修正までの暫定対応) ## 🎉 動作確認 ```bash # Stage-B compiler完全動作! $ bash /tmp/run_stageb.sh {"version":0,"kind":"Program","body":[{"type":"Return","expr":{"type":"Int","value":42}}]} # カナリアテスト全PASS $ bash tools/smokes/v2/profiles/quick/core/vm_nested_loop_method_call.sh [PASS] level0_simple_loop (.008s) [PASS] level5b_inline_nested_loop (.007s) [PASS] level5a_method_no_loop (.007s) [SUCCESS] Level 5: VM SSA/PHI bug FIXED! [PASS] level5_method_with_loop (VM BUG canary) (.008s) ``` ## 🏆 技術的ハイライト 1. **最小再現**: Level 0→5bの段階的テストでバグパターン完全特定 2. **Task先生調査**: 表面エラーから真因(lastIndexOf未実装)発見 3. **適切実装**: `boxes_string.rs`のStringBox専用ハンドラに追加 4. **完全検証**: Stage-B compilerでJSON出力成功を実証 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-02 10:58:09 +09:00
// Always compute when env toggle is set; otherwise no-op in release use.
let verify_on = std::env::var("HAKO_PHI_VERIFY")
.ok()
.map(|v| v.to_ascii_lowercase())
.map(|v| v == "1" || v == "true" || v == "on")
.unwrap_or(false)
|| std::env::var("NYASH_PHI_VERIFY")
.ok()
.map(|v| v.to_ascii_lowercase())
.map(|v| v == "1" || v == "true" || v == "on")
.unwrap_or(false);
if !verify_on {
return;
}
fix(vm): implement StringBox.lastIndexOf + PHI bug fix + Stage-B compiler完全動作 🎉 ## 🎯 主要修正 ### 1️⃣ StringBox.lastIndexOf実装 (Stage-B compiler blocker解消) - **問題**: `lang/src/compiler/parser/parser_box.hako:85`で`lastIndexOf`使用も未実装 - **修正**: `src/backend/mir_interpreter/handlers/boxes_string.rs:51-60`に追加 - **実装**: `rfind()`で最後の出現位置を検索、-1でnot found表現 ### 2️⃣ VM SSA/PHI bug完全修正 (ループ内メソッド呼び出し) - **原因**: メソッド内ループ×外側ループ呼び出しでPHI生成失敗 - **修正箇所**: - `src/mir/loop_builder.rs`: Exit PHI生成実装 - `src/mir/phi_core/loop_phi.rs`: PHI incoming修正 - `src/mir/phi_core/common.rs`: ユーティリティ追加 ### 3️⃣ カナリアテスト追加 - **新規**: `tools/smokes/v2/profiles/quick/core/vm_nested_loop_method_call.sh` - **構成**: Level 0/5b/5a/5 (段階的バグ検出) - **結果**: 全テストPASS、Level 5で`[SUCCESS] VM SSA/PHI bug FIXED!`表示 ### 4️⃣ using連鎖解決修正 - **問題**: `using sh_core`が子モジュールに伝播しない - **修正**: 6ファイルに明示的`using`追加 - compiler_stageb.hako, parser_box.hako - parser_stmt_box.hako, parser_control_box.hako - parser_exception_box.hako, parser_expr_box.hako ### 5️⃣ ParserBoxワークアラウンド - **問題**: `skip_ws()`メソッド呼び出しでVMバグ発生 - **対応**: 3箇所でインライン化(PHI修正までの暫定対応) ## 🎉 動作確認 ```bash # Stage-B compiler完全動作! $ bash /tmp/run_stageb.sh {"version":0,"kind":"Program","body":[{"type":"Return","expr":{"type":"Int","value":42}}]} # カナリアテスト全PASS $ bash tools/smokes/v2/profiles/quick/core/vm_nested_loop_method_call.sh [PASS] level0_simple_loop (.008s) [PASS] level5b_inline_nested_loop (.007s) [PASS] level5a_method_no_loop (.007s) [SUCCESS] Level 5: VM SSA/PHI bug FIXED! [PASS] level5_method_with_loop (VM BUG canary) (.008s) ``` ## 🏆 技術的ハイライト 1. **最小再現**: Level 0→5bの段階的テストでバグパターン完全特定 2. **Task先生調査**: 表面エラーから真因(lastIndexOf未実装)発見 3. **適切実装**: `boxes_string.rs`のStringBox専用ハンドラに追加 4. **完全検証**: Stage-B compilerでJSON出力成功を実証 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-02 10:58:09 +09:00
// Rebuild CFG to avoid stale predecessor sets
refactor(mir): Phase 6-2 - Apply helper methods to reduce ~28 lines in JSON v0 Bridge **Phase 6-2完了:ヘルパーメソッド適用で28行削減達成!** ## 📊 削減実績 - **loop_.rs**: 8行→1行(7行削減) - PHI更新ループ統一 - **if_else.rs**: 6行→1行(5行削減) - Branch終端設定統一 - **try_catch.rs**: 8箇所×2-3行(16行削減) - Jump終端設定統一 - **合計**: ~28行削減 ## 🔧 適用内容 ### 1. loop_.rs - PHI更新の統一化 - **Before**: 手動でPHI命令を検索してinputs.push() - **After**: `bb.update_phi_input(phi_dst, (bend, latch_val))?` ### 2. if_else.rs - Branch終端設定の統一化 - **Before**: if-let-Some + bb.set_terminator(Branch {...}) - **After**: `f.set_branch_terminator(cur, cval, then_bb, else_bb)?` ### 3. try_catch.rs - Jump終端設定の統一化(8箇所) - **Before**: if-let-Some + bb.set_terminator(Jump {...}) - **After**: `f.set_jump_terminator(bb_id, target)?` ## ✅ テスト結果 - `loop_min_while.nyash`: ✅ PASS(0,1,2出力) - `loop_phi_one_sided.nyash`: ✅ PASS(ArrayBox警告のみ) - ビルド: ✅ 88 warnings(既存レベル) ## 🎯 Phase 6進捗 - **Phase 6-1**: ✅ ヘルパーメソッド追加(+46行) - **Phase 6-2**: ✅ ヘルパー適用(-28行) - **実質削減**: -28行(基盤整備込み) ## 📋 次のステップ - **Phase 6-3**: BranchMergeBuilder pattern(~100行削減見込み) - **Phase 6-4**: 全体統合・最終テスト Related: Phase 1-5(3,824行削減)に続く段階的リファクタリング 🐱 にゃーん!実用化成功!
2025-11-01 15:23:28 +09:00
let mut func = function.clone();
func.update_cfg();
fix(vm): implement StringBox.lastIndexOf + PHI bug fix + Stage-B compiler完全動作 🎉 ## 🎯 主要修正 ### 1️⃣ StringBox.lastIndexOf実装 (Stage-B compiler blocker解消) - **問題**: `lang/src/compiler/parser/parser_box.hako:85`で`lastIndexOf`使用も未実装 - **修正**: `src/backend/mir_interpreter/handlers/boxes_string.rs:51-60`に追加 - **実装**: `rfind()`で最後の出現位置を検索、-1でnot found表現 ### 2️⃣ VM SSA/PHI bug完全修正 (ループ内メソッド呼び出し) - **原因**: メソッド内ループ×外側ループ呼び出しでPHI生成失敗 - **修正箇所**: - `src/mir/loop_builder.rs`: Exit PHI生成実装 - `src/mir/phi_core/loop_phi.rs`: PHI incoming修正 - `src/mir/phi_core/common.rs`: ユーティリティ追加 ### 3️⃣ カナリアテスト追加 - **新規**: `tools/smokes/v2/profiles/quick/core/vm_nested_loop_method_call.sh` - **構成**: Level 0/5b/5a/5 (段階的バグ検出) - **結果**: 全テストPASS、Level 5で`[SUCCESS] VM SSA/PHI bug FIXED!`表示 ### 4️⃣ using連鎖解決修正 - **問題**: `using sh_core`が子モジュールに伝播しない - **修正**: 6ファイルに明示的`using`追加 - compiler_stageb.hako, parser_box.hako - parser_stmt_box.hako, parser_control_box.hako - parser_exception_box.hako, parser_expr_box.hako ### 5️⃣ ParserBoxワークアラウンド - **問題**: `skip_ws()`メソッド呼び出しでVMバグ発生 - **対応**: 3箇所でインライン化(PHI修正までの暫定対応) ## 🎉 動作確認 ```bash # Stage-B compiler完全動作! $ bash /tmp/run_stageb.sh {"version":0,"kind":"Program","body":[{"type":"Return","expr":{"type":"Int","value":42}}]} # カナリアテスト全PASS $ bash tools/smokes/v2/profiles/quick/core/vm_nested_loop_method_call.sh [PASS] level0_simple_loop (.008s) [PASS] level5b_inline_nested_loop (.007s) [PASS] level5a_method_no_loop (.007s) [SUCCESS] Level 5: VM SSA/PHI bug FIXED! [PASS] level5_method_with_loop (VM BUG canary) (.008s) ``` ## 🏆 技術的ハイライト 1. **最小再現**: Level 0→5bの段階的テストでバグパターン完全特定 2. **Task先生調査**: 表面エラーから真因(lastIndexOf未実装)発見 3. **適切実装**: `boxes_string.rs`のStringBox専用ハンドラに追加 4. **完全検証**: Stage-B compilerでJSON出力成功を実証 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-02 10:58:09 +09:00
// Duplicate check
let mut seen = HashSet::new();
for (pred, _v) in inputs.iter() {
fix(vm): implement StringBox.lastIndexOf + PHI bug fix + Stage-B compiler完全動作 🎉 ## 🎯 主要修正 ### 1️⃣ StringBox.lastIndexOf実装 (Stage-B compiler blocker解消) - **問題**: `lang/src/compiler/parser/parser_box.hako:85`で`lastIndexOf`使用も未実装 - **修正**: `src/backend/mir_interpreter/handlers/boxes_string.rs:51-60`に追加 - **実装**: `rfind()`で最後の出現位置を検索、-1でnot found表現 ### 2️⃣ VM SSA/PHI bug完全修正 (ループ内メソッド呼び出し) - **原因**: メソッド内ループ×外側ループ呼び出しでPHI生成失敗 - **修正箇所**: - `src/mir/loop_builder.rs`: Exit PHI生成実装 - `src/mir/phi_core/loop_phi.rs`: PHI incoming修正 - `src/mir/phi_core/common.rs`: ユーティリティ追加 ### 3️⃣ カナリアテスト追加 - **新規**: `tools/smokes/v2/profiles/quick/core/vm_nested_loop_method_call.sh` - **構成**: Level 0/5b/5a/5 (段階的バグ検出) - **結果**: 全テストPASS、Level 5で`[SUCCESS] VM SSA/PHI bug FIXED!`表示 ### 4️⃣ using連鎖解決修正 - **問題**: `using sh_core`が子モジュールに伝播しない - **修正**: 6ファイルに明示的`using`追加 - compiler_stageb.hako, parser_box.hako - parser_stmt_box.hako, parser_control_box.hako - parser_exception_box.hako, parser_expr_box.hako ### 5️⃣ ParserBoxワークアラウンド - **問題**: `skip_ws()`メソッド呼び出しでVMバグ発生 - **対応**: 3箇所でインライン化(PHI修正までの暫定対応) ## 🎉 動作確認 ```bash # Stage-B compiler完全動作! $ bash /tmp/run_stageb.sh {"version":0,"kind":"Program","body":[{"type":"Return","expr":{"type":"Int","value":42}}]} # カナリアテスト全PASS $ bash tools/smokes/v2/profiles/quick/core/vm_nested_loop_method_call.sh [PASS] level0_simple_loop (.008s) [PASS] level5b_inline_nested_loop (.007s) [PASS] level5a_method_no_loop (.007s) [SUCCESS] Level 5: VM SSA/PHI bug FIXED! [PASS] level5_method_with_loop (VM BUG canary) (.008s) ``` ## 🏆 技術的ハイライト 1. **最小再現**: Level 0→5bの段階的テストでバグパターン完全特定 2. **Task先生調査**: 表面エラーから真因(lastIndexOf未実装)発見 3. **適切実装**: `boxes_string.rs`のStringBox専用ハンドラに追加 4. **完全検証**: Stage-B compilerでJSON出力成功を実証 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-02 10:58:09 +09:00
if *pred == merge_bb {
eprintln!("[phi/check][bad-self] merge={:?} pred={:?}", merge_bb, pred);
}
if !seen.insert(*pred) {
eprintln!("[phi/check][dup] merge={:?} pred={:?}", merge_bb, pred);
}
}
fix(vm): implement StringBox.lastIndexOf + PHI bug fix + Stage-B compiler完全動作 🎉 ## 🎯 主要修正 ### 1️⃣ StringBox.lastIndexOf実装 (Stage-B compiler blocker解消) - **問題**: `lang/src/compiler/parser/parser_box.hako:85`で`lastIndexOf`使用も未実装 - **修正**: `src/backend/mir_interpreter/handlers/boxes_string.rs:51-60`に追加 - **実装**: `rfind()`で最後の出現位置を検索、-1でnot found表現 ### 2️⃣ VM SSA/PHI bug完全修正 (ループ内メソッド呼び出し) - **原因**: メソッド内ループ×外側ループ呼び出しでPHI生成失敗 - **修正箇所**: - `src/mir/loop_builder.rs`: Exit PHI生成実装 - `src/mir/phi_core/loop_phi.rs`: PHI incoming修正 - `src/mir/phi_core/common.rs`: ユーティリティ追加 ### 3️⃣ カナリアテスト追加 - **新規**: `tools/smokes/v2/profiles/quick/core/vm_nested_loop_method_call.sh` - **構成**: Level 0/5b/5a/5 (段階的バグ検出) - **結果**: 全テストPASS、Level 5で`[SUCCESS] VM SSA/PHI bug FIXED!`表示 ### 4️⃣ using連鎖解決修正 - **問題**: `using sh_core`が子モジュールに伝播しない - **修正**: 6ファイルに明示的`using`追加 - compiler_stageb.hako, parser_box.hako - parser_stmt_box.hako, parser_control_box.hako - parser_exception_box.hako, parser_expr_box.hako ### 5️⃣ ParserBoxワークアラウンド - **問題**: `skip_ws()`メソッド呼び出しでVMバグ発生 - **対応**: 3箇所でインライン化(PHI修正までの暫定対応) ## 🎉 動作確認 ```bash # Stage-B compiler完全動作! $ bash /tmp/run_stageb.sh {"version":0,"kind":"Program","body":[{"type":"Return","expr":{"type":"Int","value":42}}]} # カナリアテスト全PASS $ bash tools/smokes/v2/profiles/quick/core/vm_nested_loop_method_call.sh [PASS] level0_simple_loop (.008s) [PASS] level5b_inline_nested_loop (.007s) [PASS] level5a_method_no_loop (.007s) [SUCCESS] Level 5: VM SSA/PHI bug FIXED! [PASS] level5_method_with_loop (VM BUG canary) (.008s) ``` ## 🏆 技術的ハイライト 1. **最小再現**: Level 0→5bの段階的テストでバグパターン完全特定 2. **Task先生調査**: 表面エラーから真因(lastIndexOf未実装)発見 3. **適切実装**: `boxes_string.rs`のStringBox専用ハンドラに追加 4. **完全検証**: Stage-B compilerでJSON出力成功を実証 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-02 10:58:09 +09:00
// Missing predecessor inputs check
refactor(mir): Phase 6-2 - Apply helper methods to reduce ~28 lines in JSON v0 Bridge **Phase 6-2完了:ヘルパーメソッド適用で28行削減達成!** ## 📊 削減実績 - **loop_.rs**: 8行→1行(7行削減) - PHI更新ループ統一 - **if_else.rs**: 6行→1行(5行削減) - Branch終端設定統一 - **try_catch.rs**: 8箇所×2-3行(16行削減) - Jump終端設定統一 - **合計**: ~28行削減 ## 🔧 適用内容 ### 1. loop_.rs - PHI更新の統一化 - **Before**: 手動でPHI命令を検索してinputs.push() - **After**: `bb.update_phi_input(phi_dst, (bend, latch_val))?` ### 2. if_else.rs - Branch終端設定の統一化 - **Before**: if-let-Some + bb.set_terminator(Branch {...}) - **After**: `f.set_branch_terminator(cur, cval, then_bb, else_bb)?` ### 3. try_catch.rs - Jump終端設定の統一化(8箇所) - **Before**: if-let-Some + bb.set_terminator(Jump {...}) - **After**: `f.set_jump_terminator(bb_id, target)?` ## ✅ テスト結果 - `loop_min_while.nyash`: ✅ PASS(0,1,2出力) - `loop_phi_one_sided.nyash`: ✅ PASS(ArrayBox警告のみ) - ビルド: ✅ 88 warnings(既存レベル) ## 🎯 Phase 6進捗 - **Phase 6-1**: ✅ ヘルパーメソッド追加(+46行) - **Phase 6-2**: ✅ ヘルパー適用(-28行) - **実質削減**: -28行(基盤整備込み) ## 📋 次のステップ - **Phase 6-3**: BranchMergeBuilder pattern(~100行削減見込み) - **Phase 6-4**: 全体統合・最終テスト Related: Phase 1-5(3,824行削減)に続く段階的リファクタリング 🐱 にゃーん!実用化成功!
2025-11-01 15:23:28 +09:00
if let Some(block) = func.blocks.get(&merge_bb) {
fix(vm): implement StringBox.lastIndexOf + PHI bug fix + Stage-B compiler完全動作 🎉 ## 🎯 主要修正 ### 1️⃣ StringBox.lastIndexOf実装 (Stage-B compiler blocker解消) - **問題**: `lang/src/compiler/parser/parser_box.hako:85`で`lastIndexOf`使用も未実装 - **修正**: `src/backend/mir_interpreter/handlers/boxes_string.rs:51-60`に追加 - **実装**: `rfind()`で最後の出現位置を検索、-1でnot found表現 ### 2️⃣ VM SSA/PHI bug完全修正 (ループ内メソッド呼び出し) - **原因**: メソッド内ループ×外側ループ呼び出しでPHI生成失敗 - **修正箇所**: - `src/mir/loop_builder.rs`: Exit PHI生成実装 - `src/mir/phi_core/loop_phi.rs`: PHI incoming修正 - `src/mir/phi_core/common.rs`: ユーティリティ追加 ### 3️⃣ カナリアテスト追加 - **新規**: `tools/smokes/v2/profiles/quick/core/vm_nested_loop_method_call.sh` - **構成**: Level 0/5b/5a/5 (段階的バグ検出) - **結果**: 全テストPASS、Level 5で`[SUCCESS] VM SSA/PHI bug FIXED!`表示 ### 4️⃣ using連鎖解決修正 - **問題**: `using sh_core`が子モジュールに伝播しない - **修正**: 6ファイルに明示的`using`追加 - compiler_stageb.hako, parser_box.hako - parser_stmt_box.hako, parser_control_box.hako - parser_exception_box.hako, parser_expr_box.hako ### 5️⃣ ParserBoxワークアラウンド - **問題**: `skip_ws()`メソッド呼び出しでVMバグ発生 - **対応**: 3箇所でインライン化(PHI修正までの暫定対応) ## 🎉 動作確認 ```bash # Stage-B compiler完全動作! $ bash /tmp/run_stageb.sh {"version":0,"kind":"Program","body":[{"type":"Return","expr":{"type":"Int","value":42}}]} # カナリアテスト全PASS $ bash tools/smokes/v2/profiles/quick/core/vm_nested_loop_method_call.sh [PASS] level0_simple_loop (.008s) [PASS] level5b_inline_nested_loop (.007s) [PASS] level5a_method_no_loop (.007s) [SUCCESS] Level 5: VM SSA/PHI bug FIXED! [PASS] level5_method_with_loop (VM BUG canary) (.008s) ``` ## 🏆 技術的ハイライト 1. **最小再現**: Level 0→5bの段階的テストでバグパターン完全特定 2. **Task先生調査**: 表面エラーから真因(lastIndexOf未実装)発見 3. **適切実装**: `boxes_string.rs`のStringBox専用ハンドラに追加 4. **完全検証**: Stage-B compilerでJSON出力成功を実証 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-02 10:58:09 +09:00
for pred in &block.predecessors {
let has = inputs.iter().any(|(bb, _)| bb == pred);
if !has {
eprintln!("[phi/check][missing] merge={:?} pred={:?}", merge_bb, pred);
refactor(mir): Phase 6-2 - Apply helper methods to reduce ~28 lines in JSON v0 Bridge **Phase 6-2完了:ヘルパーメソッド適用で28行削減達成!** ## 📊 削減実績 - **loop_.rs**: 8行→1行(7行削減) - PHI更新ループ統一 - **if_else.rs**: 6行→1行(5行削減) - Branch終端設定統一 - **try_catch.rs**: 8箇所×2-3行(16行削減) - Jump終端設定統一 - **合計**: ~28行削減 ## 🔧 適用内容 ### 1. loop_.rs - PHI更新の統一化 - **Before**: 手動でPHI命令を検索してinputs.push() - **After**: `bb.update_phi_input(phi_dst, (bend, latch_val))?` ### 2. if_else.rs - Branch終端設定の統一化 - **Before**: if-let-Some + bb.set_terminator(Branch {...}) - **After**: `f.set_branch_terminator(cur, cval, then_bb, else_bb)?` ### 3. try_catch.rs - Jump終端設定の統一化(8箇所) - **Before**: if-let-Some + bb.set_terminator(Jump {...}) - **After**: `f.set_jump_terminator(bb_id, target)?` ## ✅ テスト結果 - `loop_min_while.nyash`: ✅ PASS(0,1,2出力) - `loop_phi_one_sided.nyash`: ✅ PASS(ArrayBox警告のみ) - ビルド: ✅ 88 warnings(既存レベル) ## 🎯 Phase 6進捗 - **Phase 6-1**: ✅ ヘルパーメソッド追加(+46行) - **Phase 6-2**: ✅ ヘルパー適用(-28行) - **実質削減**: -28行(基盤整備込み) ## 📋 次のステップ - **Phase 6-3**: BranchMergeBuilder pattern(~100行削減見込み) - **Phase 6-4**: 全体統合・最終テスト Related: Phase 1-5(3,824行削減)に続く段階的リファクタリング 🐱 にゃーん!実用化成功!
2025-11-01 15:23:28 +09:00
}
}
}
}