2025-10-31 20:18:39 +09:00
|
|
|
|
// flow_entry.hako — Pipeline v2 entry box(emit-only)
|
|
|
|
|
|
// Guard: This box performs no execution. Returns MIR(JSON) as text.
|
|
|
|
|
|
|
|
|
|
|
|
using "lang/src/compiler/pipeline_v2/pipeline.hako" as PipelineV2
|
2025-10-31 20:45:46 +09:00
|
|
|
|
using "lang/src/shared/json/mir_v1_adapter.hako" as MirJsonV1Adapter
|
2025-10-31 20:18:39 +09:00
|
|
|
|
|
|
|
|
|
|
static box FlowEntryBox {
|
|
|
|
|
|
// Emit legacy v0 JSON(call/boxcall/newbox)。最小入力: Stage‑1 JSON 文字列
|
|
|
|
|
|
emit_v0_from_ast(ast_json, prefer_cfg) {
|
|
|
|
|
|
return PipelineV2.lower_stage1_to_mir(ast_json, prefer_cfg)
|
|
|
|
|
|
}
|
|
|
|
|
|
// Emit v0 with using context (alias/module maps) — prefer this when names need resolution
|
|
|
|
|
|
emit_v0_from_ast_with_usings(ast_json, prefer_cfg, usings_json, modules_json) {
|
|
|
|
|
|
print("[DEBUG FlowEntry] emit_v0_from_ast_with_usings called")
|
|
|
|
|
|
local result = PipelineV2.lower_stage1_to_mir_with_usings(ast_json, prefer_cfg, usings_json, modules_json)
|
|
|
|
|
|
print("[DEBUG FlowEntry] result=" + result)
|
|
|
|
|
|
return result
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Emit v1 → v0 互換 JSON(unified mir_call を一旦生成して適応)。自己ホスト実行向け
|
|
|
|
|
|
emit_v1_compat_from_ast(ast_json, prefer_cfg) {
|
|
|
|
|
|
return PipelineV2.lower_stage1_to_mir_v1_compat(ast_json, prefer_cfg)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-31 20:45:46 +09:00
|
|
|
|
// Emit v1 JSON with metadata.extern_c(externs を v1 の metadata に反映)
|
|
|
|
|
|
// externs_json: JSON array text, e.g. [{"func":"Name/Arity","symbol":"c_symbol"}]
|
|
|
|
|
|
emit_v1_from_ast_with_meta(ast_json, prefer_cfg, externs_json) {
|
|
|
|
|
|
return PipelineV2.lower_stage1_to_mir_v1_with_meta(ast_json, prefer_cfg, externs_json)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Emit v1 JSON + metadata.extern_c を注入し、v0互換に変換
|
|
|
|
|
|
emit_v1_compat_from_ast_with_meta(ast_json, prefer_cfg, externs_json) {
|
|
|
|
|
|
local j1 = PipelineV2.lower_stage1_to_mir_v1_with_meta(ast_json, prefer_cfg, externs_json)
|
|
|
|
|
|
return MirJsonV1Adapter.to_v0(j1)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-31 20:18:39 +09:00
|
|
|
|
// No-op entry(箱ガード用)
|
|
|
|
|
|
main(args) { return 0 }
|
|
|
|
|
|
}
|