tldr-core 0.1.2

Core analysis engine for TLDR code analysis tool
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
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
//! SSA Module Tests
//!
//! Comprehensive tests for SSA construction and analysis.
//! These tests define expected behavior BEFORE implementation.
//! Tests are designed to FAIL until the modules are implemented.
//!
//! # Test Categories
//!
//! 1. Dominator Tree Tests (SSA-8)
//! 2. Dominance Frontier Tests (SSA-9, SSA-10)
//! 3. Minimal SSA Construction Tests (SSA-1)
//! 4. Pruned SSA Tests (SSA-2, SSA-3)
//! 5. Variable Versioning Tests (SSA-5, SSA-6)
//! 6. Memory SSA Tests (SSA-15, SSA-16, SSA-17)
//! 7. Value Numbering Tests (SSA-7)
//! 8. SCCP Tests (SSA-21)
//! 9. Dead Code Tests (SSA-22)
//! 10. Output Format Tests (SSA-18, SSA-19, SSA-20)
//!
//! Reference: session10-spec.md

use std::collections::{HashMap, HashSet};
use std::path::PathBuf;

use crate::types::{
    BlockType, CfgBlock, CfgEdge, CfgInfo, DfgInfo, EdgeType, RefType, VarRef,
};

use super::analysis::*;
use super::construct::*;
use super::dominators::*;
use super::format::*;
use super::memory::*;
use super::types::*;

// =============================================================================
// Test Fixtures
// =============================================================================

mod fixtures {
    use super::*;

    /// Create a simple linear CFG: Entry -> Block1 -> Exit
    pub fn linear_cfg() -> CfgInfo {
        CfgInfo {
            function: "linear".to_string(),
            blocks: vec![
                CfgBlock {
                    id: 0,
                    block_type: BlockType::Entry,
                    lines: (1, 2),
                    calls: Vec::new(),
                },
                CfgBlock {
                    id: 1,
                    block_type: BlockType::Body,
                    lines: (3, 4),
                    calls: Vec::new(),
                },
                CfgBlock {
                    id: 2,
                    block_type: BlockType::Exit,
                    lines: (5, 5),
                    calls: Vec::new(),
                },
            ],
            edges: vec![
                CfgEdge {
                    from: 0,
                    to: 1,
                    edge_type: EdgeType::Unconditional,
                    condition: None,
                },
                CfgEdge {
                    from: 1,
                    to: 2,
                    edge_type: EdgeType::Unconditional,
                    condition: None,
                },
            ],
            entry_block: 0,
            exit_blocks: vec![2],
            cyclomatic_complexity: 1,
            nested_functions: HashMap::new(),
        }
    }

    /// Create a diamond CFG: Entry -> {True, False} -> Merge -> Exit
    ///
    /// ```text
    ///       0 (entry)
    ///      / \
    ///     1   2
    ///      \ /
    ///       3 (merge)
    ///       |
    ///       4 (exit)
    /// ```
    pub fn diamond_cfg() -> CfgInfo {
        CfgInfo {
            function: "diamond".to_string(),
            blocks: vec![
                CfgBlock {
                    id: 0,
                    block_type: BlockType::Entry,
                    lines: (1, 2),
                    calls: Vec::new(),
                },
                CfgBlock {
                    id: 1,
                    block_type: BlockType::Body,
                    lines: (3, 4),
                    calls: Vec::new(),
                },
                CfgBlock {
                    id: 2,
                    block_type: BlockType::Body,
                    lines: (5, 6),
                    calls: Vec::new(),
                },
                CfgBlock {
                    id: 3,
                    block_type: BlockType::Body,
                    lines: (7, 8),
                    calls: Vec::new(),
                },
                CfgBlock {
                    id: 4,
                    block_type: BlockType::Exit,
                    lines: (9, 9),
                    calls: Vec::new(),
                },
            ],
            edges: vec![
                CfgEdge {
                    from: 0,
                    to: 1,
                    edge_type: EdgeType::True,
                    condition: Some("x > 0".to_string()),
                },
                CfgEdge {
                    from: 0,
                    to: 2,
                    edge_type: EdgeType::False,
                    condition: Some("x > 0".to_string()),
                },
                CfgEdge {
                    from: 1,
                    to: 3,
                    edge_type: EdgeType::Unconditional,
                    condition: None,
                },
                CfgEdge {
                    from: 2,
                    to: 3,
                    edge_type: EdgeType::Unconditional,
                    condition: None,
                },
                CfgEdge {
                    from: 3,
                    to: 4,
                    edge_type: EdgeType::Unconditional,
                    condition: None,
                },
            ],
            entry_block: 0,
            exit_blocks: vec![4],
            cyclomatic_complexity: 2,
            nested_functions: HashMap::new(),
        }
    }

    /// Create a loop CFG: Entry -> Header <-> Body -> Exit
    ///
    /// ```text
    ///     0 (entry)
    ///       |
    ///     1 (header) <--+
    ///      / \          |
    ///     2   3 (body)--+
    ///   (exit)
    /// ```
    pub fn loop_cfg() -> CfgInfo {
        CfgInfo {
            function: "loop".to_string(),
            blocks: vec![
                CfgBlock {
                    id: 0,
                    block_type: BlockType::Entry,
                    lines: (1, 2),
                    calls: Vec::new(),
                },
                CfgBlock {
                    id: 1,
                    block_type: BlockType::LoopHeader,
                    lines: (3, 4),
                    calls: Vec::new(),
                },
                CfgBlock {
                    id: 2,
                    block_type: BlockType::Exit,
                    lines: (8, 8),
                    calls: Vec::new(),
                },
                CfgBlock {
                    id: 3,
                    block_type: BlockType::Body,
                    lines: (5, 7),
                    calls: Vec::new(),
                },
            ],
            edges: vec![
                CfgEdge {
                    from: 0,
                    to: 1,
                    edge_type: EdgeType::Unconditional,
                    condition: None,
                },
                CfgEdge {
                    from: 1,
                    to: 2,
                    edge_type: EdgeType::False,
                    condition: Some("i < n".to_string()),
                },
                CfgEdge {
                    from: 1,
                    to: 3,
                    edge_type: EdgeType::True,
                    condition: Some("i < n".to_string()),
                },
                CfgEdge {
                    from: 3,
                    to: 1,
                    edge_type: EdgeType::Unconditional,
                    condition: None,
                },
            ],
            entry_block: 0,
            exit_blocks: vec![2],
            cyclomatic_complexity: 2,
            nested_functions: HashMap::new(),
        }
    }

    /// Create a complex CFG with nested branches
    ///
    /// ```text
    ///        0 (entry)
    ///       / \
    ///      1   2
    ///     / \   \
    ///    3   4   |
    ///     \ /    |
    ///      5     |
    ///       \   /
    ///        \ /
    ///         6 (merge)
    ///         |
    ///         7 (exit)
    /// ```
    pub fn complex_cfg() -> CfgInfo {
        CfgInfo {
            function: "complex".to_string(),
            blocks: vec![
                CfgBlock {
                    id: 0,
                    block_type: BlockType::Entry,
                    lines: (1, 2),
                    calls: Vec::new(),
                },
                CfgBlock {
                    id: 1,
                    block_type: BlockType::Body,
                    lines: (3, 4),
                    calls: Vec::new(),
                },
                CfgBlock {
                    id: 2,
                    block_type: BlockType::Body,
                    lines: (5, 6),
                    calls: Vec::new(),
                },
                CfgBlock {
                    id: 3,
                    block_type: BlockType::Body,
                    lines: (7, 8),
                    calls: Vec::new(),
                },
                CfgBlock {
                    id: 4,
                    block_type: BlockType::Body,
                    lines: (9, 10),
                    calls: Vec::new(),
                },
                CfgBlock {
                    id: 5,
                    block_type: BlockType::Body,
                    lines: (11, 12),
                    calls: Vec::new(),
                },
                CfgBlock {
                    id: 6,
                    block_type: BlockType::Body,
                    lines: (13, 14),
                    calls: Vec::new(),
                },
                CfgBlock {
                    id: 7,
                    block_type: BlockType::Exit,
                    lines: (15, 15),
                    calls: Vec::new(),
                },
            ],
            edges: vec![
                CfgEdge {
                    from: 0,
                    to: 1,
                    edge_type: EdgeType::True,
                    condition: Some("x > 0".to_string()),
                },
                CfgEdge {
                    from: 0,
                    to: 2,
                    edge_type: EdgeType::False,
                    condition: Some("x > 0".to_string()),
                },
                CfgEdge {
                    from: 1,
                    to: 3,
                    edge_type: EdgeType::True,
                    condition: Some("y > 0".to_string()),
                },
                CfgEdge {
                    from: 1,
                    to: 4,
                    edge_type: EdgeType::False,
                    condition: Some("y > 0".to_string()),
                },
                CfgEdge {
                    from: 2,
                    to: 6,
                    edge_type: EdgeType::Unconditional,
                    condition: None,
                },
                CfgEdge {
                    from: 3,
                    to: 5,
                    edge_type: EdgeType::Unconditional,
                    condition: None,
                },
                CfgEdge {
                    from: 4,
                    to: 5,
                    edge_type: EdgeType::Unconditional,
                    condition: None,
                },
                CfgEdge {
                    from: 5,
                    to: 6,
                    edge_type: EdgeType::Unconditional,
                    condition: None,
                },
                CfgEdge {
                    from: 6,
                    to: 7,
                    edge_type: EdgeType::Unconditional,
                    condition: None,
                },
            ],
            entry_block: 0,
            exit_blocks: vec![7],
            cyclomatic_complexity: 3,
            nested_functions: HashMap::new(),
        }
    }

    /// Create DFG for diamond pattern with variable y defined in both branches
    pub fn diamond_dfg() -> DfgInfo {
        DfgInfo {
            function: "diamond".to_string(),
            refs: vec![
                VarRef {
                    name: "x".to_string(),
                    ref_type: RefType::Definition,
                    line: 1,
                    column: 0,
                    context: None,
                    group_id: None,
                },
                VarRef {
                    name: "x".to_string(),
                    ref_type: RefType::Use,
                    line: 2,
                    column: 4,
                    context: None,
                    group_id: None,
                },
                VarRef {
                    name: "y".to_string(),
                    ref_type: RefType::Definition,
                    line: 3,
                    column: 0,
                    context: None,
                    group_id: None,
                },
                VarRef {
                    name: "y".to_string(),
                    ref_type: RefType::Definition,
                    line: 5,
                    column: 0,
                    context: None,
                    group_id: None,
                },
                VarRef {
                    name: "y".to_string(),
                    ref_type: RefType::Use,
                    line: 9,
                    column: 7,
                    context: None,
                    group_id: None,
                },
            ],
            edges: Vec::new(),
            variables: Vec::new(),
        }
    }

    /// Create DFG for loop pattern with variables total and i
    pub fn loop_dfg() -> DfgInfo {
        DfgInfo {
            function: "loop".to_string(),
            refs: vec![
                // total = 0 at entry
                VarRef {
                    name: "total".to_string(),
                    ref_type: RefType::Definition,
                    line: 1,
                    column: 0,
                    context: None,
                    group_id: None,
                },
                // i = 0 at entry
                VarRef {
                    name: "i".to_string(),
                    ref_type: RefType::Definition,
                    line: 2,
                    column: 0,
                    context: None,
                    group_id: None,
                },
                // i < n at header
                VarRef {
                    name: "i".to_string(),
                    ref_type: RefType::Use,
                    line: 3,
                    column: 6,
                    context: None,
                    group_id: None,
                },
                VarRef {
                    name: "n".to_string(),
                    ref_type: RefType::Use,
                    line: 3,
                    column: 10,
                    context: None,
                    group_id: None,
                },
                // total = total + i in body
                VarRef {
                    name: "total".to_string(),
                    ref_type: RefType::Definition,
                    line: 5,
                    column: 0,
                    context: None,
                    group_id: None,
                },
                VarRef {
                    name: "total".to_string(),
                    ref_type: RefType::Use,
                    line: 5,
                    column: 8,
                    context: None,
                    group_id: None,
                },
                VarRef {
                    name: "i".to_string(),
                    ref_type: RefType::Use,
                    line: 5,
                    column: 16,
                    context: None,
                    group_id: None,
                },
                // i = i + 1 in body
                VarRef {
                    name: "i".to_string(),
                    ref_type: RefType::Definition,
                    line: 6,
                    column: 0,
                    context: None,
                    group_id: None,
                },
                VarRef {
                    name: "i".to_string(),
                    ref_type: RefType::Use,
                    line: 6,
                    column: 4,
                    context: None,
                    group_id: None,
                },
                // return total at exit
                VarRef {
                    name: "total".to_string(),
                    ref_type: RefType::Use,
                    line: 8,
                    column: 7,
                    context: None,
                    group_id: None,
                },
            ],
            edges: Vec::new(),
            variables: Vec::new(),
        }
    }

    /// Create a sample SSA function for testing formatters
    pub fn sample_ssa() -> SsaFunction {
        SsaFunction {
            function: "sample".to_string(),
            file: PathBuf::from("test.py"),
            ssa_type: SsaType::Minimal,
            blocks: vec![
                SsaBlock {
                    id: 0,
                    label: Some("entry".to_string()),
                    lines: (1, 2),
                    phi_functions: vec![],
                    instructions: vec![
                        SsaInstruction {
                            kind: SsaInstructionKind::Param,
                            target: Some(SsaNameId(1)),
                            uses: vec![],
                            line: 1,
                            source_text: Some("x = param".to_string()),
                        },
                        SsaInstruction {
                            kind: SsaInstructionKind::Assign,
                            target: Some(SsaNameId(2)),
                            uses: vec![],
                            line: 2,
                            source_text: Some("y = 0".to_string()),
                        },
                    ],
                    successors: vec![1, 2],
                    predecessors: vec![],
                },
                SsaBlock {
                    id: 1,
                    label: None,
                    lines: (3, 4),
                    phi_functions: vec![],
                    instructions: vec![SsaInstruction {
                        kind: SsaInstructionKind::Assign,
                        target: Some(SsaNameId(3)),
                        uses: vec![SsaNameId(1)],
                        line: 3,
                        source_text: Some("y = x + 1".to_string()),
                    }],
                    successors: vec![3],
                    predecessors: vec![0],
                },
                SsaBlock {
                    id: 2,
                    label: None,
                    lines: (5, 6),
                    phi_functions: vec![],
                    instructions: vec![SsaInstruction {
                        kind: SsaInstructionKind::Assign,
                        target: Some(SsaNameId(4)),
                        uses: vec![SsaNameId(1)],
                        line: 5,
                        source_text: Some("y = x - 1".to_string()),
                    }],
                    successors: vec![3],
                    predecessors: vec![0],
                },
                SsaBlock {
                    id: 3,
                    label: Some("exit".to_string()),
                    lines: (7, 8),
                    phi_functions: vec![PhiFunction {
                        target: SsaNameId(5),
                        variable: "y".to_string(),
                        sources: vec![
                            PhiSource {
                                block: 1,
                                name: SsaNameId(3),
                            },
                            PhiSource {
                                block: 2,
                                name: SsaNameId(4),
                            },
                        ],
                        line: 7,
                    }],
                    instructions: vec![SsaInstruction {
                        kind: SsaInstructionKind::Return,
                        target: None,
                        uses: vec![SsaNameId(5)],
                        line: 8,
                        source_text: Some("return y".to_string()),
                    }],
                    successors: vec![],
                    predecessors: vec![1, 2],
                },
            ],
            ssa_names: vec![
                SsaName {
                    id: SsaNameId(1),
                    variable: "x".to_string(),
                    version: 1,
                    def_block: Some(0),
                    def_line: 1,
                },
                SsaName {
                    id: SsaNameId(2),
                    variable: "y".to_string(),
                    version: 1,
                    def_block: Some(0),
                    def_line: 2,
                },
                SsaName {
                    id: SsaNameId(3),
                    variable: "y".to_string(),
                    version: 2,
                    def_block: Some(1),
                    def_line: 3,
                },
                SsaName {
                    id: SsaNameId(4),
                    variable: "y".to_string(),
                    version: 3,
                    def_block: Some(2),
                    def_line: 5,
                },
                SsaName {
                    id: SsaNameId(5),
                    variable: "y".to_string(),
                    version: 4,
                    def_block: Some(3),
                    def_line: 7,
                },
            ],
            def_use: {
                let mut map = HashMap::new();
                map.insert(SsaNameId(1), vec![SsaNameId(3), SsaNameId(4)]);
                map.insert(SsaNameId(3), vec![SsaNameId(5)]);
                map.insert(SsaNameId(4), vec![SsaNameId(5)]);
                map
            },
            stats: SsaStats {
                phi_count: 1,
                ssa_names: 5,
                blocks: 4,
                instructions: 5,
                dead_phi_count: 0,
            },
        }
    }

    /// Create an SSA function with memory operations (stores, loads, calls)
    pub fn ssa_with_memory_ops() -> SsaFunction {
        SsaFunction {
            function: "memory_test".to_string(),
            file: PathBuf::from("test.py"),
            ssa_type: SsaType::Minimal,
            blocks: vec![
                SsaBlock {
                    id: 0,
                    label: Some("entry".to_string()),
                    lines: (1, 3),
                    phi_functions: vec![],
                    instructions: vec![
                        // obj = MyClass()  - allocation
                        SsaInstruction {
                            kind: SsaInstructionKind::Assign,
                            target: Some(SsaNameId(1)),
                            uses: vec![],
                            line: 1,
                            source_text: Some("obj = MyClass()".to_string()),
                        },
                        // obj.field = 10  - store
                        SsaInstruction {
                            kind: SsaInstructionKind::Assign,
                            target: Some(SsaNameId(2)),
                            uses: vec![SsaNameId(1)],
                            line: 2,
                            source_text: Some("obj.field = 10".to_string()),
                        },
                        // x = obj.field  - load
                        SsaInstruction {
                            kind: SsaInstructionKind::Assign,
                            target: Some(SsaNameId(3)),
                            uses: vec![SsaNameId(1)],
                            line: 3,
                            source_text: Some("x = obj.field".to_string()),
                        },
                    ],
                    successors: vec![1, 2],
                    predecessors: vec![],
                },
                SsaBlock {
                    id: 1,
                    label: None,
                    lines: (4, 5),
                    phi_functions: vec![],
                    instructions: vec![
                        // obj.field = 20  - store in branch 1
                        SsaInstruction {
                            kind: SsaInstructionKind::Assign,
                            target: Some(SsaNameId(4)),
                            uses: vec![SsaNameId(1)],
                            line: 4,
                            source_text: Some("obj.field = 20".to_string()),
                        },
                    ],
                    successors: vec![3],
                    predecessors: vec![0],
                },
                SsaBlock {
                    id: 2,
                    label: None,
                    lines: (6, 7),
                    phi_functions: vec![],
                    instructions: vec![
                        // obj.field = 30  - store in branch 2
                        SsaInstruction {
                            kind: SsaInstructionKind::Assign,
                            target: Some(SsaNameId(5)),
                            uses: vec![SsaNameId(1)],
                            line: 6,
                            source_text: Some("obj.field = 30".to_string()),
                        },
                    ],
                    successors: vec![3],
                    predecessors: vec![0],
                },
                SsaBlock {
                    id: 3,
                    label: Some("merge".to_string()),
                    lines: (8, 10),
                    phi_functions: vec![],
                    instructions: vec![
                        // y = obj.field  - load after merge
                        SsaInstruction {
                            kind: SsaInstructionKind::Assign,
                            target: Some(SsaNameId(6)),
                            uses: vec![SsaNameId(1)],
                            line: 8,
                            source_text: Some("y = obj.field".to_string()),
                        },
                        // process(y)  - call
                        SsaInstruction {
                            kind: SsaInstructionKind::Call,
                            target: None,
                            uses: vec![SsaNameId(6)],
                            line: 9,
                            source_text: Some("process(y)".to_string()),
                        },
                        SsaInstruction {
                            kind: SsaInstructionKind::Return,
                            target: None,
                            uses: vec![SsaNameId(6)],
                            line: 10,
                            source_text: Some("return y".to_string()),
                        },
                    ],
                    successors: vec![],
                    predecessors: vec![1, 2],
                },
            ],
            ssa_names: vec![
                SsaName {
                    id: SsaNameId(1),
                    variable: "obj".to_string(),
                    version: 1,
                    def_block: Some(0),
                    def_line: 1,
                },
                SsaName {
                    id: SsaNameId(2),
                    variable: "obj.field".to_string(),
                    version: 1,
                    def_block: Some(0),
                    def_line: 2,
                },
                SsaName {
                    id: SsaNameId(3),
                    variable: "x".to_string(),
                    version: 1,
                    def_block: Some(0),
                    def_line: 3,
                },
                SsaName {
                    id: SsaNameId(4),
                    variable: "obj.field".to_string(),
                    version: 2,
                    def_block: Some(1),
                    def_line: 4,
                },
                SsaName {
                    id: SsaNameId(5),
                    variable: "obj.field".to_string(),
                    version: 3,
                    def_block: Some(2),
                    def_line: 6,
                },
                SsaName {
                    id: SsaNameId(6),
                    variable: "y".to_string(),
                    version: 1,
                    def_block: Some(3),
                    def_line: 8,
                },
            ],
            def_use: HashMap::new(),
            stats: SsaStats::default(),
        }
    }
}

// =============================================================================
// Dominator Tree Tests (SSA-8)
// =============================================================================

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

    /// Test: Simple linear CFG has straightforward dominator tree
    /// Entry dominates all blocks, each block has previous as idom
    #[test]
    fn test_linear_cfg_dominators() {
        let cfg = fixtures::linear_cfg();
        let dom_tree = build_dominator_tree(&cfg).expect("should build dominator tree");

        // Entry block has no immediate dominator
        assert_eq!(dom_tree.nodes.get(&0).unwrap().idom, None);

        // Block 1's idom is block 0
        assert_eq!(dom_tree.nodes.get(&1).unwrap().idom, Some(0));

        // Block 2's idom is block 1
        assert_eq!(dom_tree.nodes.get(&2).unwrap().idom, Some(1));

        // Entry dominates all
        assert!(dom_tree.dominates(0, 0));
        assert!(dom_tree.dominates(0, 1));
        assert!(dom_tree.dominates(0, 2));

        // Block 1 dominates block 2 but not entry
        assert!(dom_tree.dominates(1, 2));
        assert!(!dom_tree.dominates(1, 0));
    }

    /// Test: Diamond pattern - branch point dominates both branches and merge
    #[test]
    fn test_diamond_cfg_dominators() {
        let cfg = fixtures::diamond_cfg();
        let dom_tree = build_dominator_tree(&cfg).expect("should build dominator tree");

        // Entry (0) has no idom
        assert_eq!(dom_tree.nodes.get(&0).unwrap().idom, None);

        // Both branches (1, 2) have entry as idom
        assert_eq!(dom_tree.nodes.get(&1).unwrap().idom, Some(0));
        assert_eq!(dom_tree.nodes.get(&2).unwrap().idom, Some(0));

        // Merge block (3) has entry as idom (not 1 or 2)
        assert_eq!(dom_tree.nodes.get(&3).unwrap().idom, Some(0));

        // Exit (4) has merge (3) as idom
        assert_eq!(dom_tree.nodes.get(&4).unwrap().idom, Some(3));

        // Branch 1 does NOT dominate merge (path through branch 2 exists)
        assert!(!dom_tree.dominates(1, 3));
        assert!(!dom_tree.dominates(2, 3));
    }

    /// Test: Loop - header dominates body, back edge doesn't affect dominators
    #[test]
    fn test_loop_cfg_dominators() {
        let cfg = fixtures::loop_cfg();
        let dom_tree = build_dominator_tree(&cfg).expect("should build dominator tree");

        // Entry (0) has no idom
        assert_eq!(dom_tree.nodes.get(&0).unwrap().idom, None);

        // Header (1) has entry as idom
        assert_eq!(dom_tree.nodes.get(&1).unwrap().idom, Some(0));

        // Body (3) has header as idom
        assert_eq!(dom_tree.nodes.get(&3).unwrap().idom, Some(1));

        // Exit (2) has header as idom
        assert_eq!(dom_tree.nodes.get(&2).unwrap().idom, Some(1));

        // Header dominates body
        assert!(dom_tree.dominates(1, 3));

        // Body does NOT dominate header (back edge doesn't count)
        assert!(!dom_tree.dominates(3, 1));
    }

    /// Test: Complex nested branches
    #[test]
    fn test_complex_cfg_dominators() {
        let cfg = fixtures::complex_cfg();
        let dom_tree = build_dominator_tree(&cfg).expect("should build dominator tree");

        // Entry dominates all
        for i in 0..8 {
            assert!(
                dom_tree.dominates(0, i),
                "entry should dominate block {}",
                i
            );
        }

        // Inner branch (1) dominates its children (3, 4) and inner merge (5)
        assert!(dom_tree.dominates(1, 3));
        assert!(dom_tree.dominates(1, 4));
        assert!(dom_tree.dominates(1, 5));

        // But inner branch doesn't dominate outer merge (6) - path through block 2
        assert!(!dom_tree.dominates(1, 6));

        // Outer merge (6) dominates exit (7)
        assert!(dom_tree.dominates(6, 7));
    }

    /// Test: Dominator tree depth calculation
    #[test]
    fn test_dominator_tree_depth() {
        let cfg = fixtures::linear_cfg();
        let dom_tree = build_dominator_tree(&cfg).expect("should build dominator tree");

        assert_eq!(dom_tree.nodes.get(&0).unwrap().depth, 0);
        assert_eq!(dom_tree.nodes.get(&1).unwrap().depth, 1);
        assert_eq!(dom_tree.nodes.get(&2).unwrap().depth, 2);
    }

    /// Test: dominated_by returns correct set
    #[test]
    fn test_dominated_by() {
        let cfg = fixtures::diamond_cfg();
        let dom_tree = build_dominator_tree(&cfg).expect("should build dominator tree");

        let dominated_by_entry = dom_tree.dominated_by(0);
        assert_eq!(dominated_by_entry.len(), 5); // All 5 blocks

        let dominated_by_merge = dom_tree.dominated_by(3);
        assert!(dominated_by_merge.contains(&3));
        assert!(dominated_by_merge.contains(&4));
        assert_eq!(dominated_by_merge.len(), 2);
    }

    /// Test: strictly_dominates excludes self
    #[test]
    fn test_strictly_dominates() {
        let cfg = fixtures::linear_cfg();
        let dom_tree = build_dominator_tree(&cfg).expect("should build dominator tree");

        assert!(!dom_tree.strictly_dominates(0, 0));
        assert!(dom_tree.strictly_dominates(0, 1));
        assert!(dom_tree.strictly_dominates(0, 2));
    }
}

// =============================================================================
// Dominance Frontier Tests (SSA-9, SSA-10)
// =============================================================================

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

    /// Test: Entry block has empty dominance frontier
    #[test]
    fn test_entry_block_empty_frontier() {
        let cfg = fixtures::diamond_cfg();
        let dom_tree = build_dominator_tree(&cfg).expect("should build dominator tree");
        let df = compute_dominance_frontier(&cfg, &dom_tree).expect("should compute DF");

        // Entry block dominates everything it can reach, so DF is empty
        assert!(
            df.get(0).is_empty(),
            "Entry block should have empty dominance frontier"
        );
    }

    /// Test: Diamond pattern - branches have merge point in frontier
    #[test]
    fn test_diamond_dominance_frontier() {
        let cfg = fixtures::diamond_cfg();
        let dom_tree = build_dominator_tree(&cfg).expect("should build dominator tree");
        let df = compute_dominance_frontier(&cfg, &dom_tree).expect("should compute DF");

        // Blocks 1 and 2 (branches) should have block 3 (merge) in their frontier
        assert!(
            df.get(1).contains(&3),
            "Branch block 1 should have merge (3) in DF"
        );
        assert!(
            df.get(2).contains(&3),
            "Branch block 2 should have merge (3) in DF"
        );

        // Merge block (3) has empty frontier
        assert!(df.get(3).is_empty());
    }

    /// Test: Loop - header is in body's frontier
    #[test]
    fn test_loop_dominance_frontier() {
        let cfg = fixtures::loop_cfg();
        let dom_tree = build_dominator_tree(&cfg).expect("should build dominator tree");
        let df = compute_dominance_frontier(&cfg, &dom_tree).expect("should compute DF");

        // Body (3) has header (1) in its frontier due to back edge
        assert!(df.get(3).contains(&1), "Loop body should have header in DF");
    }

    /// Test: Iterated dominance frontier closure
    #[test]
    fn test_iterated_dominance_frontier() {
        let cfg = fixtures::complex_cfg();
        let dom_tree = build_dominator_tree(&cfg).expect("should build dominator tree");
        let df = compute_dominance_frontier(&cfg, &dom_tree).expect("should compute DF");

        // Define blocks in inner branch
        let inner_blocks: HashSet<usize> = vec![3, 4].into_iter().collect();

        // IDF should include inner merge (5) and potentially outer merge (6)
        let idf = df.iterated(&inner_blocks);
        assert!(idf.contains(&5), "IDF should contain inner merge point");
    }

    /// Test: Empty set has empty IDF
    #[test]
    fn test_empty_idf() {
        let cfg = fixtures::diamond_cfg();
        let dom_tree = build_dominator_tree(&cfg).expect("should build dominator tree");
        let df = compute_dominance_frontier(&cfg, &dom_tree).expect("should compute DF");

        let empty: HashSet<usize> = HashSet::new();
        let idf = df.iterated(&empty);
        assert!(idf.is_empty());
    }
}

// =============================================================================
// Minimal SSA Construction Tests (SSA-1)
// =============================================================================

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

    /// Test: Single variable, no branching -> no phi functions needed
    #[test]
    fn test_linear_no_phi() {
        let cfg = fixtures::linear_cfg();
        let dfg = DfgInfo {
            function: "linear".to_string(),
            refs: vec![
                VarRef {
                    name: "x".to_string(),
                    ref_type: RefType::Definition,
                    line: 1,
                    column: 0,
                    context: None,
                    group_id: None,
                },
                VarRef {
                    name: "x".to_string(),
                    ref_type: RefType::Use,
                    line: 5,
                    column: 7,
                    context: None,
                    group_id: None,
                },
            ],
            edges: Vec::new(),
            variables: Vec::new(),
        };

        let ssa = construct_minimal_ssa(&cfg, &dfg).expect("should construct SSA");

        // No phi functions in linear code
        let total_phis: usize = ssa.blocks.iter().map(|b| b.phi_functions.len()).sum();
        assert_eq!(total_phis, 0, "Linear code should have no phi functions");
    }

    /// Test: Diamond pattern -> phi at merge point
    #[test]
    fn test_diamond_phi_at_merge() {
        let cfg = fixtures::diamond_cfg();
        let dfg = fixtures::diamond_dfg();

        let ssa = construct_minimal_ssa(&cfg, &dfg).expect("should construct SSA");

        // Find merge block (block 3)
        let merge_block = ssa.blocks.iter().find(|b| b.id == 3).unwrap();

        // Should have phi for variable y
        assert!(
            merge_block
                .phi_functions
                .iter()
                .any(|phi| phi.variable == "y"),
            "Merge block should have phi for y"
        );

        // Phi should have 2 sources (from blocks 1 and 2)
        let y_phi = merge_block
            .phi_functions
            .iter()
            .find(|phi| phi.variable == "y")
            .unwrap();
        assert_eq!(y_phi.sources.len(), 2, "Phi should have 2 sources");
    }

    /// Test: Loop -> phi at loop header
    #[test]
    fn test_loop_phi_at_header() {
        let cfg = fixtures::loop_cfg();
        let dfg = fixtures::loop_dfg();

        let ssa = construct_minimal_ssa(&cfg, &dfg).expect("should construct SSA");

        // Find header block (block 1)
        let header_block = ssa.blocks.iter().find(|b| b.id == 1).unwrap();

        // Should have phi for both total and i
        let has_total_phi = header_block
            .phi_functions
            .iter()
            .any(|phi| phi.variable == "total");
        let has_i_phi = header_block
            .phi_functions
            .iter()
            .any(|phi| phi.variable == "i");

        assert!(has_total_phi, "Header should have phi for total");
        assert!(has_i_phi, "Header should have phi for i");
    }

    /// Test: Multiple variables -> independent phi sets
    #[test]
    fn test_multiple_variables_independent_phis() {
        let cfg = fixtures::diamond_cfg();
        let dfg = DfgInfo {
            function: "diamond".to_string(),
            refs: vec![
                // x defined in both branches
                VarRef {
                    name: "x".to_string(),
                    ref_type: RefType::Definition,
                    line: 3,
                    column: 0,
                    context: None,
                    group_id: None,
                },
                VarRef {
                    name: "x".to_string(),
                    ref_type: RefType::Definition,
                    line: 5,
                    column: 0,
                    context: None,
                    group_id: None,
                },
                // y defined in both branches
                VarRef {
                    name: "y".to_string(),
                    ref_type: RefType::Definition,
                    line: 4,
                    column: 0,
                    context: None,
                    group_id: None,
                },
                VarRef {
                    name: "y".to_string(),
                    ref_type: RefType::Definition,
                    line: 6,
                    column: 0,
                    context: None,
                    group_id: None,
                },
                // Both used at merge
                VarRef {
                    name: "x".to_string(),
                    ref_type: RefType::Use,
                    line: 9,
                    column: 7,
                    context: None,
                    group_id: None,
                },
                VarRef {
                    name: "y".to_string(),
                    ref_type: RefType::Use,
                    line: 9,
                    column: 11,
                    context: None,
                    group_id: None,
                },
            ],
            edges: Vec::new(),
            variables: Vec::new(),
        };

        let ssa = construct_minimal_ssa(&cfg, &dfg).expect("should construct SSA");

        let merge_block = ssa.blocks.iter().find(|b| b.id == 3).unwrap();

        // Should have independent phis for both x and y
        let x_phi = merge_block
            .phi_functions
            .iter()
            .find(|phi| phi.variable == "x");
        let y_phi = merge_block
            .phi_functions
            .iter()
            .find(|phi| phi.variable == "y");

        assert!(x_phi.is_some(), "Should have phi for x");
        assert!(y_phi.is_some(), "Should have phi for y");
        assert_eq!(merge_block.phi_functions.len(), 2);
    }

    /// Test: SSA type is correctly set
    #[test]
    fn test_ssa_type_minimal() {
        let cfg = fixtures::diamond_cfg();
        let dfg = fixtures::diamond_dfg();

        let ssa = construct_minimal_ssa(&cfg, &dfg).expect("should construct SSA");
        assert_eq!(ssa.ssa_type, SsaType::Minimal);
    }
}

// =============================================================================
// Pruned SSA Tests (SSA-2, SSA-3)
// =============================================================================

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

    /// Test: Dead variable at merge -> no phi in pruned SSA
    #[test]
    fn test_pruned_removes_dead_phi() {
        let cfg = fixtures::diamond_cfg();
        // Variable z is defined in both branches but never used
        let dfg = DfgInfo {
            function: "diamond".to_string(),
            refs: vec![
                VarRef {
                    name: "z".to_string(),
                    ref_type: RefType::Definition,
                    line: 3,
                    column: 0,
                    context: None,
                    group_id: None,
                },
                VarRef {
                    name: "z".to_string(),
                    ref_type: RefType::Definition,
                    line: 5,
                    column: 0,
                    context: None,
                    group_id: None,
                },
                // z is never used!
            ],
            edges: Vec::new(),
            variables: Vec::new(),
        };

        let live_vars = LiveVariables {
            function: "diamond".to_string(),
            blocks: {
                let mut map = HashMap::new();
                // z is not live at merge point
                map.insert(
                    3,
                    LiveSets {
                        live_in: HashSet::new(),
                        live_out: HashSet::new(),
                    },
                );
                map
            },
        };

        let ssa =
            construct_pruned_ssa(&cfg, &dfg, &live_vars).expect("should construct pruned SSA");

        // No phi for z because it's dead
        let merge_block = ssa.blocks.iter().find(|b| b.id == 3).unwrap();
        assert!(
            !merge_block
                .phi_functions
                .iter()
                .any(|phi| phi.variable == "z"),
            "Pruned SSA should not have phi for dead variable"
        );
    }

    /// Test: Semi-pruned excludes block-local variables
    #[test]
    fn test_semi_pruned_excludes_local() {
        let cfg = fixtures::diamond_cfg();
        // Variable temp is defined and used only in block 1
        let dfg = DfgInfo {
            function: "diamond".to_string(),
            refs: vec![
                VarRef {
                    name: "temp".to_string(),
                    ref_type: RefType::Definition,
                    line: 3,
                    column: 0,
                    context: None,
                    group_id: None,
                },
                VarRef {
                    name: "temp".to_string(),
                    ref_type: RefType::Use,
                    line: 4,
                    column: 0,
                    context: None,
                    group_id: None,
                },
            ],
            edges: Vec::new(),
            variables: Vec::new(),
        };

        let ssa = construct_semi_pruned_ssa(&cfg, &dfg).expect("should construct semi-pruned SSA");

        // No phi for temp anywhere (it's block-local)
        for block in &ssa.blocks {
            assert!(
                !block.phi_functions.iter().any(|phi| phi.variable == "temp"),
                "Semi-pruned SSA should not have phi for block-local variable"
            );
        }
    }

    /// Test: Semi-pruned includes cross-block variables
    #[test]
    fn test_semi_pruned_includes_cross_block() {
        let cfg = fixtures::diamond_cfg();
        let dfg = fixtures::diamond_dfg(); // y is used across blocks

        let ssa = construct_semi_pruned_ssa(&cfg, &dfg).expect("should construct semi-pruned SSA");

        // Should still have phi for y (it crosses block boundaries)
        let merge_block = ssa.blocks.iter().find(|b| b.id == 3).unwrap();
        assert!(
            merge_block
                .phi_functions
                .iter()
                .any(|phi| phi.variable == "y"),
            "Semi-pruned SSA should have phi for cross-block variable"
        );
    }

    /// Test: Pruned SSA type is correctly set
    #[test]
    fn test_ssa_type_pruned() {
        let cfg = fixtures::diamond_cfg();
        let dfg = fixtures::diamond_dfg();
        let live_vars = LiveVariables {
            function: "diamond".to_string(),
            blocks: HashMap::new(),
        };

        let ssa =
            construct_pruned_ssa(&cfg, &dfg, &live_vars).expect("should construct pruned SSA");
        assert_eq!(ssa.ssa_type, SsaType::Pruned);
    }

    // =========================================================================
    // Phase 12: Additional Pruned/Semi-Pruned SSA Tests
    // =========================================================================

    /// Test: Pruned SSA has fewer phi functions than minimal SSA
    /// When variables are not live, pruned should eliminate unnecessary phis
    #[test]
    fn test_pruned_phi_count_less_than_minimal() {
        let cfg = fixtures::diamond_cfg();
        // y is defined in both branches and used after merge
        // z is defined in both branches but never used
        let dfg = DfgInfo {
            function: "diamond".to_string(),
            refs: vec![
                // y defined in branch 1
                VarRef {
                    name: "y".to_string(),
                    ref_type: RefType::Definition,
                    line: 3,
                    column: 0,
                    context: None,
                    group_id: None,
                },
                // y defined in branch 2
                VarRef {
                    name: "y".to_string(),
                    ref_type: RefType::Definition,
                    line: 5,
                    column: 0,
                    context: None,
                    group_id: None,
                },
                // y used after merge
                VarRef {
                    name: "y".to_string(),
                    ref_type: RefType::Use,
                    line: 9,
                    column: 0,
                    context: None,
                    group_id: None,
                },
                // z defined in branch 1 (dead)
                VarRef {
                    name: "z".to_string(),
                    ref_type: RefType::Definition,
                    line: 4,
                    column: 0,
                    context: None,
                    group_id: None,
                },
                // z defined in branch 2 (dead)
                VarRef {
                    name: "z".to_string(),
                    ref_type: RefType::Definition,
                    line: 6,
                    column: 0,
                    context: None,
                    group_id: None,
                },
                // z is never used!
            ],
            edges: Vec::new(),
            variables: Vec::new(),
        };

        // Minimal SSA should have phi for both y and z
        let minimal_ssa = construct_minimal_ssa(&cfg, &dfg).expect("should construct minimal SSA");
        let minimal_phi_count: usize = minimal_ssa
            .blocks
            .iter()
            .map(|b| b.phi_functions.len())
            .sum();

        // Live vars: y is live at merge (used at line 9), z is not
        let live_vars = LiveVariables {
            function: "diamond".to_string(),
            blocks: {
                let mut map = HashMap::new();
                map.insert(
                    3,
                    LiveSets {
                        live_in: {
                            let mut set = HashSet::new();
                            set.insert("y".to_string());
                            set
                        },
                        live_out: HashSet::new(),
                    },
                );
                map
            },
        };

        let pruned_ssa =
            construct_pruned_ssa(&cfg, &dfg, &live_vars).expect("should construct pruned SSA");
        let pruned_phi_count: usize = pruned_ssa
            .blocks
            .iter()
            .map(|b| b.phi_functions.len())
            .sum();

        assert!(
            pruned_phi_count <= minimal_phi_count,
            "Pruned SSA should have <= phi functions than minimal: pruned={}, minimal={}",
            pruned_phi_count,
            minimal_phi_count
        );
    }

    /// Test: Variable live at merge gets phi in pruned SSA
    #[test]
    fn test_pruned_phi_for_live_variable() {
        let cfg = fixtures::diamond_cfg();
        // y is defined in both branches and used after merge
        let dfg = DfgInfo {
            function: "diamond".to_string(),
            refs: vec![
                VarRef {
                    name: "y".to_string(),
                    ref_type: RefType::Definition,
                    line: 3,
                    column: 0,
                    context: None,
                    group_id: None,
                },
                VarRef {
                    name: "y".to_string(),
                    ref_type: RefType::Definition,
                    line: 5,
                    column: 0,
                    context: None,
                    group_id: None,
                },
                VarRef {
                    name: "y".to_string(),
                    ref_type: RefType::Use,
                    line: 9,
                    column: 0,
                    context: None,
                    group_id: None,
                },
            ],
            edges: Vec::new(),
            variables: Vec::new(),
        };

        // y is live at block 3 (merge point)
        let live_vars = LiveVariables {
            function: "diamond".to_string(),
            blocks: {
                let mut map = HashMap::new();
                map.insert(
                    3,
                    LiveSets {
                        live_in: {
                            let mut set = HashSet::new();
                            set.insert("y".to_string());
                            set
                        },
                        live_out: HashSet::new(),
                    },
                );
                map
            },
        };

        let ssa =
            construct_pruned_ssa(&cfg, &dfg, &live_vars).expect("should construct pruned SSA");

        // Should have phi for y because it's live
        let merge_block = ssa.blocks.iter().find(|b| b.id == 3).unwrap();
        assert!(
            merge_block
                .phi_functions
                .iter()
                .any(|phi| phi.variable == "y"),
            "Pruned SSA should have phi for live variable y"
        );
    }

    /// Test: Semi-pruned correctly identifies block-local vs cross-block
    #[test]
    fn test_semi_pruned_block_local_detection() {
        let cfg = fixtures::diamond_cfg();
        // local_var: defined and used only in block 1 (lines 3-4)
        // cross_var: defined in block 1, used in block 3 (merge)
        let dfg = DfgInfo {
            function: "diamond".to_string(),
            refs: vec![
                // local_var: block-local (all refs in block 1, lines 3-4)
                VarRef {
                    name: "local_var".to_string(),
                    ref_type: RefType::Definition,
                    line: 3,
                    column: 0,
                    context: None,
                    group_id: None,
                },
                VarRef {
                    name: "local_var".to_string(),
                    ref_type: RefType::Use,
                    line: 4,
                    column: 0,
                    context: None,
                    group_id: None,
                },
                // cross_var: crosses blocks (def in 1, def in 2, use in 3)
                VarRef {
                    name: "cross_var".to_string(),
                    ref_type: RefType::Definition,
                    line: 3,
                    column: 0,
                    context: None,
                    group_id: None,
                },
                VarRef {
                    name: "cross_var".to_string(),
                    ref_type: RefType::Definition,
                    line: 5,
                    column: 0,
                    context: None,
                    group_id: None,
                },
                VarRef {
                    name: "cross_var".to_string(),
                    ref_type: RefType::Use,
                    line: 7,
                    column: 0,
                    context: None,
                    group_id: None,
                },
            ],
            edges: Vec::new(),
            variables: Vec::new(),
        };

        let ssa = construct_semi_pruned_ssa(&cfg, &dfg).expect("should construct semi-pruned SSA");

        // No phi for local_var (block-local)
        let has_local_phi = ssa.blocks.iter().any(|b| {
            b.phi_functions
                .iter()
                .any(|phi| phi.variable == "local_var")
        });
        assert!(
            !has_local_phi,
            "Semi-pruned should not have phi for block-local variable"
        );

        // Should have phi for cross_var at merge point (block 3)
        let merge_block = ssa.blocks.iter().find(|b| b.id == 3).unwrap();
        assert!(
            merge_block
                .phi_functions
                .iter()
                .any(|phi| phi.variable == "cross_var"),
            "Semi-pruned should have phi for cross-block variable"
        );
    }
}

// =============================================================================
// Phase 12: Live Variables Analysis Tests (RD-12)
// =============================================================================

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

    /// Test: Basic forward liveness - variable used is live before use
    #[test]
    fn test_live_variables_simple_use() {
        let cfg = fixtures::linear_cfg();
        let refs = vec![
            VarRef {
                name: "x".to_string(),
                ref_type: RefType::Definition,
                line: 1,
                column: 0,
                context: None,
                group_id: None,
            },
            VarRef {
                name: "x".to_string(),
                ref_type: RefType::Use,
                line: 5,
                column: 0,
                context: None,
                group_id: None,
            },
        ];

        let live = compute_live_variables(&cfg, &refs).expect("should compute live variables");

        // x should be live-in at block 2 (where it's used at line 5)
        if let Some(block2) = live.blocks.get(&2) {
            assert!(
                block2.live_in.contains("x"),
                "x should be live-in at block 2 (used at line 5)"
            );
        }

        // x should be live-out of block 1 (flows to block 2)
        if let Some(block1) = live.blocks.get(&1) {
            assert!(
                block1.live_out.contains("x"),
                "x should be live-out of block 1 (flows to use in block 2)"
            );
        }
    }

    /// Test: Variable not live after last use
    #[test]
    fn test_live_variables_not_live_after_use() {
        let cfg = fixtures::linear_cfg();
        let refs = vec![
            VarRef {
                name: "x".to_string(),
                ref_type: RefType::Definition,
                line: 1,
                column: 0,
                context: None,
                group_id: None,
            },
            VarRef {
                name: "x".to_string(),
                ref_type: RefType::Use,
                line: 3,
                column: 0,
                context: None,
                group_id: None,
            },
            // x not used after line 3
        ];

        let live = compute_live_variables(&cfg, &refs).expect("should compute live variables");

        // x should not be live-out of block 2 (exit block, no more uses)
        if let Some(block2) = live.blocks.get(&2) {
            assert!(
                !block2.live_out.contains("x"),
                "x should not be live-out of exit block (no more uses)"
            );
        }
    }

    /// Test: Loop back edge propagates liveness
    #[test]
    fn test_live_variables_loop() {
        let cfg = fixtures::loop_cfg();
        // i is used in header (condition) and incremented in body
        let refs = vec![
            VarRef {
                name: "i".to_string(),
                ref_type: RefType::Definition,
                line: 1,
                column: 0,
                context: None,
                group_id: None,
            },
            VarRef {
                name: "i".to_string(),
                ref_type: RefType::Use,
                line: 3, // header condition
                column: 0,
                context: None,
                group_id: None,
            },
            VarRef {
                name: "i".to_string(),
                ref_type: RefType::Update,
                line: 6, // i += 1 in body
                column: 0,
                context: None,
                group_id: None,
            },
        ];

        let live = compute_live_variables(&cfg, &refs).expect("should compute live variables");

        // i should be live at header (block 1) due to use in condition
        if let Some(header) = live.blocks.get(&1) {
            assert!(
                header.live_in.contains("i"),
                "i should be live-in at loop header (used in condition)"
            );
        }

        // i should be live-out of body (block 3) due to back edge to header
        if let Some(body) = live.blocks.get(&3) {
            assert!(
                body.live_out.contains("i"),
                "i should be live-out of loop body (flows back to header)"
            );
        }
    }

    /// Test: Unused variable is not live
    #[test]
    fn test_live_variables_unused_not_live() {
        let cfg = fixtures::diamond_cfg();
        let refs = vec![
            VarRef {
                name: "unused".to_string(),
                ref_type: RefType::Definition,
                line: 3,
                column: 0,
                context: None,
                group_id: None,
            },
            // unused is never used!
        ];

        let live = compute_live_variables(&cfg, &refs).expect("should compute live variables");

        // unused should not be live anywhere (no uses)
        let any_live = live
            .blocks
            .values()
            .any(|sets| sets.live_in.contains("unused") || sets.live_out.contains("unused"));
        assert!(!any_live, "Unused variable should not be live anywhere");
    }

    /// Test: Multiple variables with different liveness ranges
    #[test]
    fn test_live_variables_multiple_vars() {
        let cfg = fixtures::diamond_cfg();
        let refs = vec![
            // x: defined at entry, used at exit
            VarRef {
                name: "x".to_string(),
                ref_type: RefType::Definition,
                line: 1,
                column: 0,
                context: None,
                group_id: None,
            },
            VarRef {
                name: "x".to_string(),
                ref_type: RefType::Use,
                line: 9,
                column: 0,
                context: None,
                group_id: None,
            },
            // y: defined in branch 1 only, used at merge
            VarRef {
                name: "y".to_string(),
                ref_type: RefType::Definition,
                line: 3,
                column: 0,
                context: None,
                group_id: None,
            },
            VarRef {
                name: "y".to_string(),
                ref_type: RefType::Use,
                line: 7,
                column: 0,
                context: None,
                group_id: None,
            },
        ];

        let live = compute_live_variables(&cfg, &refs).expect("should compute live variables");

        // x should be live through the entire function (entry to exit)
        // y should be live from block 1 to block 3

        // At merge point (block 3), both should be live-in
        if let Some(merge) = live.blocks.get(&3) {
            assert!(
                merge.live_in.contains("x"),
                "x should be live-in at merge (used at exit)"
            );
            assert!(
                merge.live_in.contains("y"),
                "y should be live-in at merge (used there)"
            );
        }
    }
}

// =============================================================================
// Variable Versioning Tests (SSA-5, SSA-6)
// =============================================================================

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

    /// Test: Simple sequential assignments get different versions
    /// x = 1; x = 2 -> x_1, x_2
    #[test]
    fn test_sequential_assignments_versioned() {
        let cfg = fixtures::linear_cfg();
        let dfg = DfgInfo {
            function: "linear".to_string(),
            refs: vec![
                VarRef {
                    name: "x".to_string(),
                    ref_type: RefType::Definition,
                    line: 1,
                    column: 0,
                    context: None,
                    group_id: None,
                },
                VarRef {
                    name: "x".to_string(),
                    ref_type: RefType::Definition,
                    line: 3,
                    column: 0,
                    context: None,
                    group_id: None,
                },
            ],
            edges: Vec::new(),
            variables: Vec::new(),
        };

        let ssa = construct_minimal_ssa(&cfg, &dfg).expect("should construct SSA");

        // Find all SSA names for x
        let x_names: Vec<&SsaName> = ssa.ssa_names.iter().filter(|n| n.variable == "x").collect();

        assert_eq!(x_names.len(), 2, "Should have 2 versions of x");

        // Versions should be 1 and 2
        let versions: HashSet<u32> = x_names.iter().map(|n| n.version).collect();
        assert!(versions.contains(&1));
        assert!(versions.contains(&2));
    }

    /// Test: Phi targets get correct versions
    #[test]
    fn test_phi_target_versioning() {
        let cfg = fixtures::diamond_cfg();
        let dfg = fixtures::diamond_dfg();

        let ssa = construct_minimal_ssa(&cfg, &dfg).expect("should construct SSA");

        let merge_block = ssa.blocks.iter().find(|b| b.id == 3).unwrap();
        let y_phi = merge_block
            .phi_functions
            .iter()
            .find(|phi| phi.variable == "y")
            .unwrap();

        // Phi target should have higher version than sources
        let target_name = ssa.ssa_names.iter().find(|n| n.id == y_phi.target).unwrap();
        for source in &y_phi.sources {
            let source_name = ssa.ssa_names.iter().find(|n| n.id == source.name).unwrap();
            assert!(
                target_name.version > source_name.version,
                "Phi target version should be greater than source versions"
            );
        }
    }

    /// Test: Definition lookup is O(1)
    #[test]
    fn test_definition_lookup() {
        let ssa = fixtures::sample_ssa();

        // Look up definition for each SSA name
        for name in &ssa.ssa_names {
            let def_block = get_def_block(&ssa, name.id);
            assert!(
                def_block.is_some() || name.def_block.is_none(),
                "Should find definition block for SSA name"
            );
        }
    }

    /// Test: SSA name formatting
    #[test]
    fn test_ssa_name_formatting() {
        let name = SsaName {
            id: SsaNameId(1),
            variable: "x".to_string(),
            version: 3,
            def_block: Some(0),
            def_line: 1,
        };

        assert_eq!(name.format_name(), "x_3");
        assert_eq!(format!("{}", name), "x_3");
    }

    /// Test: Uses reference correct versions
    #[test]
    fn test_uses_reference_correct_version() {
        let ssa = fixtures::sample_ssa();

        // In block 3, return uses y_4 (phi result)
        let exit_block = ssa.blocks.iter().find(|b| b.id == 3).unwrap();
        let return_inst = exit_block
            .instructions
            .iter()
            .find(|i| i.kind == SsaInstructionKind::Return)
            .unwrap();

        // Return should use the phi result
        assert!(
            return_inst.uses.contains(&SsaNameId(5)),
            "Return should use phi result"
        );
    }
}

// =============================================================================
// Memory SSA Tests (SSA-15, SSA-16, SSA-17)
// =============================================================================

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

    /// Test: Store creates new memory version (SSA-15)
    #[test]
    fn test_store_creates_memory_version() {
        let cfg = fixtures::diamond_cfg();
        let ssa = fixtures::ssa_with_memory_ops();

        let memory_ssa = build_memory_ssa(&cfg, &ssa).expect("should build memory SSA");

        // Should have memory definitions from stores
        // Fixture has: obj.field = 10 (line 2), obj.field = 20 (line 4), obj.field = 30 (line 6)
        assert!(
            memory_ssa.memory_defs.len() >= 3,
            "Should have at least 3 memory defs (stores): got {}",
            memory_ssa.memory_defs.len()
        );

        // Each store should create a unique, increasing memory version
        let versions: Vec<u32> = memory_ssa.memory_defs.iter().map(|d| d.version.0).collect();
        for i in 1..versions.len() {
            assert!(
                versions[i] > versions[i - 1] || versions[i] > 0,
                "Memory versions should be increasing: {:?}",
                versions
            );
        }

        // Check that stores have the Store kind
        let store_count = memory_ssa
            .memory_defs
            .iter()
            .filter(|d| d.kind == Some(MemoryDefKind::Store))
            .count();
        assert!(store_count >= 3, "Should have at least 3 Store defs");
    }

    /// Test: Load uses memory version (SSA-15)
    #[test]
    fn test_load_uses_memory_version() {
        let cfg = fixtures::diamond_cfg();
        let ssa = fixtures::ssa_with_memory_ops();

        let memory_ssa = build_memory_ssa(&cfg, &ssa).expect("should build memory SSA");

        // Each load should reference a valid memory version
        for use_ in &memory_ssa.memory_uses {
            // Memory version should exist (either from def or phi)
            let version_exists = memory_ssa
                .memory_defs
                .iter()
                .any(|d| d.version == use_.version)
                || memory_ssa
                    .memory_phis
                    .iter()
                    .any(|p| p.result == use_.version);
            assert!(
                version_exists || use_.version.0 == 0,
                "Load should use existing memory version"
            );
        }
    }

    /// Test: Memory phi at merge points (SSA-16)
    #[test]
    fn test_memory_phi_at_merge() {
        let cfg = fixtures::diamond_cfg();
        let ssa = fixtures::ssa_with_memory_ops();

        let memory_ssa = build_memory_ssa(&cfg, &ssa).expect("should build memory SSA");

        // The fixture has stores in both branches (blocks 1 and 2)
        // There should be a memory phi at block 3 (merge point)
        let has_merge_phi = memory_ssa.memory_phis.iter().any(|phi| phi.block == 3);

        // Since we have stores in both branches, we expect a phi
        if has_merge_phi {
            let merge_phi = memory_ssa
                .memory_phis
                .iter()
                .find(|phi| phi.block == 3)
                .unwrap();
            assert_eq!(
                merge_phi.sources.len(),
                2,
                "Memory phi should have 2 sources"
            );

            // Each source should reference a valid predecessor block
            let pred_blocks: Vec<usize> = merge_phi.sources.iter().map(|s| s.block).collect();
            assert!(
                pred_blocks.contains(&1) || pred_blocks.contains(&2),
                "Phi sources should come from predecessor blocks"
            );
        }
    }

    /// Test: Memory def-use chains connect loads to stores (SSA-17)
    #[test]
    fn test_memory_def_use_chains() {
        let cfg = fixtures::diamond_cfg();
        let ssa = fixtures::ssa_with_memory_ops();

        let memory_ssa = build_memory_ssa(&cfg, &ssa).expect("should build memory SSA");

        // Def-use chains should be populated
        // Each memory def version should map to its uses
        for (def_version, uses) in &memory_ssa.def_use {
            for use_version in uses {
                // Use should reference this def (directly or through phi)
                assert!(
                    memory_ssa
                        .memory_uses
                        .iter()
                        .any(|u| &u.version == use_version)
                        || memory_ssa
                            .memory_phis
                            .iter()
                            .any(|p| p.sources.iter().any(|s| &s.version == use_version))
                        || memory_ssa
                            .memory_phis
                            .iter()
                            .any(|p| p.result == *use_version),
                    "Def-use chain for {:?} should reference valid use: {:?}",
                    def_version,
                    use_version
                );
            }
        }
    }

    /// Test: Memory version display formatting
    #[test]
    fn test_memory_version_formatting() {
        let version = MemoryVersion(5);
        assert_eq!(format!("{}", version), "mem_5");
    }

    /// Test: Function calls are treated as memory clobbers (SSA-15)
    #[test]
    fn test_call_clobbers_memory() {
        let cfg = fixtures::diamond_cfg();
        let ssa = fixtures::ssa_with_memory_ops();

        let memory_ssa = build_memory_ssa(&cfg, &ssa).expect("should build memory SSA");

        // The fixture has a call to process(y) in block 3
        // This should be treated as both a use and def of memory
        let call_defs: Vec<_> = memory_ssa
            .memory_defs
            .iter()
            .filter(|d| d.kind == Some(MemoryDefKind::Call))
            .collect();

        let call_uses: Vec<_> = memory_ssa
            .memory_uses
            .iter()
            .filter(|u| u.kind == Some(MemoryUseKind::Call))
            .collect();

        // Should have at least one call def (clobber)
        assert!(
            !call_defs.is_empty(),
            "Function calls should create memory defs (clobbers)"
        );

        // Call should also read memory
        assert!(
            !call_uses.is_empty(),
            "Function calls should create memory uses"
        );
    }

    /// Test: Memory SSA stats are computed correctly
    #[test]
    fn test_memory_ssa_stats() {
        let cfg = fixtures::diamond_cfg();
        let ssa = fixtures::ssa_with_memory_ops();

        let memory_ssa = build_memory_ssa(&cfg, &ssa).expect("should build memory SSA");

        // Stats should match actual counts
        assert_eq!(
            memory_ssa.stats.defs,
            memory_ssa.memory_defs.len(),
            "Stats defs should match memory_defs length"
        );
        assert_eq!(
            memory_ssa.stats.uses,
            memory_ssa.memory_uses.len(),
            "Stats uses should match memory_uses length"
        );
        assert_eq!(
            memory_ssa.stats.phis,
            memory_ssa.memory_phis.len(),
            "Stats phis should match memory_phis length"
        );
    }

    /// Test: Each memory def clobbers the previous version
    #[test]
    fn test_memory_def_clobbers_previous() {
        let cfg = fixtures::diamond_cfg();
        let ssa = fixtures::ssa_with_memory_ops();

        let memory_ssa = build_memory_ssa(&cfg, &ssa).expect("should build memory SSA");

        // Each def should clobber the previous version
        for def in &memory_ssa.memory_defs {
            // Clobbers should be a valid version (0 for initial or a previous def)
            assert!(
                def.clobbers.0 < def.version.0,
                "Def version {} should clobber a lower version, got {}",
                def.version.0,
                def.clobbers.0
            );
        }
    }

    /// Test: Explicit def-use chains (SSA-17)
    #[test]
    fn test_explicit_def_use_chains() {
        let cfg = fixtures::diamond_cfg();
        let ssa = fixtures::ssa_with_memory_ops();

        let memory_ssa = build_memory_ssa(&cfg, &ssa).expect("should build memory SSA");

        // Build explicit chains
        let chains = build_explicit_def_use_chains(&memory_ssa);

        // Should have one chain per def
        assert_eq!(
            chains.len(),
            memory_ssa.memory_defs.len(),
            "Should have one chain per memory def"
        );

        // Each chain should have the correct def info
        for chain in &chains {
            let matching_def = memory_ssa
                .memory_defs
                .iter()
                .find(|d| d.version == chain.def);
            assert!(
                matching_def.is_some(),
                "Chain def should exist in memory_defs"
            );

            let def = matching_def.unwrap();
            assert_eq!(chain.def_line, def.line, "Chain def_line should match");
            assert_eq!(chain.def_block, def.block, "Chain def_block should match");
        }
    }

    /// Test: Empty SSA produces empty Memory SSA
    #[test]
    fn test_empty_ssa_produces_empty_memory_ssa() {
        let cfg = fixtures::linear_cfg();
        let ssa = SsaFunction {
            function: "empty".to_string(),
            file: PathBuf::from("empty.py"),
            ssa_type: SsaType::Minimal,
            blocks: vec![SsaBlock {
                id: 0,
                label: None,
                lines: (1, 1),
                phi_functions: vec![],
                instructions: vec![],
                successors: vec![],
                predecessors: vec![],
            }],
            ssa_names: vec![],
            def_use: HashMap::new(),
            stats: SsaStats::default(),
        };

        let memory_ssa = build_memory_ssa(&cfg, &ssa).expect("should build memory SSA");

        assert!(
            memory_ssa.memory_defs.is_empty(),
            "Empty SSA should have no memory defs"
        );
        assert!(
            memory_ssa.memory_uses.is_empty(),
            "Empty SSA should have no memory uses"
        );
        assert!(
            memory_ssa.memory_phis.is_empty(),
            "Empty SSA should have no memory phis"
        );
    }
}

// =============================================================================
// Value Numbering Tests (SSA-7)
// =============================================================================

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

    /// Test: Same expression -> same value number
    #[test]
    fn test_same_expression_same_number() {
        // Create SSA with two identical expressions: a + b
        let ssa = SsaFunction {
            function: "test".to_string(),
            file: PathBuf::from("test.py"),
            ssa_type: SsaType::Minimal,
            blocks: vec![SsaBlock {
                id: 0,
                label: None,
                lines: (1, 4),
                phi_functions: vec![],
                instructions: vec![
                    SsaInstruction {
                        kind: SsaInstructionKind::Param,
                        target: Some(SsaNameId(1)),
                        uses: vec![],
                        line: 1,
                        source_text: Some("a = param".to_string()),
                    },
                    SsaInstruction {
                        kind: SsaInstructionKind::Param,
                        target: Some(SsaNameId(2)),
                        uses: vec![],
                        line: 2,
                        source_text: Some("b = param".to_string()),
                    },
                    SsaInstruction {
                        kind: SsaInstructionKind::BinaryOp,
                        target: Some(SsaNameId(3)),
                        uses: vec![SsaNameId(1), SsaNameId(2)],
                        line: 3,
                        source_text: Some("x = a + b".to_string()),
                    },
                    SsaInstruction {
                        kind: SsaInstructionKind::BinaryOp,
                        target: Some(SsaNameId(4)),
                        uses: vec![SsaNameId(1), SsaNameId(2)],
                        line: 4,
                        source_text: Some("y = a + b".to_string()),
                    },
                ],
                successors: vec![],
                predecessors: vec![],
            }],
            ssa_names: vec![
                SsaName {
                    id: SsaNameId(1),
                    variable: "a".to_string(),
                    version: 1,
                    def_block: Some(0),
                    def_line: 1,
                },
                SsaName {
                    id: SsaNameId(2),
                    variable: "b".to_string(),
                    version: 1,
                    def_block: Some(0),
                    def_line: 2,
                },
                SsaName {
                    id: SsaNameId(3),
                    variable: "x".to_string(),
                    version: 1,
                    def_block: Some(0),
                    def_line: 3,
                },
                SsaName {
                    id: SsaNameId(4),
                    variable: "y".to_string(),
                    version: 1,
                    def_block: Some(0),
                    def_line: 4,
                },
            ],
            def_use: HashMap::new(),
            stats: SsaStats::default(),
        };

        let vn = compute_value_numbers(&ssa).expect("should compute value numbers");

        // x and y should have the same value number (both are a + b)
        let x_vn = vn.value_numbers.get(&SsaNameId(3)).unwrap();
        let y_vn = vn.value_numbers.get(&SsaNameId(4)).unwrap();
        assert_eq!(x_vn, y_vn, "Same expression should have same value number");
    }

    /// Test: Different operands -> different value number
    #[test]
    fn test_different_operands_different_number() {
        let ssa = SsaFunction {
            function: "test".to_string(),
            file: PathBuf::from("test.py"),
            ssa_type: SsaType::Minimal,
            blocks: vec![SsaBlock {
                id: 0,
                label: None,
                lines: (1, 4),
                phi_functions: vec![],
                instructions: vec![
                    SsaInstruction {
                        kind: SsaInstructionKind::Param,
                        target: Some(SsaNameId(1)),
                        uses: vec![],
                        line: 1,
                        source_text: Some("a = param".to_string()),
                    },
                    SsaInstruction {
                        kind: SsaInstructionKind::Param,
                        target: Some(SsaNameId(2)),
                        uses: vec![],
                        line: 2,
                        source_text: Some("b = param".to_string()),
                    },
                    SsaInstruction {
                        kind: SsaInstructionKind::BinaryOp,
                        target: Some(SsaNameId(3)),
                        uses: vec![SsaNameId(1), SsaNameId(2)], // a + b
                        line: 3,
                        source_text: Some("x = a + b".to_string()),
                    },
                    SsaInstruction {
                        kind: SsaInstructionKind::BinaryOp,
                        target: Some(SsaNameId(4)),
                        uses: vec![SsaNameId(1), SsaNameId(1)], // a + a (different!)
                        line: 4,
                        source_text: Some("y = a + a".to_string()),
                    },
                ],
                successors: vec![],
                predecessors: vec![],
            }],
            ssa_names: vec![
                SsaName {
                    id: SsaNameId(1),
                    variable: "a".to_string(),
                    version: 1,
                    def_block: Some(0),
                    def_line: 1,
                },
                SsaName {
                    id: SsaNameId(2),
                    variable: "b".to_string(),
                    version: 1,
                    def_block: Some(0),
                    def_line: 2,
                },
                SsaName {
                    id: SsaNameId(3),
                    variable: "x".to_string(),
                    version: 1,
                    def_block: Some(0),
                    def_line: 3,
                },
                SsaName {
                    id: SsaNameId(4),
                    variable: "y".to_string(),
                    version: 1,
                    def_block: Some(0),
                    def_line: 4,
                },
            ],
            def_use: HashMap::new(),
            stats: SsaStats::default(),
        };

        let vn = compute_value_numbers(&ssa).expect("should compute value numbers");

        // x (a + b) and y (a + a) should have different value numbers
        let x_vn = vn.value_numbers.get(&SsaNameId(3)).unwrap();
        let y_vn = vn.value_numbers.get(&SsaNameId(4)).unwrap();
        assert_ne!(
            x_vn, y_vn,
            "Different expressions should have different value numbers"
        );
    }

    /// Test: Equivalences map correctly populated
    #[test]
    fn test_equivalences_populated() {
        let ssa = fixtures::sample_ssa();
        let vn = compute_value_numbers(&ssa).expect("should compute value numbers");

        // Equivalences should group SSA names by value number
        for (vnum, names) in &vn.equivalences {
            for name in names {
                assert_eq!(
                    vn.value_numbers.get(name),
                    Some(vnum),
                    "Equivalence entry should match value number"
                );
            }
        }
    }
}

// =============================================================================
// SCCP Tests (SSA-21)
// =============================================================================

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

    /// Test: Constant propagation: x=1; y=x -> y=1
    #[test]
    fn test_constant_propagation() {
        let ssa = SsaFunction {
            function: "test".to_string(),
            file: PathBuf::from("test.py"),
            ssa_type: SsaType::Minimal,
            blocks: vec![SsaBlock {
                id: 0,
                label: None,
                lines: (1, 3),
                phi_functions: vec![],
                instructions: vec![
                    SsaInstruction {
                        kind: SsaInstructionKind::Assign,
                        target: Some(SsaNameId(1)),
                        uses: vec![],
                        line: 1,
                        source_text: Some("x = 1".to_string()),
                    },
                    SsaInstruction {
                        kind: SsaInstructionKind::Assign,
                        target: Some(SsaNameId(2)),
                        uses: vec![SsaNameId(1)],
                        line: 2,
                        source_text: Some("y = x".to_string()),
                    },
                ],
                successors: vec![],
                predecessors: vec![],
            }],
            ssa_names: vec![
                SsaName {
                    id: SsaNameId(1),
                    variable: "x".to_string(),
                    version: 1,
                    def_block: Some(0),
                    def_line: 1,
                },
                SsaName {
                    id: SsaNameId(2),
                    variable: "y".to_string(),
                    version: 1,
                    def_block: Some(0),
                    def_line: 2,
                },
            ],
            def_use: HashMap::new(),
            stats: SsaStats::default(),
        };

        let sccp_result = run_sccp(&ssa).expect("should run SCCP");

        // Both x and y should be constant 1
        assert_eq!(
            sccp_result.constants.get(&SsaNameId(1)),
            Some(&ConstantValue::Int(1))
        );
        assert_eq!(
            sccp_result.constants.get(&SsaNameId(2)),
            Some(&ConstantValue::Int(1))
        );
    }

    /// Test: Unreachable code detection: if(false) {...}
    #[test]
    fn test_unreachable_code_detection() {
        // Create SSA with if(false) branch
        let ssa = SsaFunction {
            function: "test".to_string(),
            file: PathBuf::from("test.py"),
            ssa_type: SsaType::Minimal,
            blocks: vec![
                SsaBlock {
                    id: 0,
                    label: Some("entry".to_string()),
                    lines: (1, 2),
                    phi_functions: vec![],
                    instructions: vec![
                        SsaInstruction {
                            kind: SsaInstructionKind::Assign,
                            target: Some(SsaNameId(1)),
                            uses: vec![],
                            line: 1,
                            source_text: Some("cond = False".to_string()),
                        },
                        SsaInstruction {
                            kind: SsaInstructionKind::Branch,
                            target: None,
                            uses: vec![SsaNameId(1)],
                            line: 2,
                            source_text: Some("if cond:".to_string()),
                        },
                    ],
                    successors: vec![1, 2],
                    predecessors: vec![],
                },
                SsaBlock {
                    id: 1,
                    label: Some("unreachable".to_string()),
                    lines: (3, 4),
                    phi_functions: vec![],
                    instructions: vec![SsaInstruction {
                        kind: SsaInstructionKind::Assign,
                        target: Some(SsaNameId(2)),
                        uses: vec![],
                        line: 3,
                        source_text: Some("x = 1".to_string()),
                    }],
                    successors: vec![2],
                    predecessors: vec![0],
                },
                SsaBlock {
                    id: 2,
                    label: Some("exit".to_string()),
                    lines: (5, 5),
                    phi_functions: vec![],
                    instructions: vec![],
                    successors: vec![],
                    predecessors: vec![0, 1],
                },
            ],
            ssa_names: vec![
                SsaName {
                    id: SsaNameId(1),
                    variable: "cond".to_string(),
                    version: 1,
                    def_block: Some(0),
                    def_line: 1,
                },
                SsaName {
                    id: SsaNameId(2),
                    variable: "x".to_string(),
                    version: 1,
                    def_block: Some(1),
                    def_line: 3,
                },
            ],
            def_use: HashMap::new(),
            stats: SsaStats::default(),
        };

        let sccp_result = run_sccp(&ssa).expect("should run SCCP");

        // Block 1 (unreachable) should be detected as unreachable
        assert!(
            sccp_result.unreachable_blocks.contains(&1),
            "Block 1 should be detected as unreachable"
        );
    }

    /// Test: Lattice value meet operation
    #[test]
    fn test_lattice_meet() {
        // Top meet C = C
        // C meet C = C (if same)
        // C1 meet C2 = Bottom (if different)

        let top = LatticeValue::Top;
        let const_1 = LatticeValue::Constant(ConstantValue::Int(1));
        let const_2 = LatticeValue::Constant(ConstantValue::Int(2));
        let bottom = LatticeValue::Bottom;

        // These are conceptual - actual meet would be in implementation
        assert_eq!(top, LatticeValue::Top);
        assert_eq!(const_1, LatticeValue::Constant(ConstantValue::Int(1)));
        assert_ne!(const_1, const_2);
        assert_eq!(bottom, LatticeValue::Bottom);
    }

    /// Test: ConstantValue display
    #[test]
    fn test_constant_value_display() {
        assert_eq!(format!("{}", ConstantValue::Int(42)), "42");
        assert_eq!(
            format!("{}", ConstantValue::Float("3.14".to_string())),
            "3.14"
        );
        assert_eq!(
            format!("{}", ConstantValue::String("hello".to_string())),
            "\"hello\""
        );
        assert_eq!(format!("{}", ConstantValue::Bool(true)), "true");
        assert_eq!(format!("{}", ConstantValue::None), "None");
    }
}

// =============================================================================
// Dead Code Tests (SSA-22)
// =============================================================================

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

    /// Test: Definition with no use is dead
    #[test]
    fn test_unused_definition_is_dead() {
        let ssa = SsaFunction {
            function: "test".to_string(),
            file: PathBuf::from("test.py"),
            ssa_type: SsaType::Minimal,
            blocks: vec![SsaBlock {
                id: 0,
                label: None,
                lines: (1, 3),
                phi_functions: vec![],
                instructions: vec![
                    SsaInstruction {
                        kind: SsaInstructionKind::Assign,
                        target: Some(SsaNameId(1)),
                        uses: vec![],
                        line: 1,
                        source_text: Some("x = 1".to_string()), // x is never used
                    },
                    SsaInstruction {
                        kind: SsaInstructionKind::Assign,
                        target: Some(SsaNameId(2)),
                        uses: vec![],
                        line: 2,
                        source_text: Some("y = 2".to_string()),
                    },
                    SsaInstruction {
                        kind: SsaInstructionKind::Return,
                        target: None,
                        uses: vec![SsaNameId(2)], // only y is used
                        line: 3,
                        source_text: Some("return y".to_string()),
                    },
                ],
                successors: vec![],
                predecessors: vec![],
            }],
            ssa_names: vec![
                SsaName {
                    id: SsaNameId(1),
                    variable: "x".to_string(),
                    version: 1,
                    def_block: Some(0),
                    def_line: 1,
                },
                SsaName {
                    id: SsaNameId(2),
                    variable: "y".to_string(),
                    version: 1,
                    def_block: Some(0),
                    def_line: 2,
                },
            ],
            def_use: {
                let mut map = HashMap::new();
                // x has no uses
                map.insert(SsaNameId(1), vec![]);
                // y is used in return
                map.insert(SsaNameId(2), vec![]);
                map
            },
            stats: SsaStats::default(),
        };

        let dead = find_dead_code(&ssa).expect("should find dead code");

        // x (SsaNameId(1)) should be dead
        assert!(
            dead.contains(&SsaNameId(1)),
            "Unused definition should be marked as dead"
        );

        // y should NOT be dead (it's used in return)
        assert!(
            !dead.contains(&SsaNameId(2)),
            "Used definition should not be marked as dead"
        );
    }

    /// Test: Iterative removal for cascading dead code
    #[test]
    fn test_cascading_dead_code() {
        // x = 1
        // y = x + 1
        // z = y + 1
        // return 0  (none of x, y, z are used)
        let ssa = SsaFunction {
            function: "test".to_string(),
            file: PathBuf::from("test.py"),
            ssa_type: SsaType::Minimal,
            blocks: vec![SsaBlock {
                id: 0,
                label: None,
                lines: (1, 4),
                phi_functions: vec![],
                instructions: vec![
                    SsaInstruction {
                        kind: SsaInstructionKind::Assign,
                        target: Some(SsaNameId(1)),
                        uses: vec![],
                        line: 1,
                        source_text: Some("x = 1".to_string()),
                    },
                    SsaInstruction {
                        kind: SsaInstructionKind::BinaryOp,
                        target: Some(SsaNameId(2)),
                        uses: vec![SsaNameId(1)],
                        line: 2,
                        source_text: Some("y = x + 1".to_string()),
                    },
                    SsaInstruction {
                        kind: SsaInstructionKind::BinaryOp,
                        target: Some(SsaNameId(3)),
                        uses: vec![SsaNameId(2)],
                        line: 3,
                        source_text: Some("z = y + 1".to_string()),
                    },
                    SsaInstruction {
                        kind: SsaInstructionKind::Return,
                        target: None,
                        uses: vec![],
                        line: 4,
                        source_text: Some("return 0".to_string()),
                    },
                ],
                successors: vec![],
                predecessors: vec![],
            }],
            ssa_names: vec![
                SsaName {
                    id: SsaNameId(1),
                    variable: "x".to_string(),
                    version: 1,
                    def_block: Some(0),
                    def_line: 1,
                },
                SsaName {
                    id: SsaNameId(2),
                    variable: "y".to_string(),
                    version: 1,
                    def_block: Some(0),
                    def_line: 2,
                },
                SsaName {
                    id: SsaNameId(3),
                    variable: "z".to_string(),
                    version: 1,
                    def_block: Some(0),
                    def_line: 3,
                },
            ],
            def_use: HashMap::new(),
            stats: SsaStats::default(),
        };

        let dead = find_dead_code(&ssa).expect("should find dead code");

        // All three should be dead (z unused, then y unused, then x unused)
        assert!(dead.contains(&SsaNameId(1)), "x should be dead");
        assert!(dead.contains(&SsaNameId(2)), "y should be dead");
        assert!(dead.contains(&SsaNameId(3)), "z should be dead");
    }

    /// Test: Side effects prevent removal
    #[test]
    fn test_side_effects_prevent_removal() {
        // Calls have side effects and should not be marked dead
        assert!(has_side_effects(&SsaInstructionKind::Call));
        assert!(has_side_effects(&SsaInstructionKind::Return));
        assert!(!has_side_effects(&SsaInstructionKind::Assign));
        assert!(!has_side_effects(&SsaInstructionKind::BinaryOp));
    }
}

// =============================================================================
// Output Format Tests (SSA-18, SSA-19, SSA-20)
// =============================================================================

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

    /// Test: JSON output is valid and matches schema
    #[test]
    fn test_json_output_valid() {
        let ssa = fixtures::sample_ssa();
        let json = serde_json::to_string_pretty(&ssa).expect("should serialize to JSON");

        // Should be valid JSON
        assert!(validate_json(&json), "JSON output should be valid");

        // Should contain expected fields
        assert!(json.contains("\"function\""));
        assert!(json.contains("\"ssa_type\""));
        assert!(json.contains("\"blocks\""));
        assert!(json.contains("\"phi_functions\""));
        assert!(json.contains("\"ssa_names\""));
        assert!(json.contains("\"stats\""));
    }

    /// Test: JSON can be deserialized back
    #[test]
    fn test_json_roundtrip() {
        let ssa = fixtures::sample_ssa();
        let json = serde_json::to_string(&ssa).expect("should serialize");
        let parsed: SsaFunction = serde_json::from_str(&json).expect("should deserialize");

        assert_eq!(parsed.function, ssa.function);
        assert_eq!(parsed.ssa_type, ssa.ssa_type);
        assert_eq!(parsed.blocks.len(), ssa.blocks.len());
        assert_eq!(parsed.ssa_names.len(), ssa.ssa_names.len());
    }

    /// Test: Text format is human-readable
    #[test]
    fn test_text_format_readable() {
        let ssa = fixtures::sample_ssa();
        let text = format_ssa_text(&ssa);

        // Should contain function name
        assert!(text.contains("sample"));

        // Should contain SSA type
        assert!(text.contains("Minimal"));

        // Should contain block headers
        assert!(text.contains("Block 0"));
        assert!(text.contains("Block 3"));

        // Should contain phi functions
        assert!(text.contains("phi("));

        // Should contain statistics
        assert!(text.contains("Phi Functions:"));
        assert!(text.contains("SSA Names:"));
    }

    /// Test: DOT output is valid Graphviz
    #[test]
    fn test_dot_format_valid() {
        let ssa = fixtures::sample_ssa();
        let dot = format_ssa_dot(&ssa);

        // Basic validation
        assert!(validate_dot(&dot), "DOT output should be valid");

        // Should have digraph header
        assert!(dot.contains("digraph SSA"));

        // Should have nodes for each block
        assert!(dot.contains("block0"));
        assert!(dot.contains("block3"));

        // Should have edges
        assert!(dot.contains("->"));
    }

    /// Test: Memory SSA text format
    #[test]
    fn test_memory_ssa_text_format() {
        let memory_ssa = MemorySsa {
            function: "test".to_string(),
            file: Some("test.py".to_string()),
            memory_phis: vec![MemoryPhi {
                result: MemoryVersion(3),
                block: 2,
                sources: vec![
                    MemoryPhiSource {
                        block: 0,
                        version: MemoryVersion(1),
                    },
                    MemoryPhiSource {
                        block: 1,
                        version: MemoryVersion(2),
                    },
                ],
            }],
            memory_defs: vec![MemoryDef {
                version: MemoryVersion(1),
                clobbers: MemoryVersion(0),
                block: 0,
                line: 1,
                access: "x.field".to_string(),
                kind: Some(MemoryDefKind::Store),
            }],
            memory_uses: vec![MemoryUse {
                version: MemoryVersion(1),
                block: 1,
                line: 3,
                access: "x.field".to_string(),
                kind: Some(MemoryUseKind::Load),
            }],
            def_use: HashMap::new(),
            stats: MemorySsaStats::default(),
        };

        let text = format_memory_ssa_text(&memory_ssa);

        assert!(text.contains("Memory SSA"));
        assert!(text.contains("Memory Phi"));
        assert!(text.contains("Memory Definitions"));
        assert!(text.contains("Memory Uses"));
    }

    /// Test: Empty SSA serializes correctly
    #[test]
    fn test_empty_ssa_serializes() {
        let ssa = SsaFunction {
            function: "empty".to_string(),
            file: PathBuf::from("empty.py"),
            ssa_type: SsaType::Minimal,
            blocks: vec![],
            ssa_names: vec![],
            def_use: HashMap::new(),
            stats: SsaStats::default(),
        };

        let json = serde_json::to_string(&ssa).expect("should serialize empty SSA");
        assert!(validate_json(&json));

        let text = format_ssa_text(&ssa);
        assert!(text.contains("empty"));

        let dot = format_ssa_dot(&ssa);
        assert!(validate_dot(&dot));
    }

    // =========================================================================
    // Phase 6: Additional Output Format Tests (SSA-18, SSA-19, SSA-20)
    // =========================================================================

    /// Test: JSON output wrapper functions work correctly
    #[test]
    fn test_json_format_function() {
        let ssa = fixtures::sample_ssa();

        // Test pretty JSON format
        let json_pretty = format_ssa_json(&ssa).expect("should format as JSON");
        assert!(validate_json(&json_pretty));
        assert!(
            json_pretty.contains('\n'),
            "Pretty JSON should have newlines"
        );

        // Test compact JSON format
        let json_compact = format_ssa_json_compact(&ssa).expect("should format as compact JSON");
        assert!(validate_json(&json_compact));
        assert!(
            !json_compact.contains('\n'),
            "Compact JSON should not have newlines"
        );
    }

    /// Test: SsaNameId serializes as numeric value, not string
    #[test]
    fn test_json_ssa_name_id_numeric() {
        let ssa = fixtures::sample_ssa();
        let json = format_ssa_json(&ssa).expect("should serialize");

        // SsaNameId should serialize as number (e.g., 1) not string (e.g., "1")
        // Check that targets in instructions are numbers
        // Look for pattern like "target": 1 (not "target": "1")
        let parsed: serde_json::Value = serde_json::from_str(&json).expect("valid json");

        // Navigate to blocks[0].instructions[0].target
        if let Some(blocks) = parsed.get("blocks").and_then(|b| b.as_array()) {
            for block in blocks {
                if let Some(instructions) = block.get("instructions").and_then(|i| i.as_array()) {
                    for instr in instructions {
                        if let Some(target) = instr.get("target") {
                            // Target should be a number, not a string
                            assert!(
                                target.is_number() || target.is_null(),
                                "SsaNameId should serialize as number, got: {}",
                                target
                            );
                        }
                    }
                }
            }
        }
    }

    /// Test: Text format includes correct phi function format
    #[test]
    fn test_text_phi_format() {
        let ssa = fixtures::sample_ssa();
        let text = format_ssa_text(&ssa);

        // Phi function should show sources with block references
        // Format: "target = phi(source1 [Block N], source2 [Block M])"
        assert!(text.contains("phi("), "Text should contain phi functions");
        assert!(
            text.contains("[Block"),
            "Phi sources should reference blocks"
        );
    }

    /// Test: DOT output escapes special characters correctly
    #[test]
    fn test_dot_escaping() {
        // Create SSA with special characters that need escaping
        let ssa = SsaFunction {
            function: "test_func".to_string(),
            file: PathBuf::from("test.py"),
            ssa_type: SsaType::Minimal,
            blocks: vec![SsaBlock {
                id: 0,
                label: Some("entry\"with\"quotes".to_string()), // Quotes need escaping
                lines: (1, 2),
                phi_functions: vec![],
                instructions: vec![SsaInstruction {
                    kind: SsaInstructionKind::Assign,
                    target: Some(SsaNameId(1)),
                    uses: vec![],
                    line: 1,
                    source_text: Some("x = \"string\"".to_string()), // Quotes in source
                }],
                successors: vec![],
                predecessors: vec![],
            }],
            ssa_names: vec![SsaName {
                id: SsaNameId(1),
                variable: "var_with_underscore".to_string(),
                version: 1,
                def_block: Some(0),
                def_line: 1,
            }],
            def_use: HashMap::new(),
            stats: SsaStats::default(),
        };

        let dot = format_ssa_dot(&ssa);

        // Should be valid DOT
        assert!(validate_dot(&dot), "DOT with special chars should be valid");

        // Quotes should be escaped
        assert!(
            !dot.contains("\"\""),
            "Double quotes should not appear unescaped"
        );
    }

    /// Test: Filter SSA by variable name
    #[test]
    fn test_filter_by_variable() {
        let ssa = fixtures::sample_ssa();
        let original_ssa_names = ssa.stats.ssa_names;

        // Filter to only show "y" variable (function takes ownership, so clone)
        let filtered = filter_ssa_by_variable(ssa.clone(), "y");

        // Should only contain y's SSA names
        for name in &filtered.ssa_names {
            assert_eq!(
                name.variable, "y",
                "Filtered SSA should only contain 'y' names"
            );
        }

        // Phi functions should only be for 'y'
        for block in &filtered.blocks {
            for phi in &block.phi_functions {
                assert_eq!(phi.variable, "y", "Filtered phi should be for 'y'");
            }
        }

        // Stats should be updated
        assert!(filtered.ssa_names.len() <= original_ssa_names);
    }

    /// Test: Filter SSA returns empty for non-existent variable
    #[test]
    fn test_filter_nonexistent_variable() {
        let ssa = fixtures::sample_ssa();

        let filtered = filter_ssa_by_variable(ssa, "nonexistent");

        // Should have empty ssa_names for non-existent variable
        assert!(
            filtered.ssa_names.is_empty(),
            "Should have no SSA names for nonexistent var"
        );
    }

    /// Test: DOT output includes def-use edges when enabled
    #[test]
    fn test_dot_def_use_edges() {
        let ssa = fixtures::sample_ssa();

        let dot = format_ssa_dot_with_def_use(&ssa);

        // Should contain def-use edge styling
        assert!(
            dot.contains("dashed") || dot.contains("style"),
            "Should have styled def-use edges"
        );
    }

    /// Test: Text format includes variable names with versions
    #[test]
    fn test_text_format_versioned_names() {
        let ssa = fixtures::sample_ssa();
        let text = format_ssa_text(&ssa);

        // Should show versioned names like "x_1", "y_2"
        // The fixture has variables x and y
        assert!(
            text.contains("_1") || text.contains("$"),
            "Should show versioned variable names"
        );
    }
}

// =============================================================================
// Live Variables Tests (SSA-23, RD-12)
// =============================================================================

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

    /// Test: Variable is live if used before redefined
    #[test]
    fn test_variable_live_before_redef() {
        let cfg = fixtures::linear_cfg();
        let refs = vec![
            VarRef {
                name: "x".to_string(),
                ref_type: RefType::Definition,
                line: 1,
                column: 0,
                context: None,
                group_id: None,
            },
            VarRef {
                name: "x".to_string(),
                ref_type: RefType::Use,
                line: 3,
                column: 4,
                context: None,
                group_id: None,
            },
            VarRef {
                name: "x".to_string(),
                ref_type: RefType::Definition,
                line: 4,
                column: 0,
                context: None,
                group_id: None,
            },
        ];

        let live = compute_live_variables(&cfg, &refs).expect("should compute live variables");

        // x should be live in block 1 (between def at line 1 and use at line 3)
        if let Some(block1_live) = live.blocks.get(&1) {
            assert!(
                block1_live.live_in.contains("x"),
                "x should be live at entry to block 1"
            );
        }
    }

    /// Test: Variable is dead after last use
    #[test]
    fn test_variable_dead_after_last_use() {
        let cfg = fixtures::linear_cfg();
        let refs = vec![
            VarRef {
                name: "x".to_string(),
                ref_type: RefType::Definition,
                line: 1,
                column: 0,
                context: None,
                group_id: None,
            },
            VarRef {
                name: "x".to_string(),
                ref_type: RefType::Use,
                line: 3,
                column: 4,
                context: None,
                group_id: None,
            },
            // x is not used after line 3
        ];

        let live = compute_live_variables(&cfg, &refs).expect("should compute live variables");

        // x should not be live out of the last block (no more uses)
        if let Some(last_block_live) = live.blocks.get(&2) {
            assert!(
                !last_block_live.live_out.contains("x"),
                "x should not be live at exit of last block"
            );
        }
    }

    /// Test: Multiple variables with different liveness
    #[test]
    fn test_multiple_variables_liveness() {
        let cfg = fixtures::diamond_cfg();
        let refs = vec![
            VarRef {
                name: "x".to_string(),
                ref_type: RefType::Definition,
                line: 1,
                column: 0,
                context: None,
                group_id: None,
            },
            VarRef {
                name: "y".to_string(),
                ref_type: RefType::Definition,
                line: 3,
                column: 0,
                context: None,
                group_id: None,
            },
            VarRef {
                name: "x".to_string(),
                ref_type: RefType::Use,
                line: 9,
                column: 7,
                context: None,
                group_id: None,
            },
            // y is never used
        ];

        let live = compute_live_variables(&cfg, &refs).expect("should compute live variables");

        // x should be live (it's used at line 9)
        // y should not be live out of any block (never used)
        let any_y_live = live
            .blocks
            .values()
            .any(|sets| sets.live_in.contains("y") || sets.live_out.contains("y"));
        assert!(!any_y_live, "Unused variable y should not be live anywhere");
    }
}

// =============================================================================
// Available Expressions Tests (RD-10)
// =============================================================================

#[cfg(test)]
mod available_expressions_tests {
    use super::*;
    use crate::types::Language;

    /// Test: Expression available if computed on all paths
    #[test]
    fn test_expression_available_all_paths() {
        let cfg = fixtures::linear_cfg();
        let source = r#"
x = a + b
y = c + d
z = a + b  # a + b should be available here
"#;

        let _avail =
            compute_available_expressions(&cfg, source, Language::Python).expect("should compute");

        // After line 1, "a + b" should be available
        // At line 3, "a + b" should still be available
        // This depends on implementation tracking expressions correctly
    }

    /// Test: Expression killed if operand redefined
    #[test]
    fn test_expression_killed_on_redef() {
        let cfg = fixtures::linear_cfg();
        let source = r#"
x = a + b
a = 5      # kills "a + b"
z = a + b  # a + b NOT available (must recompute)
"#;

        let _avail =
            compute_available_expressions(&cfg, source, Language::Python).expect("should compute");

        // After line 2, "a + b" should NOT be available (a was redefined)
    }

    /// Test: Intersection at merge points (must-analysis)
    #[test]
    fn test_intersection_at_merge() {
        let cfg = fixtures::diamond_cfg();
        let source = r#"
if cond:
    x = a + b
else:
    y = c + d
# At merge: neither a+b nor c+d is available (not on all paths)
z = a + b
"#;

        let _avail =
            compute_available_expressions(&cfg, source, Language::Python).expect("should compute");

        // At merge point (block 3), no expressions should be available
        // because different expressions are computed on different paths
    }
}

// =============================================================================
// AST-Based Available Expressions Tests - All 18 Languages
// =============================================================================
//
// These tests verify that compute_available_expressions can extract binary
// expressions from source code using tree-sitter AST nodes for each language,
// rather than relying on regex patterns that only work for Python.

#[cfg(test)]
mod available_expressions_ast_tests {
    use super::*;
    use crate::types::Language;

    /// Helper: Create a 1-block CFG covering lines 1..=max_line
    fn single_block_cfg(max_line: u32) -> CfgInfo {
        CfgInfo {
            function: "test_func".to_string(),
            blocks: vec![CfgBlock {
                id: 0,
                block_type: BlockType::Entry,
                lines: (1, max_line),
                calls: Vec::new(),
            }],
            edges: vec![],
            entry_block: 0,
            exit_blocks: vec![0],
            cyclomatic_complexity: 1,
            nested_functions: HashMap::new(),
        }
    }

    /// Helper: Assert that the result contains at least one expression with the given operands
    fn assert_has_expression_with_operands(avail: &AvailableExpressions, left: &str, right: &str) {
        let found = avail.expressions.iter().any(|e| {
            (e.uses.contains(&left.to_string()) && e.uses.contains(&right.to_string()))
                || e.text.contains(left) && e.text.contains(right)
        });
        assert!(
            found,
            "Expected expression with operands '{}' and '{}', but found expressions: {:?}",
            left,
            right,
            avail
                .expressions
                .iter()
                .map(|e| &e.text)
                .collect::<Vec<_>>()
        );
    }

    // =========================================================================
    // Python
    // =========================================================================

    #[test]
    fn test_python_ast_available_expressions() {
        let source = "x = a + b\ny = a + b\n";
        let cfg = single_block_cfg(2);
        let avail = compute_available_expressions(&cfg, source, Language::Python)
            .expect("should compute for Python");
        assert!(
            !avail.expressions.is_empty(),
            "Python: should find binary expression a + b"
        );
        assert_has_expression_with_operands(&avail, "a", "b");
    }

    #[test]
    fn test_python_ast_subtraction() {
        let source = "x = a - b\ny = a - b\n";
        let cfg = single_block_cfg(2);
        let avail = compute_available_expressions(&cfg, source, Language::Python)
            .expect("should compute for Python subtraction");
        assert!(
            !avail.expressions.is_empty(),
            "Python: should find binary expression a - b"
        );
    }

    #[test]
    fn test_python_ast_multiplication() {
        let source = "x = a * b\ny = a * b\n";
        let cfg = single_block_cfg(2);
        let avail = compute_available_expressions(&cfg, source, Language::Python)
            .expect("should compute for Python multiplication");
        assert!(
            !avail.expressions.is_empty(),
            "Python: should find binary expression a * b"
        );
    }

    // =========================================================================
    // TypeScript
    // =========================================================================

    #[test]
    fn test_typescript_ast_available_expressions() {
        let source = "const x = a + b;\nconst y = a + b;\n";
        let cfg = single_block_cfg(2);
        let avail = compute_available_expressions(&cfg, source, Language::TypeScript)
            .expect("should compute for TypeScript");
        assert!(
            !avail.expressions.is_empty(),
            "TypeScript: should find binary expression a + b"
        );
        assert_has_expression_with_operands(&avail, "a", "b");
    }

    #[test]
    fn test_typescript_let_assignment() {
        let source = "let x = a + b;\nlet y = a + b;\n";
        let cfg = single_block_cfg(2);
        let avail = compute_available_expressions(&cfg, source, Language::TypeScript)
            .expect("should compute for TypeScript let");
        assert!(
            !avail.expressions.is_empty(),
            "TypeScript: should find binary expression in let assignment"
        );
    }

    // =========================================================================
    // JavaScript
    // =========================================================================

    #[test]
    fn test_javascript_ast_available_expressions() {
        let source = "var x = a + b;\nvar y = a + b;\n";
        let cfg = single_block_cfg(2);
        let avail = compute_available_expressions(&cfg, source, Language::JavaScript)
            .expect("should compute for JavaScript");
        assert!(
            !avail.expressions.is_empty(),
            "JavaScript: should find binary expression a + b"
        );
        assert_has_expression_with_operands(&avail, "a", "b");
    }

    // =========================================================================
    // Go
    // =========================================================================

    #[test]
    fn test_go_ast_available_expressions() {
        let source = "x := a + b\ny := a + b\n";
        let cfg = single_block_cfg(2);
        let avail = compute_available_expressions(&cfg, source, Language::Go)
            .expect("should compute for Go");
        assert!(
            !avail.expressions.is_empty(),
            "Go: should find binary expression a + b"
        );
        assert_has_expression_with_operands(&avail, "a", "b");
    }

    #[test]
    fn test_go_assignment_statement() {
        let source = "x = a + b\ny = a + b\n";
        let cfg = single_block_cfg(2);
        let avail = compute_available_expressions(&cfg, source, Language::Go)
            .expect("should compute for Go assignment");
        assert!(
            !avail.expressions.is_empty(),
            "Go: should find binary expression in regular assignment"
        );
    }

    // =========================================================================
    // Rust
    // =========================================================================

    #[test]
    fn test_rust_ast_available_expressions() {
        let source = "let x = a + b;\nlet y = a + b;\n";
        let cfg = single_block_cfg(2);
        let avail = compute_available_expressions(&cfg, source, Language::Rust)
            .expect("should compute for Rust");
        assert!(
            !avail.expressions.is_empty(),
            "Rust: should find binary expression a + b"
        );
        assert_has_expression_with_operands(&avail, "a", "b");
    }

    // =========================================================================
    // Java
    // =========================================================================

    #[test]
    fn test_java_ast_available_expressions() {
        let source = "int x = a + b;\nint y = a + b;\n";
        let cfg = single_block_cfg(2);
        let avail = compute_available_expressions(&cfg, source, Language::Java)
            .expect("should compute for Java");
        assert!(
            !avail.expressions.is_empty(),
            "Java: should find binary expression a + b"
        );
        assert_has_expression_with_operands(&avail, "a", "b");
    }

    // =========================================================================
    // Kotlin
    // =========================================================================

    #[test]
    fn test_kotlin_ast_available_expressions() {
        let source = "val x = a + b\nval y = a + b\n";
        let cfg = single_block_cfg(2);
        let avail = compute_available_expressions(&cfg, source, Language::Kotlin)
            .expect("should compute for Kotlin");
        assert!(
            !avail.expressions.is_empty(),
            "Kotlin: should find binary expression a + b"
        );
        assert_has_expression_with_operands(&avail, "a", "b");
    }

    // =========================================================================
    // C
    // =========================================================================

    #[test]
    fn test_c_ast_available_expressions() {
        let source = "int x = a + b;\nint y = a + b;\n";
        let cfg = single_block_cfg(2);
        let avail =
            compute_available_expressions(&cfg, source, Language::C).expect("should compute for C");
        assert!(
            !avail.expressions.is_empty(),
            "C: should find binary expression a + b"
        );
        assert_has_expression_with_operands(&avail, "a", "b");
    }

    // =========================================================================
    // C++
    // =========================================================================

    #[test]
    fn test_cpp_ast_available_expressions() {
        let source = "int x = a + b;\nint y = a + b;\n";
        let cfg = single_block_cfg(2);
        let avail = compute_available_expressions(&cfg, source, Language::Cpp)
            .expect("should compute for C++");
        assert!(
            !avail.expressions.is_empty(),
            "C++: should find binary expression a + b"
        );
        assert_has_expression_with_operands(&avail, "a", "b");
    }

    // =========================================================================
    // Ruby
    // =========================================================================

    #[test]
    fn test_ruby_ast_available_expressions() {
        let source = "x = a + b\ny = a + b\n";
        let cfg = single_block_cfg(2);
        let avail = compute_available_expressions(&cfg, source, Language::Ruby)
            .expect("should compute for Ruby");
        assert!(
            !avail.expressions.is_empty(),
            "Ruby: should find binary expression a + b"
        );
        assert_has_expression_with_operands(&avail, "a", "b");
    }

    // =========================================================================
    // Swift
    // =========================================================================

    #[test]
    fn test_swift_ast_available_expressions() {
        // Swift tree-sitter is not supported, so should fall back to regex
        let source = "let x = a + b\nlet y = a + b\n";
        let cfg = single_block_cfg(2);
        let _avail = compute_available_expressions(&cfg, source, Language::Swift)
            .expect("should compute for Swift (regex fallback)");
        // Swift falls back to regex, which may or may not find expressions
        // The important thing is that it does not panic
    }

    // =========================================================================
    // CSharp
    // =========================================================================

    #[test]
    fn test_csharp_ast_available_expressions() {
        let source = "int x = a + b;\nint y = a + b;\n";
        let cfg = single_block_cfg(2);
        let avail = compute_available_expressions(&cfg, source, Language::CSharp)
            .expect("should compute for C#");
        assert!(
            !avail.expressions.is_empty(),
            "C#: should find binary expression a + b"
        );
        assert_has_expression_with_operands(&avail, "a", "b");
    }

    // =========================================================================
    // Scala
    // =========================================================================

    #[test]
    fn test_scala_ast_available_expressions() {
        let source = "val x = a + b\nval y = a + b\n";
        let cfg = single_block_cfg(2);
        let avail = compute_available_expressions(&cfg, source, Language::Scala)
            .expect("should compute for Scala");
        assert!(
            !avail.expressions.is_empty(),
            "Scala: should find binary expression a + b"
        );
        assert_has_expression_with_operands(&avail, "a", "b");
    }

    // =========================================================================
    // PHP
    // =========================================================================

    #[test]
    fn test_php_ast_available_expressions() {
        let source = "<?php\n$x = $a + $b;\n$y = $a + $b;\n";
        let cfg = single_block_cfg(3);
        let avail = compute_available_expressions(&cfg, source, Language::Php)
            .expect("should compute for PHP");
        assert!(
            !avail.expressions.is_empty(),
            "PHP: should find binary expression $a + $b"
        );
    }

    // =========================================================================
    // Lua
    // =========================================================================

    #[test]
    fn test_lua_ast_available_expressions() {
        let source = "local x = a + b\nlocal y = a + b\n";
        let cfg = single_block_cfg(2);
        let avail = compute_available_expressions(&cfg, source, Language::Lua)
            .expect("should compute for Lua");
        assert!(
            !avail.expressions.is_empty(),
            "Lua: should find binary expression a + b"
        );
        assert_has_expression_with_operands(&avail, "a", "b");
    }

    // =========================================================================
    // Luau
    // =========================================================================

    #[test]
    fn test_luau_ast_available_expressions() {
        let source = "local x = a + b\nlocal y = a + b\n";
        let cfg = single_block_cfg(2);
        let avail = compute_available_expressions(&cfg, source, Language::Luau)
            .expect("should compute for Luau");
        assert!(
            !avail.expressions.is_empty(),
            "Luau: should find binary expression a + b"
        );
        assert_has_expression_with_operands(&avail, "a", "b");
    }

    // =========================================================================
    // Elixir
    // =========================================================================

    #[test]
    fn test_elixir_ast_available_expressions() {
        let source = "x = a + b\ny = a + b\n";
        let cfg = single_block_cfg(2);
        let avail = compute_available_expressions(&cfg, source, Language::Elixir)
            .expect("should compute for Elixir");
        assert!(
            !avail.expressions.is_empty(),
            "Elixir: should find binary expression a + b"
        );
        assert_has_expression_with_operands(&avail, "a", "b");
    }

    // =========================================================================
    // OCaml
    // =========================================================================

    #[test]
    fn test_ocaml_ast_available_expressions() {
        let source = "let x = a + b\nlet y = a + b\n";
        let cfg = single_block_cfg(2);
        let avail = compute_available_expressions(&cfg, source, Language::Ocaml)
            .expect("should compute for OCaml");
        assert!(
            !avail.expressions.is_empty(),
            "OCaml: should find binary expression a + b"
        );
        assert_has_expression_with_operands(&avail, "a", "b");
    }

    // =========================================================================
    // Cross-Language: Canonicalization
    // =========================================================================

    #[test]
    fn test_commutative_canonicalization_python() {
        // a + b and b + a should produce the same canonical expression
        let source = "x = a + b\ny = b + a\n";
        let cfg = single_block_cfg(2);
        let avail =
            compute_available_expressions(&cfg, source, Language::Python).expect("should compute");
        // Should have exactly 1 unique expression (canonical form)
        assert_eq!(
            avail.expressions.len(),
            1,
            "Commutative canonicalization: a + b and b + a should merge. Got: {:?}",
            avail
                .expressions
                .iter()
                .map(|e| &e.text)
                .collect::<Vec<_>>()
        );
    }

    #[test]
    fn test_non_commutative_subtraction_python() {
        // a - b and b - a should be different
        let source = "x = a - b\ny = b - a\n";
        let cfg = single_block_cfg(2);
        let avail =
            compute_available_expressions(&cfg, source, Language::Python).expect("should compute");
        assert_eq!(
            avail.expressions.len(),
            2,
            "Non-commutative: a - b and b - a should be distinct. Got: {:?}",
            avail
                .expressions
                .iter()
                .map(|e| &e.text)
                .collect::<Vec<_>>()
        );
    }

    // =========================================================================
    // Kill semantics with AST
    // =========================================================================

    #[test]
    fn test_kill_semantics_typescript() {
        // After redefining 'a', expression 'a + b' should be killed
        let source = "let x = a + b;\na = 5;\nlet z = a + b;\n";
        let cfg = single_block_cfg(3);
        let avail = compute_available_expressions(&cfg, source, Language::TypeScript)
            .expect("should compute for TypeScript kill test");
        // Should still find expressions (gen/kill is about availability, not extraction)
        // The key is that expressions ARE extracted from AST
        assert!(
            !avail.expressions.is_empty(),
            "TypeScript: should extract expressions even with redefinitions"
        );
    }
}

// =============================================================================
// Integration Tests
// =============================================================================

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

    /// Test: Full SSA pipeline for a simple function
    #[test]
    fn test_full_ssa_pipeline() {
        let source = r#"
def process(x):
    if x > 0:
        y = 1
    else:
        y = 2
    return y
"#;

        let ssa = construct_ssa(
            source,
            "process",
            crate::types::Language::Python,
            SsaType::Minimal,
        )
        .expect("should construct SSA");

        // Verify basic structure
        assert_eq!(ssa.function, "process");
        assert!(!ssa.blocks.is_empty());

        // Should have phi for y
        let has_y_phi = ssa
            .blocks
            .iter()
            .any(|b| b.phi_functions.iter().any(|phi| phi.variable == "y"));
        assert!(has_y_phi, "Should have phi for y");
    }

    /// Test: SSA with loop
    #[test]
    fn test_ssa_with_loop() {
        let source = r#"
def sum_to_n(n):
    total = 0
    i = 0
    while i < n:
        total = total + i
        i = i + 1
    return total
"#;

        let ssa = construct_ssa(
            source,
            "sum_to_n",
            crate::types::Language::Python,
            SsaType::Minimal,
        )
        .expect("should construct SSA");

        // Should have phis for total and i at loop header
        let loop_header = ssa.blocks.iter().find(|b| b.phi_functions.len() >= 2);

        assert!(
            loop_header.is_some(),
            "Should have loop header with phis for loop variables"
        );
    }

    /// Test: Filter by variable
    #[test]
    fn test_filter_by_variable() {
        let ssa = fixtures::sample_ssa();
        let filtered = filter_ssa_by_variable(ssa, "y");

        // Should only contain y's SSA names
        for name in &filtered.ssa_names {
            assert_eq!(name.variable, "y", "Filtered SSA should only contain y");
        }

        // Should only have y's phis
        for block in &filtered.blocks {
            for phi in &block.phi_functions {
                assert_eq!(phi.variable, "y");
            }
        }
    }
}

// =============================================================================
// Language-Specific SSA Tests (Phase 5)
// =============================================================================
//
// These tests verify correct handling of language-specific constructs
// as identified in session10-premortem-2.yaml (36 risks).

#[cfg(test)]
mod language_specific_tests {
    use super::*;
    use crate::ssa::construct::{
        is_blank_identifier, is_comprehension_scope,
    };
    use crate::types::VarRefContext;

    // =========================================================================
    // Python Tests (S10-P2-R1 through R12)
    // =========================================================================

    /// Test: Python augmented assignment (x += 1) creates USE then DEF
    /// S10-P2-R1: Must capture read-then-write atomically
    #[test]
    fn test_python_augmented_assignment() {
        let cfg = fixtures::linear_cfg();
        let refs = vec![
            VarRef {
                name: "x".to_string(),
                ref_type: RefType::Definition,
                line: 1,
                column: 0,
                context: None,
                group_id: None,
            },
            VarRef {
                name: "x".to_string(),
                ref_type: RefType::Update,
                line: 2,
                column: 0,
                context: Some(VarRefContext::AugmentedAssignment),
                group_id: None,
            },
        ];

        let dfg = DfgInfo {
            function: "test".to_string(),
            refs,
            edges: Vec::new(),
            variables: vec!["x".to_string()],
        };

        let ssa = construct_minimal_ssa(&cfg, &dfg).expect("should construct SSA");

        // Should have two versions of x
        let x_versions: Vec<_> = ssa.ssa_names.iter().filter(|n| n.variable == "x").collect();
        assert!(
            x_versions.len() >= 2,
            "Should have at least 2 versions of x: original and after +=. Got {:?}",
            x_versions
        );

        // The augmented assignment instruction should use x_1 and define x_2
        let augmented_instr = ssa
            .blocks
            .iter()
            .flat_map(|b| &b.instructions)
            .find(|i| i.line == 2);

        if let Some(instr) = augmented_instr {
            assert!(
                instr.target.is_some(),
                "Augmented assignment should define a target"
            );
            // The instruction should use the previous version
            // (exact assertion depends on how uses are recorded)
        }
    }

    /// Test: Python multiple assignment (a, b = b, a) has parallel semantics
    /// S10-P2-R2: RHS evaluated before LHS bindings
    #[test]
    fn test_python_multiple_assignment() {
        let cfg = fixtures::linear_cfg();
        let refs = vec![
            // Initial definitions
            VarRef {
                name: "a".to_string(),
                ref_type: RefType::Definition,
                line: 1,
                column: 0,
                context: None,
                group_id: None,
            },
            VarRef {
                name: "b".to_string(),
                ref_type: RefType::Definition,
                line: 1,
                column: 5,
                context: None,
                group_id: None,
            },
            // Swap: a, b = b, a (RHS uses, then LHS defs)
            // Uses come first (RHS evaluation)
            VarRef {
                name: "b".to_string(),
                ref_type: RefType::Use,
                line: 2,
                column: 9,
                context: Some(VarRefContext::MultipleAssignment),
                group_id: Some(1),
            },
            VarRef {
                name: "a".to_string(),
                ref_type: RefType::Use,
                line: 2,
                column: 12,
                context: Some(VarRefContext::MultipleAssignment),
                group_id: Some(1),
            },
            // Then definitions (LHS bindings)
            VarRef {
                name: "a".to_string(),
                ref_type: RefType::Definition,
                line: 2,
                column: 0,
                context: Some(VarRefContext::MultipleAssignment),
                group_id: Some(1),
            },
            VarRef {
                name: "b".to_string(),
                ref_type: RefType::Definition,
                line: 2,
                column: 3,
                context: Some(VarRefContext::MultipleAssignment),
                group_id: Some(1),
            },
        ];

        let dfg = DfgInfo {
            function: "swap".to_string(),
            refs,
            edges: Vec::new(),
            variables: vec!["a".to_string(), "b".to_string()],
        };

        let ssa = construct_minimal_ssa(&cfg, &dfg).expect("should construct SSA");

        // Both a and b should have 2 versions each
        let a_versions: Vec<_> = ssa.ssa_names.iter().filter(|n| n.variable == "a").collect();
        let b_versions: Vec<_> = ssa.ssa_names.iter().filter(|n| n.variable == "b").collect();

        assert!(
            a_versions.len() >= 2,
            "Should have at least 2 versions of a"
        );
        assert!(
            b_versions.len() >= 2,
            "Should have at least 2 versions of b"
        );

        // The swap should create instructions that use old versions to define new
        // This verifies parallel semantics (not circular)
    }

    /// Test: Python walrus operator (n := expr) creates definition in expression
    /// S10-P2-R3: Walrus operator creates definition visible after expression
    #[test]
    fn test_python_walrus_operator() {
        let cfg = fixtures::linear_cfg();
        let refs = vec![
            VarRef {
                name: "n".to_string(),
                ref_type: RefType::Definition,
                line: 1,
                column: 4,
                context: Some(VarRefContext::WalrusOperator),
                group_id: None,
            },
            VarRef {
                name: "n".to_string(),
                ref_type: RefType::Use,
                line: 2,
                column: 11,
                context: None,
                group_id: None,
            },
        ];

        let dfg = DfgInfo {
            function: "test".to_string(),
            refs,
            edges: Vec::new(),
            variables: vec!["n".to_string()],
        };

        let ssa = construct_minimal_ssa(&cfg, &dfg).expect("should construct SSA");

        // n should be defined from the walrus operator
        let n_defs: Vec<_> = ssa
            .ssa_names
            .iter()
            .filter(|name| name.variable == "n")
            .collect();

        assert!(!n_defs.is_empty(), "n should be defined by walrus operator");
        assert_eq!(
            n_defs[0].def_line, 1,
            "n should be defined at the walrus operator line"
        );
    }

    /// Test: Python comprehension scope isolation
    /// S10-P2-R5: Comprehension x doesn't affect outer x
    #[test]
    fn test_python_comprehension_scope() {
        // Test the helper function
        let outer_ref = VarRef {
            name: "x".to_string(),
            ref_type: RefType::Definition,
            line: 1,
            column: 0,
            context: None,
            group_id: None,
        };

        let comp_ref = VarRef {
            name: "x".to_string(),
            ref_type: RefType::Definition,
            line: 2,
            column: 5,
            context: Some(VarRefContext::ComprehensionScope),
            group_id: None,
        };

        assert!(
            !is_comprehension_scope(&outer_ref),
            "Outer x is not in comprehension scope"
        );
        assert!(
            is_comprehension_scope(&comp_ref),
            "Comprehension x should be marked"
        );
    }

    /// Test: Python match statement pattern bindings
    /// S10-P2-R10: match case (x, y) creates scoped bindings
    #[test]
    fn test_python_match_bindings() {
        let cfg = fixtures::diamond_cfg();
        let refs = vec![
            VarRef {
                name: "point".to_string(),
                ref_type: RefType::Use,
                line: 1,
                column: 6,
                context: None,
                group_id: None,
            },
            // Pattern binding in first case
            VarRef {
                name: "x".to_string(),
                ref_type: RefType::Definition,
                line: 2,
                column: 10,
                context: Some(VarRefContext::MatchBinding),
                group_id: None,
            },
            VarRef {
                name: "y".to_string(),
                ref_type: RefType::Definition,
                line: 2,
                column: 13,
                context: Some(VarRefContext::MatchBinding),
                group_id: None,
            },
        ];

        let dfg = DfgInfo {
            function: "match_test".to_string(),
            refs,
            edges: Vec::new(),
            variables: vec!["point".to_string(), "x".to_string(), "y".to_string()],
        };

        let ssa = construct_minimal_ssa(&cfg, &dfg).expect("should construct SSA");

        // x and y should be defined in the match arm
        assert!(
            ssa.ssa_names.iter().any(|n| n.variable == "x"),
            "x should be defined from match binding"
        );
        assert!(
            ssa.ssa_names.iter().any(|n| n.variable == "y"),
            "y should be defined from match binding"
        );
    }

    // =========================================================================
    // TypeScript Tests (S10-P2-R13 through R21)
    // =========================================================================

    /// Test: TypeScript destructuring creates multiple definitions
    /// S10-P2-R13: const {a, b: c} = obj defines a and c (not b)
    #[test]
    fn test_typescript_destructuring() {
        let cfg = fixtures::linear_cfg();
        let refs = vec![
            // Source object
            VarRef {
                name: "obj".to_string(),
                ref_type: RefType::Use,
                line: 1,
                column: 18,
                context: Some(VarRefContext::Destructuring),
                group_id: Some(1),
            },
            // Destructured bindings
            VarRef {
                name: "a".to_string(),
                ref_type: RefType::Definition,
                line: 1,
                column: 7,
                context: Some(VarRefContext::Destructuring),
                group_id: Some(1),
            },
            VarRef {
                name: "c".to_string(), // b: c means c is the binding, not b
                ref_type: RefType::Definition,
                line: 1,
                column: 10,
                context: Some(VarRefContext::Destructuring),
                group_id: Some(1),
            },
        ];

        let dfg = DfgInfo {
            function: "destruct".to_string(),
            refs,
            edges: Vec::new(),
            variables: vec!["obj".to_string(), "a".to_string(), "c".to_string()],
        };

        let ssa = construct_minimal_ssa(&cfg, &dfg).expect("should construct SSA");

        // a and c should be defined
        assert!(
            ssa.ssa_names.iter().any(|n| n.variable == "a"),
            "a should be defined from destructuring"
        );
        assert!(
            ssa.ssa_names.iter().any(|n| n.variable == "c"),
            "c should be defined from destructuring"
        );

        // b should NOT be defined (it's the property name, not the binding)
        assert!(
            !ssa.ssa_names.iter().any(|n| n.variable == "b"),
            "b should NOT be defined (c is the binding)"
        );
    }

    /// Test: TypeScript type guard doesn't create new SSA version
    /// S10-P2-R16: typeof x === 'string' doesn't create new version
    #[test]
    fn test_typescript_type_guard_no_version() {
        let cfg = fixtures::diamond_cfg();
        let refs = vec![
            // Parameter definition
            VarRef {
                name: "x".to_string(),
                ref_type: RefType::Definition,
                line: 1,
                column: 10,
                context: None,
                group_id: None,
            },
            // Type guard use (not a definition!)
            VarRef {
                name: "x".to_string(),
                ref_type: RefType::Use,
                line: 2,
                column: 8,
                context: None, // Type guard is just a use
                group_id: None,
            },
            // Use in true branch (still x_1, no new version)
            VarRef {
                name: "x".to_string(),
                ref_type: RefType::Use,
                line: 3,
                column: 15,
                context: None,
                group_id: None,
            },
        ];

        let dfg = DfgInfo {
            function: "guard_test".to_string(),
            refs,
            edges: Vec::new(),
            variables: vec!["x".to_string()],
        };

        let ssa = construct_minimal_ssa(&cfg, &dfg).expect("should construct SSA");

        // x should have only ONE definition (the parameter)
        // Type guards narrow type but don't create new SSA versions
        let x_defs: Vec<_> = ssa.ssa_names.iter().filter(|n| n.variable == "x").collect();
        assert_eq!(
            x_defs.len(),
            1,
            "x should have only ONE SSA version (type guards don't create new versions)"
        );
    }

    /// Test: for...of with destructuring creates per-iteration definitions
    /// S10-P2-R20: for (const [k, v] of pairs) creates k_1, v_1
    #[test]
    fn test_typescript_for_of_destructuring() {
        let cfg = fixtures::loop_cfg();
        let refs = vec![
            // Loop variable destructuring
            VarRef {
                name: "k".to_string(),
                ref_type: RefType::Definition,
                line: 1,
                column: 13,
                context: Some(VarRefContext::Destructuring),
                group_id: Some(1),
            },
            VarRef {
                name: "v".to_string(),
                ref_type: RefType::Definition,
                line: 1,
                column: 16,
                context: Some(VarRefContext::Destructuring),
                group_id: Some(1),
            },
            // Use in loop body
            VarRef {
                name: "k".to_string(),
                ref_type: RefType::Use,
                line: 2,
                column: 12,
                context: None,
                group_id: None,
            },
            VarRef {
                name: "v".to_string(),
                ref_type: RefType::Use,
                line: 2,
                column: 15,
                context: None,
                group_id: None,
            },
        ];

        let dfg = DfgInfo {
            function: "forof_test".to_string(),
            refs,
            edges: Vec::new(),
            variables: vec!["k".to_string(), "v".to_string()],
        };

        let ssa = construct_minimal_ssa(&cfg, &dfg).expect("should construct SSA");

        // k and v should be defined
        assert!(
            ssa.ssa_names.iter().any(|n| n.variable == "k"),
            "k should be defined from destructuring"
        );
        assert!(
            ssa.ssa_names.iter().any(|n| n.variable == "v"),
            "v should be defined from destructuring"
        );
    }

    // =========================================================================
    // Go Tests (S10-P2-R22 through R29)
    // =========================================================================

    /// Test: Go short declaration creates versions correctly
    /// S10-P2-R22: x, y := 3, 4 where x exists: x redef, y new
    #[test]
    fn test_go_short_declaration() {
        let cfg = fixtures::linear_cfg();
        let refs = vec![
            // First declaration
            VarRef {
                name: "x".to_string(),
                ref_type: RefType::Definition,
                line: 1,
                column: 0,
                context: Some(VarRefContext::ShortDeclaration),
                group_id: None,
            },
            // Second declaration (x redefined, y new)
            VarRef {
                name: "x".to_string(),
                ref_type: RefType::Definition,
                line: 2,
                column: 0,
                context: Some(VarRefContext::ShortDeclaration),
                group_id: Some(1),
            },
            VarRef {
                name: "y".to_string(),
                ref_type: RefType::Definition,
                line: 2,
                column: 3,
                context: Some(VarRefContext::ShortDeclaration),
                group_id: Some(1),
            },
        ];

        let dfg = DfgInfo {
            function: "short_decl".to_string(),
            refs,
            edges: Vec::new(),
            variables: vec!["x".to_string(), "y".to_string()],
        };

        let ssa = construct_minimal_ssa(&cfg, &dfg).expect("should construct SSA");

        // x should have 2 versions
        let x_versions: Vec<_> = ssa.ssa_names.iter().filter(|n| n.variable == "x").collect();
        assert!(x_versions.len() >= 2, "x should have at least 2 versions");

        // y should have 1 version
        let y_versions: Vec<_> = ssa.ssa_names.iter().filter(|n| n.variable == "y").collect();
        assert_eq!(y_versions.len(), 1, "y should have exactly 1 version");
    }

    /// Test: Go multiple return values create multiple definitions
    /// S10-P2-R23: a, err := f() creates two definitions
    #[test]
    fn test_go_multiple_returns() {
        let cfg = fixtures::linear_cfg();
        let refs = vec![
            VarRef {
                name: "val".to_string(),
                ref_type: RefType::Definition,
                line: 1,
                column: 0,
                context: Some(VarRefContext::MultipleReturn),
                group_id: Some(1),
            },
            VarRef {
                name: "err".to_string(),
                ref_type: RefType::Definition,
                line: 1,
                column: 5,
                context: Some(VarRefContext::MultipleReturn),
                group_id: Some(1),
            },
        ];

        let dfg = DfgInfo {
            function: "multi_return".to_string(),
            refs,
            edges: Vec::new(),
            variables: vec!["val".to_string(), "err".to_string()],
        };

        let ssa = construct_minimal_ssa(&cfg, &dfg).expect("should construct SSA");

        // Both val and err should be defined
        assert!(
            ssa.ssa_names.iter().any(|n| n.variable == "val"),
            "val should be defined"
        );
        assert!(
            ssa.ssa_names.iter().any(|n| n.variable == "err"),
            "err should be defined"
        );
    }

    /// Test: Go blank identifier (_) is not tracked
    /// S10-P2-R28: _ is never a definition or use
    #[test]
    fn test_go_blank_identifier() {
        assert!(is_blank_identifier("_"), "_ should be blank identifier");
        assert!(!is_blank_identifier("x"), "x should not be blank");
        assert!(!is_blank_identifier("_x"), "_x should not be blank");
    }

    // =========================================================================
    // Rust Tests (S10-P2-R30 through R36)
    // =========================================================================

    /// Test: Rust shadowing creates new variable, not new version
    /// S10-P2-R31: let x = 1; let x = 2; creates two separate variables
    #[test]
    fn test_rust_shadowing() {
        let cfg = fixtures::linear_cfg();
        let refs = vec![
            // First binding
            VarRef {
                name: "x".to_string(),
                ref_type: RefType::Definition,
                line: 1,
                column: 4,
                context: Some(VarRefContext::Shadowing),
                group_id: None,
            },
            // Second binding (shadows first)
            VarRef {
                name: "x".to_string(),
                ref_type: RefType::Use,
                line: 2,
                column: 12,
                context: None,
                group_id: None,
            },
            VarRef {
                name: "x".to_string(),
                ref_type: RefType::Definition,
                line: 2,
                column: 4,
                context: Some(VarRefContext::Shadowing),
                group_id: None,
            },
        ];

        let dfg = DfgInfo {
            function: "shadow_test".to_string(),
            refs,
            edges: Vec::new(),
            variables: vec!["x".to_string()],
        };

        let ssa = construct_minimal_ssa(&cfg, &dfg).expect("should construct SSA");

        // Should have either shadow names (x#1, x#2) or versions of x
        // The key invariant is that the second definition is distinct from the first
        let x_names: Vec<_> = ssa
            .ssa_names
            .iter()
            .filter(|n| n.variable.starts_with("x"))
            .collect();

        assert!(
            x_names.len() >= 2,
            "Should have at least 2 SSA names for x (shadow creates new variable)"
        );
    }

    /// Test: Rust pattern binding in let
    /// S10-P2-R30: let (a, b) = tuple creates two definitions
    #[test]
    fn test_rust_pattern_binding() {
        let cfg = fixtures::linear_cfg();
        let refs = vec![
            VarRef {
                name: "a".to_string(),
                ref_type: RefType::Definition,
                line: 1,
                column: 5,
                context: Some(VarRefContext::PatternBinding),
                group_id: Some(1),
            },
            VarRef {
                name: "b".to_string(),
                ref_type: RefType::Definition,
                line: 1,
                column: 8,
                context: Some(VarRefContext::PatternBinding),
                group_id: Some(1),
            },
        ];

        let dfg = DfgInfo {
            function: "pattern_test".to_string(),
            refs,
            edges: Vec::new(),
            variables: vec!["a".to_string(), "b".to_string()],
        };

        let ssa = construct_minimal_ssa(&cfg, &dfg).expect("should construct SSA");

        // Both a and b should be defined
        assert!(
            ssa.ssa_names.iter().any(|n| n.variable == "a"),
            "a should be defined from pattern"
        );
        assert!(
            ssa.ssa_names.iter().any(|n| n.variable == "b"),
            "b should be defined from pattern"
        );
    }

    /// Test: Rust match arm bindings are scoped
    /// S10-P2-R34: Ok(n) => n: n scoped to arm only
    #[test]
    fn test_rust_match_arm_scope() {
        let cfg = fixtures::diamond_cfg();
        let refs = vec![
            // Match expression use
            VarRef {
                name: "r".to_string(),
                ref_type: RefType::Use,
                line: 1,
                column: 6,
                context: None,
                group_id: None,
            },
            // Ok arm binding
            VarRef {
                name: "n".to_string(),
                ref_type: RefType::Definition,
                line: 2,
                column: 7,
                context: Some(VarRefContext::MatchArmBinding),
                group_id: None,
            },
            // Use n in Ok arm
            VarRef {
                name: "n".to_string(),
                ref_type: RefType::Use,
                line: 2,
                column: 13,
                context: None,
                group_id: None,
            },
            // Err arm binding
            VarRef {
                name: "e".to_string(),
                ref_type: RefType::Definition,
                line: 3,
                column: 8,
                context: Some(VarRefContext::MatchArmBinding),
                group_id: None,
            },
        ];

        let dfg = DfgInfo {
            function: "match_arm_test".to_string(),
            refs,
            edges: Vec::new(),
            variables: vec!["r".to_string(), "n".to_string(), "e".to_string()],
        };

        let ssa = construct_minimal_ssa(&cfg, &dfg).expect("should construct SSA");

        // n and e should be defined in their respective arms
        assert!(
            ssa.ssa_names.iter().any(|n| n.variable == "n"),
            "n should be defined in Ok arm"
        );
        assert!(
            ssa.ssa_names.iter().any(|n| n.variable == "e"),
            "e should be defined in Err arm"
        );
    }
}

// =============================================================================
// Source Text and Uses Population Tests (Alias Fix)
// =============================================================================

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

    /// Test: construct_ssa populates source_text on SSA instructions
    #[test]
    fn test_source_text_populated_via_construct_ssa() {
        let source = r#"
def alias_test():
    x = [1, 2, 3]
    y = x
    z = [4, 5, 6]
"#;

        let ssa = construct_ssa(
            source,
            "alias_test",
            crate::types::Language::Python,
            SsaType::Minimal,
        )
        .expect("should construct SSA");

        // All Assign instructions should have source_text populated
        let assign_instructions: Vec<&SsaInstruction> = ssa
            .blocks
            .iter()
            .flat_map(|b| &b.instructions)
            .filter(|i| i.kind == SsaInstructionKind::Assign)
            .collect();

        assert!(
            !assign_instructions.is_empty(),
            "Should have at least one assign instruction"
        );

        for inst in &assign_instructions {
            assert!(
                inst.source_text.is_some(),
                "Assign instruction at line {} should have source_text populated, got None",
                inst.line
            );
        }
    }

    /// Test: source_text contains the actual source line content
    #[test]
    fn test_source_text_contains_correct_content() {
        let source = r#"
def simple():
    x = [1, 2, 3]
    y = x
"#;

        let ssa = construct_ssa(
            source,
            "simple",
            crate::types::Language::Python,
            SsaType::Minimal,
        )
        .expect("should construct SSA");

        // Find instruction for x = [1, 2, 3]
        let x_instr = ssa.blocks.iter().flat_map(|b| &b.instructions).find(|i| {
            i.kind == SsaInstructionKind::Assign
                && i.source_text
                    .as_ref()
                    .is_some_and(|s| s.contains("[1, 2, 3]"))
        });

        assert!(
            x_instr.is_some(),
            "Should find instruction with source_text containing '[1, 2, 3]'"
        );
    }

    /// Test: uses populated for copy assignment (y = x)
    #[test]
    fn test_uses_populated_for_copy_assignment() {
        let source = r#"
def copy_test():
    x = [1, 2, 3]
    y = x
"#;

        let ssa = construct_ssa(
            source,
            "copy_test",
            crate::types::Language::Python,
            SsaType::Minimal,
        )
        .expect("should construct SSA");

        // Find the SSA name for x
        let x_name = ssa
            .ssa_names
            .iter()
            .find(|n| n.variable == "x")
            .expect("should have SSA name for x");

        // Find the instruction that defines y
        let y_instr = ssa.blocks.iter().flat_map(|b| &b.instructions).find(|i| {
            i.kind == SsaInstructionKind::Assign
                && i.target
                    .is_some_and(|t| ssa.ssa_names.iter().any(|n| n.id == t && n.variable == "y"))
        });

        let y_instr = y_instr.expect("should find y's assignment instruction");

        // y's instruction should have x's SSA name in its uses
        assert!(
            y_instr.uses.contains(&x_name.id),
            "y = x instruction should have x's SSA name ({:?}) in uses, but uses = {:?}",
            x_name.id,
            y_instr.uses
        );
    }

    /// Test: uses populated for chained copies (y = x, w = y)
    #[test]
    fn test_uses_populated_for_chained_copies() {
        let source = r#"
def chain_test():
    x = [1, 2, 3]
    y = x
    w = y
"#;

        let ssa = construct_ssa(
            source,
            "chain_test",
            crate::types::Language::Python,
            SsaType::Minimal,
        )
        .expect("should construct SSA");

        // Find SSA names
        let y_name = ssa
            .ssa_names
            .iter()
            .find(|n| n.variable == "y")
            .expect("should have SSA name for y");

        // Find instruction for w
        let w_instr = ssa
            .blocks
            .iter()
            .flat_map(|b| &b.instructions)
            .find(|i| {
                i.kind == SsaInstructionKind::Assign
                    && i.target.is_some_and(|t| {
                        ssa.ssa_names.iter().any(|n| n.id == t && n.variable == "w")
                    })
            })
            .expect("should find w's assignment instruction");

        // w = y instruction should have y's SSA name in its uses
        assert!(
            w_instr.uses.contains(&y_name.id),
            "w = y instruction should have y's SSA name ({:?}) in uses, but uses = {:?}",
            y_name.id,
            w_instr.uses
        );
    }

    /// Test: construct_minimal_ssa (without source) still works with empty source_text
    #[test]
    fn test_construct_minimal_ssa_backward_compatible() {
        let cfg = fixtures::diamond_cfg();
        let dfg = fixtures::diamond_dfg();

        let ssa = construct_minimal_ssa(&cfg, &dfg).expect("should construct SSA");

        // Should still work - instructions exist but may have None source_text
        let total_instructions: usize = ssa.blocks.iter().map(|b| b.instructions.len()).sum();
        assert!(
            total_instructions > 0,
            "Should have at least one instruction"
        );
    }

    /// Test: construct_ssa_with_statements populates both source_text and uses
    #[test]
    fn test_construct_ssa_with_statements_populates_both() {
        let source = r#"
def both_test():
    x = [1, 2, 3]
    y = x
    z = [4, 5, 6]
    w = y
"#;

        let ssa = construct_ssa(
            source,
            "both_test",
            crate::types::Language::Python,
            SsaType::Minimal,
        )
        .expect("should construct SSA");

        // Check that all assign instructions have source_text
        let assign_instructions: Vec<&SsaInstruction> = ssa
            .blocks
            .iter()
            .flat_map(|b| &b.instructions)
            .filter(|i| i.kind == SsaInstructionKind::Assign)
            .collect();

        let with_source_text = assign_instructions
            .iter()
            .filter(|i| i.source_text.is_some())
            .count();

        assert!(
            with_source_text > 0,
            "At least some instructions should have source_text"
        );

        // Check that copy assignments have uses populated
        let with_uses = assign_instructions
            .iter()
            .filter(|i| !i.uses.is_empty())
            .count();

        // y = x and w = y should have uses, so at least 2
        assert!(
            with_uses >= 2,
            "At least 2 copy assignments (y=x, w=y) should have uses populated, got {}",
            with_uses
        );
    }
}