- core_hostcall.rs: HostCall関連のlowering処理を分離(array_get/array_set/box_call) - 1000行制限を守るための構造整理(機能差分なし) - ChatGPT5によるAI協調開発対応のリファクタリング 変更内容: - src/jit/lower/core_hostcall.rs を新規追加 - src/jit/lower/mod.rs にモジュール追加 - ビルドとスモークテスト確認済み
7 lines
121 B
Rust
7 lines
121 B
Rust
//! Lowering entry for JIT
|
|
pub mod core;
|
|
pub mod builder;
|
|
pub mod extern_thunks;
|
|
pub mod cfg_dot;
|
|
pub mod core_hostcall;
|