72e54f4fd3
The surface-form file extension changes from .ailx to .ail. AILang's
authoring surface now uses the same .ail stem as its canonical JSON
form (.ail.json), giving the language a single coherent extension
family: .ail is the LLM-authored Form A, .ail.json is the canonical
JSON-AST Form B.
Scope (touched):
- 61 example renames examples/**/*.ailx → .ail (git mv)
- 1 rename experiments/.../rendered/ailx.md → ail.md
- 35 content-edited live-toolchain files (crates/, docs/DESIGN.md,
docs/roadmap.md, docs/PROSE_ROUNDTRIP.md, skills/, bench/reference/*.c,
experiment crates under experiments/.../{render,harness,master})
- Experiment-crate cohort rename Cohort::Ailx → Cohort::Ail,
Form::Ailx → Form::Ail, per_cohort/ailx → per_cohort/ail,
{form-only: ailx} → {form-only: ail}, ```ailx → ```ail
Out of scope (deliberately untouched, to preserve honest history):
- docs/journal-archive.md (content-frozen per CLAUDE.md)
- docs/journals/, docs/specs/, docs/plans/, bench/orchestrator-stats/
- experiments/.../runs/ (frozen LLM-output artefacts; models actually
saw .ailx — renaming would falsify the experimental record)
Verification: cargo build/test --workspace green; experiment crate
cargo test green; bench/check.py + compile_check.py + cross_lang.py
all 0-regressed; negative grep for ailx|Ailx|AILX outside the
out-of-scope paths returns zero matches.
Opens immediate follow-up: roadmap.md P2 todo `ail check`/build/run
accept .ail extension — after this rename, .ail is canonical
authoring surface but the CLI still produces a misleading JSON-parse
error on `ail check foo.ail`. That's the next iter.
70 lines
1.8 KiB
Plaintext
70 lines
1.8 KiB
Plaintext
; Iter 18g.1 RED-test fixture: minimal tail-recursive list-sum
|
|
; under explicit-mode + (drop-iterative). Demonstrates the leak
|
|
; surfaced by the 18f.2 latency bench: the LCons outer cell, whose
|
|
; only ptr field `t` is moved into the tail-app of `sum_acc`, has
|
|
; no drop site and leaks once per element.
|
|
;
|
|
; Built and run with `AILANG_RC_STATS=1` under `--alloc=rc`. The
|
|
; stderr summary should show `allocs == frees + small_const`,
|
|
; where `small_const` covers the Tree-shaped drop-frames (zero
|
|
; here — the program returns Int, no live ADTs at exit).
|
|
;
|
|
; Pre-fix: `live = N` (one outer LCons cell per consumed element).
|
|
; Post-fix: `live = 0`.
|
|
|
|
(module rc_tail_sum_explicit_leak
|
|
|
|
(data IntList
|
|
(ctor LNil)
|
|
(ctor LCons (con Int) (con IntList))
|
|
(drop-iterative))
|
|
|
|
(fn cons_n_acc
|
|
(type
|
|
(fn-type
|
|
(params (con Int) (own (con IntList)))
|
|
(ret (own (con IntList)))))
|
|
(params n acc)
|
|
(body
|
|
(if (app == n 0)
|
|
acc
|
|
(tail-app cons_n_acc
|
|
(app - n 1)
|
|
(term-ctor IntList LCons (app - n 1) acc)))))
|
|
|
|
(fn cons_n
|
|
(type
|
|
(fn-type
|
|
(params (con Int))
|
|
(ret (own (con IntList)))))
|
|
(params n)
|
|
(body
|
|
(app cons_n_acc n (term-ctor IntList LNil))))
|
|
|
|
(fn sum_acc
|
|
(type
|
|
(fn-type
|
|
(params (own (con IntList)) (con Int))
|
|
(ret (con Int))))
|
|
(params xs acc)
|
|
(body
|
|
(match xs
|
|
(case (pat-ctor LNil) acc)
|
|
(case (pat-ctor LCons h t)
|
|
(tail-app sum_acc t (app + acc h))))))
|
|
|
|
(fn sum_list
|
|
(type
|
|
(fn-type
|
|
(params (own (con IntList)))
|
|
(ret (con Int))))
|
|
(params xs)
|
|
(body
|
|
(app sum_acc xs 0)))
|
|
|
|
(fn main
|
|
(type (fn-type (params) (ret (con Unit)) (effects IO)))
|
|
(params)
|
|
(body
|
|
(do io/print_int (app sum_list (app cons_n 100))))))
|