celox-slt 0.3.1

Source-independent symbolic logic tree core for Celox
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
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
use std::{fmt, hash::Hash};

use celox_design::BitAccess;

use super::node::{NodeId, SLTLoopBound, SLTNode, SLTNodeArena, SLTStepOp};
use super::node_rules;

/// Width facts for every node in an [`SLTNodeArena`].
///
/// Construction verifies the complete dependency graph before computing any
/// widths.  The implementation is iterative so malformed cycles and very deep
/// expression graphs cannot overflow the Rust call stack.
pub struct SLTNodeFacts<'arena, A: Hash + Eq + Clone> {
    arena: &'arena SLTNodeArena<A>,
    widths: Vec<usize>,
    lowerable: Vec<bool>,
}

impl<A: Hash + Eq + Clone> fmt::Debug for SLTNodeFacts<'_, A> {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        formatter
            .debug_struct("SLTNodeFacts")
            .field("node_count", &self.widths.len())
            .field("widths", &self.widths)
            .field("lowerable", &self.lowerable)
            .finish()
    }
}

impl<'arena, A> SLTNodeFacts<'arena, A>
where
    A: Hash + Eq + Clone,
{
    /// Verify `arena` and compute one width for every node.
    pub fn verify(arena: &'arena SLTNodeArena<A>) -> Result<Self, SLTNodeFactsError> {
        let verified = verify_nodes(arena.nodes())?;
        let cached = arena.cached_widths();
        if cached != verified.widths {
            let mismatch = cached
                .iter()
                .zip(&verified.widths)
                .position(|(cached, verified)| cached != verified)
                .unwrap_or_else(|| cached.len().min(verified.widths.len()));
            return Err(SLTNodeFactsError::new(
                "FACTS.CACHED_WIDTH_MATCHES",
                NodeId(mismatch),
                format!(
                    "construction width cache differs from independently verified widths at n{mismatch} (cached={:?}, verified={:?}; cache entries={}, nodes={})",
                    cached.get(mismatch),
                    verified.widths.get(mismatch),
                    cached.len(),
                    verified.widths.len(),
                ),
            ));
        }

        Ok(Self {
            arena,
            widths: verified.widths,
            lowerable: verified.lowerable,
        })
    }

    /// Return the verified width of `node`, or `None` when the ID does not
    /// belong to the arena from which this table was built.
    pub fn width(&self, node: NodeId) -> Option<usize> {
        self.arena.get_checked(node)?;
        self.widths.get(node.0).copied()
    }

    /// Return a verified root width, diagnosing a root that does not belong to
    /// the arena instead of allowing a later unchecked lookup to panic.
    pub fn require_width(
        &self,
        node: NodeId,
        role: &'static str,
    ) -> Result<usize, SLTNodeFactsError> {
        self.width(node).ok_or_else(|| {
            SLTNodeFactsError::new(
                "ROOT.NODE_EXISTS",
                node,
                format!("{role} references missing root n{}", node.0),
            )
        })
    }

    /// Require a root and every node reachable from it to be lowerable to
    /// nonzero-width executable IR.
    pub fn require_lowerable(
        &self,
        node: NodeId,
        role: &'static str,
    ) -> Result<usize, SLTNodeFactsError> {
        let width = self.require_width(node, role)?;
        if !self.lowerable[node.0] {
            let blocker = self.lowerability_blocker(node);
            return Err(SLTNodeFactsError::new(
                "ROOT.LOWERABLE_NON_ZERO",
                blocker,
                format!(
                    "{role} root n{} reaches n{}, which has a zero executable width",
                    node.0, blocker.0
                ),
            ));
        }
        Ok(width)
    }

    /// Find the first direct zero-width cause on the first non-lowerable child
    /// path. This runs only for a rejected root and allocates no traversal
    /// storage; canonical child IDs strictly decrease at every step.
    fn lowerability_blocker(&self, mut node_id: NodeId) -> NodeId {
        loop {
            let Some(node) = self.arena.get_checked(node_id) else {
                return node_id;
            };
            let direct_blocker = self.widths.get(node_id.0).copied() == Some(0)
                || matches!(node, SLTNode::Concat(parts) if parts.iter().any(|(_, width)| *width == 0));
            if direct_blocker {
                return node_id;
            }

            let mut next = None;
            try_for_each_child(node, |child| {
                if next.is_none() && self.lowerable.get(child.0).copied() == Some(false) {
                    next = Some(child);
                }
                Ok::<(), std::convert::Infallible>(())
            })
            .unwrap_or_else(|never| match never {});
            let Some(child) = next else {
                // The table is private and built atomically, so this can only
                // describe an internal inconsistency. Keep the public failure
                // fallible and attribute it to the last verified node.
                return node_id;
            };
            node_id = child;
        }
    }

    /// Return all widths in `NodeId` order.
    #[cfg(test)]
    pub fn widths(&self) -> &[usize] {
        &self.widths
    }
}

struct VerifiedNodeFacts {
    widths: Vec<usize>,
    lowerable: Vec<bool>,
}

/// Verify an untrusted serialized node list without first constructing an
/// operational arena. The returned widths were recomputed from the node graph
/// and can therefore initialize the arena cache directly.
pub(super) fn verify_raw_nodes<A>(nodes: &[SLTNode<A>]) -> Result<Vec<usize>, SLTNodeFactsError>
where
    A: Hash + Eq + Clone,
{
    Ok(verify_nodes(nodes)?.widths)
}

/// Validate the local safety conditions required to append `node` and derive
/// its construction-time width. Full semantic relations are intentionally
/// checked only by [`verify_nodes`].
pub(super) fn verify_append<A>(
    node: &SLTNode<A>,
    widths: &[usize],
) -> Result<usize, SLTNodeFactsError>
where
    A: Hash + Eq + Clone,
{
    let node_id = NodeId(widths.len());
    let child_width = |child: NodeId| {
        widths.get(child.0).copied().ok_or_else(|| {
            SLTNodeFactsError::new(
                "GRAPH.CHILD_EXISTS",
                node_id,
                format!(
                    "node n{} references missing child n{}; arena contains {} nodes",
                    node_id.0,
                    child.0,
                    widths.len()
                ),
            )
        })
    };

    match node {
        SLTNode::Input { index, access, .. } => {
            for entry in index {
                child_width(entry.node)?;
            }
            checked_access_width(node_id, *access, "input")
        }
        SLTNode::Constant(_, _, width, _) => Ok(*width),
        SLTNode::Binary(lhs, op, rhs) => Ok(node_rules::binary_result_width(
            *op,
            child_width(*lhs)?,
            child_width(*rhs)?,
        )),
        SLTNode::Unary(op, inner) => Ok(node_rules::unary_width(*op, child_width(*inner)?)),
        SLTNode::Capture { expr, .. } => child_width(*expr),
        SLTNode::Mux {
            cond,
            then_expr,
            else_expr,
        } => {
            child_width(*cond)?;
            Ok(node_rules::mux_width(
                child_width(*then_expr)?,
                child_width(*else_expr)?,
            ))
        }
        SLTNode::ForFold { result, .. } => {
            try_for_each_child(node, |child| child_width(child).map(|_| ()))?;
            match result {
                crate::SLTForFoldResult::State(result) => {
                    checked_access_width(node_id, result.access, "ForFold result")
                }
                crate::SLTForFoldResult::Transient { initial, update } => {
                    let initial_width = child_width(*initial)?;
                    let update_width = child_width(*update)?;
                    if initial_width != update_width {
                        return Err(SLTNodeFactsError::new(
                            "FOR_FOLD.TRANSIENT_RESULT_WIDTH_MATCHES",
                            node_id,
                            format!(
                                "ForFold transient result initial width {initial_width} does not equal update width {update_width}"
                            ),
                        ));
                    }
                    Ok(initial_width)
                }
            }
        }
        SLTNode::ForFoldGroup { states, .. } => {
            try_for_each_child(node, |child| child_width(child).map(|_| ()))?;
            packed_group_width(node_id, states.iter().map(|state| state.target.access))
        }
        SLTNode::Concat(parts) => {
            let mut total = 0usize;
            for &(child, part_width) in parts {
                child_width(child)?;
                total = node_rules::concat_width_add(total, part_width)
                    .map_err(|error| rule_error(node_id, error))?;
            }
            Ok(total)
        }
        SLTNode::Slice { expr, access } => {
            child_width(*expr)?;
            checked_access_width(node_id, *access, "slice")
        }
    }
}

fn verify_nodes<A>(nodes: &[SLTNode<A>]) -> Result<VerifiedNodeFacts, SLTNodeFactsError>
where
    A: Hash + Eq + Clone,
{
    let node_count = nodes.len();

    // An arena is a canonical append-only DAG: a node can only reference
    // operands that were already allocated. Check every untrusted ID without
    // dereferencing it before building any fact table.
    for (node_index, node) in nodes.iter().enumerate() {
        verify_child_ids(NodeId(node_index), node, node_count)?;
    }

    // Child facts are available by construction in NodeId order. This avoids
    // reverse-edge storage, a Kahn worklist, and Option-sized fact slots.
    // Vec<bool> keeps the persistent lowerability fact packed.
    let allocation_node = NodeId(node_count.saturating_sub(1));
    let mut widths = Vec::new();
    widths.try_reserve_exact(node_count).map_err(|error| {
        SLTNodeFactsError::new(
            "FACTS.STORAGE_AVAILABLE",
            allocation_node,
            format!("cannot reserve widths for {node_count} nodes: {error}"),
        )
    })?;
    let mut lowerable = Vec::new();
    lowerable.try_reserve_exact(node_count).map_err(|error| {
        SLTNodeFactsError::new(
            "FACTS.STORAGE_AVAILABLE",
            allocation_node,
            format!("cannot reserve lowerability for {node_count} nodes: {error}"),
        )
    })?;
    let mut unsafe_in_group = Vec::new();
    unsafe_in_group
        .try_reserve_exact(node_count)
        .map_err(|error| {
            SLTNodeFactsError::new(
                "FACTS.STORAGE_AVAILABLE",
                allocation_node,
                format!("cannot reserve grouped-fold safety facts for {node_count} nodes: {error}"),
            )
        })?;
    for (node_index, node) in nodes.iter().enumerate() {
        let node_id = NodeId(node_index);
        let width = compute_width(node_id, node, &widths)?;
        let mut node_lowerable = node_rules::direct_lowerable(
            width,
            matches!(node, SLTNode::Concat(parts) if parts.iter().any(|(_, width)| *width == 0)),
        );
        // Legacy ForFold can emit runtime effects and may terminate through a
        // stall/error path even when its explicit effect list is empty.  A
        // grouped fold is a pure, total expression, so neither behavior may be
        // hidden below one of its value children.
        let mut node_unsafe_in_group = matches!(node, SLTNode::ForFold { .. });
        try_for_each_child(node, |child| {
            let Some(&child_lowerable) = lowerable.get(child.0) else {
                return Err(SLTNodeFactsError::new(
                    "FACTS.CHILD_LOWERABILITY_AVAILABLE",
                    node_id,
                    format!(
                        "lowerability of child n{} was not available while evaluating n{}",
                        child.0, node_id.0
                    ),
                ));
            };
            node_lowerable &= child_lowerable;
            let Some(&child_unsafe) = unsafe_in_group.get(child.0) else {
                return Err(SLTNodeFactsError::new(
                    "FACTS.CHILD_EFFECT_AVAILABLE",
                    node_id,
                    format!(
                        "group-safety fact of child n{} was not available while evaluating n{}",
                        child.0, node_id.0
                    ),
                ));
            };
            node_unsafe_in_group |= child_unsafe;
            Ok(())
        })?;
        if matches!(node, SLTNode::ForFoldGroup { .. }) && node_unsafe_in_group {
            return Err(SLTNodeFactsError::new(
                "FOR_FOLD_GROUP.CHILDREN_PURE_AND_TOTAL",
                node_id,
                "ForFoldGroup guard, initial, or update reaches a legacy ForFold that may emit effects or terminate with an error",
            ));
        }
        widths.push(width);
        lowerable.push(node_lowerable);
        unsafe_in_group.push(node_unsafe_in_group);
    }

    Ok(VerifiedNodeFacts { widths, lowerable })
}

fn verify_child_ids<A>(
    owner: NodeId,
    node: &SLTNode<A>,
    node_count: usize,
) -> Result<(), SLTNodeFactsError>
where
    A: Hash + Eq + Clone,
{
    try_for_each_child(node, |child| {
        if child.0 >= node_count {
            return Err(SLTNodeFactsError::new(
                "GRAPH.CHILD_EXISTS",
                owner,
                format!(
                    "node n{} references missing child n{}; arena contains {node_count} nodes",
                    owner.0, child.0
                ),
            ));
        }
        if child.0 >= owner.0 {
            return Err(SLTNodeFactsError::new(
                "GRAPH.CHILD_PRECEDES_OWNER",
                owner,
                format!(
                    "node n{} references child n{}, which does not precede its owner",
                    owner.0, child.0
                ),
            ));
        }
        Ok(())
    })
}

/// A structured failure produced while verifying an SLT node graph.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct SLTNodeFactsError {
    pub invariant: &'static str,
    pub node: NodeId,
    pub message: String,
}

impl SLTNodeFactsError {
    pub fn new(invariant: &'static str, node: NodeId, message: impl Into<String>) -> Self {
        Self {
            invariant,
            node,
            message: message.into(),
        }
    }
}

impl fmt::Display for SLTNodeFactsError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(
            f,
            "SLT node facts verify [{}] at n{}: {}",
            self.invariant, self.node.0, self.message
        )
    }
}

impl std::error::Error for SLTNodeFactsError {}

fn compute_width<A>(
    node_id: NodeId,
    node: &SLTNode<A>,
    widths: &[usize],
) -> Result<usize, SLTNodeFactsError>
where
    A: Hash + Eq + Clone,
{
    let child_width = |child: NodeId| {
        widths.get(child.0).copied().ok_or_else(|| {
            SLTNodeFactsError::new(
                "FACTS.CHILD_WIDTH_AVAILABLE",
                node_id,
                format!(
                    "width of child n{} was not available while evaluating n{}",
                    child.0, node_id.0
                ),
            )
        })
    };

    match node {
        SLTNode::Input { access, .. } => checked_access_width(node_id, *access, "input"),
        SLTNode::Constant(value, mask, width, _) => node_rules::constant_width(value, mask, *width)
            .map_err(|error| rule_error(node_id, error)),
        SLTNode::Binary(lhs, op, rhs) => {
            let lhs_width = child_width(*lhs)?;
            let rhs_width = child_width(*rhs)?;
            node_rules::binary_width(*op, lhs_width, rhs_width)
                .map_err(|error| rule_error(node_id, error))
        }
        SLTNode::Unary(op, inner) => Ok(node_rules::unary_width(*op, child_width(*inner)?)),
        SLTNode::Capture { expr, .. } => child_width(*expr),
        SLTNode::Mux {
            then_expr,
            else_expr,
            ..
        } => Ok(node_rules::mux_width(
            child_width(*then_expr)?,
            child_width(*else_expr)?,
        )),
        SLTNode::ForFold {
            loop_var: _,
            loop_width,
            loop_signed,
            start,
            end,
            inclusive,
            step_op,
            reverse,
            result,
            initials,
            updates,
            effects,
            continue_cond,
            ..
        } => {
            if *loop_width == 0 {
                return Err(SLTNodeFactsError::new(
                    "FOR_FOLD.LOOP_WIDTH_NON_ZERO",
                    node_id,
                    "ForFold loop width is zero",
                ));
            }
            if *reverse && *step_op != SLTStepOp::Add {
                return Err(SLTNodeFactsError::new(
                    "FOR_FOLD.REVERSE_STEP_IS_ADD",
                    node_id,
                    format!("reverse ForFold ignores unsupported {step_op:?} step semantics"),
                ));
            }
            if initials.len() != updates.len() {
                return Err(SLTNodeFactsError::new(
                    "FOR_FOLD.STATE_ARITY_MATCHES",
                    node_id,
                    format!(
                        "ForFold has {} initial states but {} updates",
                        initials.len(),
                        updates.len()
                    ),
                ));
            }

            let require_nonzero_child = |child: NodeId, role: &str| {
                let width = child_width(child)?;
                if width == 0 {
                    return Err(SLTNodeFactsError::new(
                        "FOR_FOLD.OPERAND_NON_ZERO",
                        node_id,
                        format!("{role} n{} has zero width", child.0),
                    ));
                }
                Ok(width)
            };

            let mut counter_width = *loop_width;
            for (role, bound) in [("start", start), ("end", end)] {
                let width = match bound {
                    SLTLoopBound::Const(value) => {
                        (usize::BITS as usize - value.leading_zeros() as usize).max(1)
                    }
                    SLTLoopBound::Expr(child) => require_nonzero_child(*child, role)?,
                };
                counter_width = counter_width.max(width);
            }
            if *inclusive && !*loop_signed && counter_width.checked_add(1).is_none() {
                return Err(SLTNodeFactsError::new(
                    "FOR_FOLD.INCLUSIVE_WIDTH_REPRESENTABLE",
                    node_id,
                    format!(
                        "inclusive unsigned ForFold cannot widen counter width {counter_width}"
                    ),
                ));
            }

            let mut target_accesses: crate::HashMap<A, Vec<(BitAccess, usize)>> =
                crate::HashMap::default();
            for (index, (initial, update)) in initials.iter().zip(updates).enumerate() {
                if initial.target != update.target {
                    return Err(SLTNodeFactsError::new(
                        "FOR_FOLD.POSITIONAL_TARGET_MATCHES",
                        node_id,
                        format!("initial and update target differ at state position {index}"),
                    ));
                }
                checked_access_width(node_id, update.target.access, "ForFold state target")?;
                require_nonzero_child(initial.expr, "ForFold initial state")?;
                require_nonzero_child(update.expr, "ForFold update state")?;
                target_accesses
                    .entry(update.target.id.clone())
                    .or_default()
                    .push((update.target.access, index));
            }
            for accesses in target_accesses.values_mut() {
                accesses.sort_unstable_by_key(|(access, _)| (access.lsb, access.msb));
                for pair in accesses.windows(2) {
                    let (previous, previous_index) = pair[0];
                    let (current, current_index) = pair[1];
                    if previous.msb >= current.lsb {
                        return Err(SLTNodeFactsError::new(
                            "FOR_FOLD.STATE_TARGETS_DISJOINT",
                            node_id,
                            format!(
                                "state targets at positions {previous_index} and {current_index} overlap"
                            ),
                        ));
                    }
                }
            }

            let result_width = match result {
                crate::SLTForFoldResult::State(result) => {
                    let width = checked_access_width(node_id, result.access, "ForFold result")?;
                    let result_count = updates
                        .iter()
                        .filter(|update| update.target == *result)
                        .count();
                    if result_count != 1 {
                        return Err(SLTNodeFactsError::new(
                            "FOR_FOLD.RESULT_TARGET_UNIQUE",
                            node_id,
                            format!(
                                "ForFold result occurs {result_count} times in its update targets"
                            ),
                        ));
                    }
                    width
                }
                crate::SLTForFoldResult::Transient { initial, update } => {
                    let initial_width =
                        require_nonzero_child(*initial, "ForFold transient initial")?;
                    let update_width = require_nonzero_child(*update, "ForFold transient update")?;
                    if initial_width != update_width {
                        return Err(SLTNodeFactsError::new(
                            "FOR_FOLD.TRANSIENT_RESULT_WIDTH_MATCHES",
                            node_id,
                            format!(
                                "ForFold transient result initial width {initial_width} does not equal update width {update_width}"
                            ),
                        ));
                    }
                    initial_width
                }
            };

            for effect in effects {
                match effect {
                    crate::SLTForEffect::Event { guard, args, .. } => {
                        if let Some(guard) = guard {
                            require_nonzero_child(*guard, "ForFold effect guard")?;
                        }
                        for &arg in args {
                            require_nonzero_child(arg, "ForFold effect argument")?;
                        }
                    }
                    crate::SLTForEffect::Runner(runner) => {
                        require_nonzero_child(*runner, "ForFold effect runner")?;
                    }
                }
            }
            require_nonzero_child(*continue_cond, "ForFold continue condition")?;
            Ok(result_width)
        }
        SLTNode::ForFoldGroup {
            loop_var,
            loop_width,
            loop_signed,
            start,
            step,
            trip_count,
            entry_guard,
            states,
            ..
        } => {
            if *loop_width == 0 {
                return Err(SLTNodeFactsError::new(
                    "FOR_FOLD_GROUP.LOOP_WIDTH_NON_ZERO",
                    node_id,
                    "ForFoldGroup loop width is zero",
                ));
            }
            if *trip_count == 0 {
                return Err(SLTNodeFactsError::new(
                    "FOR_FOLD_GROUP.TRIP_COUNT_NON_ZERO",
                    node_id,
                    "ForFoldGroup trip count is zero",
                ));
            }
            if states.is_empty() {
                return Err(SLTNodeFactsError::new(
                    "FOR_FOLD_GROUP.STATE_NON_EMPTY",
                    node_id,
                    "ForFoldGroup has no loop-carried states",
                ));
            }

            let guard_width = child_width(*entry_guard)?;
            if guard_width != 1 {
                return Err(SLTNodeFactsError::new(
                    "FOR_FOLD_GROUP.ENTRY_GUARD_ONE_BIT",
                    node_id,
                    format!(
                        "ForFoldGroup entry guard n{} has width {guard_width}, expected 1",
                        entry_guard.0,
                    ),
                ));
            }

            let last_iteration = start + step * num_bigint::BigInt::from(*trip_count - 1);
            if !integer_fits_loop_counter(start, *loop_width, *loop_signed)
                || !integer_fits_loop_counter(&last_iteration, *loop_width, *loop_signed)
            {
                return Err(SLTNodeFactsError::new(
                    "FOR_FOLD_GROUP.ITERATION_ARITHMETIC_REPRESENTABLE",
                    node_id,
                    format!(
                        "ForFoldGroup iteration range {start}..{last_iteration} does not fit its {}-bit {} loop counter",
                        loop_width,
                        if *loop_signed { "signed" } else { "unsigned" },
                    ),
                ));
            }

            let mut exact_targets = crate::HashSet::default();
            let mut target_accesses: crate::HashMap<A, Vec<(BitAccess, usize)>> =
                crate::HashMap::default();
            let mut packed_width = 0usize;
            for (index, state) in states.iter().enumerate() {
                if state.target.id == *loop_var {
                    return Err(SLTNodeFactsError::new(
                        "FOR_FOLD_GROUP.LOOP_VARIABLE_DISJOINT_FROM_STATE_TARGETS",
                        node_id,
                        format!(
                            "ForFoldGroup state target at position {index} aliases its loop variable"
                        ),
                    ));
                }
                if !exact_targets.insert(state.target.clone()) {
                    return Err(SLTNodeFactsError::new(
                        "FOR_FOLD_GROUP.STATE_TARGETS_UNIQUE",
                        node_id,
                        format!("ForFoldGroup repeats state target at position {index}"),
                    ));
                }
                let target_width = checked_access_width(
                    node_id,
                    state.target.access,
                    "ForFoldGroup state target",
                )?;
                packed_width = packed_width.checked_add(target_width).ok_or_else(|| {
                    SLTNodeFactsError::new(
                        "FOR_FOLD_GROUP.PACKED_WIDTH_REPRESENTABLE",
                        node_id,
                        format!(
                            "ForFoldGroup packed width overflows usize while adding state {index} width {target_width}"
                        ),
                    )
                })?;
                let initial_width = child_width(state.initial)?;
                let update_width = child_width(state.update)?;
                if initial_width != target_width || update_width != target_width {
                    return Err(SLTNodeFactsError::new(
                        "FOR_FOLD_GROUP.STATE_WIDTHS_MATCH",
                        node_id,
                        format!(
                            "ForFoldGroup state {index} target width {target_width}, initial n{} width {initial_width}, and update n{} width {update_width} do not match",
                            state.initial.0, state.update.0,
                        ),
                    ));
                }
                target_accesses
                    .entry(state.target.id.clone())
                    .or_default()
                    .push((state.target.access, index));
            }
            for accesses in target_accesses.values_mut() {
                accesses.sort_unstable_by_key(|(access, _)| (access.lsb, access.msb));
                for pair in accesses.windows(2) {
                    let (previous, previous_index) = pair[0];
                    let (current, current_index) = pair[1];
                    if previous.msb >= current.lsb {
                        return Err(SLTNodeFactsError::new(
                            "FOR_FOLD_GROUP.STATE_TARGETS_DISJOINT",
                            node_id,
                            format!(
                                "ForFoldGroup state targets at positions {previous_index} and {current_index} overlap"
                            ),
                        ));
                    }
                }
            }
            Ok(packed_width)
        }
        SLTNode::Concat(parts) => node_rules::concat_width(parts.iter().map(|(_, width)| *width))
            .map_err(|error| rule_error(node_id, error)),
        SLTNode::Slice { expr, access } => {
            let expression_width = child_width(*expr)?;
            node_rules::slice_width(*access, expression_width, format_args!("n{}", expr.0))
                .map_err(|error| rule_error(node_id, error))
        }
    }
}

fn checked_access_width(
    node: NodeId,
    access: BitAccess,
    role: &str,
) -> Result<usize, SLTNodeFactsError> {
    node_rules::access_width(access, role).map_err(|error| rule_error(node, error))
}

fn packed_group_width(
    node: NodeId,
    accesses: impl IntoIterator<Item = BitAccess>,
) -> Result<usize, SLTNodeFactsError> {
    accesses
        .into_iter()
        .enumerate()
        .try_fold(0usize, |total, (index, access)| {
            let width = checked_access_width(node, access, "ForFoldGroup state target")?;
            total.checked_add(width).ok_or_else(|| {
                SLTNodeFactsError::new(
                    "FOR_FOLD_GROUP.PACKED_WIDTH_REPRESENTABLE",
                    node,
                    format!(
                        "ForFoldGroup packed width overflows usize while adding state {index} width {width}"
                    ),
                )
            })
        })
}

/// Test whether an integer can be represented without truncation by the loop
/// counter type.  This uses the already allocated magnitude instead of
/// constructing a `1 << width` bound, so hostile oversized widths cannot force
/// an equally oversized verifier allocation.
fn integer_fits_loop_counter(value: &num_bigint::BigInt, width: usize, signed: bool) -> bool {
    use num_bigint::Sign;

    if width == 0 {
        return false;
    }
    let width = u64::try_from(width).unwrap_or(u64::MAX);
    let bits = value.magnitude().bits();
    match (signed, value.sign()) {
        (false, Sign::Minus) => false,
        (false, _) => bits <= width,
        (true, Sign::Minus) => {
            bits < width
                || (bits == width
                    && value.magnitude().trailing_zeros() == Some(width.saturating_sub(1)))
        }
        (true, Sign::NoSign | Sign::Plus) => bits < width,
    }
}

fn rule_error(node: NodeId, error: node_rules::NodeRuleError) -> SLTNodeFactsError {
    SLTNodeFactsError::new(error.invariant, node, error.message)
}

fn try_for_each_child<A, E>(
    node: &SLTNode<A>,
    mut visit: impl FnMut(NodeId) -> Result<(), E>,
) -> Result<(), E>
where
    A: Hash + Eq + Clone,
{
    match node {
        SLTNode::Input { index, .. } => {
            for entry in index {
                visit(entry.node)?;
            }
        }
        SLTNode::Constant(..) => {}
        SLTNode::Binary(lhs, _, rhs) => {
            visit(*lhs)?;
            visit(*rhs)?;
        }
        SLTNode::Unary(_, inner) => visit(*inner)?,
        SLTNode::Capture { expr, .. } => visit(*expr)?,
        SLTNode::Mux {
            cond,
            then_expr,
            else_expr,
        } => {
            visit(*cond)?;
            visit(*then_expr)?;
            visit(*else_expr)?;
        }
        SLTNode::ForFold {
            start,
            end,
            result,
            initials,
            updates,
            effects,
            continue_cond,
            ..
        } => {
            if let SLTLoopBound::Expr(node) = start {
                visit(*node)?;
            }
            if let SLTLoopBound::Expr(node) = end {
                visit(*node)?;
            }
            if let crate::SLTForFoldResult::Transient { initial, update } = result {
                visit(*initial)?;
                visit(*update)?;
            }
            for initial in initials {
                visit(initial.expr)?;
            }
            for update in updates {
                visit(update.expr)?;
            }
            for effect in effects {
                match effect {
                    crate::SLTForEffect::Event { guard, args, .. } => {
                        if let Some(guard) = guard {
                            visit(*guard)?;
                        }
                        for &arg in args {
                            visit(arg)?;
                        }
                    }
                    crate::SLTForEffect::Runner(runner) => visit(*runner)?,
                }
            }
            visit(*continue_cond)?;
        }
        SLTNode::ForFoldGroup {
            entry_guard,
            states,
            ..
        } => {
            visit(*entry_guard)?;
            for state in states {
                visit(state.initial)?;
                visit(state.update)?;
            }
        }
        SLTNode::Concat(parts) => {
            for &(part, _) in parts {
                visit(part)?;
            }
        }
        SLTNode::Slice { expr, .. } => visit(*expr)?,
    }
    Ok(())
}

#[cfg(test)]
mod tests {
    use num_bigint::{BigInt, BigUint};

    use celox_design::{BinaryOp, UnaryOp, VarAtomBase};

    use super::*;
    use crate::node::{
        SLTForEffect, SLTForFoldGroupState, SLTForFoldResult, SLTForUpdate, SLTStepOp,
    };

    fn arena(nodes: Vec<SLTNode<u32>>) -> SLTNodeArena<u32> {
        SLTNodeArena::try_from_nodes(nodes).expect("test node graph must verify")
    }

    fn raw_error(nodes: Vec<SLTNode<u32>>) -> SLTNodeFactsError {
        SLTNodeArena::try_from_nodes(nodes).expect_err("raw node graph must fail verification")
    }

    fn constant(width: usize) -> SLTNode<u32> {
        SLTNode::Constant(BigUint::from(0u8), BigUint::from(0u8), width, false)
    }

    fn valid_for_fold() -> SLTNode<u32> {
        let target = VarAtomBase::new(2, 0, 7);
        SLTNode::ForFold {
            loop_var: 1,
            loop_width: 8,
            loop_signed: false,
            start: SLTLoopBound::Const(0),
            end: SLTLoopBound::Const(1),
            inclusive: false,
            step: 1,
            step_op: SLTStepOp::Add,
            reverse: false,
            result: SLTForFoldResult::State(target),
            initials: vec![SLTForUpdate {
                target,
                expr: NodeId(0),
            }],
            updates: vec![SLTForUpdate {
                target,
                expr: NodeId(0),
            }],
            effects: Vec::new(),
            continue_cond: NodeId(1),
        }
    }

    fn verify_for_fold(node: SLTNode<u32>) -> Result<(), SLTNodeFactsError> {
        SLTNodeArena::try_from_nodes(vec![constant(8), constant(1), node]).map(|_| ())
    }

    fn valid_for_fold_group() -> SLTNode<u32> {
        SLTNode::ForFoldGroup {
            loop_var: 1,
            loop_width: 8,
            loop_signed: false,
            start: BigInt::from(0),
            step: BigInt::from(1),
            trip_count: 4,
            entry_guard: NodeId(1),
            states: vec![SLTForFoldGroupState {
                target: VarAtomBase::new(2, 0, 7),
                initial: NodeId(0),
                update: NodeId(0),
            }],
        }
    }

    fn verify_for_fold_group(node: SLTNode<u32>) -> Result<SLTNodeArena<u32>, SLTNodeFactsError> {
        SLTNodeArena::try_from_nodes(vec![constant(8), constant(1), node])
    }

    #[test]
    fn computes_declared_width_rules() {
        let arena = arena(vec![
            constant(0),                                          // n0
            constant(4),                                          // n1
            constant(9),                                          // n2
            SLTNode::Binary(NodeId(1), BinaryOp::Add, NodeId(2)), // n3 = 9
            SLTNode::Binary(NodeId(1), BinaryOp::Shl, NodeId(2)), // n4 = 4
            SLTNode::Binary(NodeId(1), BinaryOp::Eq, NodeId(2)),  // n5 = 1
            SLTNode::Unary(UnaryOp::LogicNot, NodeId(2)),         // n6 = 1
            SLTNode::Mux {
                cond: NodeId(0),
                then_expr: NodeId(1),
                else_expr: NodeId(2),
            }, // n7 = 9
            SLTNode::Concat(vec![(NodeId(1), 2), (NodeId(2), 7)]), // n8 = 9
            SLTNode::Slice {
                expr: NodeId(2),
                access: BitAccess { lsb: 2, msb: 5 },
            }, // n9 = 4
            SLTNode::Binary(NodeId(1), BinaryOp::EqWildcard, NodeId(1)), // n10 = 1
            SLTNode::Unary(UnaryOp::PopCount, NodeId(2)),         // n11 = ceil(log2(9 + 1)) = 4
            SLTNode::Unary(UnaryOp::CountLeadingZeros, NodeId(1)), // n12 = 3
            SLTNode::Unary(UnaryOp::CountTrailingZeros, NodeId(0)), // n13 = 0
        ]);

        let facts = SLTNodeFacts::verify(&arena).expect("well-formed arena must verify");
        assert_eq!(facts.widths(), &[0, 4, 9, 9, 4, 1, 1, 9, 9, 4, 1, 4, 3, 0]);
        assert_eq!(facts.width(NodeId(14)), None);
    }

    #[test]
    fn bit_count_width_handles_power_of_two_and_usize_limit() {
        let arena = arena(vec![
            constant(8),
            SLTNode::Unary(UnaryOp::PopCount, NodeId(0)),
            constant(usize::MAX),
            SLTNode::Unary(UnaryOp::CountLeadingZeros, NodeId(2)),
            SLTNode::Unary(UnaryOp::CountTrailingZeros, NodeId(2)),
        ]);
        let facts = SLTNodeFacts::verify(&arena).expect("well-formed arena must verify");
        assert_eq!(facts.width(NodeId(1)), Some(4));
        assert_eq!(facts.width(NodeId(3)), Some(usize::BITS as usize));
        assert_eq!(facts.width(NodeId(4)), Some(usize::BITS as usize));
    }

    #[test]
    fn rejects_missing_child_before_graph_traversal() {
        let error = raw_error(vec![SLTNode::Unary(UnaryOp::Ident, NodeId(7))]);
        assert_eq!(error.invariant, "GRAPH.CHILD_EXISTS");
        assert_eq!(error.node, NodeId(0));
        assert!(error.message.contains("n7"));
    }

    #[test]
    fn rejects_dependency_cycle_as_noncanonical_forward_edge() {
        let error = raw_error(vec![
            SLTNode::Unary(UnaryOp::Ident, NodeId(1)),
            SLTNode::Unary(UnaryOp::Ident, NodeId(0)),
        ]);
        assert_eq!(error.invariant, "GRAPH.CHILD_PRECEDES_OWNER");
        assert_eq!(error.node, NodeId(0));
    }

    #[test]
    fn rejects_acyclic_forward_reference() {
        let error = raw_error(vec![SLTNode::Unary(UnaryOp::Ident, NodeId(1)), constant(8)]);
        assert_eq!(error.invariant, "GRAPH.CHILD_PRECEDES_OWNER");
        assert_eq!(error.node, NodeId(0));
        assert!(error.message.contains("child n1"));
    }

    #[test]
    fn rejects_self_reference() {
        let error = raw_error(vec![SLTNode::Unary(UnaryOp::Ident, NodeId(0))]);
        assert_eq!(error.invariant, "GRAPH.CHILD_PRECEDES_OWNER");
        assert_eq!(error.node, NodeId(0));
    }

    #[test]
    fn rejects_malformed_and_overflowing_accesses() {
        let error = raw_error(vec![SLTNode::Input {
            variable: 1,
            signed: false,
            index: Vec::new(),
            access: BitAccess { lsb: 5, msb: 4 },
        }]);
        assert_eq!(error.invariant, "WIDTH.ACCESS_ORDERED");

        let error = raw_error(vec![SLTNode::Input {
            variable: 1,
            signed: false,
            index: Vec::new(),
            access: BitAccess {
                lsb: 0,
                msb: usize::MAX,
            },
        }]);
        assert_eq!(error.invariant, "WIDTH.ACCESS_REPRESENTABLE");
    }

    #[test]
    fn rejects_slice_outside_child_width() {
        let error = raw_error(vec![
            constant(4),
            SLTNode::Slice {
                expr: NodeId(0),
                access: BitAccess { lsb: 1, msb: 4 },
            },
        ]);
        assert_eq!(error.invariant, "WIDTH.SLICE_IN_BOUNDS");
    }

    #[test]
    fn rejects_concat_width_overflow() {
        let error = raw_error(vec![
            constant(0),
            SLTNode::Concat(vec![(NodeId(0), usize::MAX), (NodeId(0), 1)]),
        ]);
        assert_eq!(error.invariant, "WIDTH.CONCAT_REPRESENTABLE");
    }

    #[test]
    fn rejects_mismatched_wildcard_operand_widths() {
        for op in [BinaryOp::EqWildcard, BinaryOp::NeWildcard] {
            let error = raw_error(vec![
                constant(4),
                constant(8),
                SLTNode::Binary(NodeId(0), op, NodeId(1)),
            ]);
            assert_eq!(error.invariant, "WIDTH.WILDCARD_OPERANDS_MATCH");
        }
    }

    #[test]
    fn rejects_constant_payload_and_mask_outside_declared_width() {
        let payload_error = raw_error(vec![SLTNode::Constant(
            BigUint::from(0x10u8),
            BigUint::from(0u8),
            4,
            false,
        )]);
        assert_eq!(payload_error.invariant, "CONSTANT.VALUE_FITS_WIDTH");

        let mask_error = raw_error(vec![SLTNode::Constant(
            BigUint::from(0u8),
            BigUint::from(0x10u8),
            4,
            false,
        )]);
        assert_eq!(mask_error.invariant, "CONSTANT.MASK_FITS_WIDTH");
    }

    #[test]
    fn validates_complete_for_fold_contract() {
        verify_for_fold(valid_for_fold()).expect("complete ForFold must verify");

        let mut node = valid_for_fold();
        let SLTNode::ForFold { loop_width, .. } = &mut node else {
            unreachable!()
        };
        *loop_width = 0;
        assert_eq!(
            verify_for_fold(node).unwrap_err().invariant,
            "FOR_FOLD.LOOP_WIDTH_NON_ZERO"
        );

        let mut node = valid_for_fold();
        let SLTNode::ForFold { updates, .. } = &mut node else {
            unreachable!()
        };
        updates.clear();
        assert_eq!(
            verify_for_fold(node).unwrap_err().invariant,
            "FOR_FOLD.STATE_ARITY_MATCHES"
        );

        let mut node = valid_for_fold();
        let SLTNode::ForFold { updates, .. } = &mut node else {
            unreachable!()
        };
        updates[0].target = VarAtomBase::new(3, 0, 7);
        assert_eq!(
            verify_for_fold(node).unwrap_err().invariant,
            "FOR_FOLD.POSITIONAL_TARGET_MATCHES"
        );

        let mut node = valid_for_fold();
        let SLTNode::ForFold { result, .. } = &mut node else {
            unreachable!()
        };
        *result = SLTForFoldResult::State(VarAtomBase::new(3, 0, 7));
        assert_eq!(
            verify_for_fold(node).unwrap_err().invariant,
            "FOR_FOLD.RESULT_TARGET_UNIQUE"
        );

        let mut transient = valid_for_fold();
        let SLTNode::ForFold { result, .. } = &mut transient else {
            unreachable!()
        };
        *result = SLTForFoldResult::Transient {
            initial: NodeId(1),
            update: NodeId(1),
        };
        verify_for_fold(transient).expect("transient ForFold result must verify");

        let mut mismatched_transient = valid_for_fold();
        let SLTNode::ForFold { result, .. } = &mut mismatched_transient else {
            unreachable!()
        };
        *result = SLTForFoldResult::Transient {
            initial: NodeId(0),
            update: NodeId(1),
        };
        assert_eq!(
            verify_for_fold(mismatched_transient).unwrap_err().invariant,
            "FOR_FOLD.TRANSIENT_RESULT_WIDTH_MATCHES"
        );

        let mut node = valid_for_fold();
        let SLTNode::ForFold {
            reverse, step_op, ..
        } = &mut node
        else {
            unreachable!()
        };
        *reverse = true;
        *step_op = SLTStepOp::Mul;
        assert_eq!(
            verify_for_fold(node).unwrap_err().invariant,
            "FOR_FOLD.REVERSE_STEP_IS_ADD"
        );

        let mut node = valid_for_fold();
        let SLTNode::ForFold { continue_cond, .. } = &mut node else {
            unreachable!()
        };
        *continue_cond = NodeId(2);
        let error = raw_error(vec![constant(8), constant(1), constant(0), node]);
        assert_eq!(error.invariant, "FOR_FOLD.OPERAND_NON_ZERO");

        let mut node = valid_for_fold();
        let SLTNode::ForFold { effects, .. } = &mut node else {
            unreachable!()
        };
        effects.push(SLTForEffect::Event {
            site_id: 0,
            guard: Some(NodeId(2)),
            emit_on_true: true,
            args: Vec::new(),
            fatal_error_code: None,
        });
        let error = raw_error(vec![constant(8), constant(1), constant(0), node]);
        assert_eq!(error.invariant, "FOR_FOLD.OPERAND_NON_ZERO");
    }

    #[test]
    fn validates_complete_for_fold_group_contract() {
        let arena = verify_for_fold_group(valid_for_fold_group())
            .expect("complete ForFoldGroup must verify");
        assert_eq!(
            SLTNodeFacts::verify(&arena).unwrap().width(NodeId(2)),
            Some(8)
        );

        let mut node = valid_for_fold_group();
        let SLTNode::ForFoldGroup { loop_width, .. } = &mut node else {
            unreachable!()
        };
        *loop_width = 0;
        assert_eq!(
            verify_for_fold_group(node).unwrap_err().invariant,
            "FOR_FOLD_GROUP.LOOP_WIDTH_NON_ZERO"
        );

        let mut node = valid_for_fold_group();
        let SLTNode::ForFoldGroup { trip_count, .. } = &mut node else {
            unreachable!()
        };
        *trip_count = 0;
        assert_eq!(
            verify_for_fold_group(node).unwrap_err().invariant,
            "FOR_FOLD_GROUP.TRIP_COUNT_NON_ZERO"
        );

        let mut node = valid_for_fold_group();
        let SLTNode::ForFoldGroup { states, .. } = &mut node else {
            unreachable!()
        };
        states.clear();
        assert_eq!(
            verify_for_fold_group(node).unwrap_err().invariant,
            "FOR_FOLD_GROUP.STATE_NON_EMPTY"
        );

        let mut node = valid_for_fold_group();
        let SLTNode::ForFoldGroup { entry_guard, .. } = &mut node else {
            unreachable!()
        };
        *entry_guard = NodeId(0);
        assert_eq!(
            verify_for_fold_group(node).unwrap_err().invariant,
            "FOR_FOLD_GROUP.ENTRY_GUARD_ONE_BIT"
        );

        let mut node = valid_for_fold_group();
        let SLTNode::ForFoldGroup { states, .. } = &mut node else {
            unreachable!()
        };
        states[0].update = NodeId(1);
        assert_eq!(
            verify_for_fold_group(node).unwrap_err().invariant,
            "FOR_FOLD_GROUP.STATE_WIDTHS_MATCH"
        );
    }

    #[test]
    fn rejects_for_fold_group_loop_state_alias_and_duplicate_or_overlapping_targets() {
        let mut node = valid_for_fold_group();
        let SLTNode::ForFoldGroup { states, .. } = &mut node else {
            unreachable!()
        };
        states[0].target.id = 1;
        assert_eq!(
            verify_for_fold_group(node).unwrap_err().invariant,
            "FOR_FOLD_GROUP.LOOP_VARIABLE_DISJOINT_FROM_STATE_TARGETS"
        );

        let mut node = valid_for_fold_group();
        let SLTNode::ForFoldGroup { states, .. } = &mut node else {
            unreachable!()
        };
        states.push(states[0].clone());
        assert_eq!(
            verify_for_fold_group(node).unwrap_err().invariant,
            "FOR_FOLD_GROUP.STATE_TARGETS_UNIQUE"
        );

        let mut node = valid_for_fold_group();
        let SLTNode::ForFoldGroup { states, .. } = &mut node else {
            unreachable!()
        };
        states.push(SLTForFoldGroupState {
            target: VarAtomBase::new(2, 4, 11),
            initial: NodeId(0),
            update: NodeId(0),
        });
        assert_eq!(
            verify_for_fold_group(node).unwrap_err().invariant,
            "FOR_FOLD_GROUP.STATE_TARGETS_DISJOINT"
        );
    }

    #[test]
    fn checks_for_fold_group_iteration_counter_range() {
        let mut node = valid_for_fold_group();
        let SLTNode::ForFoldGroup {
            start,
            step,
            trip_count,
            ..
        } = &mut node
        else {
            unreachable!()
        };
        *start = BigInt::from(250);
        *step = BigInt::from(3);
        *trip_count = 3;
        assert_eq!(
            verify_for_fold_group(node).unwrap_err().invariant,
            "FOR_FOLD_GROUP.ITERATION_ARITHMETIC_REPRESENTABLE"
        );

        let mut node = valid_for_fold_group();
        let SLTNode::ForFoldGroup {
            loop_signed,
            start,
            trip_count,
            ..
        } = &mut node
        else {
            unreachable!()
        };
        *loop_signed = true;
        *start = BigInt::from(-128);
        *trip_count = 256;
        verify_for_fold_group(node).expect("signed 8-bit endpoints -128 and 127 must fit");

        let mut node = valid_for_fold_group();
        let SLTNode::ForFoldGroup {
            loop_signed, start, ..
        } = &mut node
        else {
            unreachable!()
        };
        *loop_signed = true;
        *start = BigInt::from(-129);
        assert_eq!(
            verify_for_fold_group(node).unwrap_err().invariant,
            "FOR_FOLD_GROUP.ITERATION_ARITHMETIC_REPRESENTABLE"
        );
    }

    #[test]
    fn rejects_for_fold_group_packed_width_overflow() {
        let huge = BitAccess::new(0, usize::MAX - 1);
        let node = SLTNode::ForFoldGroup {
            loop_var: 1,
            loop_width: 8,
            loop_signed: false,
            start: BigInt::from(0),
            step: BigInt::from(1),
            trip_count: 1,
            entry_guard: NodeId(0),
            states: vec![
                SLTForFoldGroupState {
                    target: VarAtomBase::new(2, huge.lsb, huge.msb),
                    initial: NodeId(1),
                    update: NodeId(1),
                },
                SLTForFoldGroupState {
                    target: VarAtomBase::new(3, 0, 0),
                    initial: NodeId(2),
                    update: NodeId(2),
                },
            ],
        };
        let error = raw_error(vec![constant(1), constant(usize::MAX), constant(1), node]);
        assert_eq!(error.invariant, "FOR_FOLD_GROUP.PACKED_WIDTH_REPRESENTABLE");
    }

    #[test]
    fn rejects_effectful_descendant_inside_for_fold_group() {
        let mut effectful = valid_for_fold();
        let SLTNode::ForFold { effects, .. } = &mut effectful else {
            unreachable!()
        };
        effects.push(SLTForEffect::Event {
            site_id: 7,
            guard: None,
            emit_on_true: true,
            args: vec![NodeId(0)],
            fatal_error_code: None,
        });
        let group = SLTNode::ForFoldGroup {
            loop_var: 3,
            loop_width: 8,
            loop_signed: false,
            start: BigInt::from(0),
            step: BigInt::from(1),
            trip_count: 1,
            entry_guard: NodeId(1),
            states: vec![SLTForFoldGroupState {
                target: VarAtomBase::new(4, 0, 7),
                initial: NodeId(2),
                update: NodeId(2),
            }],
        };

        let error = raw_error(vec![constant(8), constant(1), effectful, group]);
        assert_eq!(error.invariant, "FOR_FOLD_GROUP.CHILDREN_PURE_AND_TOTAL");
    }

    #[test]
    fn rejects_error_capable_legacy_fold_inside_for_fold_group() {
        let group = SLTNode::ForFoldGroup {
            loop_var: 3,
            loop_width: 8,
            loop_signed: false,
            start: BigInt::from(0),
            step: BigInt::from(1),
            trip_count: 1,
            entry_guard: NodeId(1),
            states: vec![SLTForFoldGroupState {
                target: VarAtomBase::new(4, 0, 7),
                initial: NodeId(2),
                update: NodeId(2),
            }],
        };

        let error = raw_error(vec![constant(8), constant(1), valid_for_fold(), group]);
        assert_eq!(error.invariant, "FOR_FOLD_GROUP.CHILDREN_PURE_AND_TOTAL");
    }

    #[test]
    fn rejects_overlapping_for_fold_state_targets() {
        let mut node = valid_for_fold();
        let SLTNode::ForFold {
            initials, updates, ..
        } = &mut node
        else {
            unreachable!()
        };
        let overlapping = VarAtomBase::new(2, 4, 11);
        initials.push(SLTForUpdate {
            target: overlapping,
            expr: NodeId(0),
        });
        updates.push(SLTForUpdate {
            target: overlapping,
            expr: NodeId(0),
        });
        assert_eq!(
            verify_for_fold(node).unwrap_err().invariant,
            "FOR_FOLD.STATE_TARGETS_DISJOINT"
        );
    }

    #[test]
    fn rejects_unsigned_inclusive_for_fold_width_overflow() {
        let target = VarAtomBase::new(2, 0, 0);
        let node = SLTNode::ForFold {
            loop_var: 1,
            loop_width: 1,
            loop_signed: false,
            start: SLTLoopBound::Expr(NodeId(0)),
            end: SLTLoopBound::Const(1),
            inclusive: true,
            step: 1,
            step_op: SLTStepOp::Add,
            reverse: false,
            result: SLTForFoldResult::State(target),
            initials: vec![SLTForUpdate {
                target,
                expr: NodeId(1),
            }],
            updates: vec![SLTForUpdate {
                target,
                expr: NodeId(1),
            }],
            effects: Vec::new(),
            continue_cond: NodeId(1),
        };
        let error = raw_error(vec![constant(usize::MAX), constant(1), node]);
        assert_eq!(error.invariant, "FOR_FOLD.INCLUSIVE_WIDTH_REPRESENTABLE");
    }

    #[test]
    fn checks_for_fold_result_access() {
        let error = raw_error(vec![
            constant(1),
            SLTNode::ForFold {
                loop_var: 1,
                loop_width: 8,
                loop_signed: false,
                start: SLTLoopBound::Const(0),
                end: SLTLoopBound::Const(1),
                inclusive: false,
                step: 1,
                step_op: SLTStepOp::Add,
                reverse: false,
                result: SLTForFoldResult::State(VarAtomBase::new(2, 7, 3)),
                initials: vec![SLTForUpdate {
                    target: VarAtomBase::new(2, 0, 0),
                    expr: NodeId(0),
                }],
                updates: vec![SLTForUpdate {
                    target: VarAtomBase::new(2, 0, 0),
                    expr: NodeId(0),
                }],
                effects: Vec::new(),
                continue_cond: NodeId(0),
            },
        ]);
        assert_eq!(error.invariant, "WIDTH.ACCESS_ORDERED");
        assert_eq!(error.node, NodeId(1));
    }

    #[test]
    fn permits_zero_width_nodes_when_the_operation_defines_them() {
        let arena = arena(vec![constant(0), SLTNode::Concat(Vec::new())]);
        let facts = SLTNodeFacts::verify(&arena).expect("zero-width facts are representable");
        assert_eq!(facts.widths(), &[0, 0]);
    }

    #[test]
    fn reports_the_first_reachable_lowerability_blocker() {
        let arena = arena(vec![
            constant(0),
            SLTNode::Unary(UnaryOp::LogicNot, NodeId(0)),
        ]);
        let facts = SLTNodeFacts::verify(&arena).expect("zero-width facts are representable");
        let error = facts
            .require_lowerable(NodeId(1), "test result")
            .expect_err("a reachable zero-width node must reject the root");
        assert_eq!(error.invariant, "ROOT.LOWERABLE_NON_ZERO");
        assert_eq!(error.node, NodeId(0));
        assert!(error.message.contains("root n1 reaches n0"));
    }

    #[test]
    fn verifies_a_deep_chain_without_recursion() {
        const DEPTH: usize = 100_000;
        let mut nodes = Vec::with_capacity(DEPTH + 1);
        nodes.push(constant(17));
        for node in 1..=DEPTH {
            nodes.push(SLTNode::Unary(UnaryOp::Ident, NodeId(node - 1)));
        }
        let arena = arena(nodes);
        let facts = SLTNodeFacts::verify(&arena).expect("deep acyclic graph must verify");
        assert_eq!(facts.width(NodeId(DEPTH)), Some(17));
    }
}