luna-core 2.13.0

Pure-Rust Lua runtime (interpreter only, zero third-party dependencies). The JIT-equipped variant lives in the `luna-jit` crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
//! PUC Lua 5.1 `.luac` → luna `Proto` translator (Phase LB Wave 2).
//!
//! 5.1 is **the hardest dialect** per `.dev/rfcs/v1.3-audit-puc-luac-formats.md`
//! despite being the oldest, because of three distinguishing features
//! luna's opcode set doesn't share with the source format:
//!
//! 1. **6-bit opcode field** — 5.1 instructions are `op:6 | A:8 | C:9 | B:9`
//!    (LE within the u32); luna is `op:7 | A:8 | k:1 | B:8 | C:8`. A
//!    per-instruction decode shim translates the raw word into a
//!    `Pre51Inst` struct before the opcode table picks how to re-encode
//!    each one in luna's layout.
//!
//! 2. **`OP_GETGLOBAL` / `OP_SETGLOBAL` → `_ENV` upvalue synthesis** —
//!    5.1 globals are a special VM-level "globals table" indirection; 5.2
//!    introduced `_ENV` as a proper upvalue and 5.3+/luna inherited that.
//!    The translator synthesises an `_ENV` upvalue (at index 0) in every
//!    Proto that touches globals, then rewrites `GETGLOBAL Bx` →
//!    `GetTabUp(A, _ENV_idx, Bx)` and `SETGLOBAL Bx` →
//!    `SetTabUp(_ENV_idx, Bx, A)`. The top-level chunk's `_ENV` comes
//!    from `Vm::load` (it wraps the main proto in a closure whose
//!    `_ENV` upvalue is the globals table); nested protos capture their
//!    parent's `_ENV` (`in_stack=false, index=parent_env_idx`).
//!
//! 3. **`OP_CLOSURE` pseudo-instruction strip + PC patch** — in 5.1, each
//!    `OP_CLOSURE A Bx` is **followed** by `nups` pseudo-instructions
//!    (`OP_MOVE 0 B 0` or `OP_GETUPVAL 0 B 0`) that aren't actually
//!    executed; PUC's VM treats them as opaque upvalue descriptors and
//!    bumps `pc` past them. luna's `Op::Closure` reads upvalue capture
//!    from `Proto.upvals` (the 5.2+ inline-desc convention), so the
//!    pseudo-instructions must be: (a) read into `UpvalDesc` rows on the
//!    *nested* proto, (b) stripped from the parent's code stream, and
//!    (c) every subsequent `Jmp` / `FORLOOP` / `FORPREP` target adjusted
//!    by the cumulative strip count so jumps land where they used to.
//!
//! ## Punts (documented for follow-up, not silently dropped)
//!
//! (none — 5.1 dialect is punt-free as of PU Wave 4.)
//!
//! ## Closed in PU Wave 4
//!
//! - **`OP_TFORLOOP` split** (punt-A) — PUC 5.1 emits a single
//!   `TFORLOOP A C` followed by `JMP sBx` (back-edge). luna splits the
//!   pair into `TForCall A 0 C; TForLoop A back`, registering the
//!   back-distance as a `JumpKind::TForLoop` fixup so the post-walk pass
//!   resolves it through `puc_to_luna_pc` (handles any earlier lowering
//!   that bumped the luna pc count). No `TForPrep` is synthesised — 5.1
//!   has no to-be-closed semantics and the pre-loop forward JMP lands on
//!   the new `TForCall` directly. PUC 5.1 encodes `TFORLOOP.A` as
//!   iter_base (same convention as luna), unlike 5.3 which uses
//!   `iter_base + 2`.
//! - **`LUAI_COMPAT_VARARG` `arg` local** (punt-B) — `Proto.has_compat_vararg_arg`
//!   has been decoded by the reader since Wave 1; `vm/exec.rs:4200`
//!   (`call_lua` frame entry) already synthesises the `arg = {n =
//!   n_varargs, [1..] = e1..}` table on the cold path when the flag is
//!   set. PU Wave 4 adds an end-to-end test that loads a 5.1 chunk
//!   compiled with `LUAI_COMPAT_VARARG=1` and asserts
//!   `arg.n` / `arg[1]` are populated correctly.
//!
//! ## Closed in PU Wave 2
//!
//! - **`OP_SETLIST A B 0`** — when PUC packs the block index in the
//!   following raw u32 code-stream slot (C==0), translator now consumes
//!   the payload and re-emits as luna's `SetList k=true; ExtraArg
//!   payload` pair (mirrors puc_52 / puc_54 path).
//! - **arith RK on B side** (`R[A] := K[k_idx] <op> R[C]/K[C]`) — now
//!   lowered through `super::lower_k_via_tmp` to luna's
//!   `LoadK tmp k_idx; <op> A tmp C` pair. Worst-case temp register is
//!   reserved by bumping `max_stack` per `Translated.max_temp_bump`.
//! - **EQ / LT / LE RK on either operand** — luna's comparison ops have
//!   no RK form, so each K-pool operand is materialised via
//!   `LoadK tmp k_idx` first, then the comparison runs on register
//!   operands. Same `max_temp_bump` mechanism as arith.
//!
//! ## Closed in PU Wave 3 (this commit)
//!
//! - **`LOADBOOL A B C` skip form** (punt-D) — `B=0 C=1` lowers to
//!   luna's native `LFalseSkip A`; `B=1 C=1` (no `LTrueSkip` in luna's
//!   ISA) lowers to a `LoadTrue A; Jmp +1` pair. The Jmp +1 advances
//!   pc past the next inst in the dispatch loop, matching PUC's
//!   `pc++` post-LOADBOOL effect. The 2-emit case piggy-backs on the
//!   existing `puc_to_luna_pc` deferred-fixup infra.
//! - **`luaO_fb2int` for `NEWTABLE` size hints** (punt-C) — already
//!   decoded correctly via `fb2int_saturating` + clamp to `u8::MAX`
//!   (mirrors puc_52's `fb_to_hint_u8`); doc comments sharpened to
//!   spell out that luna's `Op::NewTable` ignores B/C, so the
//!   forwarded hint is inert until luna VM grows hint-aware
//!   allocation (out of scope for puc_51). Correctness-safe.
//!
//! The PC remap also flipped from a 1-way `Vec<i64>` (with `-1`
//! sentinels) to the `Translated { puc_to_luna_pc, … }` shape pioneered
//! by `puc_54.rs`, so multi-emit lowering helpers can land deltas
//! correctly via the deferred jump-fixup pass.
//!
//! See `.dev/rfcs/v1.3-audit-puc-luac-formats.md` §"5.1 risks" for the
//! full deferred-work list.

use super::super::reader::Reader;
use crate::runtime::Value;
use crate::runtime::function::{LocVar, Proto, UpvalDesc};
use crate::runtime::heap::{Gc, GcHeader, Heap, ObjTag};
use crate::vm::isa::{Inst, Op};

/// PUC 5.1 binary-chunk header (12 bytes). Differs from 5.2+ in carrying
/// an explicit endian flag (byte 6, `1` = LE) and an integral-vs-float
/// flag (byte 11, `0` = floating-point `lua_Number`). luna requires LE +
/// f64; anything else is rejected with a clear error per RFC v1.3
/// §"Cross-dialect risks" item 1 ("endianness — enforce LE, reject BE").
const HEADER_LEN: usize = 12;

/// Decoded PUC 5.1 instruction fields. The raw u32 word's bit layout is
/// `op:6 | A:8 | C:9 | B:9` (LE within the u32), so the decoder
/// unpacks once and the translator never re-touches the raw bits.
#[derive(Clone, Copy, Debug)]
struct Pre51Inst {
    op: u8,
    a: u32,
    /// B field (9 bits, top bit = "RK" flag — bit set ⇒ K-pool index in low 8 bits).
    b: u32,
    /// C field (9 bits, top bit = "RK" flag — bit set ⇒ K-pool index in low 8 bits).
    c: u32,
    /// Unsigned Bx (18 bits = C<<9 | B).
    bx: u32,
    /// Signed sBx (Bx - 131071).
    sbx: i32,
}

const PRE51_BITRK: u32 = 1 << 8;
const PRE51_MAXARG_BX: u32 = (1 << 18) - 1;
const PRE51_MAXARG_SBX: i32 = (PRE51_MAXARG_BX >> 1) as i32; // 131071

fn decode_inst_51(raw: u32) -> Pre51Inst {
    let op = (raw & 0x3F) as u8;
    let a = (raw >> 6) & 0xFF;
    let c = (raw >> 14) & 0x1FF;
    let b = (raw >> 23) & 0x1FF;
    let bx = (raw >> 14) & PRE51_MAXARG_BX;
    let sbx = bx as i32 - PRE51_MAXARG_SBX;
    Pre51Inst {
        op,
        a,
        b,
        c,
        bx,
        sbx,
    }
}

// PUC 5.1 opcode numbers (lopcodes.h 5.1.5).
const OP_MOVE: u8 = 0;
const OP_LOADK: u8 = 1;
const OP_LOADBOOL: u8 = 2;
const OP_LOADNIL: u8 = 3;
const OP_GETUPVAL: u8 = 4;
const OP_GETGLOBAL: u8 = 5;
const OP_GETTABLE: u8 = 6;
const OP_SETGLOBAL: u8 = 7;
const OP_SETUPVAL: u8 = 8;
const OP_SETTABLE: u8 = 9;
const OP_NEWTABLE: u8 = 10;
const OP_SELF: u8 = 11;
const OP_ADD: u8 = 12;
const OP_SUB: u8 = 13;
const OP_MUL: u8 = 14;
const OP_DIV: u8 = 15;
const OP_MOD: u8 = 16;
const OP_POW: u8 = 17;
const OP_UNM: u8 = 18;
const OP_NOT: u8 = 19;
const OP_LEN: u8 = 20;
const OP_CONCAT: u8 = 21;
const OP_JMP: u8 = 22;
const OP_EQ: u8 = 23;
const OP_LT: u8 = 24;
const OP_LE: u8 = 25;
const OP_TEST: u8 = 26;
const OP_TESTSET: u8 = 27;
const OP_CALL: u8 = 28;
const OP_TAILCALL: u8 = 29;
const OP_RETURN: u8 = 30;
const OP_FORLOOP: u8 = 31;
const OP_FORPREP: u8 = 32;
const OP_TFORLOOP: u8 = 33;
const OP_SETLIST: u8 = 34;
const OP_CLOSE: u8 = 35;
const OP_CLOSURE: u8 = 36;
const OP_VARARG: u8 = 37;

/// Entry point. Decodes the 5.1 header, then recurses through the proto
/// tree producing a `Gc<Proto>` with luna-native opcodes.
pub(in crate::vm::dump) fn undump(bytes: &[u8], heap: &mut Heap) -> Result<Gc<Proto>, String> {
    validate_header(bytes)?;
    let mut r = Reader::at(bytes, HEADER_LEN);
    let proto = r_proto(&mut r, heap, None)?;
    // PUC dump trailing-byte check: 5.1 doesn't always pad, but any leftover
    // is a sign the decoder mis-sized something earlier.
    if r.pos() != bytes.len() {
        return Err(format!(
            "trailing bytes in PUC 5.1 chunk (consumed {}, total {})",
            r.pos(),
            bytes.len()
        ));
    }
    Ok(proto)
}

fn validate_header(bytes: &[u8]) -> Result<(), String> {
    if bytes.len() < HEADER_LEN {
        return Err("truncated PUC 5.1 binary chunk header".to_string());
    }
    if &bytes[0..4] != b"\x1bLua" {
        return Err("bad PUC 5.1 signature".to_string());
    }
    if bytes[4] != 0x51 {
        return Err(format!(
            "expected PUC 5.1 version byte 0x51, got 0x{:02x}",
            bytes[4]
        ));
    }
    if bytes[5] != 0x00 {
        return Err(format!(
            "unsupported PUC 5.1 format byte 0x{:02x}",
            bytes[5]
        ));
    }
    if bytes[6] != 0x01 {
        return Err("luna only supports little-endian PUC 5.1 chunks".to_string());
    }
    if bytes[7] != 4 {
        return Err(format!("PUC 5.1 sizeof(int) must be 4, got {}", bytes[7]));
    }
    if bytes[8] != 8 {
        return Err(format!(
            "PUC 5.1 sizeof(size_t) must be 8, got {}",
            bytes[8]
        ));
    }
    if bytes[9] != 4 {
        return Err(format!(
            "PUC 5.1 sizeof(Instruction) must be 4, got {}",
            bytes[9]
        ));
    }
    if bytes[10] != 8 {
        return Err(format!(
            "PUC 5.1 sizeof(lua_Number) must be 8, got {}",
            bytes[10]
        ));
    }
    if bytes[11] != 0 {
        return Err(
            "luna only supports floating-point PUC 5.1 chunks (integral build rejected)"
                .to_string(),
        );
    }
    Ok(())
}

// PUC 5.1 stores strings as size_t (8 bytes LE) followed by the bytes
// *including* a trailing `\0`. Empty strings serialize as size==0 with no
// payload (PUC: "if size == 0 then nullptr"). We strip the trailing NUL
// when present so luna's interned strings don't carry it.
fn r_string_51<'a>(r: &mut Reader<'a>) -> Result<&'a [u8], String> {
    let n = u64::from_le_bytes(r.take(8)?.try_into().unwrap()) as usize;
    if n == 0 {
        return Ok(&[]);
    }
    let bytes = r.take(n)?;
    // Drop the PUC trailing `\0` (always present when n > 0).
    if let Some((b'\0', rest)) = bytes.split_last() {
        Ok(rest)
    } else {
        Ok(bytes)
    }
}

fn r_int_51(r: &mut Reader) -> Result<i32, String> {
    Ok(i32::from_le_bytes(r.take(4)?.try_into().unwrap()))
}

fn r_number_51(r: &mut Reader) -> Result<f64, String> {
    Ok(f64::from_bits(u64::from_le_bytes(
        r.take(8)?.try_into().unwrap(),
    )))
}

fn r_const_51(r: &mut Reader, heap: &mut Heap) -> Result<Value, String> {
    Ok(match r.u8()? {
        0 => Value::Nil,
        1 => Value::Bool(r.u8()? != 0),
        // 5.1 has no integer subtype; LUA_TNUMBER is always f64.
        3 => Value::Float(r_number_51(r)?),
        4 => {
            let s = r_string_51(r)?;
            Value::Str(heap.intern(s))
        }
        t => return Err(format!("bad PUC 5.1 constant tag {t}")),
    })
}

/// Decode + translate one proto (recursive for nested protos referenced
/// by `OP_CLOSURE`). `parent_env_idx` is the index of `_ENV` in the
/// parent proto's upvalue list, used when a nested proto's `_ENV` is
/// synthesised from the parent's `_ENV` rather than the host globals.
fn r_proto(
    r: &mut Reader,
    heap: &mut Heap,
    parent_env_idx: Option<u8>,
) -> Result<Gc<Proto>, String> {
    // PUC 5.1 LoadFunction order:
    //   string source / int line_defined / int last_line_defined /
    //   byte nups / byte numparams / byte is_vararg / byte max_stack /
    //   code / constants / protos / lineinfo / locvars / upvalnames
    let source_raw = r_string_51(r)?;
    let source = heap.intern(source_raw);
    let line_defined = r_int_51(r)?.max(0) as u32;
    let last_line_defined = r_int_51(r)?.max(0) as u32;
    let nups = r.u8()? as usize;
    let num_params = r.u8()?;
    // 5.1 is_vararg byte: bit 0 HASARG, bit 1 ISVARARG, bit 2 NEEDSARG.
    let vararg_byte = r.u8()?;
    let is_vararg = (vararg_byte & 0x02) != 0;
    let has_compat_vararg_arg = (vararg_byte & 0x04) != 0; // punt-B: decoded but not honoured at runtime yet
    let max_stack = r.u8()?;

    // --- code ---
    let n_code = r_int_51(r)?.max(0) as usize;
    let mut raw_code = Vec::with_capacity(n_code);
    for _ in 0..n_code {
        raw_code.push(decode_inst_51(r.u32()?));
    }

    // --- constants ---
    let n_consts = r_int_51(r)?.max(0) as usize;
    let mut consts: Vec<Value> = Vec::with_capacity(n_consts);
    for _ in 0..n_consts {
        consts.push(r_const_51(r, heap)?);
    }

    // --- nested protos (recurse) ---
    // Note: we recurse BEFORE translating the parent code because the
    // CLOSURE pseudo-instruction strip needs to consume nups-of-child
    // pseudo-instructions per nested proto; we'll compute the upvalue
    // descriptors from the parent's pseudo-instructions then attach
    // them to the nested protos in a second pass.
    let n_protos = r_int_51(r)?.max(0) as usize;
    // We need to know each child's nups (= len(child.upvals)) *before* the
    // strip pass — but at PUC 5.1 dump time the child's upvalue list isn't
    // stored as a `nups` count up front; it's implicit from the parent's
    // pseudo-instructions. Each nested proto carries its *own* nups byte
    // (already decoded above as the recursive call's `nups`), which equals
    // the number of pseudo-instructions following its OP_CLOSURE in the
    // parent's code. So: recurse first, capture each child's `nups`, then
    // strip that many pseudo-instructions out of `raw_code` after each
    // OP_CLOSURE.
    //
    // We still need parent_env_idx for nested protos that synthesise their
    // own `_ENV` from ours — but at this point we don't *yet* know whether
    // *this* proto will synthesise `_ENV` (depends on whether it touches
    // globals). Two-pass: do a global-scan first.
    let needs_env = raw_code
        .iter()
        .any(|i| matches!(i.op, OP_GETGLOBAL | OP_SETGLOBAL));
    // Even when this proto doesn't touch globals itself, we still synth
    // `_ENV` if ANY descendant needs it — but determining that requires
    // recursing first. Simpler: synth `_ENV` unconditionally for the main
    // chunk (parent_env_idx.is_none()) and on-demand for nested protos.
    // For now: synth `_ENV` iff this proto needs it OR it's the main chunk.
    // (Nested protos that don't touch globals get the cheaper layout.)
    let synth_env = needs_env || parent_env_idx.is_none();

    // Synthesised `_ENV` lands at index 0 of upvals; the original PUC 5.1
    // upvalues (named via the upvalnames section at the tail of the proto)
    // get shifted +1. We pre-allocate the slot and patch the `index` on
    // GetUpval / SetUpval translations accordingly.
    let env_shift: u8 = if synth_env { 1 } else { 0 };
    let mut upvals: Vec<UpvalDesc> = Vec::with_capacity(nups + env_shift as usize);
    if synth_env {
        // For the main chunk, `Vm::load`'s wrap-in-closure path fills upval
        // 0 with the host globals table (matching how it does this for
        // luna's own dumps when env_upval_idx==0). For nested protos, we
        // capture from the parent's `_ENV` slot.
        let (in_stack, index) = match parent_env_idx {
            None => (false, 0),            // main chunk — Vm::load supplies globals
            Some(p_env) => (false, p_env), // nested — chain from parent's _ENV
        };
        upvals.push(UpvalDesc {
            in_stack,
            index,
            name: "_ENV".to_string().into_boxed_str(),
            read_only: false,
        });
    }
    // The original PUC upvalue rows arrive later in the chunk (after
    // protos + lineinfo + locvars). We reserve their slots now and fill in
    // names / descriptors as we encounter the per-CLOSURE pseudo-
    // instructions in the parent's code below.
    for _ in 0..nups {
        upvals.push(UpvalDesc {
            in_stack: false,
            index: 0,
            name: "".to_string().into_boxed_str(),
            read_only: false,
        });
    }

    // Recurse into nested protos. The parent_env_idx we pass equals our
    // own `_ENV` slot (0) iff we synthesised one; else None (meaning
    // nested children that touch globals would need to synth one of their
    // own — but they'd have no way to reach our globals; this is the rare
    // "function never sees globals AND no descendant does" case, fine).
    let our_env_idx_for_children: Option<u8> = if synth_env { Some(0) } else { parent_env_idx };
    let mut protos: Vec<Gc<Proto>> = Vec::with_capacity(n_protos);
    // child_nups[i] = number of pseudo-instructions following OP_CLOSURE
    // for the i-th nested proto. Used by the strip pass below.
    let mut child_nups: Vec<usize> = Vec::with_capacity(n_protos);
    for _ in 0..n_protos {
        // Each nested proto's nups byte is the 4th byte of its header, so
        // r_proto recursion will consume it. We capture it via the
        // returned Proto's upvals length (after `_ENV` synth that's
        // `len(upvals) - env_shift_of_child`, but the child's strip-time
        // pseudo-instruction count == its *PUC* nups, not its luna upvals
        // count). To recover the original PUC nups: store it in a Cell.
        // Simplest workaround: re-peek the nups byte before recursing.
        // (PUC 5.1 nups byte is at offset: after source string + 8 bytes
        // of line_defined/last_line_defined.) We don't want to manually
        // re-parse — instead, defer: after recursion, ask the child for
        // the *original* nups via a translator-internal sidechannel.
        //
        // Pragmatic solution: temporarily store the PUC nups in the
        // child's `max_stack` upper-bits? No — that breaks `max_stack`.
        // Instead, recurse and have r_proto return `(Gc<Proto>, puc_nups)`.
        let (child, puc_nups) = r_proto_with_puc_nups(r, heap, our_env_idx_for_children)?;
        protos.push(child);
        child_nups.push(puc_nups);
    }

    // --- lineinfo ---
    let n_lines = r_int_51(r)?.max(0) as usize;
    let mut raw_lines: Vec<u32> = Vec::with_capacity(n_lines);
    for _ in 0..n_lines {
        raw_lines.push(r_int_51(r)?.max(0) as u32);
    }

    // --- locvars ---
    let n_loc = r_int_51(r)?.max(0) as usize;
    let mut locvars: Vec<LocVar> = Vec::with_capacity(n_loc);
    for _ in 0..n_loc {
        let name = String::from_utf8_lossy(r_string_51(r)?)
            .into_owned()
            .into_boxed_str();
        let start_pc = r_int_51(r)?.max(0) as u32;
        let end_pc = r_int_51(r)?.max(0) as u32;
        locvars.push(LocVar {
            name,
            // PUC 5.1 LocVar doesn't carry a register — luna defaults to 0
            // here (debug-only field; locvar registers can be reconstructed
            // post-hoc from the source position but it's outside this
            // translator's scope).
            reg: 0,
            start_pc,
            end_pc,
        });
    }

    // --- upvalue names (5.1 stores names separately, in declaration order
    //     matching the indices used by GETUPVAL/SETUPVAL).
    let n_upnames = r_int_51(r)?.max(0) as usize;
    if n_upnames != nups && n_upnames != 0 {
        return Err(format!(
            "PUC 5.1 upvalue-name count {n_upnames} ≠ nups {nups}"
        ));
    }
    for i in 0..n_upnames {
        let name = String::from_utf8_lossy(r_string_51(r)?)
            .into_owned()
            .into_boxed_str();
        // upvals[env_shift + i] is the original PUC upvalue slot i.
        upvals[env_shift as usize + i].name = name;
    }

    // --- translate code + strip CLOSURE pseudo-instructions ---
    let translated = translate_code(
        &raw_code,
        &raw_lines,
        &child_nups,
        env_shift,
        &mut upvals,
        &protos,
        consts.len(),
    )?;
    // Bump max_stack for any temp registers the lowering helpers claimed
    // (RK-on-B arith, EQ/LT/LE RK lowering). PUC's max_stack reflects only
    // the PUC register allocator's view; the lowering temps live above
    // that, so we widen the frame to keep them addressable.
    let max_stack = max_stack.saturating_add(translated.max_temp_bump);

    let env_upval_idx = upvals
        .iter()
        .position(|u| &*u.name == "_ENV")
        .map_or(u8::MAX, |i| i as u8);

    Ok(heap.adopt_proto(Proto {
        hdr: GcHeader::new(ObjTag::Proto),
        code: translated.code.into_boxed_slice(),
        consts: consts.into_boxed_slice(),
        protos: protos.into_boxed_slice(),
        upvals: upvals.into_boxed_slice(),
        num_params,
        is_vararg,
        has_vararg_table_pseudo: false,
        has_compat_vararg_arg,
        max_stack,
        lines: translated.lines.into_boxed_slice(),
        source,
        line_defined,
        last_line_defined,
        locvars: locvars.into_boxed_slice(),
        cache: std::cell::Cell::new(None),
        jit: std::cell::Cell::new(crate::runtime::function::JitProtoState::Untried),
        env_upval_idx,
        trace_hot_count: std::cell::Cell::new(0),
        call_hot_count: std::cell::Cell::new(0),
        trace_discard_count: std::cell::Cell::new(0),
        trace_gave_up: std::cell::Cell::new(false),
        traces: crate::jit::send_compat::TRefLock::new(Vec::new()),
    }))
}

/// Recurse into a nested proto AND return its PUC-5.1 nups (the strip
/// pass needs this to know how many pseudo-instructions follow the
/// parent's `OP_CLOSURE` for this child). r_proto can't return it on its
/// own because the field gets folded into `upvals.len()` post-translation.
fn r_proto_with_puc_nups(
    r: &mut Reader,
    heap: &mut Heap,
    parent_env_idx: Option<u8>,
) -> Result<(Gc<Proto>, usize), String> {
    // Snapshot the reader position so we can peek the nups byte; then
    // rewind by calling r_proto from the original position. Reader has
    // no rewind API, so instead: parse the leading source string, the two
    // line ints, then the nups byte, BUT we still need to fully decode
    // the proto. Simpler: peek without consuming.
    //
    // Strategy: parse the source-string length to skip it, then the two
    // ints, peek the nups byte, then rewind by re-creating a Reader at
    // the saved position. Reader exposes `.pos()` + `Reader::at`, so the
    // rewind works.
    let saved = r.pos();
    // peek source length
    let _src = r_string_51(r)?;
    let _ld = r_int_51(r)?;
    let _lld = r_int_51(r)?;
    let nups = r.u8()? as usize;
    // We've inspected past `nups`. Rewind to `saved` and let r_proto
    // re-parse properly.
    let rewind_bytes = r.peek_underlying_slice();
    let mut rewound = Reader::at(rewind_bytes, saved);
    let proto = r_proto(&mut rewound, heap, parent_env_idx)?;
    // Advance the outer reader to the new position the rewound reader
    // landed on.
    let new_pos = rewound.pos();
    // forward `r` by reading (and discarding) the bytes we just covered
    r.skip_to(new_pos)?;
    Ok((proto, nups))
}

/// Bundle of translator outputs returned by `translate_code`.
///
/// `puc_to_luna_pc[puc_pc]` records the **first** emitted luna pc for that
/// PUC pc, or `None` if the PUC pc was dropped (stripped CLOSURE pseudo-
/// instruction, or a SETLIST C=0 data-payload word). `luna_to_puc_pc` is
/// the reverse mapping, recorded once per emitted luna op so multi-emit
/// translations (lower_k_via_tmp arith / EQ-LT-LE RK lowering) share the
/// originating PUC pc for line lookups.
///
/// `max_temp_bump` reports the worst-case temp register the lowering
/// helpers claimed beyond PUC's `max_stack`; the caller widens the frame
/// by this amount.
struct Translated {
    code: Vec<Inst>,
    lines: Vec<u32>,
    /// Reverse jump-target map (PUC pc → first luna pc), used by the
    /// deferred jump-fixup pass. Slot `i` is `None` when the PUC pc is a
    /// stripped pseudo-instruction or a data payload (jumps targeting
    /// such a pc are rejected at fixup time).
    #[allow(dead_code)] // populated for parity with puc_54.rs; future
    // dialect-shared callers (re-export of line-table inspection) may use
    // it. Kept here so the model matches puc_54's `Translated` shape.
    puc_to_luna_pc: Vec<Option<u32>>,
    /// Worst-case extra registers the lowering helpers reserved beyond
    /// PUC's `max_stack`. Caller widens the frame by this amount.
    max_temp_bump: u8,
}

/// Translate the PUC 5.1 instruction stream into luna's opcode set,
/// stripping `OP_CLOSURE` pseudo-instructions and patching jump targets
/// accordingly.
///
/// Single-pass emit-driven model (refactored from the original 2-pass
/// design to support multi-emit lowering helpers — `lower_k_via_tmp` for
/// arith RK-on-B, EQ/LT/LE RK):
///
/// - Walk `raw_code` once. For each PUC op record `puc_to_luna_pc[puc_pc]
///   = Some(out.len())` at the first emit (or `None` for stripped
///   pseudo-instructions / SETLIST C=0 payload words).
/// - Stash jump fixups as `(luna_pc_of_jump, puc_target_pc, JumpKind)`
///   tuples — we can't compute the delta inline because later expansions
///   may shift the target's luna pc.
/// - After the walk, resolve every fixup via `puc_to_luna_pc` and patch
///   in place.
fn translate_code(
    raw_code: &[Pre51Inst],
    raw_lines: &[u32],
    child_nups: &[usize],
    env_shift: u8,
    upvals: &mut [UpvalDesc],
    protos: &[Gc<Proto>],
    n_consts: usize,
) -> Result<Translated, String> {
    let mut out: Vec<Inst> = Vec::with_capacity(raw_code.len());
    let mut out_lines: Vec<u32> = Vec::with_capacity(raw_code.len());
    let mut puc_to_luna_pc: Vec<Option<u32>> = vec![None; raw_code.len()];
    let mut jump_fixups: Vec<(usize, i64, JumpKind)> = Vec::new();
    let mut max_temp_bump: u8 = 0;
    let mut closure_idx2 = 0usize;
    let mut i = 0usize;
    while i < raw_code.len() {
        let inst = raw_code[i];
        let line = raw_lines.get(i).copied().unwrap_or(0);
        let pre_emit_len = out.len();

        // Helper: translate an upvalue index from PUC 5.1's
        // (0..nups) numbering to luna's (env_shift..env_shift+nups).
        let up = |raw_idx: u32| -> Result<u32, String> {
            let shifted = raw_idx + env_shift as u32;
            if shifted > 0xFF {
                return Err(format!("upvalue index {shifted} > 255 after _ENV synth"));
            }
            Ok(shifted)
        };

        // Helper: translate an RK encoding (top bit of 9-bit field set =
        // const-pool index in low 8 bits; clear = register). Returns
        // `(value, is_k)` where `value` is the actual reg or const index
        // fitting in luna's 8-bit field.
        let rk = |raw_field: u32| -> Result<(u32, bool), String> {
            if raw_field & PRE51_BITRK != 0 {
                let k_idx = raw_field & 0xFF;
                if k_idx as usize >= n_consts {
                    return Err(format!("RK const index {k_idx} out of range"));
                }
                Ok((k_idx, true))
            } else {
                if raw_field > 0xFF {
                    return Err(format!("register index {raw_field} > 255"));
                }
                Ok((raw_field, false))
            }
        };

        match inst.op {
            OP_MOVE => {
                out.push(Inst::iabc(Op::Move, inst.a, inst.b, 0, false));
            }
            OP_LOADK => {
                if inst.bx > crate::vm::isa::MAX_BX {
                    return Err(format!("LOADK Bx {} exceeds luna MAX_BX", inst.bx));
                }
                out.push(Inst::iabx(Op::LoadK, inst.a, inst.bx));
            }
            OP_LOADBOOL => {
                // 5.1: `R(A) := bool(B); if (C) pc++`. Four combinations:
                //   B=0 C=0 → LoadFalse A
                //   B=0 C=1 → LFalseSkip A           (single luna op)
                //   B=1 C=0 → LoadTrue A
                //   B=1 C=1 → LoadTrue A; Jmp +1     (luna has no LTrueSkip;
                //             a Jmp with sj=1 advances pc past one inst,
                //             matching PUC's `pc++` post-LOADBOOL effect)
                //
                // For the 2-emit case the deferred-fixup pass picks up the
                // first-emitted pc via the bookkeeping after the match (see
                // `puc_to_luna_pc[i] = Some(pre_emit_len)` below). The next
                // PUC pc (the skipped instruction) maps to luna pc
                // `pre_emit_len + 2`, which is also where our `Jmp +1` lands
                // pc to after the dispatch loop's pc++ — i.e. any external
                // jump aimed at PUC pc+1 falls naturally on the right spot.
                match (inst.b != 0, inst.c != 0) {
                    (false, false) => {
                        out.push(Inst::iabc(Op::LoadFalse, inst.a, 0, 0, false));
                    }
                    (false, true) => {
                        out.push(Inst::iabc(Op::LFalseSkip, inst.a, 0, 0, false));
                    }
                    (true, false) => {
                        out.push(Inst::iabc(Op::LoadTrue, inst.a, 0, 0, false));
                    }
                    (true, true) => {
                        out.push(Inst::iabc(Op::LoadTrue, inst.a, 0, 0, false));
                        out.push(Inst::isj(Op::Jmp, 1));
                    }
                }
            }
            OP_LOADNIL => {
                // 5.1 semantics: R(A..B) := nil  (inclusive range, B counts
                // registers from A *to* B, so the run length is B-A+1).
                // luna's LoadNil uses (A, B) where R(A..A+B) := nil so the
                // luna B = (5.1 B) - A.
                if inst.b < inst.a {
                    return Err(format!(
                        "LOADNIL A={} > B={} (illegal 5.1 range)",
                        inst.a, inst.b
                    ));
                }
                let count_minus_1 = inst.b - inst.a;
                out.push(Inst::iabc(Op::LoadNil, inst.a, count_minus_1, 0, false));
            }
            OP_GETUPVAL => {
                let b = up(inst.b)?;
                out.push(Inst::iabc(Op::GetUpval, inst.a, b, 0, false));
            }
            OP_SETUPVAL => {
                let b = up(inst.b)?;
                out.push(Inst::iabc(Op::SetUpval, inst.a, b, 0, false));
            }
            OP_GETGLOBAL => {
                // GETGLOBAL A Bx → GetTabUp(A, env_idx, Bx) with Bx as
                // const index. luna's GetTabUp packs C as 8 bits; if Bx
                // overflows we'd need an `ExtraArg` chain — not yet
                // supported.
                let env_idx = 0u32; // synth_env put it at slot 0
                if inst.bx > 0xFF {
                    return Err(format!(
                        "GETGLOBAL Bx {} > 255 (ExtraArg unsupported)",
                        inst.bx
                    ));
                }
                out.push(Inst::iabc(Op::GetTabUp, inst.a, env_idx, inst.bx, false));
            }
            OP_SETGLOBAL => {
                let env_idx = 0u32;
                if inst.bx > 0xFF {
                    return Err(format!(
                        "SETGLOBAL Bx {} > 255 (ExtraArg unsupported)",
                        inst.bx
                    ));
                }
                out.push(Inst::iabc(Op::SetTabUp, env_idx, inst.bx, inst.a, false));
            }
            OP_GETTABLE => {
                let (c_val, c_is_k) = rk(inst.c)?;
                let op = if c_is_k { Op::GetField } else { Op::GetTable };
                out.push(Inst::iabc(op, inst.a, inst.b, c_val, c_is_k));
            }
            OP_SETTABLE => {
                let (b_val, b_is_k) = rk(inst.b)?;
                let (c_val, c_is_k) = rk(inst.c)?;
                let op = if b_is_k { Op::SetField } else { Op::SetTable };
                out.push(Inst::iabc(op, inst.a, b_val, c_val, c_is_k));
            }
            OP_NEWTABLE => {
                // 5.1 packs the array + hash size hints as PUC
                // floating-bytes (`luaO_int2fb`: eeeeexxx where the value
                // is `(1xxx) << e` for e > 0, else just `xxx`).
                // `fb2int_saturating` reverses that and clamps to u8::MAX
                // so it fits luna's 8-bit B/C fields (mirrors puc_52's
                // `fb_to_hint_u8`). The luna VM's NewTable currently
                // ignores B/C entirely (see exec.rs Op::NewTable), so
                // even a saturated value is purely an advisory hint for
                // future hint-aware allocation; correctness is unaffected.
                let b = fb2int_saturating(inst.b);
                let c = fb2int_saturating(inst.c);
                out.push(Inst::iabc(Op::NewTable, inst.a, b, c, false));
            }
            OP_SELF => {
                let (c_val, c_is_k) = rk(inst.c)?;
                out.push(Inst::iabc(Op::SelfOp, inst.a, inst.b, c_val, c_is_k));
            }
            // arith / compare ops — straight RK re-encode, K-on-B lowered
            // via super::lower_k_via_tmp (PU Wave 2 punt-5 收回).
            OP_ADD => arith(&mut out, Op::Add, inst, &rk, &mut max_temp_bump)?,
            OP_SUB => arith(&mut out, Op::Sub, inst, &rk, &mut max_temp_bump)?,
            OP_MUL => arith(&mut out, Op::Mul, inst, &rk, &mut max_temp_bump)?,
            OP_DIV => arith(&mut out, Op::Div, inst, &rk, &mut max_temp_bump)?,
            OP_MOD => arith(&mut out, Op::Mod, inst, &rk, &mut max_temp_bump)?,
            OP_POW => arith(&mut out, Op::Pow, inst, &rk, &mut max_temp_bump)?,
            OP_UNM => {
                out.push(Inst::iabc(Op::Unm, inst.a, inst.b, 0, false));
            }
            OP_NOT => {
                out.push(Inst::iabc(Op::Not, inst.a, inst.b, 0, false));
            }
            OP_LEN => {
                out.push(Inst::iabc(Op::Len, inst.a, inst.b, 0, false));
            }
            OP_CONCAT => {
                // 5.1 CONCAT semantics: R(A) := R(B) .. R(B+1) .. ... .. R(C)
                // luna's Concat: R(A) := R(A) .. R(A+1) .. ... .. R(A+B-1)
                // Mismatch: 5.1 uses B,C inclusive; luna uses A and a count.
                // Translation: when B == A, count = C - A + 1 = C - B + 1.
                if inst.b != inst.a {
                    return Err(format!(
                        "OP_CONCAT B={} ≠ A={} (5.1→luna concat requires B==A)",
                        inst.b, inst.a
                    ));
                }
                if inst.c < inst.b {
                    return Err(format!("OP_CONCAT C={} < B={} (illegal)", inst.c, inst.b));
                }
                let count = inst.c - inst.b + 1;
                out.push(Inst::iabc(Op::Concat, inst.a, count, 0, false));
            }
            OP_JMP => {
                let target_old = (i as i64) + 1 + inst.sbx as i64;
                jump_fixups.push((out.len(), target_old, JumpKind::Jmp));
                // Placeholder sJ=0; patched in the post-walk fixup pass.
                out.push(Inst::isj(Op::Jmp, 0));
            }
            OP_EQ => compare(&mut out, Op::Eq, inst, &rk, i, &mut max_temp_bump)?,
            OP_LT => compare(&mut out, Op::Lt, inst, &rk, i, &mut max_temp_bump)?,
            OP_LE => compare(&mut out, Op::Le, inst, &rk, i, &mut max_temp_bump)?,
            OP_TEST => {
                // 5.1 TEST A C: if not (R(A) <=> C) then pc++
                // luna Test A k:   if (not R(A)) == k then pc++
                // Equivalent when k = !C ⇒ luna_k = (C == 0).
                let k = inst.c == 0;
                out.push(Inst::iabc(Op::Test, inst.a, 0, 0, k));
            }
            OP_TESTSET => {
                let k = inst.c == 0;
                out.push(Inst::iabc(Op::TestSet, inst.a, inst.b, 0, k));
            }
            OP_CALL => {
                out.push(Inst::iabc(Op::Call, inst.a, inst.b, inst.c, false));
            }
            OP_TAILCALL => {
                out.push(Inst::iabc(Op::TailCall, inst.a, inst.b, inst.c, false));
            }
            OP_RETURN => {
                out.push(Inst::iabc(Op::Return, inst.a, inst.b, 0, false));
            }
            OP_FORLOOP => {
                let target_old = (i as i64) + 1 + inst.sbx as i64;
                jump_fixups.push((out.len(), target_old, JumpKind::ForLoop(inst.a)));
                out.push(Inst::iasbx(Op::ForLoop, inst.a, 0));
            }
            OP_FORPREP => {
                let target_old = (i as i64) + 1 + inst.sbx as i64;
                jump_fixups.push((out.len(), target_old, JumpKind::ForPrep(inst.a)));
                out.push(Inst::iasbx(Op::ForPrep, inst.a, 0));
            }
            OP_TFORLOOP => {
                // PUC 5.1 layout for `for k,v in expr do ... end`:
                //   pc P  : TFORLOOP A C  (call iter; if R(A+3)==nil pc++)
                //   pc P+1: JMP sBx       (back to body_top; sBx < 0)
                // luna's split has no TFORPREP for the 5.1 path (5.1 has no
                // to-be-closed; the pre-loop forward JMP already lands on
                // TFORLOOP). At PUC pc P we emit `TForCall A 0 C`; at PUC pc
                // P+1 we *replace* the JMP with `TForLoop A back`, where
                // back = (luna pc of TForLoop) + 1 - (luna pc of body_top).
                // The JMP's sBx tells us body_top = P+2+sBx. The fixup pass
                // resolves the target through `puc_to_luna_pc` so any
                // lowering between body_top and here that bumps the luna pc
                // count is accounted for.
                if inst.c > 0xFF {
                    return Err(format!("OP_TFORLOOP C={} > 255", inst.c));
                }
                if i + 1 >= raw_code.len() {
                    return Err("OP_TFORLOOP at end of code (missing trailing JMP)".into());
                }
                let jmp = raw_code[i + 1];
                if jmp.op != OP_JMP {
                    return Err(format!(
                        "OP_TFORLOOP at pc {i} not followed by JMP (got op {})",
                        jmp.op
                    ));
                }
                let target_old = (i as i64) + 2 + jmp.sbx as i64;
                // Emit TForCall at PUC's TFORLOOP pc.
                out.push(Inst::iabc(Op::TForCall, inst.a, 0, inst.c, false));
                puc_to_luna_pc[i] = Some(pre_emit_len as u32);
                out_lines.push(line);
                // Emit TForLoop placeholder at PUC's JMP pc; back distance
                // patched by the fixup pass once every other lowering has
                // settled the luna pcs.
                let tforloop_luna_pc = out.len();
                let jmp_line = raw_lines.get(i + 1).copied().unwrap_or(line);
                out.push(Inst::iabx(Op::TForLoop, inst.a, 0));
                out_lines.push(jmp_line);
                puc_to_luna_pc[i + 1] = Some(tforloop_luna_pc as u32);
                jump_fixups.push((tforloop_luna_pc, target_old, JumpKind::TForLoop(inst.a)));
                // Consume the trailing JMP (already lowered into TForLoop).
                i += 2;
                continue;
            }
            OP_SETLIST => {
                // 5.1 SETLIST A B C: R(A)[(C-1)*FPF + i] := R(A+i) for i in 1..B.
                // If C == 0, the next raw u32 in the code stream is a
                // literal int with the block index (not a decoded
                // instruction — it's a pure data word). luna's SetList
                // uses the same trick via the k bit + a trailing
                // ExtraArg whose Ax field holds the C value. Mirror the
                // puc_52.rs / puc_54.rs handling here.
                if inst.c > 0xFF {
                    return Err(format!("OP_SETLIST C={} > 255", inst.c));
                }
                if inst.c == 0 {
                    // Consume the next raw u32 as the C payload. The
                    // decoded `Pre51Inst` for that slot is meaningless
                    // (it's not an opcode); we need the raw bits which
                    // PUC stores as a plain `int` (4 LE bytes). Recover
                    // them by re-packing the Pre51Inst fields in the
                    // 5.1 layout — but since decode_inst_51 lost no
                    // information (it just split fields), the simpler
                    // path is to look at the raw payload index via the
                    // `bx` reconstruction: PUC stores the C-payload as
                    // `(c << 14) | (b << 23) | ...` BUT for the data
                    // word it's just a plain u32 literal. The
                    // Pre51Inst's `bx` field holds the high 18 bits
                    // already; combined with op (low 6) + a (next 8) we
                    // can rebuild the original u32 if we need to. The
                    // cleanest path matches puc_52.rs / puc_54.rs:
                    // reconstruct the raw 32-bit value from the Pre51
                    // fields.
                    if i + 1 >= raw_code.len() {
                        return Err("OP_SETLIST C=0 at end of code (missing C payload)".into());
                    }
                    let payload_inst = raw_code[i + 1];
                    let payload = reconstruct_raw_u32(payload_inst);
                    if payload > crate::vm::isa::MAX_AX {
                        return Err(format!("OP_SETLIST payload {payload} > luna MAX_AX"));
                    }
                    out.push(Inst::iabc(Op::SetList, inst.a, inst.b, 0, true));
                    out.push(Inst::iax(Op::ExtraArg, payload));
                    // Record the SETLIST pc → luna pc map BEFORE we
                    // advance past the payload (so the post-match
                    // bookkeeping at `i` (now payload pc) doesn't
                    // clobber it). Then mark the payload's puc_pc as
                    // None and skip it.
                    puc_to_luna_pc[i] = Some(pre_emit_len as u32);
                    out_lines.push(line);
                    out_lines.push(line);
                    puc_to_luna_pc[i + 1] = None;
                    // Skip the payload on the next iteration.
                    i += 2;
                    continue;
                } else {
                    out.push(Inst::iabc(Op::SetList, inst.a, inst.b, inst.c, false));
                }
            }
            OP_CLOSE => {
                out.push(Inst::iabc(Op::Close, inst.a, 0, 0, false));
            }
            OP_CLOSURE => {
                if inst.bx as usize >= protos.len() {
                    return Err(format!(
                        "OP_CLOSURE proto index {} out of range (have {})",
                        inst.bx,
                        protos.len()
                    ));
                }
                // The corresponding pseudo-instructions follow at i+1..i+1+nups.
                if closure_idx2 >= child_nups.len() {
                    return Err("CLOSURE/pseudo count mismatch (pass 2)".into());
                }
                let n = child_nups[closure_idx2];
                closure_idx2 += 1;
                // Convert each pseudo-instruction into the nested proto's
                // upvalue descriptor. The nested proto's upval list is
                // mutated in place via its `Gc<Proto>` (NonNull<Proto>);
                // SAFETY: we just constructed the Proto and hold the only
                // reference path so it's exclusive.
                let child = protos[inst.bx as usize];
                // SAFETY: see above; alternatively, this could be done
                // before adopting the proto into the heap, but recursion
                // ordering makes that awkward. The Proto is single-threaded
                // and not yet observable to the GC root scanner during
                // load.
                let child_upvals = unsafe { &mut child.as_ptr().as_mut().unwrap().upvals };
                // Skip the synthesised _ENV slot (always at index 0 if
                // the child synthesised one) when filling pseudo-derived
                // descriptors. We detect this via name == "_ENV" at slot 0.
                let child_env_shift: u8 =
                    if !child_upvals.is_empty() && &*child_upvals[0].name == "_ENV" {
                        1
                    } else {
                        0
                    };
                if child_upvals.len() < child_env_shift as usize + n {
                    return Err(format!(
                        "child upval slots {} < env_shift {} + pseudo {}",
                        child_upvals.len(),
                        child_env_shift,
                        n
                    ));
                }
                for j in 0..n {
                    let pseudo = raw_code[i + 1 + j];
                    let (in_stack, src_idx) = match pseudo.op {
                        OP_MOVE => (true, pseudo.b),
                        OP_GETUPVAL => {
                            // Reference into the PARENT's upvalue list;
                            // since the parent shifted everything by
                            // env_shift, shift the index too.
                            (false, pseudo.b + env_shift as u32)
                        }
                        other => {
                            return Err(format!(
                                "OP_CLOSURE pseudo-instruction must be MOVE/GETUPVAL, got op {other}"
                            ));
                        }
                    };
                    if src_idx > 0xFF {
                        return Err(format!("pseudo upval index {src_idx} > 255"));
                    }
                    let slot = child_env_shift as usize + j;
                    // Preserve the name if upvalnames already populated it
                    // (the recursion order: we recursed into the child
                    // BEFORE this loop runs, so r_proto already filled
                    // upvalue names from the upvalnames section).
                    let existing_name = std::mem::take(&mut child_upvals[slot].name);
                    child_upvals[slot] = UpvalDesc {
                        in_stack,
                        index: src_idx as u8,
                        name: existing_name,
                        read_only: false,
                    };
                }
                // Recompute child.env_upval_idx now that descriptors are
                // final (only matters if the child synthesised an _ENV —
                // index 0 — which is already what env_upval_idx was set
                // to in r_proto).
                out.push(Inst::iabx(Op::Closure, inst.a, inst.bx));
                // Mark each pseudo-instruction's puc_pc as None (no luna
                // pc) so jumps targeting them are caught by the fixup
                // pass. The PUC compiler never emits such jumps, but the
                // check keeps a malformed chunk from constructing a bogus
                // Proto.
                for j in 1..=n {
                    puc_to_luna_pc[i + j] = None;
                }
                // Skip the pseudo-instructions.
                i += n;
            }
            OP_VARARG => {
                out.push(Inst::iabc(Op::Vararg, inst.a, inst.b, 0, false));
            }
            other => {
                return Err(format!("unsupported PUC 5.1 op {other}"));
            }
        }
        // Per-PUC-pc bookkeeping. If the match arm emitted ≥1 luna insts,
        // record the first emitted pc as the puc_pc's target (for jump
        // fixup). Push `line` for each emitted op (multi-emit lowering
        // helpers — lower_k_via_tmp / compare RK lowering — duplicate the
        // source line across their pair).
        if out.len() > pre_emit_len {
            puc_to_luna_pc[i] = Some(pre_emit_len as u32);
            for _ in pre_emit_len..out.len() {
                out_lines.push(line);
            }
        }
        i += 1;
    }
    debug_assert_eq!(
        out.len(),
        out_lines.len(),
        "line count must match emit count"
    );

    // Resolve jump fixups now that we know every puc_pc's luna pc.
    let end_of_code = out.len();
    for (luna_pc, target_old, kind) in jump_fixups {
        let target_new = resolve_jump_target(&puc_to_luna_pc, target_old, end_of_code)?;
        let delta = target_new - (luna_pc as i64 + 1);
        match kind {
            JumpKind::Jmp => {
                if !(-crate::vm::isa::MAX_SJ as i64..=crate::vm::isa::MAX_SJ as i64)
                    .contains(&delta)
                {
                    return Err(format!("JMP delta {delta} exceeds luna sJ range"));
                }
                out[luna_pc] = Inst::isj(Op::Jmp, delta as i32);
            }
            JumpKind::ForLoop(a) => {
                if !((-crate::vm::isa::MAX_SBX as i64)..=(crate::vm::isa::MAX_SBX as i64))
                    .contains(&delta)
                {
                    return Err(format!("FORLOOP delta {delta} exceeds luna sBx range"));
                }
                out[luna_pc] = Inst::iasbx(Op::ForLoop, a, delta as i32);
            }
            JumpKind::ForPrep(a) => {
                if !((-crate::vm::isa::MAX_SBX as i64)..=(crate::vm::isa::MAX_SBX as i64))
                    .contains(&delta)
                {
                    return Err(format!("FORPREP delta {delta} exceeds luna sBx range"));
                }
                out[luna_pc] = Inst::iasbx(Op::ForPrep, a, delta as i32);
            }
            JumpKind::TForLoop(a) => {
                // luna `Op::TForLoop A Bx` back-jumps by `Bx` instructions
                // *after* pc has been bumped past the TForLoop. With the
                // standard fixup delta = `target_new - (luna_pc + 1)`
                // (negative for a back-jump), the back-distance is `-delta`.
                if delta > 0 {
                    return Err(format!(
                        "TFORLOOP forward delta {delta} (expected backward jump)"
                    ));
                }
                let back = -delta;
                if back < 0 || (back as u32) > crate::vm::isa::MAX_BX {
                    return Err(format!(
                        "TFORLOOP back-distance {back} exceeds luna Bx range"
                    ));
                }
                out[luna_pc] = Inst::iabx(Op::TForLoop, a, back as u32);
            }
        }
    }
    // Suppress unused warning.
    let _ = upvals;
    Ok(Translated {
        code: out,
        lines: out_lines,
        puc_to_luna_pc,
        max_temp_bump,
    })
}

/// PUC 5.1 → luna jump kinds. We can't patch deltas inline because later
/// arith / compare lowering may insert ops between the jump source and
/// its target; the post-walk fixup pass needs to know which encoding to
/// emit (sJ for JMP, sBx for FORLOOP / FORPREP).
#[derive(Clone, Copy, Debug)]
enum JumpKind {
    Jmp,
    /// A field carried through from the PUC ForLoop opcode.
    ForLoop(u32),
    /// A field carried through from the PUC ForPrep opcode.
    ForPrep(u32),
    /// A field carried through from the PUC TFORLOOP opcode (= iter_base
    /// for luna's `Op::TForLoop`). The fixup target is the body-top PUC pc
    /// (derived from the *following* JMP's sBx), and the encoded Bx is the
    /// positive back-distance after PC-remap.
    TForLoop(u32),
}

fn arith<F>(
    out: &mut Vec<Inst>,
    op: Op,
    inst: Pre51Inst,
    rk: &F,
    max_temp_bump: &mut u8,
) -> Result<(), String>
where
    F: Fn(u32) -> Result<(u32, bool), String>,
{
    // 5.1 arithmetic: A B C with RK on B and C. luna's Add/Sub/...
    // packs as `R[A] := R[B] + R[C]/K[C]` (k flag on C only — the B
    // side is always a register in luna's binop format). When PUC has K
    // on B side, route through super::lower_k_via_tmp which materializes
    // the constant into a tmp register first (`LoadK tmp k_idx; op A
    // tmp C`). The tmp lives above PUC's max_stack — the caller bumps
    // the frame via max_temp_bump.
    let (b_val, b_is_k) = rk(inst.b)?;
    let (c_val, c_is_k) = rk(inst.c)?;
    if b_is_k {
        // tmp = max(a, c) + 1, matching puc_54's I-imm lowering policy
        // (must not clobber A or C).
        let tmp = inst.a.max(c_val) + 1;
        let pair = super::lower_k_via_tmp(op, inst.a, b_val, c_val, c_is_k, tmp, max_temp_bump)?;
        out.extend_from_slice(&pair);
    } else {
        out.push(Inst::iabc(op, inst.a, b_val, c_val, c_is_k));
    }
    Ok(())
}

fn compare<F>(
    out: &mut Vec<Inst>,
    op: Op,
    inst: Pre51Inst,
    rk: &F,
    _src_pc: usize,
    max_temp_bump: &mut u8,
) -> Result<(), String>
where
    F: Fn(u32) -> Result<(u32, bool), String>,
{
    // 5.1 EQ A B C: if (RK(B) == RK(C)) ~= A then pc++
    // luna Eq A B k: same skip semantics with A=lhs reg, B=rhs reg, k=cond.
    // The 5.1 A is purely a 0/1 flag (cond). luna's Eq uses k as the flag.
    let (b_val, b_is_k) = rk(inst.b)?;
    let (c_val, c_is_k) = rk(inst.c)?;
    // luna's Eq encoding: A is lhs reg, B is rhs reg, `k` flag = expected
    // truthiness (skip when result != k). luna has no RK form on either
    // operand for the comparison ops, so any K-pool operand must be
    // materialised into a tmp register first (LoadK tmp k_idx ; op
    // <tmp_or_reg> <tmp_or_reg> 0 k). PU Wave 2 punt-6 收回.
    let k_flag = inst.a != 0;
    let needs_tmp_b = b_is_k;
    let needs_tmp_c = c_is_k;
    // Allocate tmps above the highest live register. When both operands
    // are K we need two tmps (`tmp_b = base`, `tmp_c = base + 1`); when
    // only one is K we need a single tmp at `base`.
    if needs_tmp_b && needs_tmp_c {
        let base = b_val.max(c_val) + 1; // both b_val/c_val are k-indices, but
        // we still need _some_ upper bound to anchor the tmp position.
        // Picking max(b,c)+1 is safe — PUC's k-indices never overlap the
        // register file (RK encoding's top bit splits them), but the tmp
        // slot itself must be above max_stack; max_temp_bump handles
        // that. To stay strictly above any register read by the op
        // we anchor at PUC's k-pool index space (which is always
        // ≥ 0). The actual frame widening lives in max_temp_bump so the
        // anchor just needs to be deterministic.
        let _ = base;
        // Anchor at 0 + bump: load both Ks into the lowest tmps the
        // helper allocates. The lowering helper bumps max_temp_bump for
        // us. To avoid stepping on each other we pick tmp_b = 0 and
        // tmp_c = 1 conceptually, then offset by the current bump so
        // each lowering instance gets fresh slots. Simpler: claim two
        // slots at the top of the running bump.
        let tmp_b = (*max_temp_bump) as u32;
        let tmp_c = tmp_b + 1;
        if tmp_c > 0xFF {
            return Err(format!(
                "5.1 compare RK lowering: tmp register {tmp_c} exceeds 255"
            ));
        }
        out.push(Inst::iabx(Op::LoadK, tmp_b, b_val));
        out.push(Inst::iabx(Op::LoadK, tmp_c, c_val));
        *max_temp_bump = (*max_temp_bump).max(tmp_c as u8 + 1);
        out.push(Inst::iabc(op, tmp_b, tmp_c, 0, k_flag));
    } else if needs_tmp_b {
        let tmp = (*max_temp_bump) as u32;
        if tmp > 0xFF {
            return Err(format!(
                "5.1 compare RK lowering: tmp register {tmp} exceeds 255"
            ));
        }
        out.push(Inst::iabx(Op::LoadK, tmp, b_val));
        *max_temp_bump = (*max_temp_bump).max(tmp as u8 + 1);
        out.push(Inst::iabc(op, tmp, c_val, 0, k_flag));
    } else if needs_tmp_c {
        let tmp = (*max_temp_bump) as u32;
        if tmp > 0xFF {
            return Err(format!(
                "5.1 compare RK lowering: tmp register {tmp} exceeds 255"
            ));
        }
        out.push(Inst::iabx(Op::LoadK, tmp, c_val));
        *max_temp_bump = (*max_temp_bump).max(tmp as u8 + 1);
        out.push(Inst::iabc(op, b_val, tmp, 0, k_flag));
    } else {
        // 5.1 EQ: skip when (B==C) != A. luna Eq: skip when (R[A]==R[B]) != k.
        // Map: luna A := 5.1 B, luna B := 5.1 C, luna k := 5.1 A != 0.
        out.push(Inst::iabc(op, b_val, c_val, 0, k_flag));
    }
    Ok(())
}

/// Look up a translated PC, rejecting jumps that land on a stripped
/// pseudo-instruction (`None` sentinel) or out of range. The PUC compiler
/// never emits such jumps, but the check keeps a malformed chunk from
/// constructing a bogus Proto.
///
/// `end_of_code` is the luna pc one past the last emitted instruction
/// (used for the legal one-past-end jump that PUC emits at loop exits).
fn resolve_jump_target(
    puc_to_luna_pc: &[Option<u32>],
    target_old: i64,
    end_of_code: usize,
) -> Result<i64, String> {
    if target_old < 0 {
        return Err(format!("jump target {target_old} out of range"));
    }
    let t = target_old as usize;
    if t == puc_to_luna_pc.len() {
        // One-past-the-end is legal in PUC (loop exit). Map to the
        // synthetic end-of-code luna pc.
        return Ok(end_of_code as i64);
    }
    if t > puc_to_luna_pc.len() {
        return Err(format!("jump target {target_old} out of range"));
    }
    match puc_to_luna_pc[t] {
        Some(p) => Ok(p as i64),
        None => Err(format!(
            "jump target {target_old} lands on stripped pseudo-instruction"
        )),
    }
}

/// Reconstruct the original 32-bit PUC instruction word from a decoded
/// `Pre51Inst`. Used by the SETLIST C=0 path to recover the literal
/// integer payload stored in the next code-stream slot (PUC writes it as
/// a plain `int` cast to the instruction-word type).
fn reconstruct_raw_u32(p: Pre51Inst) -> u32 {
    // Layout: op:6 | a:8 | c:9 | b:9 (LE within u32). The decode
    // splits the high 18 bits into (c, b) via the same shift mask the
    // `bx` field uses, so we can rebuild via:
    //   op | (a << 6) | (c << 14) | (b << 23)
    (p.op as u32 & 0x3F) | ((p.a & 0xFF) << 6) | ((p.c & 0x1FF) << 14) | ((p.b & 0x1FF) << 23)
}

/// PUC `luaO_fb2int` — convert an 8-bit floating-byte (eeeeexxx where
/// the value is `(1xxx) << e` for `e > 0`, else just `xxx`) back into an
/// integer. Saturates to `u8::MAX` to fit luna's 8-bit hint field.
fn fb2int_saturating(fb: u32) -> u32 {
    let e = (fb >> 3) & 0x1F;
    let x = fb & 0x07;
    let v = if e == 0 { x } else { (x | 0x08) << (e - 1) };
    v.min(0xFF)
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn fb2int_basic() {
        assert_eq!(fb2int_saturating(0), 0);
        assert_eq!(fb2int_saturating(7), 7);
        assert_eq!(fb2int_saturating(8), 8); // e=1, x=0 → 0x08 << 0
        assert_eq!(fb2int_saturating(0b0000_1111), 15); // e=1, x=7 → 0xF << 0
    }

    #[test]
    fn fb2int_saturates_at_u8_max() {
        // e=4, x=0 → (0|8) << 3 = 64 — fits 8 bits.
        let fb = 4u32 << 3;
        assert_eq!(fb2int_saturating(fb), 64);
        // e=5, x=0 → (0|8) << 4 = 128 — still fits.
        let fb = 5u32 << 3;
        assert_eq!(fb2int_saturating(fb), 128);
        // e=5, x=7 → (7|8) << 4 = 240 — fits.
        let fb = (5u32 << 3) | 7;
        assert_eq!(fb2int_saturating(fb), 240);
        // e=6, x=0 → (0|8) << 5 = 256 — saturates to 255.
        let fb = 6u32 << 3;
        assert_eq!(fb2int_saturating(fb), 0xFF);
        // Very large fb byte clamps too.
        let fb = (31u32 << 3) | 7;
        assert_eq!(fb2int_saturating(fb), 0xFF);
    }

    #[test]
    fn translate_newtable_fb_hint() {
        // NEWTABLE R4 B=0x08 (e=1,x=0 -> 8) C=0x0F (e=1,x=7 -> 15).
        // After decode the lowered op should carry the decoded ints,
        // not the raw fb bytes.
        let code = xlate(&[p51(OP_NEWTABLE, 4, 0x08, 0x0F)]);
        assert_eq!(code.len(), 1);
        assert_eq!(code[0].op(), Op::NewTable);
        assert_eq!(code[0].a(), 4);
        assert_eq!(code[0].b(), 8);
        assert_eq!(code[0].c(), 15);
    }

    #[test]
    fn translate_newtable_fb_hint_saturates() {
        // Hash hint e=6 x=0 decodes to 256 — must clamp to 0xFF for
        // luna's 8-bit C field. Array hint stays small (8).
        let large_fb = 6u32 << 3; // -> 256
        let code = xlate(&[p51(OP_NEWTABLE, 0, 0x08, large_fb)]);
        assert_eq!(code.len(), 1);
        assert_eq!(code[0].op(), Op::NewTable);
        assert_eq!(code[0].b(), 8);
        assert_eq!(code[0].c(), 0xFF);
    }

    #[test]
    fn decode_inst_51_fields() {
        // OP_MOVE (0) A=3 B=5 C=0 → bits: op:6=0, a:8=3 at off 6, c:9=0 at off 14, b:9=5 at off 23
        let raw: u32 = (3u32 << 6) | (5u32 << 23);
        let i = decode_inst_51(raw);
        assert_eq!(i.op, 0);
        assert_eq!(i.a, 3);
        assert_eq!(i.b, 5);
        assert_eq!(i.c, 0);
    }

    #[test]
    fn reconstruct_raw_u32_round_trips_through_decode() {
        // Pick a non-trivial encoding: op=10 (NEWTABLE), A=200, B=0x1AB, C=0x055.
        let original: u32 = 10u32 | (200u32 << 6) | (0x055u32 << 14) | (0x1ABu32 << 23);
        let p = decode_inst_51(original);
        let rebuilt = reconstruct_raw_u32(p);
        assert_eq!(rebuilt, original, "decode → reconstruct must be lossless");
    }

    #[test]
    fn reconstruct_raw_u32_handles_setlist_payload_int() {
        // SETLIST C=0 payload is a plain int (block index). Test that a
        // small payload value round-trips when the payload was originally
        // emitted as the raw 32-bit integer 12345.
        let payload: u32 = 12345;
        let p = decode_inst_51(payload);
        assert_eq!(reconstruct_raw_u32(p), payload);
    }

    #[test]
    fn resolve_jump_target_accepts_one_past_end() {
        // Three surviving puc pcs (luna 0, 1, 2). One-past-end target = 3
        // must map to end_of_code (e.g. 5 when last op was multi-emit).
        let map = vec![Some(0), Some(1), Some(2)];
        assert_eq!(resolve_jump_target(&map, 3, 5).unwrap(), 5);
        // Target inside range.
        assert_eq!(resolve_jump_target(&map, 1, 5).unwrap(), 1);
    }

    #[test]
    fn resolve_jump_target_rejects_stripped_pseudo() {
        // puc pc 1 is a stripped CLOSURE pseudo-instruction (None).
        let map = vec![Some(0), None, Some(1)];
        let err = resolve_jump_target(&map, 1, 2).unwrap_err();
        assert!(err.contains("stripped pseudo-instruction"), "got: {err}");
    }

    #[test]
    fn resolve_jump_target_rejects_out_of_range() {
        let map = vec![Some(0), Some(1)];
        let err = resolve_jump_target(&map, 100, 2).unwrap_err();
        assert!(err.contains("out of range"), "got: {err}");
        let err = resolve_jump_target(&map, -1, 2).unwrap_err();
        assert!(err.contains("out of range"), "got: {err}");
    }

    /// Build a synthetic Pre51Inst from raw fields (no real chunk needed).
    fn p51(op: u8, a: u32, b: u32, c: u32) -> Pre51Inst {
        // sBx bias matches `decode_inst_51`. bx = (c << 9) | b.
        let bx = (c << 9) | b;
        Pre51Inst {
            op,
            a,
            b,
            c,
            bx,
            sbx: bx as i32 - 131071,
        }
    }

    /// Run translate_code over a synthetic instruction sequence with no
    /// closures / upvalue churn. Returns the lowered luna code.
    fn xlate(raw: &[Pre51Inst]) -> Vec<Inst> {
        let lines = vec![0u32; raw.len()];
        let mut upvals: Vec<UpvalDesc> = Vec::new();
        let protos: Vec<Gc<Proto>> = Vec::new();
        let t = translate_code(raw, &lines, &[], 0, &mut upvals, &protos, 256)
            .expect("translate_code must succeed for these fixtures");
        t.code
    }

    #[test]
    fn translate_loadbool_false_noskip() {
        // LOADBOOL R0 0 0 → LoadFalse R0
        let code = xlate(&[p51(OP_LOADBOOL, 0, 0, 0)]);
        assert_eq!(code.len(), 1);
        assert_eq!(code[0].op(), Op::LoadFalse);
        assert_eq!(code[0].a(), 0);
    }

    #[test]
    fn translate_loadbool_true_noskip() {
        // LOADBOOL R3 1 0 → LoadTrue R3
        let code = xlate(&[p51(OP_LOADBOOL, 3, 1, 0)]);
        assert_eq!(code.len(), 1);
        assert_eq!(code[0].op(), Op::LoadTrue);
        assert_eq!(code[0].a(), 3);
    }

    #[test]
    fn translate_loadbool_false_skip() {
        // LOADBOOL R2 0 1 → LFalseSkip R2 (luna has a dedicated op)
        let code = xlate(&[p51(OP_LOADBOOL, 2, 0, 1)]);
        assert_eq!(code.len(), 1);
        assert_eq!(code[0].op(), Op::LFalseSkip);
        assert_eq!(code[0].a(), 2);
    }

    #[test]
    fn translate_loadbool_true_skip() {
        // LOADBOOL R5 1 1 → LoadTrue R5; Jmp +1
        // (luna has no LTrueSkip; the Jmp +1 pair advances pc past the
        // next inst in the dispatch loop, matching PUC's `pc++`.)
        let code = xlate(&[p51(OP_LOADBOOL, 5, 1, 1), p51(OP_MOVE, 0, 0, 0)]);
        assert_eq!(code.len(), 3, "true+skip lowers to 2 insts then MOVE");
        assert_eq!(code[0].op(), Op::LoadTrue);
        assert_eq!(code[0].a(), 5);
        assert_eq!(code[1].op(), Op::Jmp);
        assert_eq!(code[1].sj(), 1);
        assert_eq!(code[2].op(), Op::Move);
    }
}