phase: 20.49 COMPLETE; 20.50 Flow+String minimal reps; 20.51 selfhost v0/v1 minimal (Option A/B); hv1-inline binop/unop/copy; docs + run_all + CURRENT_TASK -> 21.0
This commit is contained in:
23
tools/selfhost/gen_v1_from_selfhost_pipeline_min.sh
Normal file
23
tools/selfhost/gen_v1_from_selfhost_pipeline_min.sh
Normal file
@ -0,0 +1,23 @@
|
||||
#!/usr/bin/env bash
|
||||
# gen_v1_from_selfhost_pipeline_min.sh — Hako selfhost pipeline v2 → MIR(JSON v1) emit (minimal const42)
|
||||
set -euo pipefail
|
||||
|
||||
ROOT="$(cd "$(dirname "$0")/../.." && pwd)"
|
||||
source "$ROOT/tools/smokes/v2/lib/test_runner.sh" 2>/dev/null || true
|
||||
|
||||
code=$(cat <<'HCODE'
|
||||
using lang.compiler.pipeline_v2.emit_return_box as EmitReturnBox
|
||||
static box Main { method main(args) {
|
||||
// Emit MIR(JSON v1-like) for return 42 (minimal)
|
||||
local j = EmitReturnBox.emit_return_int2(42, 0)
|
||||
print("" + j)
|
||||
return 0
|
||||
} }
|
||||
HCODE
|
||||
)
|
||||
|
||||
NYASH_USING_PROFILE=dev NYASH_ENABLE_USING=1 HAKO_ENABLE_USING=1 \
|
||||
NYASH_DISABLE_NY_COMPILER=1 HAKO_DISABLE_NY_COMPILER=1 \
|
||||
NYASH_PARSER_STAGE3=1 HAKO_PARSER_STAGE3=1 NYASH_PARSER_ALLOW_SEMICOLON=1 \
|
||||
run_nyash_vm -c "$code" 2>/dev/null | tr -d '\r'
|
||||
|
||||
Reference in New Issue
Block a user