wip(jit): AOTコア機能の継続的改善
JIT/AOTシステムのコア部分の改修を継続。 ChatGPTによる詳細な実装作業。 主な変更点: - extern/collections.rs: 外部関数コレクション管理の改善 - lower/builder/cranelift.rs: Craneliftビルダーの最適化 - lower/core.rs: コア lowering ロジックの改修 - lower/core/ops_ext.rs: 拡張演算子のlowering処理 - lower/extern_thunks.rs: 外部関数サンクの実装改善 AOTビルドの安定性向上に向けた継続的な作業。 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
1
src/jit/extern/collections.rs
vendored
1
src/jit/extern/collections.rs
vendored
@ -28,6 +28,7 @@ pub const SYM_MAP_HAS_H: &str = "nyash.map.has_h";
|
||||
pub const SYM_ANY_LEN_H: &str = "nyash.any.length_h";
|
||||
pub const SYM_ANY_IS_EMPTY_H: &str = "nyash.any.is_empty_h";
|
||||
pub const SYM_STRING_CHARCODE_AT_H: &str = "nyash.string.charCodeAt_h";
|
||||
pub const SYM_STRING_LEN_H: &str = "nyash.string.len_h";
|
||||
pub const SYM_STRING_BIRTH_H: &str = "nyash.string.birth_h";
|
||||
pub const SYM_INTEGER_BIRTH_H: &str = "nyash.integer.birth_h";
|
||||
// String-like operations (handle, handle)
|
||||
|
||||
Reference in New Issue
Block a user