docs(phase29al): exitkind cleanup effect contract ssot

This commit is contained in:
2025-12-29 16:21:13 +09:00
parent 786d2f5720
commit c53f1edf31
7 changed files with 132 additions and 3 deletions

View File

@ -0,0 +1,72 @@
---
Status: SSOT
Scope: ExitKind / cleanup / effect の契約JoinIR/PlanFrag/MIR で意味論を壊さない)
Related:
- docs/development/current/main/design/effect-classification-ssot.md
- docs/development/current/main/design/post-phi-final-form-ssot.md
- docs/development/current/main/design/joinir-plan-frag-ssot.md
- docs/development/current/main/phases/phase-29aa/README.md
---
# ExitKind / Cleanup / Effect Contract (SSOT)
目的: return/break/continue将来 unwind を含む)に付随する cleanupRC release 等)が、最適化や再順序で壊れないように、
**ExitKind と effect の契約**として固定する。
この SSOT は「新しいcleanup機能を追加する」ためではなく、既存の意味論を守るための境界を明文化する。
## 1. 用語
- ExitKind: 関数/ループからの脱出種別Return/Break/Continue/将来 Unwind
- Cleanup: Exit を跨いで走る必要がある処理(例: ReleaseStrong の注入、defer/finally 等)
- Effect: 命令の副作用分類Pure/Mut/Io/Control
## 2. SSOT: Cleanup は ExitKind の語彙に属する
cleanup は “パターン個別の都合” で散らさない。
必ず ExitKind の語彙として扱い、PlanFrag/CorePlan/merge で責務境界を固定する。
参照:
- Phase 29aaRC insertion の安全拡張): `docs/development/current/main/phases/phase-29aa/README.md`
- Plan/Frag SSOT: `docs/development/current/main/design/joinir-plan-frag-ssot.md`
## 3. Invariants最小
### I1: Cleanup 命令は `Mut`非Pureとして扱う
例:
- `ReleaseStrong` / `RetainStrong``Mut`(少なくとも DCE/CSE の対象外になる)
理由:
- DCE/CSE が cleanup を消したりまとめたりすると意味論が壊れる。
### I2: Cleanup は Exit の直前/直後の “境界点” にのみ置く
“途中のブロック” に cleanup をばら撒くと、再順序/最適化の影響が広がる。
cleanup の挿入点は SSOT として固定する(例: Return terminator の直前)。
現状の例RC insertion 系):
- Return ブロックの BeforeTerminator のみJump/Branch では入れない、などの安全条件)
### I3: ControlExit/terminatorを跨いで cleanup を移動しない
- `Control` を跨ぐ移動は禁止exit の前後関係が崩れる)
- `Io` を跨ぐ移動も禁止(外部観測が変わる)
### I4: Joinpost-phiと cleanup は “順序SSOT” を共有する
join 入力carrier layoutと cleanup の対象carrier/localsは同じ順序SSOTを参照し、実装ごとに順序が揺れない。
参照:
- `docs/development/current/main/design/post-phi-final-form-ssot.md`
## 4. Freeze / Fail-Fast の方針(最小)
- cleanup が “安全条件外” に計画された場合は strict/dev で Fail-FastFreeze または debug_assert
- release 既定では挙動を変えない(安全側に倒す)
## 5. Next将来の拡張点
- `ExitKind::Unwind` の設計cleanup/defer/finally を ExitKind 経由で統一)
- effect と “panic/throw” の扱いPure/Io/Control 境界)

View File

@ -29,3 +29,4 @@ Scope: JoinIR plan/frag 導線(仕様不変)
- CorePlan Skeleton/Feature model: `docs/development/current/main/design/coreplan-skeleton-feature-model.md`
- Post-PHI final form SSOT: `docs/development/current/main/design/post-phi-final-form-ssot.md`
- Effect classification SSOT: `docs/development/current/main/design/effect-classification-ssot.md`
- ExitKind/Cleanup/Effect contract SSOT: `docs/development/current/main/design/exitkind-cleanup-effect-contract-ssot.md`