Files
hakorune/examples/jit_shim_trace_param_array.nyash
Moe Charm 1eee62a8ea feat(jit): JIT Strictモード実装とプラグイン経路の安定化
- InvokePolicy/Observe導入でLowererの分岐をスリム化
- ArrayBox/MapBox/StringBoxのプラグイン経路統一
- 特殊コメント機能(@jit-debug, @plugin-builtins, @jit-strict)実装
- 型ヒント伝搬パス(TypeHintPass)を独立モジュール化
- VM→Plugin引数整合の安定化(I64統一、IntegerBox自動プリミティブ化)
- StringBoxのpost-birth初期化(空文字列セグフォルト修正)
- JIT観測サンプル追加(Array/Map/String)

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-29 21:39:47 +09:00

34 lines
924 B
Plaintext

// JIT shim trace smoke: helper JIT invokes plugin on param
// Build plugins first:
// (cd plugins/nyash-array-plugin && cargo build --release)
// Run:
// NYASH_USE_PLUGIN_BUILTINS=1 NYASH_JIT_EXEC=1 NYASH_JIT_THRESHOLD=1 \
// NYASH_JIT_SHIM_TRACE=1 NYASH_CLI_VERBOSE=1 \
// ./target/release/nyash --backend vm examples/jit_shim_trace_param_array.nyash
static box Main {
main() {
local a, debug, len
me.console = new ConsoleBox()
debug = new DebugBox()
debug.tracePluginCalls(true)
// Prepare Array in VM path (NewBox on Array is JIT-unsupported)
a = new ArrayBox()
a.push(1)
a.push(2)
a.push(3)
// Call helper (should be JIT-able): only arr.length() on param
len = me.helper(a)
me.console.log("len=", len)
// Dump recent JIT shim events (expect i64.start/end etc.)
me.console.log(debug.getJitEvents())
}
helper(arr) {
return arr.length()
}
}