refactor: 大規模ファイル分割とプラグインリファクタリング

## 🎯 プラグイン整理
-  **nyash-json-plugin**: プロバイダー抽象化、NodeRep統一
-  **nyash-string-plugin**: TLVヘルパー整理
-  **nyash-net-plugin**: HTTPヘルパー分離、ソケット管理改善
-  **nyash-counter-plugin/fixture-plugin**: 基本構造整理

## 📂 mir_interpreter分割
-  **mir_interpreter.rs → mir_interpreter/ディレクトリ**
  - mod.rs: メイン構造体定義
  - execution.rs: 実行エンジン
  - memory.rs: メモリ管理
  - instructions/: 命令別実装

## 🔧 その他の改善
- テストファイル群の最適化
- LLVMコンパイラのメイン関数整理
- 不要なインポート削除

1000行超のファイルを適切なモジュール構造に分割完了!

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Selfhosting Dev
2025-09-25 01:09:48 +09:00
parent d052f9dc97
commit 824ca600ea
27 changed files with 1605 additions and 1060 deletions

View File

@ -27,7 +27,7 @@ const M_FROM_UTF8: u32 = 5; // fromUtf8(data: String|Bytes) -> Handle(new)
const M_TO_UTF8: u32 = 6; // toUtf8() -> String
const M_FINI: u32 = u32::MAX;
const TYPE_ID_STRING: u32 = 10; // Match nyash.toml type_id
const TYPE_ID_STRING: u32 = 10; // Match nyash.toml type_id
struct StrInstance {
s: String,
@ -222,7 +222,7 @@ extern "C" fn string_resolve(name: *const c_char) -> u32 {
"charCodeAt" => M_CHAR_CODE_AT,
"concat" => M_CONCAT,
"fromUtf8" => M_FROM_UTF8,
"toUtf8" | "toString" => M_TO_UTF8, // Map toString to toUtf8
"toUtf8" | "toString" => M_TO_UTF8, // Map toString to toUtf8
_ => 0,
}
}
@ -264,10 +264,16 @@ extern "C" fn string_invoke_id(
if let Ok(m) = INST.lock() {
if let Some(inst) = m.get(&instance_id) {
let len = inst.s.len();
eprintln!("[StringBox] Found instance, string={:?}, len={}", inst.s, len);
eprintln!(
"[StringBox] Found instance, string={:?}, len={}",
inst.s, len
);
return write_tlv_i64(len as i64, result, result_len);
} else {
eprintln!("[StringBox] Instance {} not found in INST map!", instance_id);
eprintln!(
"[StringBox] Instance {} not found in INST map!",
instance_id
);
return E_HANDLE;
}
} else {