235 lines
19 KiB
Markdown
235 lines
19 KiB
Markdown
|
|
# Gemini先生とCodex先生のNyash ABI C実装についての深い考察
|
|||
|
|
|
|||
|
|
2025年9月2日、Nyashのセルフホスティング実現に向けて、2人のAI専門家が深い考察を提供しました。
|
|||
|
|
|
|||
|
|
## 🌟 Gemini先生の考察
|
|||
|
|
|
|||
|
|
### 総評
|
|||
|
|
**「技術的妥当性が高く、言語哲学とも合致した、極めて優れた設計」**
|
|||
|
|
|
|||
|
|
### 1. 技術的妥当性
|
|||
|
|
|
|||
|
|
#### C言語によるNyash ABI実装の現実性
|
|||
|
|
- **現実的です。** C言語は、OSのカーネルから他のプログラミング言語のランタイムまで、システムコンポーネントを記述するためのデファクトスタンダードです。
|
|||
|
|
- 参照カウント、動的な型情報(メソッドテーブルなど)の管理、メモリレイアウトの精密な制御といった、ABIの実装に必要な低レベルな操作は、すべてC言語の得意分野です。
|
|||
|
|
|
|||
|
|
#### TypeBoxシステムとの統合の自然さ
|
|||
|
|
- **極めて自然です。** TypeBoxがC ABIベースのプラグインシステムであるため、Cで実装されたNyash ABIをTypeBoxの一種として動的にロードする、というアイデアは既存の仕組みに完璧に乗っかります。
|
|||
|
|
- `abi_tag: 'NABI'` のような識別子で他のTypeBoxと区別するのも、クリーンで拡張性の高い方法です。
|
|||
|
|
- これは、システムの複雑性を爆発させることなく、コア機能の差し替えを実現するエレガントなソリューションです。
|
|||
|
|
|
|||
|
|
#### セルフホスティングへの道筋の明確さ
|
|||
|
|
- **明確かつ論理的です。** 提示された3段階の移行戦略は、セルフホスティングを達成するための古典的かつ実績のあるブートストラップ手順を踏んでいます。
|
|||
|
|
1. **Rust製コンパイラ** を使って、**C実装ABI**上で動く **Nyash製コンパイラ** をコンパイルする。
|
|||
|
|
2. 生成された **Nyash製コンパイラ** を使って、**それ自身を再度コンパイル**する。
|
|||
|
|
- この時点でRustツールチェインへの依存が切れ、セルフホスティングが達成されます。
|
|||
|
|
|
|||
|
|
### 2. 実装上の課題と解決策
|
|||
|
|
|
|||
|
|
#### メモリ管理の具体的な実装方法
|
|||
|
|
- **参照カウント:** 提案通り、参照カウントが基本になります。
|
|||
|
|
- 具体的には、Nyashの各Box(オブジェクト)が確保するメモリブロックのヘッダ部分に、参照カウント数を格納するフィールド(例: `atomic_size_t ref_count;`)を設けます。
|
|||
|
|
- `retain` / `release` は、このカウンタを**アトミック操作**で増減させる必要があります。これにより、マルチスレッド環境下でも安全なメモリ管理が保証されます。(C11の `<stdatomic.h>` が利用できます)
|
|||
|
|
- **循環参照への対策:** 初期段階では「循環参照は未定義動作(メモリリーク)」と割り切ることも可能ですが、長期的には**弱参照(Weak Reference)**の仕組みをABIレベルで導入することを強く推奨します。
|
|||
|
|
|
|||
|
|
#### 型安全性をどう保証するか
|
|||
|
|
- `type_id` が鍵となります。これは単なる整数ではなく、**グローバルな型情報テーブルへのインデックス(またはポインタ)**として機能させるべきです。
|
|||
|
|
- このテーブルには、型名、メソッドテーブル(メソッド名と関数ポインタのマップ)、親の型への参照などの情報が含まれます。
|
|||
|
|
- `invoke_method` を実行する際は、まずオブジェクトの `type_id` から型情報を引き、メソッドテーブル内に要求されたメソッドが存在するかを検証します。
|
|||
|
|
|
|||
|
|
#### パフォーマンスへの影響
|
|||
|
|
- **ディスパッチのオーバーヘッド:** 文字列比較によるメソッド検索は遅延の原因になります。これを緩和するため、コンパイル時にメソッド名をハッシュ化し、ランタイムでは整数(ハッシュ値)で比較する方法が効果的です。
|
|||
|
|
- **インライン値(Tagged Pointers):** `NyashValue_C` の設計はパフォーマンスの鍵です。64bit環境では、ポインタの下位ビットがアラインメントにより常に0であることを利用し、このビットを「タグ」として使うことで、小さな整数や真偽値などをポインタに直接埋め込めます。
|
|||
|
|
|
|||
|
|
### 3. 段階的移行戦略
|
|||
|
|
|
|||
|
|
#### 既存Rust実装との共存方法
|
|||
|
|
- 移行期間中、Nyashランタイムは**2種類のBox表現(Rustネイティブ版とC ABI版)を同時に扱える**必要があります。
|
|||
|
|
- 両者の間で値をやり取りするための**ブリッジ(変換層)**が不可欠です。
|
|||
|
|
- 最初は、コアな組み込み型はRust実装のまま、新しいプラグインや一部のモジュールをC ABI版で実装していくのが安全な進め方でしょう。
|
|||
|
|
|
|||
|
|
#### 互換性維持とテスト戦略
|
|||
|
|
- **ABIインターフェースの凍結:** `nyash_ops` の関数シグネチャとセマンティクス(所有権のルールなど)を一度定義したら、それを厳格に守ることが極めて重要です。
|
|||
|
|
- **大規模なテストスイート:** 移行を成功させるには、テストがすべてを決定します。
|
|||
|
|
1. **振る舞いの一致テスト:** 同じNyashソースコードを「Rust ABIのみ」「C ABIのみ」「両者混在」の3つのモードで実行し、出力や結果が完全に一致することを検証するテストスイートを構築します。
|
|||
|
|
2. **ユニットテスト:** Cで実装されたABIの各関数(`create_value`, `retain`, `release`など)を、Cのテストフレームワーク(例: `check`)で徹底的にテストします。
|
|||
|
|
3. **ベンチマーク:** 各フェーズでパフォーマンスを計測し、意図しない性能劣化(リグレッション)が起きていないかを常に監視します。
|
|||
|
|
|
|||
|
|
### 4. 哲学的な観点
|
|||
|
|
|
|||
|
|
#### 「Everything is Box」哲学との整合性
|
|||
|
|
- **完璧に整合しています。** これは「Everything is Box」という哲学の究極的な表現です。
|
|||
|
|
- 言語を構成するユーザーレベルのオブジェクトだけでなく、言語の実行基盤であるABIそのものまでもが「Box」という統一された概念で扱われる。
|
|||
|
|
- これは、LISPがコードとデータをS式で統一的に扱う美しさに通じる、自己言及的なエレガンスを持っています。
|
|||
|
|
|
|||
|
|
#### ABIをBoxとして扱うことの意味
|
|||
|
|
- これは、**言語の振る舞いを定義する「メタオブジェクト」**を導入することに他なりません。
|
|||
|
|
- これにより、Nyashは自分自身の実行セマンティクスすら、理論上は動的に差し替えたり拡張したりできる可能性を秘めることになります。
|
|||
|
|
- 例えば、デバッグ用のABI、プロファイリング用のABI、あるいは全く異なるメモリ管理モデル(例: GC)を持つABIを、同じTypeBoxの仕組みでロードすることも夢ではありません。
|
|||
|
|
|
|||
|
|
### 5. 他の選択肢との比較
|
|||
|
|
|
|||
|
|
#### Rust依存を維持する場合
|
|||
|
|
- 実装は楽ですが、言語としての独立性を永遠に失います。
|
|||
|
|
- Nyashをビルドするのに常にRustが必要というのは、言語のポータビリティと自己完結性を著しく損ないます。
|
|||
|
|
|
|||
|
|
#### 他のセルフホスティング戦略(例: LLVMへのコンパイル)
|
|||
|
|
- LLVM IRのような中間言語にコンパイルするのも強力な戦略です。
|
|||
|
|
- しかし、それはNyashの実行モデルをLLVMのモデルにマッピングする作業であり、依存先がRustからLLVMに変わるだけとも言えます。
|
|||
|
|
- ご提案の「ABIのBox化」は、**Nyash自身の実行モデルを維持したまま独立を果たす**という点で、より自己完結的で野心的なアプローチです。
|
|||
|
|
|
|||
|
|
#### 長期的な保守性
|
|||
|
|
- C ABIは、コンピューティングの世界で最も安定し、普遍的なインターフェースです。
|
|||
|
|
- ここに基盤を置くことで、Nyashは将来にわたって非常に高い安定性とポータビリティを獲得できます。
|
|||
|
|
|
|||
|
|
### 結論と最終的なアドバイス
|
|||
|
|
|
|||
|
|
ご提案の設計は、Nyashを真に独立した言語へと飛躍させ、その哲学を完成させるための、**実装可能かつ美しいブループリント**です。この方向性で進むことを強く推奨します。
|
|||
|
|
|
|||
|
|
**追加のアドバイス:**
|
|||
|
|
- **所有権ルールの厳密な定義:** ABIの関数呼び出しにおける値の所有権(誰が`release`の責任を持つか)を、ドキュメントで厳密に定義してください。
|
|||
|
|
- **エラーハンドリング:** `invoke_method`などが失敗した場合に、どのようにエラー情報(型ミスマッチ、メソッド未定義など)を呼び出し元に伝えるか。
|
|||
|
|
|
|||
|
|
---
|
|||
|
|
|
|||
|
|
## 🔧 Codex先生の考察
|
|||
|
|
|
|||
|
|
### Executive Summary
|
|||
|
|
- Feasible and attractive: treating the Nyash ABI itself as a TypeBox (C ABI) is a clean way to de‑Rust the runtime boundary while aligning with "Everything is Box".
|
|||
|
|
- Key to success: keep the ABI surface minimal, versioned, allocator/context‑centric, and future‑proofed; treat reflection, invocation, and async as Boxes too.
|
|||
|
|
- Migration: start as a C shim over current Rust NyRT, run conformance tests in parallel, then swap implementations behind the same ABI, and finally reimplement in Nyash.
|
|||
|
|
|
|||
|
|
### Technical Feasibility
|
|||
|
|
- C implementation: realistic if the ABI is small, pure C (no exceptions), with explicit lifetimes, error/status returns, and allocator control. Similar precedents exist (CPython C-API, Lua C API, COM‑style vtables).
|
|||
|
|
- TypeBox integration: natural fit if the ABI object is "just another Box" exposing a stable vtable plus discovery via `nyash.toml`/plugin loader.
|
|||
|
|
- Self‑hosting path: clear when the compiler and runtime only depend on the C ABI Box; the compiler written in Nyash can build itself by linking against that Box.
|
|||
|
|
|
|||
|
|
### ABI Shape: Recommended Adjustments
|
|||
|
|
- Versioning and size: include `api_version` and `struct_size` in the TypeBox header so older loaders can detect compatibility.
|
|||
|
|
- Context first: most functions accept a `nyash_ctx*` holding allocator, scheduler, TLS, and feature flags; this avoids global state.
|
|||
|
|
- Status + out‑params: adopt `nyash_status` enum return, with outputs via out‑params; do not return ownership in a raw return position.
|
|||
|
|
- Object model: make every heap object implement retain/release via a common header/layout and expose a `nyash_obj_vtable` for method lookup.
|
|||
|
|
- Method invocation: prefer selector/handle lookup over raw string calls. Pattern:
|
|||
|
|
- `nyash_status lookup_selector(ctx, type_id, name, out nyash_selector*)`
|
|||
|
|
- `nyash_status call(ctx, obj, selector, argv, argc, out result)`
|
|||
|
|
- Allows caching and JIT fast paths; string lookup happens at most once per call‑site.
|
|||
|
|
|
|||
|
|
### Minimal core surface:
|
|||
|
|
- `retain(obj)`, `release(obj)`
|
|||
|
|
- `type_of(value) -> type_id`
|
|||
|
|
- `is_null`, `eq`, `hash`
|
|||
|
|
- `lookup_selector`, `call`
|
|||
|
|
- `create_value(type_id, data, flags)`
|
|||
|
|
- `alloc`, `free`, `mem_stats` via `nyash_allocator`
|
|||
|
|
- `error_new`, `error_code`, `error_message` (errors are Boxes)
|
|||
|
|
- Async primitives as Boxes (see below)
|
|||
|
|
- Binary hygiene: add `vendor_tag`, `abi_tag = 'NABI'`, reserved fields, and explicit alignment requirements.
|
|||
|
|
|
|||
|
|
### Value Layout and Type Identity
|
|||
|
|
- `nyash_value`: 16‑byte payload recommended for portability and JIT friendliness:
|
|||
|
|
- `u64 type_id; u64 payload; u64 meta;` or `u64[2] payload` if you want 128‑bit immediates later. Ensure 16‑byte alignment for vector ops and stable lowering in LLVM.
|
|||
|
|
- Inline vs heap:
|
|||
|
|
- Use low meta bits for immediate tags (small int, bool, null, small enum).
|
|||
|
|
- Heap payloads are opaque pointers to refcounted objects with a common header.
|
|||
|
|
- `type_id`: stable 64‑bit value with namespacing: top 16 bits vendor, 8 bits kind (struct, enum, trait/interface, array, func), remaining bits a stable hash of the fully‑qualified name + version.
|
|||
|
|
|
|||
|
|
### Memory Model
|
|||
|
|
- Intrusive refcount header: for all heap Boxes:
|
|||
|
|
- `struct header { atomic_uintptr_t rc; const nyash_obj_vtable* vtable; u64 type_id; u64 flags; }`
|
|||
|
|
- Thread safety: use atomic increments/decrements; defer destruction on the owning scheduler thread if the vtable marks "affine".
|
|||
|
|
- Cycle handling: three options; pick one early and document:
|
|||
|
|
- No cross‑cycle guarantee, plus "weakref" Boxes and explicit `close()` for graph owners (lowest complexity).
|
|||
|
|
- Trial‑deferred cycle detection (Bacon–Rajan) at safepoints.
|
|||
|
|
- Arena/region Boxes for compiler/IR lifetimes (good for self‑hosting).
|
|||
|
|
- Allocation: `nyash_allocator` in `nyash_ctx` allows embedding, custom arenas, and leak accounting. Every allocation path must route through it.
|
|||
|
|
|
|||
|
|
### Type Safety Guarantees
|
|||
|
|
- Validate `type_id` on every API entry that consumes a `nyash_value`. Return `NYASH_E_TYPE`.
|
|||
|
|
- Provide `nyash_cast(ctx, value, target_type_id, out value2)` that performs runtime checks (and potentially conversion) in one place.
|
|||
|
|
- For generics/parametric types, define a "type constructor" `type_id` plus encoded parameters hashed into a derived `type_id`.
|
|||
|
|
|
|||
|
|
### Performance Considerations
|
|||
|
|
- Selector caching: make `nyash_selector` a stable handle (contains resolved vtable slot + inline cache cookie). JIT can inline calls directly via the slot.
|
|||
|
|
- Avoid string dispatch in hot paths: strings resolve only once per call‑site; ABI preserves handles to avoid repeated lookups.
|
|||
|
|
- Small immediates: keep i31/i61, bool, small enum as immediates; `meta` carries tag; JIT emits zero‑branch unbox.
|
|||
|
|
- Error handling: status codes + separate error Box avoids exceptions; zero‑overhead fast path.
|
|||
|
|
- Marshaling: keep `argv` as a flat `nyash_value*` slice; for varargs heavy sites, support `nyash_tuple` Box to amortize allocations.
|
|||
|
|
- Layout stability: document alignment and endianness; avoid bitfields in the ABI; use masks and shifts.
|
|||
|
|
|
|||
|
|
### Async and Errors
|
|||
|
|
- Async as Box: define `nyash_future` TypeBox with
|
|||
|
|
- `poll(ctx, self, out ready, out result_or_err)`
|
|||
|
|
- `awaitable` integration at the language level; scheduler belongs to `nyash_ctx`.
|
|||
|
|
- Cancellation: `cancel(ctx, self, reason)`; guarantee idempotence.
|
|||
|
|
- Errors as Box: `nyash_error` carries `code`, `message`, `data` (Box). Every API returning non‑OK can also optionally fill an out error Box.
|
|||
|
|
|
|||
|
|
### Versioning and Compatibility
|
|||
|
|
- Feature negotiation: `supports(ctx, feature_id)` and a `capabilities` bitmask in the provider header.
|
|||
|
|
- Semantic version in header, strict size check: reject if `struct_size < required`.
|
|||
|
|
- Reserved fields: pad both the provider and object vtables with reserved pointers for forward extension.
|
|||
|
|
- Cross‑platform: define `NYASH_ABI_API` macro for visibility/calling convention; test x86_64 Linux, macOS, Windows (MSVC) early.
|
|||
|
|
|
|||
|
|
### Coexistence and Migration
|
|||
|
|
- Phase 1 (C shim over Rust):
|
|||
|
|
- Implement the C TypeBox provider whose functions forward to existing Rust NyRT via `extern "C"` glue. This validates the ABI without rewriting runtime logic.
|
|||
|
|
- Place under `plugins/nyash_abi_c/` and add mapping in `nyash.toml`.
|
|||
|
|
- Phase 2 (feature parity in C):
|
|||
|
|
- Incrementally reimplement hot paths: small immediates, retain/release, allocator, string, array. Keep complex features (async, reflection) temporarily forwarded to Rust until replaced.
|
|||
|
|
- Phase 3 (Nyash reimplementation):
|
|||
|
|
- Recode the C provider in Nyash, but keep the exact same C ABI surface via an AOT target producing the same symbols.
|
|||
|
|
- Coexistence:
|
|||
|
|
- Loader picks provider by name and version from `nyash.toml`. Keep Rust and C providers shippable concurrently; choose via env (`NYASH_ABI_IMPL=c,rust`).
|
|||
|
|
- Compatibility:
|
|||
|
|
- Add a conformance suite that exercises only the ABI; run it against both providers until results match.
|
|||
|
|
|
|||
|
|
### Testing Strategy
|
|||
|
|
- Conformance tests under `tests/abi/`:
|
|||
|
|
- Retain/release semantics, cross‑thread retain, immediate encoding, selector lookup caching, error propagation, async poll semantics.
|
|||
|
|
- Fuzz/property tests for `nyash_value` encode/decode and `type_id` canonicalization.
|
|||
|
|
- ABI stability:
|
|||
|
|
- Generate a C header from a single source of truth; forbid breaking changes unless version bumps.
|
|||
|
|
- Integration smokes:
|
|||
|
|
- Use `tools/llvm_smoke.sh` with `NYASH_C_ABI=1` to validate JIT/AOT end‑to‑end with the C provider loaded.
|
|||
|
|
|
|||
|
|
### Philosophical Fit
|
|||
|
|
- ABI‑as‑Box completes the idea that "runtime powers" are themselves values. It turns reflection, invocation, and scheduling into first‑class participants rather than privileged side channels.
|
|||
|
|
- Beauty comes from uniform dispatch: the compiler, runtime, and plugins all talk through the same Box vocabulary with selectors and capabilities.
|
|||
|
|
|
|||
|
|
### Alternatives and Trade‑offs
|
|||
|
|
- Keep Rust dependency:
|
|||
|
|
- Pro: faster to evolve; borrow‑checker catches many bugs.
|
|||
|
|
- Con: self‑hosting depends on Rust toolchain; ABI surface must still be C for plugins; harder for other ecosystems to embed.
|
|||
|
|
- WASM/WASI ABI:
|
|||
|
|
- Pro: portable sandbox, good for plugins.
|
|||
|
|
- Con: host interop and low‑latency GC/RC semantics are harder; JIT integration overhead.
|
|||
|
|
- Minimal micro‑kernel runtime in C + high‑level services in Rust:
|
|||
|
|
- Pro: balance; critical ABI in C, complex features in Rust behind handles.
|
|||
|
|
- Con: more moving parts, boundary crossings remain.
|
|||
|
|
|
|||
|
|
### Concrete Next Steps
|
|||
|
|
- Define and freeze a v0 ABI header:
|
|||
|
|
- Add `api_version`, `struct_size`, `nyash_ctx*`, `nyash_allocator*`, `nyash_status`, `nyash_value` 16‑byte layout, `retain/release`, `lookup_selector`, `call`, `error` primitives, and capability bits.
|
|||
|
|
- Scaffold `plugins/nyash_abi_c/`:
|
|||
|
|
- Provide a stub provider that returns `NYASH_E_NOT_IMPL` but passes header/version checks; wire it in `nyash.toml`.
|
|||
|
|
- Add a conformance test crate in `tests/abi/` that loads the provider by name and validates the header, alloc, retain/release, and immediate encodes.
|
|||
|
|
- Implement small immediates + retain/release + strings:
|
|||
|
|
- Backed by a simple thread‑safe RC and arena allocator in C.
|
|||
|
|
- Introduce selector caching in the VM/JIT:
|
|||
|
|
- Plumb `nyash_selector` handles in the call path; deopt to string lookup on cache miss.
|
|||
|
|
|
|||
|
|
If you want, I can draft the minimal v0 header (with versioning/capabilities and 16‑byte value layout) and a stub `plugins/nyash_abi_c` skeleton that loads in the current repo, plus a small conformance test to exercise header negotiation.
|
|||
|
|
|
|||
|
|
---
|
|||
|
|
|
|||
|
|
## まとめ
|
|||
|
|
|
|||
|
|
両AI専門家が一致して、Nyash ABIをC実装TypeBoxとして提供する設計案を高く評価しています。
|
|||
|
|
|
|||
|
|
共通する重要ポイント:
|
|||
|
|
1. **技術的に実現可能** - C言語でのABI実装は現実的で実績もある
|
|||
|
|
2. **哲学的に美しい** - Everything is Boxの究極的表現
|
|||
|
|
3. **段階的移行が鍵** - C Shim → フル実装 → Nyash再実装
|
|||
|
|
4. **パフォーマンス最適化** - Tagged Pointers、セレクターキャッシング
|
|||
|
|
5. **セルフホスティング実現** - Rust依存を完全に排除可能
|
|||
|
|
|
|||
|
|
この深い考察により、Nyashのセルフホスティングへの道筋が明確になりました。
|