summaryrefslogtreecommitdiff
path: root/src/generate.c
blob: 6f92382e35f37dad4e7daeb86097572a4787e243 (plain)
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
4963
4964
4965
/**

Copyright (c) Scott Gasch

Module Name:

    generate.c

Abstract:

    This module contains two move generators: a pseudo legal move
    generator and a pseudo legal escaping move generator.  The former
    is called in positions where side on move is not in check and the
    latter is called when the side on move is in check.  Note: both of
    these generators produce pseudo-legal moves.  The normal move
    generator is pretty bad: it does not bother to see if moves expose
    their own king to check or if castles pass through check
    etc... Instead it relies on MakeMove to throw out any illegal
    moves it generates.  The escape generator is better in that it
    produces less illegal moves.  But it is still possible to generate
    some with it.  An example: it will generate replies to check that
    may include capturing moves that are illegal because the capturing
    piece is pinned to the (already in check) king.  Both generators
    produce a set of moves that contains the true legal set of moves in
    a position as a subset; if a move is legal it will be produced.

    This module also contains some code to flag moves as checking
    moves and score moves after they are generated.

Author:

    Scott Gasch ([email protected]) 11 May 2004

Revision History:

    $Id: generate.c 345 2007-12-02 22:56:42Z scott $

**/

#include "chess.h"
#include "psqt.h"

//
// Note: this order is important because of how EvalQueen works
//
const INT g_iQKDeltas[] = {
    -17, -16, -15, -1, +1, +17, +15, +16, 0 };

static void
_FindUnblockedSquares(IN MOVE_STACK *pStack,
                      IN POSITION *pos)
/**

Routine description:

    Given a position, find, count and mark all squares that are
    unblocked for the king of the side not on move.  For example:

       +---+---+---+---+- - -    The squares marked with *'s in this
       |***| K |***|*Q*|         diagram are unblocked for the K.  As
       +---+---+---+---+- - -    you can see, there are nine of them.
       |*P*|***|***|   |
       +---+---+---+---+- - -    Note the piece at the end of an unblocked
       |   |***|   |*P*|         ray from the king is on an unblocked
       +---+---+---+---+- - -    square (and its color doesn't matter)
       |   |*R*|   |   |
       +---+---+---+---+- - -    This stuff is used to flag checking moves
       |   |   |   |   |         as they are generated.
       .   .   .   .   .

    Also note: this is one of the most called routines in the engine;
    speed is of the essence here.

Parameters:

    MOVE_STACK *pStack : move stack pointer
    POSITION *pos : position pointer

Return value:

    void

**/
{
    register ULONG u;
    COOR cKing = pos->cNonPawns[FLIP(pos->uToMove)][0];
    COOR c;
    ULONG uPly = pStack->uPly;
#ifdef DEBUG
    PIECE pKing = pos->rgSquare[cKing].pPiece;
    ULONG uCount = 0;
    COOR cx;

    ASSERT(IS_ON_BOARD(cKing));
    ASSERT(IS_KING(pKing));
    ASSERT(GET_COLOR(pKing) != pos->uToMove);
#endif

    //
    // Adjust the unblocked key value for this ply...
    //
    pStack->uUnblockedKeyValue[uPly]++;
#ifdef DEBUG
    FOREACH_SQUARE(c)
    {
        if (!IS_ON_BOARD(c)) continue;
        ASSERT(pStack->sUnblocked[uPly][c].uKey !=
               pStack->uUnblockedKeyValue[uPly]);
    }
#endif

    u = 0;
    ASSERT(g_iQKDeltas[u] != 0);
    do
    {
        c = cKing + g_iQKDeltas[u];
        while(IS_ON_BOARD(c))
        {
            pStack->sUnblocked[uPly][c].uKey =
                pStack->uUnblockedKeyValue[uPly];
            pStack->sUnblocked[uPly][c].iPointer = -1 * g_iQKDeltas[u];
#ifdef DEBUG
            ASSERT(-g_iQKDeltas[u] == DIRECTION_BETWEEN_SQUARES(c,cKing));
            ASSERT(pStack->sUnblocked[uPly][c].iPointer != 0);
            cx = c;
            do
            {
                cx += pStack->sUnblocked[uPly][c].iPointer;
            }
            while(IS_ON_BOARD(cx) && (IS_EMPTY(pos->rgSquare[cx].pPiece)));
            ASSERT(cx == cKing);
            uCount++;
#endif
            if (!IS_EMPTY(pos->rgSquare[c].pPiece))
            {
                break;
            }
            c += g_iQKDeltas[u];
        }
        u++;
    }
    while(g_iQKDeltas[u] != 0);
    ASSERT(uCount > 2);
    ASSERT(uCount < 28);
}

#define SQUARE_IS_UNBLOCKED(c) (uUnblocked == kp[(c)].uKey)
#define DIR_FROM_SQ_TO_KING(c) (kp[(c)].iPointer)

FLAG
WouldGiveCheck(IN SEARCHER_THREAD_CONTEXT *ctx,
               IN MOVE mv)
/**

Routine description:

    Determine whether a move is a checking move or not.  For this
    function to work properly _FindUnblockedSquares must have been
    called at the start of generation.

    Note: this is one of the most called codepaths in the engine,
    speed is of the essence here.

Parameters:

    MOVE_STACK *pStack : the move stack
    POSITION *pos : the board
    MOVE mv : the move under consideration

Return value:

    FLAG : TRUE if the move is checking, FALSE otherwise

**/
{
    //
    // TODO: consider adding a hash table to see if sig+mv would
    // give check.  Is this worth it?
    //
    MOVE_STACK *pStack = &(ctx->sMoveStack);
    POSITION *pos = &(ctx->sPosition);
    COOR cTo = mv.cTo;
    COOR cFrom = mv.cFrom;
    PIECE pPiece = mv.pMoved;
    COOR xKing = pos->cNonPawns[FLIP(GET_COLOR(pPiece))][0];
    KEY_POINTER *kp = &(pStack->sUnblocked[ctx->uPly][0]);
    ULONG uUnblocked = pStack->uUnblockedKeyValue[ctx->uPly];
    COOR cEpSquare;
    int iDelta;

    ASSERT(ctx->uPly < MAX_PLY_PER_SEARCH);
    ASSERT(PositionsAreEquivalent(&(pStack->board[ctx->uPly]), pos));
    ASSERT(mv.uMove);
    ASSERT(IS_KING(pos->rgSquare[xKing].pPiece));
    ASSERT(IS_ON_BOARD(cTo));
    ASSERT(IS_ON_BOARD(cFrom));
    ASSERT(pPiece);

    //
    // Phase 1: Does this move directly attack the king?
    //

    //
    // You can't attack one king directly with the other except by
    // castling (in which case the rook is doing the attack).
    //
    if (IS_KING(pPiece))
    {
        if (!IS_SPECIAL_MOVE(mv))
        {
            goto exposes;
        }

        ASSERT((mv.cFrom == E8) || (mv.cFrom == E1));
        pPiece &= ~4;
        ASSERT(!IS_KING(pPiece));
        ASSERT(IS_ROOK(pPiece));
        ASSERT(pPiece == (BLACK_ROOK | GET_COLOR(pPiece)));

        switch(cTo)
        {
            case C1:
                cTo = D1;
                if (SQUARE_IS_UNBLOCKED(E1) &&
                    (DIR_FROM_SQ_TO_KING(E1) == 1))
                {
                    ASSERT(RANK1(xKing));
                    return(MOVE_FLAG_CHECKING);
                }
                break;
            case G1:
                cTo = F1;
                if (SQUARE_IS_UNBLOCKED(E1) &&
                    (DIR_FROM_SQ_TO_KING(E1) == -1))
                {
                    ASSERT(RANK1(xKing));
                    return(MOVE_FLAG_CHECKING);
                }
                break;
            case C8:
                cTo = D8;
                if (SQUARE_IS_UNBLOCKED(E8) &&
                    (DIR_FROM_SQ_TO_KING(E8) == 1))
                {
                    ASSERT(RANK8(xKing));
                    return(MOVE_FLAG_CHECKING);
                }
                break;
            case G8:
                cTo = F8;
                if (SQUARE_IS_UNBLOCKED(E8) &&
                    (DIR_FROM_SQ_TO_KING(E8) == -1))
                {
                    ASSERT(RANK8(xKing));
                    return(MOVE_FLAG_CHECKING);
                }
                break;
#ifdef DEBUG
            default:
                UtilPanic(SHOULD_NOT_GET_HERE,
                          NULL, NULL, NULL, NULL,
                          __FILE__, __LINE__);
                break;
#endif
        }
    }

    //
    // Ok, either its not a king or its a castle move and we are thinking
    // about the rook now.
    //

    //
    // Check the attack vector table
    //
    ASSERT(!IS_KING(pPiece));
    iDelta = 0;
    if (mv.pPromoted)
    {
        ASSERT(IS_PAWN(pPiece));
        ASSERT(GET_COLOR(pPiece) == GET_COLOR(mv.pPromoted));
        pPiece = mv.pPromoted;
        ASSERT(!IS_PAWN(pPiece));
        iDelta = cFrom - cTo;
        ASSERT(iDelta != 0);
    }

    //
    // Does pPiece attack xKing directly if there are not pieces in
    // the way?
    //
    if (0 != (CHECK_VECTOR_WITH_INDEX((int)cTo - (int)xKing,
                                      GET_COLOR(pPiece)) &
              (1 << PIECE_TYPE(pPiece))))
    {
        //
        // We don't toggle knight squares as unblocked... so if the sq
        // is unblocked then piece must not be a knight.  Note: this
        // logical OR replaced with bitwise equivalent for speed.
        //
        if ((SQUARE_IS_UNBLOCKED(cTo)) | (IS_KNIGHT(pPiece)))
        {
#ifdef DEBUG
            if (SQUARE_IS_UNBLOCKED(cTo))
            {
                ASSERT(!IS_KNIGHT(pPiece));
            }
            else
            {
                ASSERT(IS_KNIGHT(pPiece));
            }
#endif
            return(MOVE_FLAG_CHECKING);
        }
        ASSERT(!IS_PAWN(pPiece));

        //
        // Special case: if this is a pawn that just promoted, and the
        // from square was unblocked, this pawn in its new state can
        // check the king.
        //
        if ((DIR_FROM_SQ_TO_KING(cFrom) == iDelta) &&
            (SQUARE_IS_UNBLOCKED(cFrom)))
        {
            return(MOVE_FLAG_CHECKING);
        }
    }

 exposes:
    //
    // We now know that the move itself does not directly attack the
    // enemy king.  We will now see if that move exposes check to the
    // enemy king.
    //

    //
    // A move cannot expose check directly if its from square is not
    // an unblocked square.  But if it is unblocked, we will have to
    // scan behind the piece to see if there is some attacker.
    //
    if (SQUARE_IS_UNBLOCKED(cFrom))
    {
        //
        // Piece moves towards the king on the same ray?  Cannot be
        // check.  Piece moves away from the king on the same ray?
        // Cannot be check.
        //
        if (DIRECTION_BETWEEN_SQUARES(cTo, xKing) !=
            DIR_FROM_SQ_TO_KING(cFrom))
        {
            if (IS_ON_BOARD(FasterExposesCheck(pos, cFrom, xKing)))
            {
                ASSERT(IS_ON_BOARD(ExposesCheck(pos, cFrom, xKing)));
                return(MOVE_FLAG_CHECKING);
            }
        }
    }

    //
    // There is one last special case.  If this move was enpassant
    // it's possible that the removal of the enemy pawn has exposed
    // the enemy king to check.
    //
    // rnb2bnr/ppp3pp/4k3/1B1qPpB1/4p1Q1/8/PPP2PPP/RN2K1NR w  - f6 0 0
    // rn5r/pp4pp/8/5qk1/1b2pP2/4K3/PPP3PP/RN4NR b  - f3 0 0
    //
    if (IS_ENPASSANT(mv))
    {
        ASSERT(IS_PAWN(pPiece));
        ASSERT(VALID_EP_SQUARE(cTo));
        ASSERT(cTo == pos->cEpSquare);
        cEpSquare = cTo + 16 * g_iBehind[(GET_COLOR(pPiece))];
#ifdef DEBUG
        if (GET_COLOR(pPiece))
        {
            ASSERT(cEpSquare == (cTo + 16));
        }
        else
        {
            ASSERT(cEpSquare == (cTo - 16));
        }
#endif
        ASSERT(IS_PAWN(pos->rgSquare[cEpSquare].pPiece));
        ASSERT(OPPOSITE_COLORS(pPiece, pos->rgSquare[cEpSquare].pPiece));

        //
        // Logical OR replaced with bitwise for speed.
        //
        if (((SQUARE_IS_UNBLOCKED(cEpSquare)) |
             (SQUARE_IS_UNBLOCKED(cFrom))) &&
            (IS_ON_BOARD(ExposesCheckEp(pos, cEpSquare, cFrom, cTo, xKing))))
        {
            return(MOVE_FLAG_CHECKING);
        }
    }

    //
    // No direct check + no exposed check = no check.
    //
    return(0);
}


static void FORCEINLINE
_AddNormalMove(IN MOVE_STACK *pStack,
               IN POSITION *pos,
               IN COOR cFrom,
               IN COOR cTo,
               IN PIECE pCap)
/**

Routine description:

    Adds a move from the generator functions to the stack of generated
    moves.

Parameters:

    MOVE_STACK *pStack : the move stack
    POSITION *pos : the board position
    COOR cFrom : the move's from square
    COOR cTo : the move's to square
    PIECE pCap : what was captured (if anything)

Return value:

    static void FORCEINLINE

**/
{
    PIECE pMoved = pos->rgSquare[cFrom].pPiece;
    ULONG uPly = pStack->uPly;
    MOVE_STACK_MOVE_VALUE_FLAGS *pMvf;

    ASSERT(pMoved);
    ASSERT(GET_COLOR(pMoved) == pos->uToMove);
    ASSERT(IS_ON_BOARD(cFrom));
    ASSERT(IS_ON_BOARD(cTo));

    pMvf = &(pStack->mvf[pStack->uEnd[uPly]]);
    pMvf->mv.uMove = MAKE_MOVE_WITH_NO_PROM_OR_FLAGS(cFrom, cTo, pMoved, pCap);
    pStack->uEnd[uPly]++;

    ASSERT(pMvf->mv.uMove == MAKE_MOVE(cFrom, cTo, pMoved, pCap, 0, 0));
    ASSERT(SanityCheckMove(pos, pMvf->mv));
}


static void FORCEINLINE
_AddEnPassant(IN MOVE_STACK *pStack,
              IN POSITION *pos,
              IN COOR cFrom,
              IN COOR cTo)
/**

Routine description:

    Add an en passant pawn capture to the move stack.

Parameters:

    MOVE_STACK *pStack : the move stack
    POSITION *pos : the board position
    COOR cFrom : the from square
    COOR cTo : the to square (and en passant square)

Return value:

    static void

**/
{
    PIECE pMoved = BLACK_PAWN | pos->uToMove;
    PIECE pCaptured = FLIP(pMoved);
    ULONG uPly = pStack->uPly;
    MOVE_STACK_MOVE_VALUE_FLAGS *pMvf;

    ASSERT(pCaptured == (BLACK_PAWN | (FLIP(pos->uToMove))));
    ASSERT(IS_ON_BOARD(cFrom));
    ASSERT(IS_ON_BOARD(cTo));
    ASSERT(RANK4(cFrom) || RANK5(cFrom));
    ASSERT(VALID_EP_SQUARE(cTo));
    ASSERT(IS_PAWN(pos->rgSquare[cFrom].pPiece));
    ASSERT(GET_COLOR(pos->rgSquare[cFrom].pPiece) == pos->uToMove);

    pMvf = &(pStack->mvf[pStack->uEnd[uPly]]);
    pMvf->mv.uMove =
        MAKE_MOVE(cFrom, cTo, pMoved, pCaptured, 0, MOVE_FLAG_SPECIAL);
    pStack->uEnd[uPly]++;

    ASSERT(SanityCheckMove(pos, pMvf->mv));
}


static void FORCEINLINE
_AddCastle(IN MOVE_STACK *pStack,
           IN POSITION *pos,
           IN COOR cFrom,
           IN COOR cTo)
/**

Routine description:

    Add a castle move to the move stack.

Parameters:

    MOVE_STACK *pStack,
    POSITION *pos,
    COOR cFrom,
    COOR cTo

Return value:

    static void FORCEINLINE

**/
{
    PIECE pMoved = BLACK_KING | pos->uToMove;
    ULONG uPly = pStack->uPly;
    MOVE_STACK_MOVE_VALUE_FLAGS *pMvf;

    ASSERT(IS_ON_BOARD(cFrom));
    ASSERT(IS_ON_BOARD(cTo));
    ASSERT((E1 == cFrom) || (E8 == cFrom));
    ASSERT(IS_KING(pos->rgSquare[cFrom].pPiece));
    ASSERT(GET_COLOR(pos->rgSquare[cFrom].pPiece) == pos->uToMove);

    pMvf = &(pStack->mvf[pStack->uEnd[uPly]]);
    pMvf->mv.uMove = MAKE_MOVE(cFrom, cTo, pMoved, 0, 0, MOVE_FLAG_SPECIAL);
    pStack->uEnd[uPly]++;

    ASSERT(SanityCheckMove(pos, pMvf->mv));
}


static void FORCEINLINE
_AddPromote(IN MOVE_STACK *pStack,
            IN POSITION *pos,
            IN COOR cFrom,
            IN COOR cTo)
/**

Routine description:

    Adds a pawn promotion (set of) moves to the move stack.  This can
    be a capture-promotion or non-capture promotion.  This function
    pushes several moves onto the move stack, one for each possible
    promotion target.

Parameters:

    MOVE_STACK *pStack : the move stack
    POSITION *pos : the board position
    COOR cFrom : the move's from square
    COOR cTo : the move's to square

Return value:

    static void

**/
{
    PIECE pMoved = BLACK_PAWN | pos->uToMove;
    PIECE pCaptured = pos->rgSquare[cTo].pPiece;
    ULONG uPly = pStack->uPly;
    MOVE_STACK_MOVE_VALUE_FLAGS *pMvf;
    ULONG u;

#define ARRAY_LENGTH_TARG (4)
    const static PIECE pTarg[ARRAY_LENGTH_TARG] = { BLACK_QUEEN,
                                                    BLACK_ROOK,
                                                    BLACK_BISHOP,
                                                    BLACK_KNIGHT };

    ASSERT(IS_ON_BOARD(cFrom));
    ASSERT(IS_ON_BOARD(cTo));
    ASSERT(RANK1(cTo) || RANK8(cTo));
    ASSERT(RANK7(cFrom) || RANK2(cFrom));
    ASSERT(ARRAY_LENGTH(pTarg) == ARRAY_LENGTH_TARG);
    ASSERT(IS_PAWN(pos->rgSquare[cFrom].pPiece));

    for (u = 0; u < ARRAY_LENGTH_TARG; u++)
    {
        pMvf = &(pStack->mvf[pStack->uEnd[uPly]]);
        pMvf->mv.uMove = MAKE_MOVE(cFrom, cTo, pMoved, pCaptured,
                                   pTarg[u] | pos->uToMove, MOVE_FLAG_SPECIAL);
        pStack->uEnd[uPly]++;
        ASSERT(SanityCheckMove(pos, pMvf->mv));
    }
#undef ARRAY_LENGTH_TARG
}


static void FORCEINLINE
_AddDoubleJump(IN MOVE_STACK *pStack,
               IN POSITION *pos,
               IN COOR cFrom,
               IN COOR cTo)
/**

Routine description:

    This function adds a pawn double jump to the move stack.

Parameters:

    MOVE_STACK *pStack : the move stack
    POSITION *pos : the board position
    COOR cFrom : the move's from square
    COOR cTo : the move's to square

Return value:

    static void

**/
{
    PIECE pMoved = BLACK_PAWN | pos->uToMove;
    ULONG uPly = pStack->uPly;
    MOVE_STACK_MOVE_VALUE_FLAGS *pMvf;

    ASSERT(IS_ON_BOARD(cFrom));
    ASSERT(IS_ON_BOARD(cTo));
    ASSERT(RANK2(cFrom) || RANK7(cFrom));
    ASSERT(RANK4(cTo) || RANK5(cTo));
    ASSERT(IS_PAWN(pos->rgSquare[cFrom].pPiece));

    pMvf = &(pStack->mvf[pStack->uEnd[uPly]]);
    pMvf->mv.uMove = MAKE_MOVE(cFrom, cTo, pMoved, 0, 0, MOVE_FLAG_SPECIAL);
    pStack->uEnd[uPly]++;

    ASSERT(SanityCheckMove(pos, pMvf->mv));
}


const INT g_iNDeltas[] = {
    -33, -31,  -18, -14, +14, +18, +31, +33,  0 };

void
GenerateKnight(IN MOVE_STACK *pStack,
               IN POSITION *pos,
               IN COOR cKnight)
/**

Routine description:

    This function is called by GenerateMoves' JumpTable.  Its job
    is to generate and push pseudo-legal knight moves for the
    knight sitting on square cKnight.

Parameters:

    MOVE_STACK *pStack : the move stack
    POSITION *pos : the board position
    COOR cKnight : the knight's location

Return value:

    void

**/
{
    COOR c;
    ULONG u = 0;
    PIECE p;

    ASSERT(IS_KNIGHT(pos->rgSquare[cKnight].pPiece));
    ASSERT(GET_COLOR(pos->rgSquare[cKnight].pPiece) == pos->uToMove);
    ASSERT(g_iNDeltas[u] != 0);

    do
    {
        c = cKnight + g_iNDeltas[u];
        u++;
        if (IS_ON_BOARD(c))
        {
            p = pos->rgSquare[c].pPiece;

            //
            // This logical OR replaced with bitwise OR; the effect is
            // the same the the bitwise is marginally faster.
            //
            if (IS_EMPTY(p) | (OPPOSITE_COLORS(p, pos->uToMove)))
            {
                _AddNormalMove(pStack, pos, cKnight, c, p);
            }
        }
    }
    while(0 != g_iNDeltas[u]);
}

void
GenerateWhiteKnight(IN MOVE_STACK *pStack,
                    IN POSITION *pos,
                    IN COOR cKnight)
{
    COOR c;
    ULONG u = 0;
    PIECE p;

    ASSERT(IS_KNIGHT(pos->rgSquare[cKnight].pPiece));
    ASSERT(GET_COLOR(pos->rgSquare[cKnight].pPiece) == pos->uToMove);
    ASSERT(g_iNDeltas[u] != 0);

    do
    {
        c = cKnight + g_iNDeltas[u];
        u++;
        if (IS_ON_BOARD(c))
        {
            p = pos->rgSquare[c].pPiece;

            //
            // Note: this test covers empty squares also -- it is just
            // testing that the low order bit (color bit) of p is zero
            // which is true for black pieces and empty squares.  This
            // is done for speed over readability.
            //
            if (GET_COLOR(p) == BLACK)
            {
                ASSERT(IS_EMPTY(p) || (GET_COLOR(p) == BLACK));
                _AddNormalMove(pStack, pos, cKnight, c, p);
            }
        }
    }
    while(0 != g_iNDeltas[u]);
}

//
// board_representation/MOVEGEN_MIGRATION.md section 3 step 1: bitboard
// knight generator, the pilot function for the whole migration --
// lowest risk, most precedented (reuses g_KnightAttacksBB, already
// built and verified for GetAttacks, no new tables needed). Unlike the
// mailbox pair above, one function serves both JumpTable slots
// (BLACK_KNIGHT and WHITE_KNIGHT) -- GenerateWhiteKnight's
// GET_COLOR(p)==BLACK bit trick was purely a mailbox micro-
// optimization exploiting how BLACK happens to be encoded; a bitboard
// lookup needs no such color-specific shortcut, it just ANDs off
// whichever side's occupancy pos->uToMove identifies.
//
// Full-board occupancy, both sides. Callers should prefer reading
// pos->bbOccupied directly (incrementally maintained, see chess.h and
// board_representation/EVAL.md section 0) -- this from-scratch
// rebuild now exists mainly as the ground truth used to verify that
// field stays in sync (VerifyPositionConsistency, board.c; the
// ASSERT(pStack->bbOccupied == _BuildFullOccupiedBB(pos)) calls
// below) and for testgenerate.c's benchmark harness. Non-static so
// both of those can call it directly.
BITBOARD
_BuildFullOccupiedBB(IN POSITION *pos)
/**

Routine description:

    Full-board occupancy bitboard (both colors, every piece including
    pawns and kings).

Parameters:

    POSITION *pos

Return value:

    BITBOARD

**/
{
    return (pos->bbPieces[WHITE][KNIGHT] | pos->bbPieces[WHITE][BISHOP] |
            pos->bbPieces[WHITE][ROOK]   | pos->bbPieces[WHITE][QUEEN]  |
            pos->bbPieces[BLACK][KNIGHT] | pos->bbPieces[BLACK][BISHOP] |
            pos->bbPieces[BLACK][ROOK]   | pos->bbPieces[BLACK][QUEEN]  |
            pos->bbPawns[WHITE]          | pos->bbPawns[BLACK]          |
            COOR_TO_BB(pos->cNonPawns[WHITE][0]) |
            COOR_TO_BB(pos->cNonPawns[BLACK][0]));
}

// board_representation/MOVEGEN_MIGRATION.md section 6a Phase 2: raw
// magic-table lookups, factored out of _GenerateRookBB/_GenerateBishopBB
// so _ComputeCheckTargetMaskBB (below) and the Part B SaveMe*BB
// functions can reuse them without duplicating the index arithmetic a
// third/fourth time. Non-static (unlike their original file-local
// status) so movesup.c's section 6b ExposesCheckBB work can call them
// too -- same convention as _BuildFriendlySideBB/_WhoAttacksSquareBB.
BITBOARD FORCEINLINE
_RookAttacksBB(IN COOR c, IN BITBOARD bbOccupied)
{
    ULONG uMagicIndex = (ULONG)
        (((bbOccupied & g_RookOccupancyMask[c]) *
          g_RookMagic[c]) >> g_RookMagicShift[c]);
    return g_RookAttackTable[c][uMagicIndex];
}

BITBOARD FORCEINLINE
_BishopAttacksBB(IN COOR c, IN BITBOARD bbOccupied)
{
    ULONG uMagicIndex = (ULONG)
        (((bbOccupied & g_BishopOccupancyMask[c]) *
          g_BishopMagic[c]) >> g_BishopMagicShift[c]);
    return g_BishopAttackTable[c][uMagicIndex];
}

// board_representation/MOVEGEN_MIGRATION.md section 6a Phase 2:
// bbTargetMask = every square a non-king move could land on to resolve
// a lone check -- the checker's own square (a capture always resolves
// check) OR, if the checker is a slider, every square strictly between
// it and the king (a block also resolves check). The "squares between
// two aligned pieces" trick costs nothing new: each square's magic
// attack bitboard already reaches exactly to its nearest blocker in
// every direction, so ANDing both sides' attack sets together gives
// precisely the empty segment between them, excluding both endpoints
// (neither piece's own attack set includes its own square). A
// diagonally-adjacent pawn checker naturally falls out of the same
// bishop-table branch with zero extra bits, since there is nothing
// between two adjacent squares -- no separate pawn case needed. A
// non-aligned (knight) checker is the only case requiring a branch:
// DIRECTION_BETWEEN_SQUARES returns 0 for a knight offset, and there
// is no way to block a knight's check regardless.
static BITBOARD
_ComputeCheckTargetMaskBB(IN COOR cKing, IN COOR cAttacker,
                           IN BITBOARD bbOccupied)
{
    int iDelta = DIRECTION_BETWEEN_SQUARES(cAttacker, cKing);
    BITBOARD bbBetween = 0;

    if (0 != iDelta)
    {
        if ((16 == iDelta) || (-16 == iDelta) ||
            (1 == iDelta) || (-1 == iDelta))
        {
            bbBetween = _RookAttacksBB(cKing, bbOccupied) &
                        _RookAttacksBB(cAttacker, bbOccupied);
        }
        else
        {
            bbBetween = _BishopAttacksBB(cKing, bbOccupied) &
                        _BishopAttacksBB(cAttacker, bbOccupied);
        }
    }
    return COOR_TO_BB(cAttacker) | bbBetween;
}

// Non-static so testgenerate.c's harness can call it directly to set
// up MOVE_STACK.bbFriendlyOccupied when calling a _Generate*BB
// function outside of _GenerateAllMoves.
BITBOARD
_BuildFriendlySideBB(IN POSITION *pos, IN ULONG uSide)
/**

Routine description:

    Full occupancy bitboard for one side only (all piece types
    including pawns and king) -- pos->bbOccupied ORs both sides
    together for a different purpose (SEE's/generation's "is this
    square occupied at all" query); move generation also needs just
    one side's squares here, to AND off as illegal (self-occupied)
    destinations.

Parameters:

    POSITION *pos
    ULONG uSide

Return value:

    BITBOARD

**/
{
    // 2026-09-06: was a 6-term OR of bbPieces+bbPawns+king every call --
    // pos->bbOccupiedSide[uSide] is now incrementally maintained (move.c,
    // same treatment as pos->bbOccupied) so this is just a field read.
    return pos->bbOccupiedSide[uSide];
}

// Non-static (unlike a purely-internal helper would be) so
// testgenerate.c's speed/correctness harness can call it directly,
// same convention _GetAttacksBB (see.c) already uses.
void
_GenerateKnightBB(IN MOVE_STACK *pStack,
                   IN POSITION *pos,
                   IN COOR cKnight)
/**

Routine description:

    Bitboard equivalent of GenerateKnight/GenerateWhiteKnight -- called
    by GenerateMoves' JumpTable in place of both when
    GENERATE_KNIGHT_BITBOARD is defined. Produces the exact same
    pseudo-legal move set (same over-generation behavior, no
    legal-awareness added) -- see MOVEGEN_MIGRATION.md section 1's
    explicit non-goal.

    Relies on pStack->bbFriendlyOccupied already being set by the
    caller (_GenerateAllMoves computes it once per node, before
    dispatching to any piece type, precisely so every bitboard-backed
    generator for that node shares one build instead of each paying
    for its own -- see MOVE_STACK's field comment in chess.h). A
    direct caller outside of _GenerateAllMoves (e.g. testgenerate.c's
    harness) must set it first; the DEBUG-build ASSERT below catches
    a stale/unset value, but only in a DEBUG build.

Parameters:

    MOVE_STACK *pStack : the move stack (bbFriendlyOccupied must
        already be set for pos->uToMove)
    POSITION *pos : the board position
    COOR cKnight : the knight's location

Return value:

    static void

**/
{
    BITBOARD bbDest = g_KnightAttacksBB[cKnight] & ~pStack->bbFriendlyOccupied;
    ULONG uBitIndex;
    COOR c;
    PIECE p;

    ASSERT(IS_KNIGHT(pos->rgSquare[cKnight].pPiece));
    ASSERT(GET_COLOR(pos->rgSquare[cKnight].pPiece) == pos->uToMove);
    ASSERT(pStack->bbFriendlyOccupied ==
           _BuildFriendlySideBB(pos, pos->uToMove));

    while (bbDest)
    {
        uBitIndex = FastFirstBit(bbDest) - 1;
        bbDest &= (bbDest - 1);
        c = BIT_NUMBER_TO_COOR(uBitIndex);
        p = pos->rgSquare[c].pPiece;
        _AddNormalMove(pStack, pos, cKnight, c, p);
    }
}

//
// These logical AND/ORs replaced with bitwise AND/OR; the effect is
// the same the the bitwise is marginally faster.
//
#define BLOCKS_THE_CHECK(sq) \
    ((iAttackDelta != 0) & \
     (iAttackDelta == DIRECTION_BETWEEN_SQUARES(cAttacker, (sq))) & \
     (((cAttacker > cKing) & ((sq) > cKing)) | \
      ((cAttacker < cKing) & ((sq) < cKing))))

void
SaveMeKnight(IN MOVE_STACK *pStack,
             IN POSITION *pos,
             IN COOR cKnight,
             IN COOR cKing,
             IN COOR cAttacker)
/**

Routine description:

    This routine is called by GenerateEscapes' JumpTable.  Its job is
    to generate moves by the knight on square cKnight that alleviate
    check to the king on square cKing.  The (lone) piece attacking the
    king is on square cAttacker.

Parameters:

    MOVE_STACK *pStack : the move stack
    POSITION *pos : the board position
    COOR cKnight : the location of the knight
    COOR cKing : the location of the friendly king
    COOR cAttacker : the location of the checking piece

Return value:

    void

**/
{
    COOR c, cExposed;
    int iAttackDelta = DIRECTION_BETWEEN_SQUARES(cAttacker, cKing);
    ULONG u = 0;
    PIECE p;

    ASSERT(InCheck(pos, pos->uToMove));
    ASSERT(IS_KNIGHT(pos->rgSquare[cKnight].pPiece));
    ASSERT(GET_COLOR(pos->rgSquare[cKnight].pPiece) == pos->uToMove);
    ASSERT(GET_COLOR(pos->rgSquare[cKnight].pPiece) ==
           GET_COLOR(pos->rgSquare[cKing].pPiece));
    ASSERT(OPPOSITE_COLORS(pos->rgSquare[cAttacker].pPiece,
                           pos->rgSquare[cKing].pPiece));
    ASSERT(g_iNDeltas[u] != 0);

    do
    {
        c = cKnight + g_iNDeltas[u];
        u++;
        if (IS_ON_BOARD(c))
        {
            if ((c == cAttacker) || BLOCKS_THE_CHECK(c))
            {
                cExposed = ExposesCheck(pos, cKnight, cKing);
                if (!IS_ON_BOARD(cExposed) || (cExposed == c))
                {
                    p = pos->rgSquare[c].pPiece;
                    ASSERT(!p ||
                           OPPOSITE_COLORS(p, pos->rgSquare[cKnight].pPiece));
                    ASSERT(!p || (c == cAttacker));
                    _AddNormalMove(pStack, pos, cKnight, c, p);
                }
            }
        }
    }
    while(0 != g_iNDeltas[u]);
}

//
// board_representation/MOVEGEN_MIGRATION.md section 6a Phase 2:
// bitboard equivalent of SaveMeKnight -- one AND against a
// precomputed bbTargetMask replaces the per-square (c == cAttacker) ||
// BLOCKS_THE_CHECK(c) test entirely. ExposesCheck (pin detection)
// stays exactly as-is, unchanged, called per surviving candidate --
// not in scope to alter, see section 6a's "what does not change."
//
void
_SaveMeKnightBB(IN MOVE_STACK *pStack,
                IN POSITION *pos,
                IN COOR cKnight,
                IN COOR cKing,
                IN BITBOARD bbTargetMask)
/**

Routine description:

    Bitboard equivalent of SaveMeKnight -- called in place of it (via
    a direct, statically-known call, not JumpTable) when
    GENERATE_ESCAPES_BLOCK_BITBOARD is defined.

Parameters:

    MOVE_STACK *pStack : the move stack (bbFriendlyOccupied must
        already be set for pos->uToMove)
    POSITION *pos : the board position
    COOR cKnight : the knight's location
    COOR cKing : the friendly king's location
    BITBOARD bbTargetMask : squares that resolve the lone check --
        see _ComputeCheckTargetMaskBB

Return value:

    void

**/
{
    BITBOARD bbDest = g_KnightAttacksBB[cKnight] &
                       ~pStack->bbFriendlyOccupied & bbTargetMask;
    ULONG uBitIndex;
    COOR c, cExposed;
    PIECE p;

    ASSERT(InCheck(pos, pos->uToMove));
    ASSERT(IS_KNIGHT(pos->rgSquare[cKnight].pPiece));
    ASSERT(GET_COLOR(pos->rgSquare[cKnight].pPiece) == pos->uToMove);

    while (bbDest)
    {
        uBitIndex = FastFirstBit(bbDest) - 1;
        bbDest &= (bbDest - 1);
        c = BIT_NUMBER_TO_COOR(uBitIndex);
        cExposed = ExposesCheck(pos, cKnight, cKing);
        if (!IS_ON_BOARD(cExposed) || (cExposed == c))
        {
            p = pos->rgSquare[c].pPiece;
            _AddNormalMove(pStack, pos, cKnight, c, p);
        }
    }
}


const INT g_iBDeltas[] = {
    -17, -15, +15, +17, 0 };

void
GenerateBishop(IN MOVE_STACK *pStack,
               IN POSITION *pos,
               IN COOR cBishop)
/**

Routine description:

    This routine is called by GenerateMoves' JumpTable to generate
    pseudo-legal bishop moves by the piece at cBishop.

Parameters:

    MOVE_STACK *pStack : the move stack
    POSITION *pos : the board position
    COOR cBishop : the bishop location

Return value:

    void

**/
{
    COOR c;
    PIECE p;

    ASSERT(IS_BISHOP(pos->rgSquare[cBishop].pPiece));
    ASSERT(GET_COLOR(pos->rgSquare[cBishop].pPiece) == pos->uToMove);

    //
    // Note: manually unrolled loop
    //
    c = cBishop - 17;
    while(IS_ON_BOARD(c))
    {
        p = pos->rgSquare[c].pPiece;
        if (IS_EMPTY(p))
        {
            _AddNormalMove(pStack, pos, cBishop, c, 0);
        }
        else
        {
            if (OPPOSITE_COLORS(p, pos->uToMove))
            {
                _AddNormalMove(pStack, pos, cBishop, c, p);
            }
            break;
        }
        c += -17;
    }

    c = cBishop - 15;
    while(IS_ON_BOARD(c))
    {
        p = pos->rgSquare[c].pPiece;
        if (IS_EMPTY(p))
        {
            _AddNormalMove(pStack, pos, cBishop, c, 0);
        }
        else
        {
            if (OPPOSITE_COLORS(p, pos->uToMove))
            {
                _AddNormalMove(pStack, pos, cBishop, c, p);
            }
            break;
        }
        c += -15;
    }

    c = cBishop + 15;
    while(IS_ON_BOARD(c))
    {
        p = pos->rgSquare[c].pPiece;
        if (IS_EMPTY(p))
        {
            _AddNormalMove(pStack, pos, cBishop, c, 0);
        }
        else
        {
            if (OPPOSITE_COLORS(p, pos->uToMove))
            {
                _AddNormalMove(pStack, pos, cBishop, c, p);
            }
            break;
        }
        c += 15;
    }

    c = cBishop + 17;
    while(IS_ON_BOARD(c))
    {
        p = pos->rgSquare[c].pPiece;
        if (IS_EMPTY(p))
        {
            _AddNormalMove(pStack, pos, cBishop, c, 0);
        }
        else
        {
            if (OPPOSITE_COLORS(p, pos->uToMove))
            {
                _AddNormalMove(pStack, pos, cBishop, c, p);
            }
            break;
        }
        c += 17;
    }
}

//
// board_representation/MOVEGEN_MIGRATION.md section 3 step 3:
// magic-bitboard bishop generator -- mechanically identical to
// _GenerateRookBB, swapping in the bishop's magic tables. Measured
// speed result for rook was parity (not a win) against mailbox at
// these small destination counts -- see that finding written up in
// MOVEGEN_MIGRATION.md's section 3 entry; expect the same here rather
// than a different outcome, since the underlying reason (a mailbox ray
// walk's cost is already ~O(destination count), so magic's O(1)
// lookup pipeline doesn't out-race it at these distances) applies
// identically to diagonals.
//
void
_GenerateBishopBB(IN MOVE_STACK *pStack,
                   IN POSITION *pos,
                   IN COOR cBishop)
/**

Routine description:

    Bitboard equivalent of GenerateBishop -- called by GenerateMoves'
    JumpTable in place of it when GENERATE_BISHOP_BITBOARD is defined.
    Produces the exact same pseudo-legal move set (same over-generation
    behavior, no legal-awareness added) -- see MOVEGEN_MIGRATION.md
    section 1's explicit non-goal.

    Relies on pStack->bbFriendlyOccupied and pStack->bbOccupied already
    being set by the caller, same as _GenerateRookBB -- see that
    function's header comment and MOVE_STACK's field comments in
    chess.h.

Parameters:

    MOVE_STACK *pStack : the move stack (bbFriendlyOccupied and
        bbOccupied must already be set)
    POSITION *pos : the board position
    COOR cBishop : the bishop's location

Return value:

    void

**/
{
    ULONG uMagicIndex;
    BITBOARD bbDest;
    ULONG uBitIndex;
    COOR c;
    PIECE p;

    ASSERT(IS_BISHOP(pos->rgSquare[cBishop].pPiece));
    ASSERT(GET_COLOR(pos->rgSquare[cBishop].pPiece) == pos->uToMove);
    ASSERT(pStack->bbFriendlyOccupied ==
           _BuildFriendlySideBB(pos, pos->uToMove));
    ASSERT(pStack->bbOccupied == _BuildFullOccupiedBB(pos));

    uMagicIndex = (ULONG)
        (((pStack->bbOccupied & g_BishopOccupancyMask[cBishop]) *
          g_BishopMagic[cBishop]) >> g_BishopMagicShift[cBishop]);
    bbDest = g_BishopAttackTable[cBishop][uMagicIndex] &
             ~pStack->bbFriendlyOccupied;

    while (bbDest)
    {
        uBitIndex = FastFirstBit(bbDest) - 1;
        bbDest &= (bbDest - 1);
        c = BIT_NUMBER_TO_COOR(uBitIndex);
        p = pos->rgSquare[c].pPiece;
        _AddNormalMove(pStack, pos, cBishop, c, p);
    }
}


void
SaveMeBishop(IN MOVE_STACK *pStack,
             IN POSITION *pos,
             IN COOR cBishop,
             IN COOR cKing,
             IN COOR cAttacker)
/**

Routine description:

    This routine is called by GenerateEscapes' JumpTable in order to
    generate moves by the bishop at cBishop to alleviate check on its
    friendly king (at cKing) which is being checked by a piece at
    cAttacker.

Parameters:

    MOVE_STACK *pStack : the move stack
    POSITION *pos : the board position
    COOR cBishop : the bishop's location
    COOR cKing : the friendly king's location
    COOR cAttacker : the checking piece's location

Return value:

    void

**/
{
    int iAttackDelta = DIRECTION_BETWEEN_SQUARES(cAttacker, cKing);
    COOR c;
    COOR cExposed;
    ULONG u = 0;
    PIECE p;

    ASSERT(InCheck(pos, pos->uToMove));
    ASSERT(IS_BISHOP(pos->rgSquare[cBishop].pPiece));
    ASSERT(GET_COLOR(pos->rgSquare[cBishop].pPiece) == pos->uToMove);
    ASSERT(GET_COLOR(pos->rgSquare[cBishop].pPiece) ==
           GET_COLOR(pos->rgSquare[cKing].pPiece));
    ASSERT(OPPOSITE_COLORS(pos->rgSquare[cAttacker].pPiece,
                           pos->rgSquare[cKing].pPiece));
    ASSERT(g_iBDeltas[u] != 0);

    do
    {
        c = cBishop + g_iBDeltas[u];
        while(IS_ON_BOARD(c))
        {
            p = pos->rgSquare[c].pPiece;
            if ((c == cAttacker) || BLOCKS_THE_CHECK(c))
            {
                ASSERT(!p ||
                       OPPOSITE_COLORS(p, pos->rgSquare[cBishop].pPiece));
                ASSERT(!p || (c == cAttacker));
                cExposed = ExposesCheck(pos, cBishop, cKing);
                if (!IS_ON_BOARD(cExposed) || (cExposed == c))
                {
                    _AddNormalMove(pStack, pos, cBishop, c, p);
                    break;
                }
            }
            else if (!IS_EMPTY(p))
            {
                break;
            }
            c += g_iBDeltas[u];
        }
        u++;
    }
    while(0 != g_iBDeltas[u]);
}

//
// board_representation/MOVEGEN_MIGRATION.md section 6a Phase 2:
// bitboard equivalent of SaveMeBishop -- same pattern as
// _SaveMeKnightBB, using the magic lookup instead of a ray walk.
//
void
_SaveMeBishopBB(IN MOVE_STACK *pStack,
                IN POSITION *pos,
                IN COOR cBishop,
                IN COOR cKing,
                IN BITBOARD bbTargetMask)
/**

Routine description:

    Bitboard equivalent of SaveMeBishop -- called in place of it (via
    a direct, statically-known call, not JumpTable) when
    GENERATE_ESCAPES_BLOCK_BITBOARD is defined.

Parameters:

    MOVE_STACK *pStack : the move stack (bbFriendlyOccupied and
        bbOccupied must already be set)
    POSITION *pos : the board position
    COOR cBishop : the bishop's location
    COOR cKing : the friendly king's location
    BITBOARD bbTargetMask : squares that resolve the lone check --
        see _ComputeCheckTargetMaskBB

Return value:

    void

**/
{
    BITBOARD bbDest = _BishopAttacksBB(cBishop, pStack->bbOccupied) &
                       ~pStack->bbFriendlyOccupied & bbTargetMask;
    ULONG uBitIndex;
    COOR c, cExposed;
    PIECE p;

    ASSERT(InCheck(pos, pos->uToMove));
    ASSERT(IS_BISHOP(pos->rgSquare[cBishop].pPiece));
    ASSERT(GET_COLOR(pos->rgSquare[cBishop].pPiece) == pos->uToMove);

    while (bbDest)
    {
        uBitIndex = FastFirstBit(bbDest) - 1;
        bbDest &= (bbDest - 1);
        c = BIT_NUMBER_TO_COOR(uBitIndex);
        cExposed = ExposesCheck(pos, cBishop, cKing);
        if (!IS_ON_BOARD(cExposed) || (cExposed == c))
        {
            p = pos->rgSquare[c].pPiece;
            _AddNormalMove(pStack, pos, cBishop, c, p);
        }
    }
}


const INT g_iRDeltas[] = {
    -1, +1, +16, -16, 0 };


void
GenerateRook(IN MOVE_STACK *pStack,
             IN POSITION *pos,
             IN COOR cRook)
/**

Routine description:

    This routine is called by GenerateMoves' JumpTable in order to
    generate pseudo-legal moves for the rook at position cRook.

Parameters:

    MOVE_STACK *pStack : the move stack
    POSITION *pos : the board position
    COOR cRook : the rook's location

Return value:

    void

**/
{
    COOR c;
    PIECE p;

    ASSERT(IS_ROOK(pos->rgSquare[cRook].pPiece));
    ASSERT(GET_COLOR(pos->rgSquare[cRook].pPiece) == pos->uToMove);

    //
    // Note: manually unrolled loop
    //
    c = cRook - 1;
    while(IS_ON_BOARD(c))
    {
        p = pos->rgSquare[c].pPiece;
        if (IS_EMPTY(p))
        {
            _AddNormalMove(pStack, pos, cRook, c, 0);
        }
        else
        {
            if (OPPOSITE_COLORS(p, pos->uToMove))
            {
                _AddNormalMove(pStack, pos, cRook, c, p);
            }
            break;
        }
        c += -1;
    }

    c = cRook + 1;
    while(IS_ON_BOARD(c))
    {
        p = pos->rgSquare[c].pPiece;
        if (IS_EMPTY(p))
        {
            _AddNormalMove(pStack, pos, cRook, c, 0);
        }
        else
        {
            if (OPPOSITE_COLORS(p, pos->uToMove))
            {
                _AddNormalMove(pStack, pos, cRook, c, p);
            }
            break;
        }
        c += 1;
    }

    c = cRook + 16;
    while(IS_ON_BOARD(c))
    {
        p = pos->rgSquare[c].pPiece;
        if (IS_EMPTY(p))
        {
            _AddNormalMove(pStack, pos, cRook, c, 0);
        }
        else
        {
            if (OPPOSITE_COLORS(p, pos->uToMove))
            {
                _AddNormalMove(pStack, pos, cRook, c, p);
            }
            break;
        }
        c += 16;
    }

    c = cRook - 16;
    while(IS_ON_BOARD(c))
    {
        p = pos->rgSquare[c].pPiece;
        if (IS_EMPTY(p))
        {
            _AddNormalMove(pStack, pos, cRook, c, 0);
        }
        else
        {
            if (OPPOSITE_COLORS(p, pos->uToMove))
            {
                _AddNormalMove(pStack, pos, cRook, c, p);
            }
            break;
        }
        c += -16;
    }
}

//
// board_representation/MOVEGEN_MIGRATION.md section 3 step 3: magic-
// bitboard rook generator -- the first consumer of the InitMagic()
// infrastructure (data.c) built ahead of time for exactly this. Unlike
// knight/king, this piece type is expected to actually win on speed:
// the magic lookup replaces a 4-direction ray walk (up to 7 squares
// per direction) with one multiply+shift+table lookup, independent of
// how far the rook can see.
//
void
_GenerateRookBB(IN MOVE_STACK *pStack,
                IN POSITION *pos,
                IN COOR cRook)
/**

Routine description:

    Bitboard equivalent of GenerateRook -- called by GenerateMoves'
    JumpTable in place of it when GENERATE_ROOK_BITBOARD is defined.
    Produces the exact same pseudo-legal move set (same over-generation
    behavior, no legal-awareness added) -- see MOVEGEN_MIGRATION.md
    section 1's explicit non-goal.

    Relies on pStack->bbFriendlyOccupied and pStack->bbOccupied already
    being set by the caller (_GenerateAllMoves computes both once per
    node, before dispatching to any piece type) -- see MOVE_STACK's
    field comments in chess.h. A direct caller outside of
    _GenerateAllMoves (e.g. testgenerate.c's harness) must set both
    first.

Parameters:

    MOVE_STACK *pStack : the move stack (bbFriendlyOccupied and
        bbOccupied must already be set)
    POSITION *pos : the board position
    COOR cRook : the rook's location

Return value:

    void

**/
{
    ULONG uMagicIndex;
    BITBOARD bbDest;
    ULONG uBitIndex;
    COOR c;
    PIECE p;

    ASSERT(IS_ROOK(pos->rgSquare[cRook].pPiece));
    ASSERT(GET_COLOR(pos->rgSquare[cRook].pPiece) == pos->uToMove);
    ASSERT(pStack->bbFriendlyOccupied ==
           _BuildFriendlySideBB(pos, pos->uToMove));
    ASSERT(pStack->bbOccupied == _BuildFullOccupiedBB(pos));

    uMagicIndex = (ULONG)
        (((pStack->bbOccupied & g_RookOccupancyMask[cRook]) *
          g_RookMagic[cRook]) >> g_RookMagicShift[cRook]);
    bbDest = g_RookAttackTable[cRook][uMagicIndex] &
             ~pStack->bbFriendlyOccupied;

    while (bbDest)
    {
        uBitIndex = FastFirstBit(bbDest) - 1;
        bbDest &= (bbDest - 1);
        c = BIT_NUMBER_TO_COOR(uBitIndex);
        p = pos->rgSquare[c].pPiece;
        _AddNormalMove(pStack, pos, cRook, c, p);
    }
}

void
SaveMeRook(IN MOVE_STACK *pStack,
           IN POSITION *pos,
           IN COOR cRook,
           IN COOR cKing,
           IN COOR cAttacker)
/**

Routine description:

    This routine is called by GenerateEscapes' JumpTable in order to
    generate moves by the rook at location cRook that alleviate check
    to the king at cKing.  The lone checking piece is at cAttacker.

Parameters:

    MOVE_STACK *pStack : the move stack
    POSITION *pos : the board position
    COOR cRook : the rook's location
    COOR cKing : the king's location
    COOR cAttacker : the checker's location

Return value:

    void

**/
{
    int iAttackDelta = DIRECTION_BETWEEN_SQUARES(cAttacker, cKing);
    COOR c;
    COOR cExposed;
    ULONG u = 0;
    PIECE p;

    ASSERT(InCheck(pos, pos->uToMove));
    ASSERT(IS_ROOK(pos->rgSquare[cRook].pPiece));
    ASSERT(GET_COLOR(pos->rgSquare[cRook].pPiece) == pos->uToMove);
    ASSERT(GET_COLOR(pos->rgSquare[cRook].pPiece) == pos->uToMove);
    ASSERT(GET_COLOR(pos->rgSquare[cRook].pPiece) ==
           GET_COLOR(pos->rgSquare[cKing].pPiece));
    ASSERT(OPPOSITE_COLORS(pos->rgSquare[cAttacker].pPiece,
                           pos->rgSquare[cKing].pPiece));
    ASSERT(g_iRDeltas[u] != 0);

    do
    {
        c = cRook + g_iRDeltas[u];
        while(IS_ON_BOARD(c))
        {
            p = pos->rgSquare[c].pPiece;
            if ((c == cAttacker) || BLOCKS_THE_CHECK(c))
            {
                ASSERT(!p ||
                       OPPOSITE_COLORS(p, pos->rgSquare[cRook].pPiece));
                ASSERT(!p || (c == cAttacker));
                cExposed = ExposesCheck(pos, cRook, cKing);
                if (!IS_ON_BOARD(cExposed) || (cExposed == c))
                {
                    _AddNormalMove(pStack, pos, cRook, c, p);
                    break;
                }
            }
            else if (!IS_EMPTY(p))
            {
                break;
            }
            c += g_iRDeltas[u];
        }
        u++;
    }
    while(0 != g_iRDeltas[u]);
}

//
// board_representation/MOVEGEN_MIGRATION.md section 6a Phase 2:
// bitboard equivalent of SaveMeRook -- same pattern as
// _SaveMeBishopBB, using the rook magic lookup instead of a ray walk.
//
void
_SaveMeRookBB(IN MOVE_STACK *pStack,
              IN POSITION *pos,
              IN COOR cRook,
              IN COOR cKing,
              IN BITBOARD bbTargetMask)
/**

Routine description:

    Bitboard equivalent of SaveMeRook -- called in place of it (via a
    direct, statically-known call, not JumpTable) when
    GENERATE_ESCAPES_BLOCK_BITBOARD is defined.

Parameters:

    MOVE_STACK *pStack : the move stack (bbFriendlyOccupied and
        bbOccupied must already be set)
    POSITION *pos : the board position
    COOR cRook : the rook's location
    COOR cKing : the friendly king's location
    BITBOARD bbTargetMask : squares that resolve the lone check --
        see _ComputeCheckTargetMaskBB

Return value:

    void

**/
{
    BITBOARD bbDest = _RookAttacksBB(cRook, pStack->bbOccupied) &
                       ~pStack->bbFriendlyOccupied & bbTargetMask;
    ULONG uBitIndex;
    COOR c, cExposed;
    PIECE p;

    ASSERT(InCheck(pos, pos->uToMove));
    ASSERT(IS_ROOK(pos->rgSquare[cRook].pPiece));
    ASSERT(GET_COLOR(pos->rgSquare[cRook].pPiece) == pos->uToMove);

    while (bbDest)
    {
        uBitIndex = FastFirstBit(bbDest) - 1;
        bbDest &= (bbDest - 1);
        c = BIT_NUMBER_TO_COOR(uBitIndex);
        cExposed = ExposesCheck(pos, cRook, cKing);
        if (!IS_ON_BOARD(cExposed) || (cExposed == c))
        {
            p = pos->rgSquare[c].pPiece;
            _AddNormalMove(pStack, pos, cRook, c, p);
        }
    }
}


void
GenerateQueen(IN MOVE_STACK *pStack,
              IN POSITION *pos,
              IN COOR cQueen)
/**

Routine description:

    This routine is called by GenerateMoves' JumpTable in order to
    generate pseudo-legal moves for the queen at position cQueen.

Parameters:

    MOVE_STACK *pStack : the move stack
    POSITION *pos : the board position
    COOR cQueen : the queen's location

Return value:

    void

**/
{
    COOR c;
    ULONG u = 0;
    PIECE p;

    ASSERT(IS_QUEEN(pos->rgSquare[cQueen].pPiece));
    ASSERT(GET_COLOR(pos->rgSquare[cQueen].pPiece) == pos->uToMove);
    ASSERT(g_iQKDeltas[u] != 0);

    do
    {
        c = cQueen + g_iQKDeltas[u];
        while(IS_ON_BOARD(c))
        {
            p = pos->rgSquare[c].pPiece;
            if (IS_EMPTY(p))
            {
                _AddNormalMove(pStack, pos, cQueen, c, 0);
            }
            else
            {
                if (OPPOSITE_COLORS(p, pos->uToMove))
                {
                    _AddNormalMove(pStack, pos, cQueen, c, p);
                }
                break;
            }
            c += g_iQKDeltas[u];
        }
        u++;
    }
    while(0 != g_iQKDeltas[u]);
}

//
// board_representation/MOVEGEN_MIGRATION.md section 3 step 4: queen is
// just rook-directions OR bishop-directions combined, once step 3 is
// solved -- no new design or new tables needed. Two magic lookups (one
// rook-table, one bishop-table) ORed together, same
// `_EvalQueenOccupancyBB`-flagged caution as the rest of this plan:
// a combined single 8-ray table was tried elsewhere (the PoC in data.c
// this migration's tables were built alongside) and measured *slower*
// than reusing the two-pass rook/bishop structure -- don't rediscover
// that, this deliberately does not attempt to unify the two lookups
// into one table.
//
void
_GenerateQueenBB(IN MOVE_STACK *pStack,
                 IN POSITION *pos,
                 IN COOR cQueen)
/**

Routine description:

    Bitboard equivalent of GenerateQueen -- called by GenerateMoves'
    JumpTable in place of it when GENERATE_QUEEN_BITBOARD is defined.
    Produces the exact same pseudo-legal move set (same over-generation
    behavior, no legal-awareness added) -- see MOVEGEN_MIGRATION.md
    section 1's explicit non-goal.

    Relies on pStack->bbFriendlyOccupied and pStack->bbOccupied already
    being set by the caller, same as _GenerateRookBB/_GenerateBishopBB
    -- see those functions' header comments and MOVE_STACK's field
    comments in chess.h.

Parameters:

    MOVE_STACK *pStack : the move stack (bbFriendlyOccupied and
        bbOccupied must already be set)
    POSITION *pos : the board position
    COOR cQueen : the queen's location

Return value:

    void

**/
{
    ULONG uRookMagicIndex, uBishopMagicIndex;
    BITBOARD bbDest;
    ULONG uBitIndex;
    COOR c;
    PIECE p;

    ASSERT(IS_QUEEN(pos->rgSquare[cQueen].pPiece));
    ASSERT(GET_COLOR(pos->rgSquare[cQueen].pPiece) == pos->uToMove);
    ASSERT(pStack->bbFriendlyOccupied ==
           _BuildFriendlySideBB(pos, pos->uToMove));
    ASSERT(pStack->bbOccupied == _BuildFullOccupiedBB(pos));

    uRookMagicIndex = (ULONG)
        (((pStack->bbOccupied & g_RookOccupancyMask[cQueen]) *
          g_RookMagic[cQueen]) >> g_RookMagicShift[cQueen]);
    uBishopMagicIndex = (ULONG)
        (((pStack->bbOccupied & g_BishopOccupancyMask[cQueen]) *
          g_BishopMagic[cQueen]) >> g_BishopMagicShift[cQueen]);
    bbDest = (g_RookAttackTable[cQueen][uRookMagicIndex] |
              g_BishopAttackTable[cQueen][uBishopMagicIndex]) &
             ~pStack->bbFriendlyOccupied;

    while (bbDest)
    {
        uBitIndex = FastFirstBit(bbDest) - 1;
        bbDest &= (bbDest - 1);
        c = BIT_NUMBER_TO_COOR(uBitIndex);
        p = pos->rgSquare[c].pPiece;
        _AddNormalMove(pStack, pos, cQueen, c, p);
    }
}


void
SaveMeQueen(IN MOVE_STACK *pStack,
            IN POSITION *pos,
            IN COOR cQueen,
            IN COOR cKing,
            IN COOR cAttacker)
/**

Routine description:

    This routine is called by code in GenerateEscapes in order to
    generate moves by the queen at square cQueen that alleviate check
    on the friendly king at square cKing.  The lone enemy piece that
    is checking the king is sitting on square cAttacker.

Parameters:

    MOVE_STACK *pStack : the move stack
    POSITION *pos : the board position
    COOR cQueen : the queen's location
    COOR cKing : the friendly king's location
    COOR cAttacker : the attacker's location

Return value:

    void

**/
{
    COOR c;
    COOR cExposed;
    int iAttackDelta = DIRECTION_BETWEEN_SQUARES(cAttacker, cKing);
    ULONG u = 0;
    PIECE p;

    ASSERT(InCheck(pos, pos->uToMove));
    ASSERT(IS_QUEEN(pos->rgSquare[cQueen].pPiece));
    ASSERT(GET_COLOR(pos->rgSquare[cQueen].pPiece) == pos->uToMove);
    ASSERT(GET_COLOR(pos->rgSquare[cQueen].pPiece) == pos->uToMove);
    ASSERT(GET_COLOR(pos->rgSquare[cQueen].pPiece) ==
           GET_COLOR(pos->rgSquare[cKing].pPiece));
    ASSERT(OPPOSITE_COLORS(pos->rgSquare[cAttacker].pPiece,
                           pos->rgSquare[cKing].pPiece));
    ASSERT(g_iQKDeltas[u] != 0);

    do
    {
        c = cQueen + g_iQKDeltas[u];
        while(IS_ON_BOARD(c))
        {
            p = pos->rgSquare[c].pPiece;
            if ((c == cAttacker) || BLOCKS_THE_CHECK(c))
            {
                ASSERT(!p ||
                       OPPOSITE_COLORS(p, pos->rgSquare[cQueen].pPiece));
                ASSERT(!p || (c == cAttacker));
                cExposed = ExposesCheck(pos, cQueen, cKing);
                if (!IS_ON_BOARD(cExposed) || (cExposed == c))
                {
                    _AddNormalMove(pStack, pos, cQueen, c, p);
                    break;
                }
            }
            else if (!IS_EMPTY(p))
            {
                break;
            }
            c += g_iQKDeltas[u];
        }
        u++;
    }
    while(0 != g_iQKDeltas[u]);
}

//
// board_representation/MOVEGEN_MIGRATION.md section 6a Phase 2:
// bitboard equivalent of SaveMeQueen -- two magic lookups ORed
// together, same as _GenerateQueenBB, ANDed with bbTargetMask.
//
void
_SaveMeQueenBB(IN MOVE_STACK *pStack,
               IN POSITION *pos,
               IN COOR cQueen,
               IN COOR cKing,
               IN BITBOARD bbTargetMask)
/**

Routine description:

    Bitboard equivalent of SaveMeQueen -- called in place of it (via a
    direct, statically-known call, not JumpTable) when
    GENERATE_ESCAPES_BLOCK_BITBOARD is defined.

Parameters:

    MOVE_STACK *pStack : the move stack (bbFriendlyOccupied and
        bbOccupied must already be set)
    POSITION *pos : the board position
    COOR cQueen : the queen's location
    COOR cKing : the friendly king's location
    BITBOARD bbTargetMask : squares that resolve the lone check --
        see _ComputeCheckTargetMaskBB

Return value:

    void

**/
{
    BITBOARD bbDest = (_RookAttacksBB(cQueen, pStack->bbOccupied) |
                        _BishopAttacksBB(cQueen, pStack->bbOccupied)) &
                       ~pStack->bbFriendlyOccupied & bbTargetMask;
    ULONG uBitIndex;
    COOR c, cExposed;
    PIECE p;

    ASSERT(InCheck(pos, pos->uToMove));
    ASSERT(IS_QUEEN(pos->rgSquare[cQueen].pPiece));
    ASSERT(GET_COLOR(pos->rgSquare[cQueen].pPiece) == pos->uToMove);

    while (bbDest)
    {
        uBitIndex = FastFirstBit(bbDest) - 1;
        bbDest &= (bbDest - 1);
        c = BIT_NUMBER_TO_COOR(uBitIndex);
        cExposed = ExposesCheck(pos, cQueen, cKing);
        if (!IS_ON_BOARD(cExposed) || (cExposed == c))
        {
            p = pos->rgSquare[c].pPiece;
            _AddNormalMove(pStack, pos, cQueen, c, p);
        }
    }
}

void
GenerateBlackKing(IN MOVE_STACK *pStack,
                  IN POSITION *pos,
                  IN COOR cKing)
/**

Routine description:

    This function is called by GenerateMoves in order to generate
    pseudo-legal moves for the black king at square cKing.  Note: this
    function often generates illegal castling moves and relies on the
    MakeMove code to decide about the legality of the castle.

Parameters:

    MOVE_STACK *pStack : the move stack
    POSITION *pos : the board position
    COOR cKing : the king location

Return value:

    void

**/
{
    COOR c;
    ULONG u = 0;
    PIECE p;

    ASSERT(IS_KING(pos->rgSquare[cKing].pPiece));
    ASSERT(GET_COLOR(pos->rgSquare[cKing].pPiece) == pos->uToMove);
    ASSERT(g_iQKDeltas[u] != 0);

    do
    {
        c = cKing + g_iQKDeltas[u];
        u++;
        if (IS_ON_BOARD(c))
        {
            p = pos->rgSquare[c].pPiece;

            //
            // This logical OR replaced with bitwise OR; the effect is
            // the same the the bitwise is marginally faster.
            //
            if (IS_EMPTY(p) | (GET_COLOR(p)))
            {
                _AddNormalMove(pStack, pos, cKing, c, p);
            }
        }
    }
    while(0 != g_iQKDeltas[u]);

    if ((pos->bvCastleInfo & BLACK_CAN_CASTLE) == 0) return;
#ifdef DEBUG
    p = pos->rgSquare[E8].pPiece;
    ASSERT(IS_KING(p));
    ASSERT(cKing == E8);
#endif

    //
    // Note: no castling through check is enforced at the time the
    // move is played.  This is a "pseudo-legal" move when generated.
    //
    if ((pos->bvCastleInfo & CASTLE_BLACK_SHORT) &&
        (IS_EMPTY(pos->rgSquare[G8].pPiece)) &&
        (IS_EMPTY(pos->rgSquare[F8].pPiece)))
    {
        ASSERT(pos->rgSquare[H8].pPiece == BLACK_ROOK);
        _AddCastle(pStack, pos, E8, G8);
    }

    if ((pos->bvCastleInfo & CASTLE_BLACK_LONG) &&
        (IS_EMPTY(pos->rgSquare[C8].pPiece)) &&
        (IS_EMPTY(pos->rgSquare[D8].pPiece)) &&
        (IS_EMPTY(pos->rgSquare[B8].pPiece)))
    {
        ASSERT(pos->rgSquare[A8].pPiece == BLACK_ROOK);
        _AddCastle(pStack, pos, E8, C8);
    }
}

//
// N.B. There is no SaveYourselfBlackKing or SaveYourselfWhiteKing
// because this functionality is built into phase 1 of
// GenerateEscapes.
//

void
GenerateWhiteKing(IN MOVE_STACK *pStack,
                  IN POSITION *pos,
                  IN COOR cKing)
/**

Routine description:

    This function is called by GenerateMoves in order to generate
    pseudo-legal king moves by the white king at square cKing.  Note:
    it often generates illegal castling moves and relies on the code
    in MakeMove to determine the legality of castles.

Parameters:

    MOVE_STACK *pStack : the move stack
    POSITION *pos : the board position
    COOR cKing : the king location

Return value:

    void

**/
{
    COOR c;
    ULONG u = 0;
    PIECE p;

    ASSERT(IS_KING(pos->rgSquare[cKing].pPiece));
    ASSERT(GET_COLOR(pos->rgSquare[cKing].pPiece) == pos->uToMove);
    ASSERT(g_iQKDeltas[u] != 0);

    do
    {
        c = cKing + g_iQKDeltas[u];
        u++;
        if (IS_ON_BOARD(c))
        {
            p = pos->rgSquare[c].pPiece;

            //
            // Note: this test covers empty squares also -- it is just
            // testing that the low order bit (color bit) of p is zero
            // which is true for black pieces and empty squares.  This
            // is done for speed over readability.
            //
            if (GET_COLOR(p) == BLACK)
            {
                ASSERT(IS_EMPTY(p) || (GET_COLOR(p) == BLACK));
                _AddNormalMove(pStack, pos, cKing, c, p);
            }
        }
    }
    while(0 != g_iQKDeltas[u]);

    if ((pos->bvCastleInfo & WHITE_CAN_CASTLE) == 0) return;
#ifdef DEBUG
    p = pos->rgSquare[E1].pPiece;
    ASSERT(IS_KING(p));
    ASSERT(cKing == E1);
#endif

    //
    // Note: no castling through check is enforced at the time the
    // move is played.  This is a "pseudo-legal" move when generated.
    //
    if ((pos->bvCastleInfo & CASTLE_WHITE_SHORT) &&
        (IS_EMPTY(pos->rgSquare[G1].pPiece)) &&
        (IS_EMPTY(pos->rgSquare[F1].pPiece)))
    {
        ASSERT(pos->rgSquare[H1].pPiece == WHITE_ROOK);
        _AddCastle(pStack, pos, E1, G1);
    }

    if ((pos->bvCastleInfo & CASTLE_WHITE_LONG) &&
        (IS_EMPTY(pos->rgSquare[C1].pPiece)) &&
        (IS_EMPTY(pos->rgSquare[B1].pPiece)) &&
        (IS_EMPTY(pos->rgSquare[D1].pPiece)))
    {
        ASSERT(pos->rgSquare[A1].pPiece == WHITE_ROOK);
        _AddCastle(pStack, pos, E1, C1);
    }
}

//
// board_representation/MOVEGEN_MIGRATION.md section 3 step 2: bitboard
// king generator, normal (non-castling) moves only -- castling stays
// mailbox per section 1's explicit non-goal (at most 2 candidate
// moves, checked via simple square-emptiness tests, not
// ray-walk-shaped, nothing for a bitboard to speed up). Serves both
// JumpTable slots the same way _GenerateKnightBB does, for the same
// reason (GenerateWhiteKing's GET_COLOR(p)==BLACK bit trick was a
// mailbox-only micro-optimization); the castling tail below still
// branches on color since CASTLE_BLACK_*/CASTLE_WHITE_* and their
// associated squares genuinely differ per side.
//
void
_GenerateKingBB(IN MOVE_STACK *pStack,
                IN POSITION *pos,
                IN COOR cKing)
/**

Routine description:

    Bitboard equivalent of GenerateBlackKing/GenerateWhiteKing's normal
    (non-castling) move enumeration -- called by GenerateMoves'
    JumpTable in place of both when GENERATE_KING_BITBOARD is defined.
    Produces the exact same pseudo-legal move set as the mailbox pair,
    castling included (via the same mailbox logic those functions use,
    verbatim) -- see MOVEGEN_MIGRATION.md section 1's explicit non-goal
    against changing over-generation behavior.

    Relies on pStack->bbFriendlyOccupied already being set by the
    caller, same as _GenerateKnightBB -- see that function's header
    comment and MOVE_STACK's field comment in chess.h.

Parameters:

    MOVE_STACK *pStack : the move stack (bbFriendlyOccupied must
        already be set for pos->uToMove)
    POSITION *pos : the board position
    COOR cKing : the king's location

Return value:

    void

**/
{
    BITBOARD bbDest = g_KingAttacksBB[cKing] & ~pStack->bbFriendlyOccupied;
    ULONG uBitIndex;
    COOR c;
    PIECE p;

    ASSERT(IS_KING(pos->rgSquare[cKing].pPiece));
    ASSERT(GET_COLOR(pos->rgSquare[cKing].pPiece) == pos->uToMove);
    ASSERT(pStack->bbFriendlyOccupied ==
           _BuildFriendlySideBB(pos, pos->uToMove));

    while (bbDest)
    {
        uBitIndex = FastFirstBit(bbDest) - 1;
        bbDest &= (bbDest - 1);
        c = BIT_NUMBER_TO_COOR(uBitIndex);
        p = pos->rgSquare[c].pPiece;
        _AddNormalMove(pStack, pos, cKing, c, p);
    }

    //
    // Castling: unchanged mailbox logic, copied verbatim from
    // GenerateBlackKing/GenerateWhiteKing -- see those functions'
    // comments. Not in scope for a bitboard rewrite (section 1).
    //
    if (pos->uToMove == BLACK)
    {
        if ((pos->bvCastleInfo & BLACK_CAN_CASTLE) == 0) return;
#ifdef DEBUG
        ASSERT(IS_KING(pos->rgSquare[E8].pPiece));
        ASSERT(cKing == E8);
#endif
        if ((pos->bvCastleInfo & CASTLE_BLACK_SHORT) &&
            (IS_EMPTY(pos->rgSquare[G8].pPiece)) &&
            (IS_EMPTY(pos->rgSquare[F8].pPiece)))
        {
            ASSERT(pos->rgSquare[H8].pPiece == BLACK_ROOK);
            _AddCastle(pStack, pos, E8, G8);
        }
        if ((pos->bvCastleInfo & CASTLE_BLACK_LONG) &&
            (IS_EMPTY(pos->rgSquare[C8].pPiece)) &&
            (IS_EMPTY(pos->rgSquare[D8].pPiece)) &&
            (IS_EMPTY(pos->rgSquare[B8].pPiece)))
        {
            ASSERT(pos->rgSquare[A8].pPiece == BLACK_ROOK);
            _AddCastle(pStack, pos, E8, C8);
        }
    }
    else
    {
        if ((pos->bvCastleInfo & WHITE_CAN_CASTLE) == 0) return;
#ifdef DEBUG
        ASSERT(IS_KING(pos->rgSquare[E1].pPiece));
        ASSERT(cKing == E1);
#endif
        if ((pos->bvCastleInfo & CASTLE_WHITE_SHORT) &&
            (IS_EMPTY(pos->rgSquare[G1].pPiece)) &&
            (IS_EMPTY(pos->rgSquare[F1].pPiece)))
        {
            ASSERT(pos->rgSquare[H1].pPiece == WHITE_ROOK);
            _AddCastle(pStack, pos, E1, G1);
        }
        if ((pos->bvCastleInfo & CASTLE_WHITE_LONG) &&
            (IS_EMPTY(pos->rgSquare[C1].pPiece)) &&
            (IS_EMPTY(pos->rgSquare[B1].pPiece)) &&
            (IS_EMPTY(pos->rgSquare[D1].pPiece)))
        {
            ASSERT(pos->rgSquare[A1].pPiece == WHITE_ROOK);
            _AddCastle(pStack, pos, E1, C1);
        }
    }
}


void
GenerateWhitePawn(IN MOVE_STACK *pStack,
                  IN POSITION *pos,
                  IN COOR cPawn)
/**

Routine description:

    This function is called by GenerateMoves in order to generate
    pseudo-legal pawn moves by the pawn at cPawn.  It handles
    en passant captures, double jumps, promotions, etc...

Parameters:

    MOVE_STACK *pStack : the move stack
    POSITION *pos : the board position
    COOR cPawn : the pawn's location

Return value:

    void

**/
{
    ULONG uRank = RANK(cPawn);
    PIECE p;
    COOR cTo;

    ASSERT(IS_PAWN(pos->rgSquare[cPawn].pPiece));
    ASSERT(GET_COLOR(pos->rgSquare[cPawn].pPiece) == pos->uToMove);
    ASSERT((RANK(cPawn) >= 2) && (RANK(cPawn) <= 7));

    if (uRank != 7)
    {
        cTo = cPawn - 16;
        if (IS_EMPTY(pos->rgSquare[cTo].pPiece))
        {
            _AddNormalMove(pStack, pos, cPawn, cTo, 0);
            if (uRank == 2)
            {
                cTo = cPawn - 32;
                if (IS_EMPTY(pos->rgSquare[cTo].pPiece))
                {
                    _AddDoubleJump(pStack, pos, cPawn, cTo);
                }
            }
        }
        cTo = cPawn - 15;
        if (IS_ON_BOARD(cTo))
        {
            if (cTo == pos->cEpSquare)
            {
                _AddEnPassant(pStack, pos, cPawn, cTo);
            }
            p = pos->rgSquare[cTo].pPiece;

            //
            // This logical AND replaced with bitwise AND; the effect
            // is the same the the bitwise is marginally faster.
            //
            if (!IS_EMPTY(p) & (GET_COLOR(p) == BLACK))
            {
                _AddNormalMove(pStack, pos, cPawn, cTo, p);
            }
        }
        cTo = cPawn - 17;
        if (IS_ON_BOARD(cTo))
        {
            if (cTo == pos->cEpSquare)
            {
                _AddEnPassant(pStack, pos, cPawn, cTo);
            }
            p = pos->rgSquare[cTo].pPiece;

            //
            // This logical AND replaced with bitwise AND; the effect
            // is the same the the bitwise is marginally faster.
            //
            if (!IS_EMPTY(p) & (GET_COLOR(p) == BLACK))
            {
                _AddNormalMove(pStack, pos, cPawn, cTo, p);
            }
        }
    }
    else
    {
        ASSERT(RANK7(cPawn));
        cTo = cPawn - 16;
        if (IS_EMPTY(pos->rgSquare[cTo].pPiece))
        {
            _AddPromote(pStack, pos, cPawn, cTo);
        }
        cTo = cPawn - 15;
        if (IS_ON_BOARD(cTo))
        {
            p = pos->rgSquare[cTo].pPiece;

            //
            // This logical AND replaced with bitwise AND; the effect
            // is the same the the bitwise is marginally faster.
            //
            if (!IS_EMPTY(p) & (GET_COLOR(p) == BLACK))
            {
                _AddPromote(pStack, pos, cPawn, cTo);
            }
        }
        cTo = cPawn - 17;
        if (IS_ON_BOARD(cTo))
        {
            p = pos->rgSquare[cTo].pPiece;

            //
            // This logical AND replaced with bitwise AND; the effect
            // is the same the the bitwise is marginally faster.
            //
            if (!IS_EMPTY(p) & (GET_COLOR(p) == BLACK))
            {
                _AddPromote(pStack, pos, cPawn, cTo);
            }
        }
    }
}


void
SaveMeWhitePawn(IN MOVE_STACK *pStack,
                IN POSITION *pos,
                IN COOR cPawn,
                IN COOR cKing,
                IN COOR cAttacker)
/**

Routine description:

    This function is called by the GenerateEscapes code in order to
    ask for a pawn's help in alleviating check on the king at square
    cKing.  The lone attacker to said king is on square cAttacker.

Parameters:

    MOVE_STACK *pStack : the move stack
    POSITION *pos : the board position
    COOR cPawn : the pawn's location
    COOR cKing : the friendly king's location
    COOR cAttacker : the location of the lone checker to the king

Return value:

    void

**/
{
    ULONG uRank = RANK(cPawn);
    PIECE p;
    COOR cTo;
    COOR cExposed;
    int iAttackDelta = DIRECTION_BETWEEN_SQUARES(cAttacker, cKing);

    ASSERT(InCheck(pos, pos->uToMove));
    ASSERT(IS_PAWN(pos->rgSquare[cPawn].pPiece));
    ASSERT(GET_COLOR(pos->rgSquare[cPawn].pPiece) == WHITE);
    ASSERT(GET_COLOR(pos->rgSquare[cPawn].pPiece) == pos->uToMove);
    ASSERT(GET_COLOR(pos->rgSquare[cPawn].pPiece) == pos->uToMove);
    ASSERT(GET_COLOR(pos->rgSquare[cPawn].pPiece) ==
           GET_COLOR(pos->rgSquare[cKing].pPiece));
    ASSERT(OPPOSITE_COLORS(pos->rgSquare[cAttacker].pPiece,
                           pos->rgSquare[cKing].pPiece));
    ASSERT((RANK(cPawn) >= 2) && (RANK(cPawn) <= 7));

    if (uRank != 7)
    {
        cTo = cPawn - 16;
        if (IS_EMPTY(pos->rgSquare[cTo].pPiece))
        {
            if (BLOCKS_THE_CHECK(cTo) &&
                !IS_ON_BOARD(ExposesCheck(pos, cPawn, cKing)))
            {
                    _AddNormalMove(pStack, pos, cPawn, cTo, 0);
            }

            if (uRank == 2)
            {
                cTo = cPawn - 32;
                if (IS_EMPTY(pos->rgSquare[cTo].pPiece) &&
                    BLOCKS_THE_CHECK(cTo) &&
                    !IS_ON_BOARD(ExposesCheck(pos, cPawn, cKing)))
                {
                    _AddDoubleJump(pStack, pos, cPawn, cTo);
                }
            }
        }

        cTo = cPawn - 15;
        if (cTo == cAttacker)
        {
            cExposed = ExposesCheck(pos, cPawn, cKing);
            if (!IS_ON_BOARD(cExposed) || (cExposed == cAttacker))
            {
                p = pos->rgSquare[cTo].pPiece;
                ASSERT(!IS_EMPTY(p));
                ASSERT(GET_COLOR(p) == BLACK);
                ASSERT(IS_ON_BOARD(cTo));
                _AddNormalMove(pStack, pos, cPawn, cTo, p);
            }
        }

        //
        // N.B. There is no possible way to block check with an
        // en-passant capture because by definition the last move made
        // by the other side was the pawn double jump.  So only handle
        // if the double jumping enemy pawn is the attacker and we can
        // kill it en passant.
        //
        if ((cTo == pos->cEpSquare) && (cAttacker == cTo + 16))
        {
            _AddEnPassant(pStack, pos, cPawn, cTo);
        }

        cTo = cPawn - 17;
        if (cTo == cAttacker)
        {
            cExposed = ExposesCheck(pos, cPawn, cKing);
            if (!IS_ON_BOARD(cExposed) || (cExposed == cAttacker))
            {
                p = pos->rgSquare[cTo].pPiece;
                ASSERT(!IS_EMPTY(p));
                ASSERT(GET_COLOR(p) == BLACK);
                ASSERT(IS_ON_BOARD(cTo));
                _AddNormalMove(pStack, pos, cPawn, cTo, p);
            }
        }
        if ((cTo == pos->cEpSquare) && (cAttacker == cTo + 16))
        {
            _AddEnPassant(pStack, pos, cPawn, cTo);
        }
    }
    else
    {
        ASSERT(RANK7(cPawn));
        cTo = cPawn - 16;
        if (BLOCKS_THE_CHECK(cTo) && IS_EMPTY(pos->rgSquare[cTo].pPiece))
        {
            _AddPromote(pStack, pos, cPawn, cTo);
        }

        cTo = cPawn - 15;
        if (cTo == cAttacker)
        {
            cExposed = ExposesCheck(pos, cPawn, cKing);
            if (!IS_ON_BOARD(cExposed) || (cExposed == cAttacker))
            {
                p = pos->rgSquare[cTo].pPiece;
                ASSERT(!IS_EMPTY(p));
                ASSERT(GET_COLOR(p) == BLACK);
                ASSERT(IS_ON_BOARD(cTo));
                _AddPromote(pStack, pos, cPawn, cTo);
            }
        }

        cTo = cPawn - 17;
        if (cTo == cAttacker)
        {
            cExposed = ExposesCheck(pos, cPawn, cKing);
            if (!IS_ON_BOARD(cExposed) || (cExposed == cAttacker))
            {
                p = pos->rgSquare[cTo].pPiece;
                ASSERT(!IS_EMPTY(p));
                ASSERT(GET_COLOR(p) == BLACK);
                ASSERT(IS_ON_BOARD(cTo));
                _AddPromote(pStack, pos, cPawn, cTo);
            }
        }
    }
}


void
GenerateBlackPawn(IN MOVE_STACK *pStack,
                  IN POSITION *pos,
                  IN COOR cPawn)
/**

Routine description:

    This code is called by GenerateMoves in order to handle move
    generation for the black pawn on square cPawn.  It handles
    en passant captures, double jumps, and promotion.

Parameters:

    MOVE_STACK *pStack : the move stack
    POSITION *pos : the position
    COOR cPawn : the pawn location

Return value:

    void

**/
{
    ULONG uRank = RANK(cPawn);
    PIECE p;
    COOR cTo;

    ASSERT(IS_PAWN(pos->rgSquare[cPawn].pPiece));
    ASSERT(GET_COLOR(pos->rgSquare[cPawn].pPiece) == pos->uToMove);
    ASSERT((RANK(cPawn) >= 2) && (RANK(cPawn) <= 7));

    if (uRank != 2)
    {
        cTo = cPawn + 16;
        if (IS_EMPTY(pos->rgSquare[cTo].pPiece))
        {
            _AddNormalMove(pStack, pos, cPawn, cTo, 0);
            if (uRank == 7)
            {
                cTo = cPawn + 32;
                if (IS_EMPTY(pos->rgSquare[cTo].pPiece))
                {
                    _AddDoubleJump(pStack, pos, cPawn, cTo);
                }
            }
        }
        cTo = cPawn + 15;
        if (IS_ON_BOARD(cTo))
        {
            if (cTo == pos->cEpSquare)
            {
                _AddEnPassant(pStack, pos, cPawn, cTo);
            }
            p = pos->rgSquare[cTo].pPiece;

            //
            // This logical AND replaced with bitwise AND; the effect
            // is the same the the bitwise is marginally faster.
            //
            if (!IS_EMPTY(p) & (GET_COLOR(p)))
            {
                _AddNormalMove(pStack, pos, cPawn, cTo, p);
            }
        }
        cTo = cPawn + 17;
        if (IS_ON_BOARD(cTo))
        {
            if (cTo == pos->cEpSquare)
            {
                _AddEnPassant(pStack, pos, cPawn, cTo);
            }
            p = pos->rgSquare[cTo].pPiece;

            //
            // This logical AND replaced with bitwise AND; the effect
            // is the same the the bitwise is marginally faster.
            //
            if (!IS_EMPTY(p) & (GET_COLOR(p)))
            {
                _AddNormalMove(pStack, pos, cPawn, cTo, p);
            }
        }
    }
    else
    {
        ASSERT(RANK2(cPawn));
        cTo = cPawn + 16;
        if (IS_EMPTY(pos->rgSquare[cTo].pPiece))
        {
            _AddPromote(pStack, pos, cPawn, cTo);
        }
        cTo = cPawn + 15;
        if (IS_ON_BOARD(cTo))
        {
            p = pos->rgSquare[cTo].pPiece;

            //
            // This logical AND replaced with bitwise AND; the effect
            // is the same the the bitwise is marginally faster.
            //
            if (!IS_EMPTY(p) & (GET_COLOR(p)))
            {
                _AddPromote(pStack, pos, cPawn, cTo);
            }
        }
        cTo = cPawn + 17;
        if (IS_ON_BOARD(cTo))
        {
            p = pos->rgSquare[cTo].pPiece;

            //
            // This logical AND replaced with bitwise AND; the effect
            // is the same the the bitwise is marginally faster.
            //
            if (!IS_EMPTY(p) & (GET_COLOR(p)))
            {
                _AddPromote(pStack, pos, cPawn, cTo);
            }
        }
    }
}

//
// board_representation/MOVEGEN_MIGRATION.md section 3 step 5: bulk,
// whole-side pawn generator using the classic shift-and-mask technique
// (confirmed via ~/crafty/movgen.c to be the standard approach, not a
// per-starting-square precomputed mask) rather than a per-square
// lookup like the other five migrated piece types. Structurally
// different for a real reason: pos->bbPawns[uSide]'s bits already
// live in dense rank*8+file space (COOR_TO_BIT_NUMBER), so shifting
// the *entire* bitboard by 8 moves every pawn of that side forward one
// rank simultaneously -- no per-pawn loop needed to find destinations,
// only to emit the resulting moves.
//
// This engine's square numbering has A8 = bit 0 (COOR_TO_BIT_NUMBER of
// 0x88's A8 == 0x00), so rank number increases as the *row* (bits/8)
// *decreases* -- opposite of Crafty's convention (confirmed via
// GenerateWhitePawn's existing 0x88 deltas: -16 forward, -15/-17
// captures). Concretely, in bit-number space:
//   WHITE forward = row decreases  = bb >> 8
//   BLACK forward = row increases  = bb << 8
// and the two diagonals per side are +-7/+-9 (one rank plus one file),
// each requiring the *opposite* file's edge excluded first so a
// same-row wraparound (e.g. an h-file pawn's ">>7" would otherwise
// silently land back on the same row's a-file -- a real, silent-wrong-
// answer trap, not just an out-of-range index) never happens -- see
// each shift's comment below for which file it excludes and why.
//
// Double-push eligibility (rank 2 for White, rank 7 for Black) is
// checked by masking the *already-computed single-push destination*
// bitboard against BBRANK[3]/BBRANK[6] (did this pawn's single push
// land on rank 3/6, which is only possible starting from rank 2/7)
// rather than a per-square starting-rank table -- same technique
// Crafty uses (movgen.c's padvances2, masking padvances1_all against
// its own rank-3/rank-6 constant before the second shift).
//
// En passant is deliberately NOT folded into the bulk capture
// bitboards -- it is exactly one specific square (pos->cEpSquare) at
// most once per node, cheaper and less error-prone to check directly
// (does either of the two diagonal-behind squares hold one of this
// side's pawns) than to derive and mask a whole extra bitboard for an
// event this rare.
//
void
_GenerateAllPawnMovesBB(IN MOVE_STACK *pStack,
                        IN POSITION *pos,
                        IN ULONG uSide)
/**

Routine description:

    Bitboard equivalent of the GenerateWhitePawn/GenerateBlackPawn pair
    -- called in place of the per-pawn mailbox loop when
    GENERATE_PAWN_BITBOARD is defined, for the entire side's pawns in
    one call rather than once per pawn. Produces the exact same
    pseudo-legal move set (same over-generation behavior, no
    legal-awareness added) -- see MOVEGEN_MIGRATION.md section 1's
    explicit non-goal.

Parameters:

    MOVE_STACK *pStack : the move stack
    POSITION *pos : the board position
    ULONG uSide : which side's pawns to generate for (pos->uToMove)

Return value:

    void

**/
{
    BITBOARD bbPawns = pos->bbPawns[uSide];
    BITBOARD bbOccupied = pos->bbOccupied;
    BITBOARD bbEmpty = ~bbOccupied;
    BITBOARD bbEnemy = bbOccupied & ~_BuildFriendlySideBB(pos, uSide);
    BITBOARD bbSinglePush, bbDoublePush, bbCapLeft, bbCapRight, bb;
    ULONG uBitIndex;
    COOR cTo, cFrom, cEp;
    PIECE p;

    if (uSide == WHITE)
    {
        bbSinglePush = (bbPawns >> 8) & bbEmpty;
        bbDoublePush = ((bbSinglePush & BBRANK[3]) >> 8) & bbEmpty;
        // "Left" diagonal (file-1, i.e. 0x88's -17): exclude file A
        // (file-1 invalid/wraps for an a-file pawn).
        bbCapLeft  = ((bbPawns & ~BBFILE[0]) >> 9) & bbEnemy;
        // "Right" diagonal (file+1, i.e. 0x88's -15): exclude file H.
        bbCapRight = ((bbPawns & ~BBFILE[7]) >> 7) & bbEnemy;
    }
    else
    {
        ASSERT(uSide == BLACK);
        bbSinglePush = (bbPawns << 8) & bbEmpty;
        bbDoublePush = ((bbSinglePush & BBRANK[6]) << 8) & bbEmpty;
        // "Left" diagonal (file-1, 0x88's +15): exclude file A.
        bbCapLeft  = ((bbPawns & ~BBFILE[0]) << 7) & bbEnemy;
        // "Right" diagonal (file+1, 0x88's +17): exclude file H.
        bbCapRight = ((bbPawns & ~BBFILE[7]) << 9) & bbEnemy;
    }

    // Single push (+ promotion if landing on the far rank).
    bb = bbSinglePush;
    while (bb)
    {
        uBitIndex = FastFirstBit(bb) - 1;
        bb &= (bb - 1);
        cTo = BIT_NUMBER_TO_COOR(uBitIndex);
        cFrom = (uSide == WHITE) ?
            BIT_NUMBER_TO_COOR(uBitIndex + 8) :
            BIT_NUMBER_TO_COOR(uBitIndex - 8);
        ASSERT(IS_PAWN(pos->rgSquare[cFrom].pPiece));
        if (RANK8(cTo) || RANK1(cTo))
        {
            _AddPromote(pStack, pos, cFrom, cTo);
        }
        else
        {
            _AddNormalMove(pStack, pos, cFrom, cTo, 0);
        }
    }

    // Double push -- never a promotion (rank 4/5 destination only).
    bb = bbDoublePush;
    while (bb)
    {
        uBitIndex = FastFirstBit(bb) - 1;
        bb &= (bb - 1);
        cTo = BIT_NUMBER_TO_COOR(uBitIndex);
        cFrom = (uSide == WHITE) ?
            BIT_NUMBER_TO_COOR(uBitIndex + 16) :
            BIT_NUMBER_TO_COOR(uBitIndex - 16);
        ASSERT(IS_PAWN(pos->rgSquare[cFrom].pPiece));
        _AddDoubleJump(pStack, pos, cFrom, cTo);
    }

    // Capture left (+ promotion if landing on the far rank).
    bb = bbCapLeft;
    while (bb)
    {
        uBitIndex = FastFirstBit(bb) - 1;
        bb &= (bb - 1);
        cTo = BIT_NUMBER_TO_COOR(uBitIndex);
        cFrom = (uSide == WHITE) ?
            BIT_NUMBER_TO_COOR(uBitIndex + 9) :
            BIT_NUMBER_TO_COOR(uBitIndex - 7);
        ASSERT(IS_PAWN(pos->rgSquare[cFrom].pPiece));
        p = pos->rgSquare[cTo].pPiece;
        ASSERT(!IS_EMPTY(p) && OPPOSITE_COLORS(p, pos->rgSquare[cFrom].pPiece));
        if (RANK8(cTo) || RANK1(cTo))
        {
            _AddPromote(pStack, pos, cFrom, cTo);
        }
        else
        {
            _AddNormalMove(pStack, pos, cFrom, cTo, p);
        }
    }

    // Capture right (+ promotion if landing on the far rank).
    bb = bbCapRight;
    while (bb)
    {
        uBitIndex = FastFirstBit(bb) - 1;
        bb &= (bb - 1);
        cTo = BIT_NUMBER_TO_COOR(uBitIndex);
        cFrom = (uSide == WHITE) ?
            BIT_NUMBER_TO_COOR(uBitIndex + 7) :
            BIT_NUMBER_TO_COOR(uBitIndex - 9);
        ASSERT(IS_PAWN(pos->rgSquare[cFrom].pPiece));
        p = pos->rgSquare[cTo].pPiece;
        ASSERT(!IS_EMPTY(p) && OPPOSITE_COLORS(p, pos->rgSquare[cFrom].pPiece));
        if (RANK8(cTo) || RANK1(cTo))
        {
            _AddPromote(pStack, pos, cFrom, cTo);
        }
        else
        {
            _AddNormalMove(pStack, pos, cFrom, cTo, p);
        }
    }

    // En passant -- deliberately not bulk (see block comment above):
    // check the (at most 2) squares diagonally behind pos->cEpSquare
    // for one of this side's pawns, exactly like the mailbox
    // functions' cTo == pos->cEpSquare check, just run once per side
    // per node instead of once per pawn.
    cEp = pos->cEpSquare;
    if (IS_ON_BOARD(cEp))
    {
        int iBehindDelta = (uSide == WHITE) ? 16 : -16;

        cFrom = cEp + iBehindDelta - 1;
        if (IS_ON_BOARD(cFrom) &&
            IS_PAWN(pos->rgSquare[cFrom].pPiece) &&
            (GET_COLOR(pos->rgSquare[cFrom].pPiece) == uSide))
        {
            _AddEnPassant(pStack, pos, cFrom, cEp);
        }
        cFrom = cEp + iBehindDelta + 1;
        if (IS_ON_BOARD(cFrom) &&
            IS_PAWN(pos->rgSquare[cFrom].pPiece) &&
            (GET_COLOR(pos->rgSquare[cFrom].pPiece) == uSide))
        {
            _AddEnPassant(pStack, pos, cFrom, cEp);
        }
    }
}


void
SaveMeBlackPawn(IN MOVE_STACK *pStack,
                IN POSITION *pos,
                IN COOR cPawn,
                IN COOR cKing,
                IN COOR cAttacker)
/**

Routine description:

    This code is called to ask for a black pawn's help in alleviating
    check to its king.  The pawn is on square cPawn.  The friendly
    king is on square cKing.  The lone enemy piece attacking it is on
    square cAttacker.

Parameters:

    MOVE_STACK *pStack : the move stack
    POSITION *pos : the board position
    COOR cPawn : the pawn location
    COOR cKing : the friendly king location
    COOR cAttacker : the lone checker location

Return value:

    void

**/
{
    ULONG uRank = RANK(cPawn);
    PIECE p;
    COOR cTo;
    COOR cExposed;
    int iAttackDelta = DIRECTION_BETWEEN_SQUARES(cAttacker, cKing);

    ASSERT(InCheck(pos, pos->uToMove));
    ASSERT(IS_PAWN(pos->rgSquare[cPawn].pPiece));
    ASSERT(GET_COLOR(pos->rgSquare[cPawn].pPiece) == BLACK);
    ASSERT(GET_COLOR(pos->rgSquare[cPawn].pPiece) == pos->uToMove);
    ASSERT(GET_COLOR(pos->rgSquare[cPawn].pPiece) == pos->uToMove);
    ASSERT(GET_COLOR(pos->rgSquare[cPawn].pPiece) ==
           GET_COLOR(pos->rgSquare[cKing].pPiece));
    ASSERT(OPPOSITE_COLORS(pos->rgSquare[cAttacker].pPiece,
                           pos->rgSquare[cKing].pPiece));
    ASSERT((RANK(cPawn) >= 2) && (RANK(cPawn) <= 7));

    if (uRank != 2)
    {
        cTo = cPawn + 16;
        if (IS_EMPTY(pos->rgSquare[cTo].pPiece))
        {
            if (BLOCKS_THE_CHECK(cTo) &&
                !IS_ON_BOARD(ExposesCheck(pos, cPawn, cKing)))
            {
                _AddNormalMove(pStack, pos, cPawn, cTo, 0);
            }

            if (uRank == 7)
            {
                cTo = cPawn + 32;
                if (IS_EMPTY(pos->rgSquare[cTo].pPiece) &&
                    BLOCKS_THE_CHECK(cTo) &&
                    !IS_ON_BOARD(ExposesCheck(pos, cPawn, cKing)))
                {
                    _AddDoubleJump(pStack, pos, cPawn, cTo);
                }
            }
        }

        cTo = cPawn + 15;
        if (cTo == cAttacker)
        {
            cExposed = ExposesCheck(pos, cPawn, cKing);
            if (!IS_ON_BOARD(cExposed) || (cExposed == cAttacker))
            {
                p = pos->rgSquare[cTo].pPiece;
                ASSERT(!IS_EMPTY(p));
                ASSERT(GET_COLOR(p) == WHITE);
                ASSERT(IS_ON_BOARD(cTo));
                _AddNormalMove(pStack, pos, cPawn, cTo, p);
            }
        }

        //
        // N.B. There is no possible way to block check with an
        // en-passant capture because by definition the last move made
        // by the other side was the pawn double jump.  So only handle
        // if the double jumping enemy pawn is the attacker and we can
        // kill it en passant.
        //
        if ((cTo == pos->cEpSquare) &&
            (cAttacker == cTo - 16))
        {
            _AddEnPassant(pStack, pos, cPawn, cTo);
        }

        cTo = cPawn + 17;
        if (cTo == cAttacker)
        {
            cExposed = ExposesCheck(pos, cPawn, cKing);
            if (!IS_ON_BOARD(cExposed) || (cExposed == cAttacker))
            {
                p = pos->rgSquare[cTo].pPiece;
                ASSERT(!IS_EMPTY(p));
                ASSERT(GET_COLOR(p) == WHITE);
                ASSERT(IS_ON_BOARD(cTo));
                _AddNormalMove(pStack, pos, cPawn, cTo, p);
            }
        }
        if ((cTo == pos->cEpSquare) &&
            (cAttacker == cTo - 16))
        {
            _AddEnPassant(pStack, pos, cPawn, cTo);
        }
    }
    else
    {
        ASSERT(RANK2(cPawn));
        cTo = cPawn + 16;
        if (BLOCKS_THE_CHECK(cTo) &&
            IS_EMPTY(pos->rgSquare[cTo].pPiece))
        {
            _AddPromote(pStack, pos, cPawn, cTo);
        }

        cTo = cPawn + 15;
        if (cTo == cAttacker)
        {
            cExposed = ExposesCheck(pos, cPawn, cKing);
            if (!IS_ON_BOARD(cExposed) || (cExposed == cAttacker))
            {
                p = pos->rgSquare[cTo].pPiece;
                ASSERT(!IS_EMPTY(p));
                ASSERT(GET_COLOR(p) == WHITE);
                ASSERT(IS_ON_BOARD(cTo));
                _AddPromote(pStack, pos, cPawn, cTo);
            }
        }

        cTo = cPawn + 17;
        if (cTo == cAttacker)
        {
            cExposed = ExposesCheck(pos, cPawn, cKing);
            if (!IS_ON_BOARD(cExposed) || (cExposed == cAttacker))
            {
                p = pos->rgSquare[cTo].pPiece;
                ASSERT(!IS_EMPTY(p));
                ASSERT(GET_COLOR(p) == WHITE);
                ASSERT(IS_ON_BOARD(cTo));
                _AddPromote(pStack, pos, cPawn, cTo);
            }
        }
    }
}

//
// board_representation/MOVEGEN_MIGRATION.md section 6a Phase 2: bulk
// whole-side pawn escape generator, same shift-and-mask technique as
// _GenerateAllPawnMovesBB, with each move-category bitboard ANDed
// against bbTargetMask before extraction and an ExposesCheck filter
// added per surviving candidate (the mailbox SaveMeWhitePawn/
// SaveMeBlackPawn pair calls ExposesCheck per move too -- see section
// 6a's "what does not change"). En passant is NOT covered by
// bbTargetMask (a between-squares/capture-square mask has no way to
// express "the checking pawn happens to be capturable en passant") --
// kept as the same narrow direct special case the mailbox functions
// use: only relevant when the double-jumping pawn *is* the checker.
//
void
_SaveMeAllPawnMovesBB(IN MOVE_STACK *pStack,
                      IN POSITION *pos,
                      IN ULONG uSide,
                      IN COOR cKing,
                      IN COOR cAttacker,
                      IN BITBOARD bbTargetMask)
/**

Routine description:

    Bitboard equivalent of the SaveMeWhitePawn/SaveMeBlackPawn pair --
    called in place of the per-pawn mailbox loop when
    GENERATE_ESCAPES_BLOCK_BITBOARD is defined, for the entire side's
    pawns in one call.

Parameters:

    MOVE_STACK *pStack : the move stack
    POSITION *pos : the board position
    ULONG uSide : which side's pawns to generate for (pos->uToMove)
    COOR cKing : the friendly king's location
    COOR cAttacker : the lone checker's location
    BITBOARD bbTargetMask : squares that resolve the lone check --
        see _ComputeCheckTargetMaskBB

Return value:

    void

**/
{
    BITBOARD bbPawns = pos->bbPawns[uSide];
    BITBOARD bbOccupied = pos->bbOccupied;
    BITBOARD bbEmpty = ~bbOccupied;
    BITBOARD bbEnemy = bbOccupied & ~_BuildFriendlySideBB(pos, uSide);
    BITBOARD bbSinglePush, bbDoublePush, bbCapLeft, bbCapRight, bb;
    ULONG uBitIndex;
    COOR cTo, cFrom, cExposed;
    PIECE p;

    if (uSide == WHITE)
    {
        bbSinglePush = (bbPawns >> 8) & bbEmpty;
        bbDoublePush = ((bbSinglePush & BBRANK[3]) >> 8) & bbEmpty;
        bbCapLeft  = ((bbPawns & ~BBFILE[0]) >> 9) & bbEnemy;
        bbCapRight = ((bbPawns & ~BBFILE[7]) >> 7) & bbEnemy;
    }
    else
    {
        ASSERT(uSide == BLACK);
        bbSinglePush = (bbPawns << 8) & bbEmpty;
        bbDoublePush = ((bbSinglePush & BBRANK[6]) << 8) & bbEmpty;
        bbCapLeft  = ((bbPawns & ~BBFILE[0]) << 7) & bbEnemy;
        bbCapRight = ((bbPawns & ~BBFILE[7]) << 9) & bbEnemy;
    }

    // Every move category is ANDed against bbTargetMask -- see this
    // function's header comment for why that's sufficient (a push
    // destination is only ever in bbTargetMask if it's a genuine block
    // square, since bbTargetMask's non-capture bits are, by
    // construction, empty squares; a capture destination is only ever
    // in bbTargetMask if it's the checker's own square, since
    // between-squares are empty and captures already require bbEnemy).
    bbSinglePush &= bbTargetMask;
    bbDoublePush &= bbTargetMask;
    bbCapLeft &= bbTargetMask;
    bbCapRight &= bbTargetMask;

    bb = bbSinglePush;
    while (bb)
    {
        uBitIndex = FastFirstBit(bb) - 1;
        bb &= (bb - 1);
        cTo = BIT_NUMBER_TO_COOR(uBitIndex);
        cFrom = (uSide == WHITE) ?
            BIT_NUMBER_TO_COOR(uBitIndex + 8) :
            BIT_NUMBER_TO_COOR(uBitIndex - 8);
        cExposed = ExposesCheck(pos, cFrom, cKing);
        if (!IS_ON_BOARD(cExposed) || (cExposed == cTo))
        {
            if (RANK8(cTo) || RANK1(cTo))
            {
                _AddPromote(pStack, pos, cFrom, cTo);
            }
            else
            {
                _AddNormalMove(pStack, pos, cFrom, cTo, 0);
            }
        }
    }

    bb = bbDoublePush;
    while (bb)
    {
        uBitIndex = FastFirstBit(bb) - 1;
        bb &= (bb - 1);
        cTo = BIT_NUMBER_TO_COOR(uBitIndex);
        cFrom = (uSide == WHITE) ?
            BIT_NUMBER_TO_COOR(uBitIndex + 16) :
            BIT_NUMBER_TO_COOR(uBitIndex - 16);
        cExposed = ExposesCheck(pos, cFrom, cKing);
        if (!IS_ON_BOARD(cExposed) || (cExposed == cTo))
        {
            _AddDoubleJump(pStack, pos, cFrom, cTo);
        }
    }

    bb = bbCapLeft;
    while (bb)
    {
        uBitIndex = FastFirstBit(bb) - 1;
        bb &= (bb - 1);
        cTo = BIT_NUMBER_TO_COOR(uBitIndex);
        cFrom = (uSide == WHITE) ?
            BIT_NUMBER_TO_COOR(uBitIndex + 9) :
            BIT_NUMBER_TO_COOR(uBitIndex - 7);
        cExposed = ExposesCheck(pos, cFrom, cKing);
        if (!IS_ON_BOARD(cExposed) || (cExposed == cAttacker))
        {
            p = pos->rgSquare[cTo].pPiece;
            if (RANK8(cTo) || RANK1(cTo))
            {
                _AddPromote(pStack, pos, cFrom, cTo);
            }
            else
            {
                _AddNormalMove(pStack, pos, cFrom, cTo, p);
            }
        }
    }

    bb = bbCapRight;
    while (bb)
    {
        uBitIndex = FastFirstBit(bb) - 1;
        bb &= (bb - 1);
        cTo = BIT_NUMBER_TO_COOR(uBitIndex);
        cFrom = (uSide == WHITE) ?
            BIT_NUMBER_TO_COOR(uBitIndex + 7) :
            BIT_NUMBER_TO_COOR(uBitIndex - 9);
        cExposed = ExposesCheck(pos, cFrom, cKing);
        if (!IS_ON_BOARD(cExposed) || (cExposed == cAttacker))
        {
            p = pos->rgSquare[cTo].pPiece;
            if (RANK8(cTo) || RANK1(cTo))
            {
                _AddPromote(pStack, pos, cFrom, cTo);
            }
            else
            {
                _AddNormalMove(pStack, pos, cFrom, cTo, p);
            }
        }
    }

    //
    // En passant: only relevant when the double-jumping enemy pawn
    // *is* the checker -- there is no way to block check with an en
    // passant capture (see SaveMeWhitePawn/SaveMeBlackPawn's identical
    // comment). White defender: cAttacker == cEpSquare + 16. Black
    // defender: cAttacker == cEpSquare - 16.
    //
    if (IS_ON_BOARD(pos->cEpSquare))
    {
        COOR cEp = pos->cEpSquare;
        int iBehindDelta = (uSide == WHITE) ? 16 : -16;
        FLAG fEpResolvesCheck = (uSide == WHITE) ?
            (cAttacker == cEp + 16) : (cAttacker == cEp - 16);

        if (fEpResolvesCheck)
        {
            cFrom = cEp + iBehindDelta - 1;
            if (IS_ON_BOARD(cFrom) &&
                IS_PAWN(pos->rgSquare[cFrom].pPiece) &&
                (GET_COLOR(pos->rgSquare[cFrom].pPiece) == uSide))
            {
                _AddEnPassant(pStack, pos, cFrom, cEp);
            }
            cFrom = cEp + iBehindDelta + 1;
            if (IS_ON_BOARD(cFrom) &&
                IS_PAWN(pos->rgSquare[cFrom].pPiece) &&
                (GET_COLOR(pos->rgSquare[cFrom].pPiece) == uSide))
            {
                _AddEnPassant(pStack, pos, cFrom, cEp);
            }
        }
    }
}


void
InvalidGenerator(IN UNUSED MOVE_STACK *pStack,
                 IN UNUSED POSITION *pos,
                 IN UNUSED COOR cPawn)
/**

Routine description:

    If you'd like to make a call, please hang up and try your call
    again...

Parameters:

    IN UNUSED MOVE_STACK *pStack,
    IN UNUSED POSITION *pos,
    IN UNUSED COOR cPawn

Return value:

    void

**/
{
    UtilPanic(SHOULD_NOT_GET_HERE,
              NULL, NULL, NULL, NULL,
              __FILE__, __LINE__);
}


void
InvalidSaveMe(IN UNUSED MOVE_STACK *pStack,
              IN UNUSED POSITION *pos,
              IN UNUSED COOR cPawn,
              IN UNUSED COOR cKing,
              IN UNUSED COOR cAttacker)
/**

Routine description:

    ...if you need help, please dial the operator.

Parameters:

    IN UNUSED MOVE_STACK *pStack,
    IN UNUSED POSITION *pos,
    IN UNUSED COOR cPawn,
    IN UNUSED COOR cKing,
    IN UNUSED COOR cAttacker

Return value:

    void

**/
{
    UtilPanic(SHOULD_NOT_GET_HERE,
              NULL, NULL, NULL, NULL,
              __FILE__, __LINE__);
}


// Non-static (unlike its historical internal-only status) so
// testgenerate.c's whole-node dispatch benchmark can call it directly
// by name -- see _GenerateAllMovesBB's block comment for why that
// comparison needs both functions callable under their real names in
// a toggle-free build.
void
_GenerateAllMoves(IN MOVE_STACK *pStack,
                  IN POSITION *pos)
/**

Routine description:

    This code generates all pseudo-legal moves in a position.  Please
    see notes at the top of this module for details.

Parameters:

    MOVE_STACK *pStack : the move stack
    POSITION *pos : the board position

Return value:

    static void

**/
{
    COOR c;
    static void (*JumpTable[])(MOVE_STACK *, POSITION *, COOR) =
    {
        InvalidGenerator,                     // EMPTY
        InvalidGenerator,                     // EMPTY | WHITE
        InvalidGenerator,                     // 2  (BLACK_PAWN)
        InvalidGenerator,                     // 3  (WHITE_PAWN)
        // MOVEGEN_MIGRATION.md section 6 toggle -- one #define per
        // piece type, independent of the others. _GenerateKnightBB
        // serves both slots; see its header comment for why the
        // mailbox pair's color split doesn't carry over to bitboards.
#if defined(GENERATE_KNIGHT_BITBOARD)
        _GenerateKnightBB,                    // 4  (BLACK_KNIGHT)
        _GenerateKnightBB,                    // 5  (WHITE_KNIGHT)
#else
        GenerateKnight,                       // 4  (BLACK_KNIGHT)
        GenerateWhiteKnight,                  // 5  (WHITE_KNIGHT)
#endif
#if defined(GENERATE_BISHOP_BITBOARD)
        _GenerateBishopBB,                     // 6  (BLACK_BISHOP)
        _GenerateBishopBB,                     // 7  (WHITE_BISHOP)
#else
        GenerateBishop,                       // 6  (BLACK_BISHOP)
        GenerateBishop,                       // 7  (WHITE_BISHOP)
#endif
#if defined(GENERATE_ROOK_BITBOARD)
        _GenerateRookBB,                       // 8  (BLACK_ROOK)
        _GenerateRookBB,                       // 9  (WHITE_ROOK)
#else
        GenerateRook,                         // 8  (BLACK_ROOK)
        GenerateRook,                         // 9  (WHITE_ROOK)
#endif
#if defined(GENERATE_QUEEN_BITBOARD)
        _GenerateQueenBB,                      // 10 (BLACK_QUEEN)
        _GenerateQueenBB,                      // 11 (WHITE_QUEEN)
#else
        GenerateQueen,                        // 10 (BLACK_QUEEN)
        GenerateQueen,                         // 11 (WHITE_QUEEN)
#endif
#if defined(GENERATE_KING_BITBOARD)
        _GenerateKingBB,                       // 12 (BLACK_KING)
        _GenerateKingBB                        // 13 (WHITE_KING)
#else
        GenerateBlackKing,                    // 12 (BLACK_KING)
        GenerateWhiteKing                     // 13 (WHITE_KING)
#endif
    };
    ULONG u;
#ifdef DEBUG
    PIECE p;
#endif

    // See MOVE_STACK's bbFriendlyOccupied field comment (chess.h) and
    // _GenerateKnightBB's header comment: computed once per node here,
    // before any piece-type dispatch, so every bitboard-backed
    // generator invoked below shares this build instead of each
    // recomputing it -- extend this #if with each new
    // GENERATE_*_BITBOARD toggle as piece types migrate.
#if defined(GENERATE_KNIGHT_BITBOARD) || defined(GENERATE_KING_BITBOARD) || \
    defined(GENERATE_ROOK_BITBOARD) || defined(GENERATE_BISHOP_BITBOARD) || \
    defined(GENERATE_QUEEN_BITBOARD)
    pStack->bbFriendlyOccupied = _BuildFriendlySideBB(pos, pos->uToMove);
#endif
#if defined(GENERATE_ROOK_BITBOARD) || defined(GENERATE_BISHOP_BITBOARD) || \
    defined(GENERATE_QUEEN_BITBOARD)
    pStack->bbOccupied = pos->bbOccupied;
#endif

    for(u = pos->uNonPawnCount[pos->uToMove][0] - 1;
        u != (ULONG)-1;
        u--)
    {
        c = pos->cNonPawns[pos->uToMove][u];
#ifdef DEBUG
        ASSERT(IS_ON_BOARD(c));
        p = pos->rgSquare[c].pPiece;
        ASSERT(!IS_EMPTY(p));
        ASSERT(!IS_PAWN(p));
        ASSERT(GET_COLOR(p) == pos->uToMove);
#endif
        (JumpTable[pos->rgSquare[c].pPiece])(pStack, pos, c);
    }

#if defined(GENERATE_PAWN_BITBOARD)
    _GenerateAllPawnMovesBB(pStack, pos, pos->uToMove);
#else
    if (pos->uToMove == BLACK)
    {
        for(u = 0; u < pos->uPawnCount[BLACK]; u++)
        {
            c = pos->cPawns[BLACK][u];
#ifdef DEBUG
            ASSERT(IS_ON_BOARD(c));
            p = pos->rgSquare[c].pPiece;
            ASSERT(!IS_EMPTY(p));
            ASSERT(IS_PAWN(p));
            ASSERT(GET_COLOR(p) == pos->uToMove);
#endif
            GenerateBlackPawn(pStack, pos, c);
        }
    } else {
        ASSERT(pos->uToMove == WHITE);
        for(u = 0; u < pos->uPawnCount[WHITE]; u++)
        {
            c = pos->cPawns[WHITE][u];
#ifdef DEBUG
            ASSERT(IS_ON_BOARD(c));
            p = pos->rgSquare[c].pPiece;
            ASSERT(!IS_EMPTY(p));
            ASSERT(IS_PAWN(p));
            ASSERT(GET_COLOR(p) == pos->uToMove);
#endif
            GenerateWhitePawn(pStack, pos, c);
        }
    }
#endif
}

//
// board_representation/MOVEGEN_MIGRATION.md section 3: fully
// bitboard-driven alternative to _GenerateAllMoves, forked at this
// level (not folded into _GenerateAllMoves's own JumpTable-based body
// via an #if) specifically to eliminate _GenerateAllMoves's own
// indirect-call dispatch, not just to swap which per-piece-type
// function gets called.
//
// _GenerateAllMoves's cNonPawns[side][] loop is a flat list mixing all
// non-pawn piece types together (pieces are added/removed via
// swap-with-last, so there is no contiguous per-type range to slice)
// -- that mixed ordering is *why* it needs
// JumpTable[pos->rgSquare[c].pPiece], an indirect call whose target
// changes almost every iteration as the loop walks across different
// piece types, close to the worst case for a CPU's indirect-branch
// predictor. Every per-piece-type speed benchmark in this migration
// (testgenerate.c's TestGenerateKnightSpeed and friends) called its
// _Generate*BB function directly, bypassing JumpTable entirely -- so
// none of those numbers ever measured, or could benefit from
// removing, this dispatch cost. This function is the piece that
// actually exercises that question: pos->bbPieces[side][KNIGHT/
// BISHOP/ROOK/QUEEN] already partitions squares by type (unlike
// cNonPawns), so each piece type gets its own bit-extraction loop
// calling its specific _Generate*BB function BY NAME -- a
// statically-known, likely-inlinable direct call, no function pointer
// anywhere in this function.
//
// Only exists (and is only substituted in for _GenerateAllMoves, see
// the #define below) when every non-pawn, non-castling piece type's
// bitboard toggle is defined -- a partial-rollout mix (e.g. knight and
// king migrated, rook/bishop/queen not yet) still needs
// _GenerateAllMoves's cNonPawns/JumpTable path, since that path is the
// only one that knows how to fall back to a still-mailbox piece type
// while also correctly finding already-migrated ones by iterating the
// same mixed list. This function does not attempt to support that
// mixed case -- see MOVEGEN_MIGRATION.md for why an all-or-nothing
// fork was chosen over threading partial-rollout support through this
// function too.
//
void
_GenerateAllMovesBB(IN MOVE_STACK *pStack,
                     IN POSITION *pos)
/**

Routine description:

    Fully bitboard-driven equivalent of _GenerateAllMoves -- see the
    block comment above. Produces the exact same pseudo-legal move set
    (same over-generation behavior, no legal-awareness added, and no
    change to which moves are generated, only how the dispatch to each
    piece type's generator happens) -- see MOVEGEN_MIGRATION.md
    section 1's explicit non-goal.

Parameters:

    MOVE_STACK *pStack : the move stack
    POSITION *pos : the board position

Return value:

    static void

**/
{
    ULONG uSide = pos->uToMove;
    BITBOARD bb;
    ULONG uBitIndex;
    COOR c;
#if !defined(GENERATE_PAWN_BITBOARD)
    ULONG u;
#endif
#if defined(DEBUG) && !defined(GENERATE_PAWN_BITBOARD)
    PIECE p;
#endif

    pStack->bbFriendlyOccupied = _BuildFriendlySideBB(pos, uSide);
    pStack->bbOccupied = pos->bbOccupied;

    bb = pos->bbPieces[uSide][KNIGHT];
    while (bb)
    {
        uBitIndex = FastFirstBit(bb) - 1;
        bb &= (bb - 1);
        c = BIT_NUMBER_TO_COOR(uBitIndex);
        ASSERT(IS_KNIGHT(pos->rgSquare[c].pPiece));
        _GenerateKnightBB(pStack, pos, c);
    }

    bb = pos->bbPieces[uSide][BISHOP];
    while (bb)
    {
        uBitIndex = FastFirstBit(bb) - 1;
        bb &= (bb - 1);
        c = BIT_NUMBER_TO_COOR(uBitIndex);
        ASSERT(IS_BISHOP(pos->rgSquare[c].pPiece));
        _GenerateBishopBB(pStack, pos, c);
    }

    bb = pos->bbPieces[uSide][ROOK];
    while (bb)
    {
        uBitIndex = FastFirstBit(bb) - 1;
        bb &= (bb - 1);
        c = BIT_NUMBER_TO_COOR(uBitIndex);
        ASSERT(IS_ROOK(pos->rgSquare[c].pPiece));
        _GenerateRookBB(pStack, pos, c);
    }

    bb = pos->bbPieces[uSide][QUEEN];
    while (bb)
    {
        uBitIndex = FastFirstBit(bb) - 1;
        bb &= (bb - 1);
        c = BIT_NUMBER_TO_COOR(uBitIndex);
        ASSERT(IS_QUEEN(pos->rgSquare[c].pPiece));
        _GenerateQueenBB(pStack, pos, c);
    }

    // King has no bitboard of its own (a single square, cNonPawns[
    // side][0] -- see POSITION's bbPieces field comment in chess.h for
    // why a bitboard would add nothing here); still a direct,
    // statically-known call, same as the four loops above.
    c = pos->cNonPawns[uSide][0];
    ASSERT(IS_KING(pos->rgSquare[c].pPiece));
    _GenerateKingBB(pStack, pos, c);

    // Pawns: unchanged from _GenerateAllMoves -- not in scope for this
    // migration (section 3 step 5's pawn note) unless
    // GENERATE_PAWN_BITBOARD is also defined, in which case pawns get
    // the same bulk treatment via _GenerateAllPawnMovesBB -- pawns'
    // own toggle is independent of the five above (section 6).
#if defined(GENERATE_PAWN_BITBOARD)
    _GenerateAllPawnMovesBB(pStack, pos, uSide);
#else
    if (uSide == BLACK)
    {
        for(u = 0; u < pos->uPawnCount[BLACK]; u++)
        {
            c = pos->cPawns[BLACK][u];
#ifdef DEBUG
            ASSERT(IS_ON_BOARD(c));
            p = pos->rgSquare[c].pPiece;
            ASSERT(!IS_EMPTY(p));
            ASSERT(IS_PAWN(p));
            ASSERT(GET_COLOR(p) == uSide);
#endif
            GenerateBlackPawn(pStack, pos, c);
        }
    }
    else
    {
        ASSERT(uSide == WHITE);
        for(u = 0; u < pos->uPawnCount[WHITE]; u++)
        {
            c = pos->cPawns[WHITE][u];
#ifdef DEBUG
            ASSERT(IS_ON_BOARD(c));
            p = pos->rgSquare[c].pPiece;
            ASSERT(!IS_EMPTY(p));
            ASSERT(IS_PAWN(p));
            ASSERT(GET_COLOR(p) == uSide);
#endif
            GenerateWhitePawn(pStack, pos, c);
        }
    }
#endif
}

// Whole-dispatch fork -- see _GenerateAllMovesBB's block comment for
// why this is a #define swap of the entire function (matching
// chess.h's GetAttacks precedent) rather than a branch nested inside
// _GenerateAllMoves. Only fires when every non-pawn, non-castling
// piece type is bitboard-backed; any partial mix still uses
// _GenerateAllMoves's cNonPawns/JumpTable path unchanged.
#if defined(GENERATE_KNIGHT_BITBOARD) && defined(GENERATE_KING_BITBOARD) && \
    defined(GENERATE_ROOK_BITBOARD) && defined(GENERATE_BISHOP_BITBOARD) && \
    defined(GENERATE_QUEEN_BITBOARD)
#define _GenerateAllMoves _GenerateAllMovesBB
#endif


static ULONG
_GenerateEscapes(IN MOVE_STACK *pStack,
                 IN POSITION *pos)
/**

Routine description:

    This function is called when side to move is in check in order to
    generate pseudo-legal escapes from check.  All legal escapes from
    check are a subset of the moves returned by this function.  In
    general it's pretty good; the only bug I know about is that it
    will generate a capture that alleviates check where the capturing
    piece is pinned to the king (and thus the capture is illegal).
    The purpose of this function is to allow the search to detect when
    there is one legal reply to check and possibly extend.

Parameters:

    MOVE_STACK *pStack : the move stack
    POSITION *pos : the board

Return value:

    ULONG : the number of pieces checking the king

**/
{
#if !defined(GENERATE_ESCAPES_KING_BITBOARD) || !defined(GENERATE_ESCAPES_BLOCK_BITBOARD)
    ULONG u;
#endif
#if !defined(GENERATE_ESCAPES_KING_BITBOARD)
    ULONG v;
#endif
    COOR c;
#if !defined(GENERATE_ESCAPES_BLOCK_BITBOARD)
    COOR cDefender;
#endif
    PIECE p;
    PIECE pKing;
    COOR cKing = pos->cNonPawns[pos->uToMove][0];
#if !defined(GENERATE_ESCAPES_KING_BITBOARD)
    int iIndex;
#endif
    SEE_LIST rgCheckers;
#if !defined(GENERATE_ESCAPES_KING_BITBOARD)
    int iDelta;
#endif
    ULONG uReturn = 0;
#if !defined(GENERATE_ESCAPES_BLOCK_BITBOARD)
    static void (*JumpTable[])
        (MOVE_STACK *, POSITION *, COOR, COOR, COOR) =
    {
        InvalidSaveMe,                        // EMPTY
        InvalidSaveMe,                        // EMPTY | WHITE
        InvalidSaveMe,                        // 2  (BLACK_PAWN)
        InvalidSaveMe,                        // 3  (WHITE_PAWN)
        SaveMeKnight,                         // 4  (BLACK_KNIGHT)
        SaveMeKnight,                         // 5  (WHITE_KNIGHT)
        SaveMeBishop,                         // 6  (BLACK_BISHOP)
        SaveMeBishop,                         // 7  (WHITE_BISHOP)
        SaveMeRook,                           // 8  (BLACK_ROOK)
        SaveMeRook,                           // 9  (WHITE_ROOK)
        SaveMeQueen,                          // 10 (BLACK_QUEEN)
        SaveMeQueen,                          // 11 (WHITE_QUEEN)
        InvalidSaveMe,                        // kings already considered
        InvalidSaveMe                         // kings already considered
    };
#endif

    ASSERT(IS_KING(pos->rgSquare[cKing].pPiece));
    ASSERT(TRUE == InCheck(pos, pos->uToMove));

    //
    // Use the SEE function GetAttacks to find out how many pieces are
    // giving check and from whence.  Note: we don't sort rgCheckers
    // here; maybe it would be worth trying.  In any event it
    // shouldn't be affected by treating the list as a minheap
    // vs. as a sorted list.
    //
    GetAttacks(&rgCheckers, pos, cKing, FLIP(pos->uToMove));
    ASSERT(rgCheckers.uCount > 0);
    ASSERT(rgCheckers.uCount < 17);
    uReturn = rgCheckers.uCount;

    //
    // Phase I: See if the king can flee or take the checking piece.
    //
    pKing = pos->rgSquare[cKing].pPiece;
    ASSERT(GET_COLOR(pKing) == pos->uToMove);
    ASSERT(IS_KING(pKing));
    ASSERT(OPPOSITE_COLORS(pKing, rgCheckers.data[0].pPiece));
#if defined(GENERATE_ESCAPES_KING_BITBOARD)
    //
    // board_representation/MOVEGEN_MIGRATION.md section 6a Phase 1:
    // g_KingAttacksBB gives every candidate flight square in one
    // lookup (already excludes friendly-occupied squares); the
    // mailbox version's manual per-checker x-ray loop below is
    // replaced entirely by testing _WhoAttacksSquareBB against
    // occupancy with the king itself removed -- a slider whose ray
    // was only blocked by the king's own (pre-move) body now correctly
    // shows up as attacking a candidate square still on that ray,
    // exactly the case the manual loop existed to catch by hand.
    // Pawns are checked separately since _WhoAttacksSquareBB
    // deliberately excludes them (see its header comment).
    {
        ULONG uEnemy = FLIP(pos->uToMove);
        // pKing is only used inside ASSERTs below, which vanish in a
        // non-DEBUG build -- silence the resulting "set but not used"
        // warning explicitly rather than leave it looking accidental.
        (void)pKing;
        BITBOARD bbFriendly = _BuildFriendlySideBB(pos, pos->uToMove);
        BITBOARD bbOccupiedWithoutKing =
            pos->bbOccupied & ~COOR_TO_BB(cKing);
        BITBOARD bbDest = g_KingAttacksBB[cKing] & ~bbFriendly;
        ULONG uBitIndex;

        while (bbDest)
        {
            uBitIndex = FastFirstBit(bbDest) - 1;
            bbDest &= (bbDest - 1);
            c = BIT_NUMBER_TO_COOR(uBitIndex);
            p = pos->rgSquare[c].pPiece;
            ASSERT(IS_EMPTY(p) || OPPOSITE_COLORS(p, pKing));

            if ((0 == _WhoAttacksSquareBB(pos, c, uEnemy,
                                          bbOccupiedWithoutKing)) &&
                (0 == (g_PawnAttackOriginBB[uEnemy][c] &
                       pos->bbPawns[uEnemy])))
            {
                _AddNormalMove(pStack, pos, cKing, c, p);
                uReturn += 0x00010000;
            }
        }
    }
#else
    u = 0;
    while(0 != g_iQKDeltas[u])
    {
        c = cKing + g_iQKDeltas[u];
        u++;
        if (IS_ON_BOARD(c))
        {
            p = pos->rgSquare[c].pPiece;

            //
            // This logical OR replaced with bitwise OR; the effect is
            // the same the the bitwise is marginally faster.
            //
            if (IS_EMPTY(p) | (OPPOSITE_COLORS(p, pKing)))
            {
                if (FALSE == IsAttacked(c, pos, FLIP(pos->uToMove)))
                {
                    //
                    // So we know the destination square is not under
                    // attack right now... but that could be because
                    // the present (pre-move) king position "blocks"
                    // the attack.  Detect this.
                    //
                    for (v = 0;
                         v < rgCheckers.uCount;
                         v++)
                    {
                        ASSERT(OPPOSITE_COLORS(pKing,
                                               rgCheckers.data[v].pPiece));
                        if (!IS_PAWN(rgCheckers.data[v].pPiece) &&
                            !IS_KNIGHT(rgCheckers.data[v].pPiece))
                        {
                            iIndex = (int)rgCheckers.data[v].cLoc -
                                     (int)cKing;
                            iDelta = CHECK_DELTA_WITH_INDEX(iIndex);
                            ASSERT(iDelta);

                            iIndex = (int)rgCheckers.data[v].cLoc -
                                     (int)c;
                            if (iDelta == CHECK_DELTA_WITH_INDEX(iIndex))
                            {
                                goto loop;
                            }
                        }
                    }
                    ASSERT(v == rgCheckers.uCount);

                    //
                    // If we get here the square is not under attack
                    // and it does not contain our own piece.  It's
                    // either empty or contains an enemy piece.
                    //
                    ASSERT(!p || OPPOSITE_COLORS(pKing, p));
                    _AddNormalMove(pStack, pos, cKing, c, p);
                    uReturn += 0x00010000;
                }
            }
        }
 loop:
        ;
    }
#endif

    //
    // N.B. If there is more than one piece checking the king then
    // there is no way to escape check by blocking check with another
    // piece or capturing the offending piece.  The two attackers
    // cannot be on the same rank, file or diagonal because this would
    // depend on the previous position being illegal.
    //
    if (rgCheckers.uCount > 1)
    {
#ifdef DEBUG
        //
        // Note: the above comment is correct but this assertion fails
        // on positions that we made up to run TestSearch.  Disabled
        // for now.
        //
#if 0
        iDelta = DIRECTION_BETWEEN_SQUARES(rgCheckers.data[0].cLoc, cKing);
        for (v = 1; v < rgCheckers.uCount; v++)
        {
            if (DIRECTION_BETWEEN_SQUARES(rgCheckers.data[v].cLoc, cKing) !=
                iDelta)
            {
                break;
            }
        }
        ASSERT(v != rgCheckers.uCount);
#endif
#endif
        return(uReturn);
    }

    //
    // Phase 2: If we get here there is a lone attacker causing check.
    // See if the other pieces can block the check or take the
    // checking piece.
    //
    c = rgCheckers.data[0].cLoc;
#if defined(GENERATE_ESCAPES_BLOCK_BITBOARD)
    //
    // board_representation/MOVEGEN_MIGRATION.md section 6a Phase 2:
    // pos->cNonPawns[side][] mixes every non-pawn piece type together
    // (same reason as _GenerateAllMoves's own loop -- no contiguous
    // per-type range to slice), which is why the mailbox path above
    // needs JumpTable[p], an indirect call whose target changes almost
    // every iteration -- close to the worst case for a CPU's
    // indirect-branch predictor. pos->bbPieces[side][KNIGHT/BISHOP/
    // ROOK/QUEEN] sidesteps this exactly like _GenerateAllMovesBB did:
    // each piece type gets its own bit-extraction loop calling its
    // specific _SaveMe*BB function BY NAME, no function pointer
    // anywhere in this block.
    {
        BITBOARD bbTargetMask;
        BITBOARD bb;
        ULONG uBitIndex;
        COOR cDef;

        // Unlike _GenerateAllMoves, GENERATE_ESCAPES's call site never
        // precomputes these -- set them here, once, for every
        // _SaveMe*BB call below to share (same amortization reasoning
        // as _GenerateAllMoves's own precompute block).
        pStack->bbFriendlyOccupied = _BuildFriendlySideBB(pos, pos->uToMove);
        pStack->bbOccupied = pos->bbOccupied;
        bbTargetMask =
            _ComputeCheckTargetMaskBB(cKing, c, pStack->bbOccupied);

        bb = pos->bbPieces[pos->uToMove][KNIGHT];
        while (bb)
        {
            uBitIndex = FastFirstBit(bb) - 1;
            bb &= (bb - 1);
            cDef = BIT_NUMBER_TO_COOR(uBitIndex);
            _SaveMeKnightBB(pStack, pos, cDef, cKing, bbTargetMask);
        }

        bb = pos->bbPieces[pos->uToMove][BISHOP];
        while (bb)
        {
            uBitIndex = FastFirstBit(bb) - 1;
            bb &= (bb - 1);
            cDef = BIT_NUMBER_TO_COOR(uBitIndex);
            _SaveMeBishopBB(pStack, pos, cDef, cKing, bbTargetMask);
        }

        bb = pos->bbPieces[pos->uToMove][ROOK];
        while (bb)
        {
            uBitIndex = FastFirstBit(bb) - 1;
            bb &= (bb - 1);
            cDef = BIT_NUMBER_TO_COOR(uBitIndex);
            _SaveMeRookBB(pStack, pos, cDef, cKing, bbTargetMask);
        }

        bb = pos->bbPieces[pos->uToMove][QUEEN];
        while (bb)
        {
            uBitIndex = FastFirstBit(bb) - 1;
            bb &= (bb - 1);
            cDef = BIT_NUMBER_TO_COOR(uBitIndex);
            _SaveMeQueenBB(pStack, pos, cDef, cKing, bbTargetMask);
        }

        _SaveMeAllPawnMovesBB(pStack, pos, pos->uToMove, cKing, c,
                              bbTargetMask);
    }
#else
    for (u = 1;                               // don't consider the king
         u < pos->uNonPawnCount[pos->uToMove][0];
         u++)
    {
        cDefender = pos->cNonPawns[pos->uToMove][u];
        ASSERT(IS_ON_BOARD(cDefender));
        p = pos->rgSquare[cDefender].pPiece;
        ASSERT(p && !IS_PAWN(p));
        ASSERT(GET_COLOR(p) == pos->uToMove);

        (JumpTable[p])(pStack, pos, cDefender, cKing, c);
    }

    // Consider all pawns too
    if (pos->uToMove == BLACK)
    {
        for (u = 0; u < pos->uPawnCount[BLACK]; u++)
        {
            cDefender = pos->cPawns[BLACK][u];
#ifdef DEBUG
            ASSERT(IS_ON_BOARD(cDefender));
            p = pos->rgSquare[cDefender].pPiece;
            ASSERT(p && IS_PAWN(p));
            ASSERT(GET_COLOR(p) == pos->uToMove);
#endif
            SaveMeBlackPawn(pStack, pos, cDefender, cKing, c);
        }
    } else {
        ASSERT(pos->uToMove == WHITE);
        for (u = 0; u < pos->uPawnCount[WHITE]; u++)
        {
            cDefender = pos->cPawns[WHITE][u];
#ifdef DEBUG
            ASSERT(IS_ON_BOARD(cDefender));
            p = pos->rgSquare[cDefender].pPiece;
            ASSERT(p && IS_PAWN(p));
            ASSERT(GET_COLOR(p) == pos->uToMove);
#endif
            SaveMeWhitePawn(pStack, pos, cDefender, cKing, c);
        }
    }
#endif
    return(uReturn);
}


typedef struct _PRECOMP_KILLERS
{
    MOVE mv;
    ULONG uBonus;
}
PRECOMP_KILLERS;

static void
_ScoreAllMoves(IN MOVE_STACK *pStack,
               IN SEARCHER_THREAD_CONTEXT *ctx,
               IN MOVE mvHash)
/**

Routine description:

    We have just generated all the moves, now score them.  See comments
    inline below about order.

    Full move-ordering hierarchy for a normal (not-in-check) node, from
    highest-scored to lowest -- "vNext", the dynamic-move-ordering
    overhaul from the 2026-08-29 session (see CLAUDE.md's "Dynamic move
    ordering experiments" section for the methodology behind it):

    1. Hash move -- already handled by Search(), never (re)generated
       here; excluded from this list entirely.
    2. Killer that also threatens/delivers mate -- FIRST_KILLER (or
       whichever killer slot matched) OR'd with SORT_THESE_FIRST.
    3. Winning/even captures & promotions -- SORT_THESE_FIRST, MVV/LVA
       tiebreak; strictly-winning-by-raw-material trades skip SEE, an
       even or ambiguous trade (or any promotion) gets the full
       exchange walk.
    4. Killers, this ply's slot 0/1, then ply-2's slot 0/1 (Crafty-style
       ordering, this ply's own pair before either ply-2-back one) --
       FIRST_KILLER/SECOND_KILLER/THIRD_KILLER/FOURTH_KILLER.
    5. A countermove-table match (exact move, keyed by whatever the
       opponent just played) *whose own accumulated history+
       continuation-history evidence clears COUNTERMOVE_EVIDENCE_
       THRESHOLD* -- COUNTERMOVE_TIER_BONUS, placed below both ply-2
       killer slots (conservative default; never validated as
       deserving to outrank them). An *unevidenced* match gets no
       special treatment at all and falls through to tier 6 -- see
       chess.h's COUNTERMOVE_TIER_BONUS/COUNTERMOVE_EVIDENCE_THRESHOLD
       comments for why the promotion is evidence-gated rather than
       automatic on a bare match.
    6. GOOD_MOVE boundary. Below this, "leftover" (see search.c's
       fIsLeftoverMove) -- eligible for EFP pruning, but every leftover
       is still fully ranked via SelectBestWithHistory (movesup.c); the
       old NumLeftoverMovesToSelect depth-indexed selection budget was
       retired once evidence showed the leftover pool has real,
       findable signal a bailout was discarding. An ordinary leftover
       quiet move's score is:
         PSQT (g_iPSQT[piece][to], 0..1000)
         + g_HistoryCounters[piece][to] (classic butterfly history,
           (depth+1)^2 growth on fail-high, decays on a miss or global
           aging pass)
         + CONTINUATION_SCALE * g_ContinuationHistory[(prev move, this
           move)] (same growth/decay math as history, additionally
           keyed by the previous move -- self-calibrating, no magic
           constant needed; CONTINUATION_SCALE=1 found flat/sufficient
           across a 256x sweep)
         + FLEE_BONUS if this move's origin square is currently en
           prise (flat same-tier nudge; the old unconditional GOOD_
           MOVE-tier promotion for these moves was retired after
           evidence-calibration showed most such moves, unbacked by
           real track record, perform identically to an ordinary
           leftover -- see the RETIRED comment below).
    7. Losing captures -- negative, SEE-verified.

Parameters:

    IN MOVE_STACK *pStack,
    IN SEARCHER_THREAD_CONTEXT *ctx,
    IN MOVE mvHash,

Return value:

    static void

**/
{
    ULONG uPly = ctx->uPly;
    POSITION *pos = &ctx->sPosition;
    ULONG u;
    MOVE mv;
    SCORE s;
#ifdef DEBUG
    MOVE_STACK_MOVE_VALUE_FLAGS mvf;
#endif
    ULONG uHashMoveLoc = (ULONG)-1;
#ifdef DEBUG
    ULONG uColor = pos->uToMove;
#endif
    PRECOMP_KILLERS sKillers[4];
    ULONG uCounterMoveIdx = 0;
    ULONG uCounterMoveContKey = 0;
    FLAG fHaveCounterMove = FALSE;

    //
    // We have generated all moves here.  We also know that we are not
    // escaping from check.  There can be a hash move -- if there is
    // then the search has already tried it and we should not generate
    // it again.
    //
    // White has 218 legal moves in this position:
    // 3Q4/1Q4Q1/4Q3/2Q4R/Q4Q2/3Q4/1Q4Rp/1K1BBNNk w - - 0 1
    //

    //
    // Pre-populate killer/bonuses.  Crafty-style ordering: both of this
    // ply's own killers before either ply-2-back one.  (Reverted twice
    // before -- see git history -- but this pass is on top of both
    // NumLeftoverMovesToSelect and the mvNullmoveQuietRefutations fix
    // (dynamic.c/searchsup.c), and beats the interleaved order (this
    // ply's killer1, ply-2's killer1, this ply's killer2, ply-2's
    // killer2) head-to-head on every metric with the fix applied to
    // both: more solves, fewer nodes, equal-or-higher first-move beta
    // cutoff on 2 of 3 curated suites. Both orderings lose first-move
    // cutoff rate vs. head_reference once the backfill is added -- that
    // appears to be a cost of the backfill itself, not of tier order --
    // but Crafty order is the one where the backfilled data lands in a
    // tier (this ply's own killer[1], promoted to SECOND_KILLER here)
    // that's otherwise structurally almost always empty, so it's pure
    // upside there; under interleaved order the same backfill instead
    // lands in THIRD_KILLER, behind two already-real proven killers,
    // where it appears to cost more (misordering) than it gives.)
    //
    sKillers[0].mv = ctx->mvKiller[uPly][0];
    sKillers[0].uBonus = FIRST_KILLER;
    sKillers[1].mv = ctx->mvKiller[uPly][1];
    sKillers[1].uBonus = SECOND_KILLER;
    sKillers[2].mv.uMove = sKillers[3].mv.uMove = 0;
    if (uPly > 1)
    {
        sKillers[2].mv = ctx->mvKiller[uPly - 2][0];
        sKillers[2].uBonus = THIRD_KILLER;
        sKillers[3].mv = ctx->mvKiller[uPly - 2][1];
        sKillers[3].uBonus = FOURTH_KILLER;
    }
    sKillers[0].uBonus |=
        (SORT_THESE_FIRST * (IS_KILLERMATE_MOVE(sKillers[0].mv) != 0));
    sKillers[1].uBonus |=
        (SORT_THESE_FIRST * (IS_KILLERMATE_MOVE(sKillers[1].mv) != 0));
    sKillers[2].uBonus |=
        (SORT_THESE_FIRST * (IS_KILLERMATE_MOVE(sKillers[2].mv) != 0));
    sKillers[3].uBonus |=
        (SORT_THESE_FIRST * (IS_KILLERMATE_MOVE(sKillers[3].mv) != 0));

    // EXPERIMENT: countermove-match tier. Precompute the previous
    // move's countermove-table index once per node (mirrors killer
    // precompute above) so the per-move loop below is just an
    // IS_SAME_MOVE check, not a recompute.
    fHaveCounterMove = FALSE;
    if ((uPly > 0) && (0 != (ctx->sPlyInfo[uPly - 1]).mv.uMove))
    {
        uCounterMoveIdx = MOVE_TO_INDEX((ctx->sPlyInfo[uPly - 1]).mv);
        uCounterMoveContKey = MOVE_TO_CONT_KEY((ctx->sPlyInfo[uPly - 1]).mv);
        fHaveCounterMove = TRUE;
    }

    //
    // Score moves
    //
    ASSERT(MOVE_COUNT(ctx, uPly) <= MAX_MOVES_PER_PLY);
    for (u = pStack->uBegin[uPly];
         u < pStack->uEnd[uPly];
         u++)
    {
        mv = pStack->mvf[u].mv;
        ASSERT(mv.uMove);
        ASSERT(GET_COLOR(mv.pMoved) == uColor);
        if (!IS_SAME_MOVE(mv, mvHash))
        {
#ifdef DEBUG
            pStack->mvf[u].iValue = -MAX_INT;
            pStack->mvf[u].bvFlags = 0;
#endif
            //
            // 1. Hash move (already handled by search, all we have to
            //               do here is not generate it)
            // 2. Killer mate move, if one exists
            // 3. Winning captures & promotions (MVV/LVA to tiebreak)
            // 4. Even captures & promotions -- >= SORT_THESE_FIRST
            // 5. Killer move 1-4
            // 6. "good" moves (moves away from danger etc...)
            // 7. Other non capture moves (using dynamic move ordering scheme)
            // 8. Losing captures -- <0
            //

            //
            // Captures and promotions, use SEE
            //
            pStack->mvf[u].bvFlags &= ~(MVF_SEE_KNOWN | MVF_SEE_NONNEGATIVE);
            if (IS_CAPTURE_OR_PROMOTION(mv))
            {
                ASSERT((mv.pCaptured) || (mv.pPromoted));
                s = PIECE_VALUE(mv.pCaptured) -
                    PIECE_VALUE(mv.pMoved);
                if ((s <= 0) || mv.pPromoted)
                {
                    s = SEE(pos, mv);
                    pStack->mvf[u].bvFlags |= MVF_SEE_KNOWN |
                        ((s >= 0) ? MVF_SEE_NONNEGATIVE : 0);
                }

                if (s >= 0)
                {
                    s += PIECE_VALUE_OVER_100(mv.pCaptured) + 120;
                    s += PIECE_VALUE_OVER_100(mv.pPromoted);
                    s -= PIECE_VALUE_OVER_100(mv.pMoved);
                    s += SORT_THESE_FIRST;

                    //
                    // IDEA: bonus for capturing opponent's last moved
                    // piece to encourage quicker fail highs?
                    //
                    ASSERT(s >= SORT_THESE_FIRST);
                    ASSERT(s > 0);
                    ASSERT((s & STRIP_OFF_FLAGS) < VALUE_KING);
                }
#ifdef DEBUG
                else
                {
                    ASSERT((s & STRIP_OFF_FLAGS) > -VALUE_KING);
                    s -= VALUE_KING;
                    ASSERT(s < 0);
                }
#endif
            }

            //
            // Non-captures/promotes use history/killer
            //
            else
            {
                ASSERT((!mv.pCaptured) && (!mv.pPromoted));
                s = g_iPSQT[mv.pMoved][mv.cTo]; // 0..1000
                s |= (IS_SAME_MOVE(sKillers[0].mv, mv) * sKillers[0].uBonus);
                s |= (IS_SAME_MOVE(sKillers[1].mv, mv) * sKillers[1].uBonus);
                s |= (IS_SAME_MOVE(sKillers[2].mv, mv) * sKillers[2].uBonus);
                s |= (IS_SAME_MOVE(sKillers[3].mv, mv) * sKillers[3].uBonus);

                // RETIRED: hung-piece-escape used to get an unconditional
                // (GOOD_MOVE + PIECE_VALUE/2) promotion here for any move
                // whose origin square was flagged en-prise, regardless of
                // any track record. Evidence-calibration data showed the
                // overwhelming majority of triggers (the "zero accumulated
                // history/continuation evidence" bucket -- 250-1000x more
                // populous than the equivalent countermove-match bucket)
                // had a fail-high rate statistically identical to an
                // ordinary, unprivileged leftover move (~0.22-0.25% vs.
                // ~0.19-0.21% baseline). The escape motif alone, with no
                // verification the destination is actually safe or the
                // threat was real, isn't a trustworthy enough signal to
                // justify an unconditional tier promotion -- unlike
                // killers (self-evidencing by construction) or a
                // sufficiently-evidenced countermove match. Retired
                // rather than evidence-gated: a well-evidenced escape
                // still gets ranked via the existing, already-validated
                // history/continuation scoring below, same as any other
                // leftover -- no separate mechanism needed for that case.

                // Countermove-match tier, evidence-gated -- see chess.h's
                // COUNTERMOVE_TIER_BONUS/COUNTERMOVE_EVIDENCE_THRESHOLD
                // comment. Calibration data showed a raw match, with no
                // track record, performs identically to an ordinary
                // leftover (~0.6-0.85% FH) -- promoting on match alone
                // repeats hung-piece-escape's mistake. Only promote once
                // the same history+continuation evidence already used
                // to score ordinary leftovers clears a threshold where
                // it demonstrably beats killer-ply2's own average.
                // Written into iValue itself (not a selection-time-only
                // nudge) so a qualifying match actually escapes
                // GOOD_MOVE/leftover classification.
                if ((TRUE == fHaveCounterMove) &&
                    (IS_SAME_MOVE(mv, ctx->mvCounter[uCounterMoveIdx][0]) ||
                     IS_SAME_MOVE(mv, ctx->mvCounter[uCounterMoveIdx][1])))
                {
                    ULONG uCMEvidence = g_HistoryCounters[mv.pMoved][mv.cTo] +
                        g_ContinuationHistory[(uCounterMoveContKey * CONT_KEY_RANGE) +
                                              MOVE_TO_CONT_KEY(mv)];
                    if (uCMEvidence >= COUNTERMOVE_EVIDENCE_THRESHOLD)
                    {
                        s |= COUNTERMOVE_TIER_BONUS;
                    }
                }
                ASSERT(s >= 0);
            }
            pStack->mvf[u].iValue = s;
            ASSERT(pStack->mvf[u].iValue != -MAX_INT);
        }
        else
        {
            ASSERT(uHashMoveLoc == (ULONG)-1);
            uHashMoveLoc = u;
#ifdef DEBUG
            ASSERT((mv.cFrom == mvHash.cFrom) && (mv.cTo == mvHash.cTo));
            pStack->mvf[u].bvFlags |= MVF_MOVE_SEARCHED;
#endif
        }

    } // next move

    //
    // If we generated the hash move, stick it at the end and pretend
    // we didn't... it was already considered by the search and we
    // should not generate it again.
    //
    if (uHashMoveLoc != (ULONG)-1)
    {
        ASSERT(MOVE_COUNT(ctx, uPly) >= 1);
        ASSERT(uHashMoveLoc >= pStack->uBegin[uPly]);
        ASSERT(uHashMoveLoc < pStack->uEnd[uPly]);
#ifdef DEBUG
        mvf = pStack->mvf[uHashMoveLoc];
#endif
        pStack->mvf[uHashMoveLoc] = pStack->mvf[pStack->uEnd[uPly] - 1];
#ifdef DEBUG
        pStack->mvf[pStack->uEnd[uPly] - 1] = mvf;
#endif
        pStack->uEnd[uPly]--;
    }
}



static void
_ScoreAllEscapes(IN MOVE_STACK *pStack,
                 IN SEARCHER_THREAD_CONTEXT *ctx,
                 IN MOVE mvHash)
/**

Routine description:

    We have just generated all the moves, now score them.  See comments
    inline below about order.

Parameters:

    IN MOVE_STACK *pStack,
    IN SEARCHER_THREAD_CONTEXT *ctx,
    IN MOVE mvHash,

Return value:

    static void

**/
{
    ULONG uPly = ctx->uPly;
    POSITION *pos = &ctx->sPosition;
    ULONG u;
    MOVE mv;
    SCORE s;
#ifdef DEBUG
    MOVE_STACK_MOVE_VALUE_FLAGS mvf;
#endif
    ULONG uHashMoveLoc = (ULONG)-1;
    COOR c;
    ULONG v;
    PIECE p;
    static SCORE _bonus[2][7] = {
        { 0, 2000, 1250, 1500, 1100, 850,  0 }, // friend
        { 0, 1600,  100,  100,   50,  -1, -1 }, // foe
    };

    //
    // We have generated legal escapes from check here.  There can be
    // a hash move -- if there is then the search has already tried it
    // and we should not generate it again.
    //

    ASSERT(MOVE_COUNT(ctx, uPly) <= MAX_MOVES_PER_PLY);
    for (u = pStack->uBegin[uPly];
         u < pStack->uEnd[uPly];
         u++)
    {
        mv = pStack->mvf[u].mv;
        ASSERT(mv.uMove);
        ASSERT(GET_COLOR(mv.pMoved) == pos->uToMove);
        if (!IS_SAME_MOVE(mv, mvHash))
        {
#ifdef DEBUG
            pStack->mvf[u].iValue = -MAX_INT;
            pStack->mvf[u].bvFlags = 0;
#endif
            pStack->mvf[u].mv.bvFlags |= MOVE_FLAG_ESCAPING_CHECK;

            //
            // 1. Hash move (already handled by search, all we have to
            //               do here is not generate it)
            // 2. Winning captures by pieces other than the checked king
            // 3. Winning captures by the king
            // 4. Even captures by pieces other than the king
            // 5. Killer escapes
            // 6. Moves that block the check and are even
            // 7. King moves
            // 8. Losing captures / blocks
            //

            //
            // Captures and promotions, use SEE
            //
            pStack->mvf[u].bvFlags &= ~(MVF_SEE_KNOWN | MVF_SEE_NONNEGATIVE);
            if (IS_CAPTURE_OR_PROMOTION(mv))
            {
                ASSERT((mv.pCaptured) || (mv.pPromoted));
                s = PIECE_VALUE(mv.pCaptured) -
                    PIECE_VALUE(mv.pMoved);
                if ((s <= 0) || mv.pPromoted)
                {
                    s = SEE(pos, mv);
                    pStack->mvf[u].bvFlags |= MVF_SEE_KNOWN |
                        ((s >= 0) ? MVF_SEE_NONNEGATIVE : 0);
                }
                
                if (s > 0)
                {
                    // Winning captures: take with pieces before with king
                    s += PIECE_VALUE_OVER_100(mv.pPromoted);
                    s -= PIECE_VALUE_OVER_100(mv.pMoved);
                    s >>= IS_KING(mv.pMoved);
                    s |= SORT_THESE_FIRST;
                    ASSERT(s >= SORT_THESE_FIRST);
                    ASSERT(s > 0);
                    ASSERT((s & STRIP_OFF_FLAGS) < VALUE_KING);
                } 
                else if (s == 0) 
                {
                    // Even capture -- can't be capturing w/ king
                    ASSERT(!IS_KING(mv.pMoved));
                    s += PIECE_VALUE_OVER_100(mv.pPromoted) + 20;
                    s -= PIECE_VALUE_OVER_100(mv.pMoved);
                    s |= FIRST_KILLER;
                    ASSERT(s > 0);
                }
#ifdef DEBUG
                else
                {
                    // Losing capture
                    ASSERT(!IS_KING(mv.pMoved));
                    ASSERT((s & STRIP_OFF_FLAGS) > -VALUE_KING);
                    s -= VALUE_KING;
                    ASSERT(s < 0);
                }
#endif
            }

            //
            // Non-captures/promotes
            //
            else
            {
                ASSERT((!mv.pCaptured) && (!mv.pPromoted));
                if (IS_SAME_MOVE(mv, ctx->mvKillerEscapes[uPly][0]) ||
                    IS_SAME_MOVE(mv, ctx->mvKillerEscapes[uPly][1]))
                {
                    s = SECOND_KILLER;
                    ASSERT(s >= 0);
                }
                else
                {
                    s = g_iPSQT[mv.pMoved][mv.cTo]; // 0..1000
                    if (!IS_KING(mv.pMoved)) 
                    {
                        // 0..2400
                        s += (VALUE_QUEEN - PIECE_VALUE(mv.pMoved)) * 4;
                        if (SEE(pos, mv) >= 0)
                        {
                            // Non-losing block of check
                            ASSERT(SEE(pos, mv) == 0);
                            s |= THIRD_KILLER;
                            ASSERT(s >= 0);
                        }
                        else 
                        {
                            // Losing block of check
                            s -= VALUE_KING;
                            ASSERT(s < 0);
                        }
                    } 
                    else
                    {
                        // If the king is fleeing, encourage a spot next
                        // to friendly pieces.
                        v = 0;
                        do {
                            c = mv.cTo + g_iQKDeltas[v++];
                            if (IS_ON_BOARD(c)) 
                            {
                                p = pos->rgSquare[c].pPiece;
                                s += _bonus[OPPOSITE_COLORS(pos->uToMove, p)]
                                           [PIECE_TYPE(p)];
                                ASSERT(_bonus[OPPOSITE_COLORS(pos->uToMove, p)]
                                       [PIECE_TYPE(p)] >= 0);
                            }
                        } 
                        while(g_iQKDeltas[v] != 0);
                    }
                }
            }
            pStack->mvf[u].iValue = s;
            ASSERT(pStack->mvf[u].iValue != -MAX_INT);
        }
        else
        {
            ASSERT(uHashMoveLoc == (ULONG)-1);
            uHashMoveLoc = u;
#ifdef DEBUG
            ASSERT((mv.cFrom == mvHash.cFrom) && (mv.cTo == mvHash.cTo));
            pStack->mvf[u].bvFlags |= MVF_MOVE_SEARCHED;
#endif
        }
    } // next move

    //
    // If we generated the hash move, stick it at the end and pretend
    // we didn't... it was already considered by the search and we
    // should not generate it again.
    //
    if (uHashMoveLoc != (ULONG)-1)
    {
        ASSERT(MOVE_COUNT(ctx, uPly) >= 1);
        ASSERT(uHashMoveLoc >= pStack->uBegin[uPly]);
        ASSERT(uHashMoveLoc < pStack->uEnd[uPly]);
#ifdef DEBUG
        mvf = pStack->mvf[uHashMoveLoc];
#endif
        pStack->mvf[uHashMoveLoc] = pStack->mvf[pStack->uEnd[uPly] - 1];
#ifdef DEBUG
        pStack->mvf[pStack->uEnd[uPly] - 1] = mvf;
#endif
        pStack->uEnd[uPly]--;
    }
}



static void
_ScoreQSearchMovesInclChecks(IN MOVE_STACK *pStack,
                             IN SEARCHER_THREAD_CONTEXT *ctx)
/**

Routine description:

    We have just generated all the moves.  We were called from the
    Qsearch so:

       1. Unlike _ScoreAllMoves we don't have to think about a hash move
       2. QSearch only cares about winning/even captures/promotes and
          checking moves.

    Like _ScoreSearchMoves, this function takes "hints" from the
    searcher context about what squares are in danger and tries to
    order moves away from those squares sooner.  Unlike
    _ScoreSearchMoves this function also attempts to capture enemies
    that are in danger sooner.

Parameters:

    IN MOVE_STACK *pStack,
    IN SEARCHER_THREAD_CONTEXT *ctx

Return value:

    static void

**/
{
    register POSITION *pos = &ctx->sPosition;
    PLY_INFO *pi = &ctx->sPlyInfo[ctx->uPly];
    ULONG uPly = ctx->uPly;
    ULONG u, uColor = pos->uToMove;
    MOVE mv;
    MOVE mvLast = (pi-1)->mv;
    SCORE s;
    COOR cEnprise = FindEnprisePiece(ctx, uColor);

    //
    // We have generate all moves or just legal escapes from check
    // here.  There can be a hash move -- if there is then the search
    // has already tried it and we should not generate it again.
    //
    // White has 218 legal moves in this position:
    // 3Q4/1Q4Q1/4Q3/2Q4R/Q4Q2/3Q4/1Q4Rp/1K1BBNNk w - - 0 1
    //
    ASSERT(MOVE_COUNT(ctx, uPly) <= MAX_MOVES_PER_PLY);
    ASSERT(uPly >= 1);

    for (u = pStack->uBegin[uPly];
         u < pStack->uEnd[uPly];
         u++)
    {
        mv = pStack->mvf[u].mv;
        ASSERT(GET_COLOR(mv.pMoved) == uColor);
#ifdef DEBUG
        pStack->mvf[u].iValue = -MAX_INT;
        pStack->mvf[u].bvFlags = 0;
#endif
        pStack->mvf[u].mv.bvFlags |= WouldGiveCheck(ctx, mv);

        //
        // 1. There can't be a hash move so don't worry about it
        // 2. Winning captures & promotions
        // 3. Even captures & promotions -- >= SORT_THESE_FIRST
        // 4. Checking non-capture moves
        // 5. Losing captures that check -- > 0
        // 6. Everything else is ignored -- <= 0
        //

        //
        // Captures and promotions, use SEE
        //
        if (IS_CAPTURE_OR_PROMOTION(mv))
        {
            ASSERT((mv.pCaptured) || (mv.pPromoted));
            s = PIECE_VALUE(mv.pCaptured) -
                PIECE_VALUE(mv.pMoved);
            if ((s <= 0) || mv.pPromoted)
            {
                s = SEE(pos, mv);
            }

            if (s >= 0)
            {
                //
                // Winning / even captures / promotes should be >=
                // SORT_THESE_FIRST.
                //
                s += PIECE_VALUE_OVER_100(mv.pCaptured) + 120;
                s += PIECE_VALUE_OVER_100(mv.pPromoted);
                s -= PIECE_VALUE_OVER_100(mv.pMoved);
                s += SORT_THESE_FIRST;

                //
                // Bonus if it checks too
                //
                s += (pStack->mvf[u].mv.bvFlags & MOVE_FLAG_CHECKING) * 4;

                //
                // Bonus for capturing last moved enemy piece.
                //
                s += (mv.cTo == mvLast.cTo) * 64;
                ASSERT(s >= SORT_THESE_FIRST);
                ASSERT(s > 0);
            }
            else
            {
                //
                // Make losing captures into either zero scores or
                // slightly positive if they check.  Qsearch is going
                // to bail as soon as it sees the first zero so no
                // need to keep real SEE scores on these.
                //
                s = (pStack->mvf[u].mv.bvFlags & MOVE_FLAG_CHECKING);
                ASSERT(s >= 0);
            }
        }

        //
        // Non-captures/promotes -- we don't care unless they check
        //
        else
        {
            s = (pStack->mvf[u].mv.bvFlags & MOVE_FLAG_CHECKING) * 2;
            ASSERT(s >= 0);
            ASSERT(s < SORT_THESE_FIRST);
        }

        //
        // If this move moves a piece that was in danger, consider it
        // sooner.
        //
        if (s > 0)
        {
            ASSERT(IS_CAPTURE_OR_PROMOTION(pStack->mvf[u].mv) ||
                   IS_CHECKING_MOVE(pStack->mvf[u].mv));
            s += (mv.cFrom == cEnprise) * (PIECE_VALUE(mv.pMoved) / 4);
            ASSERT(s > 0);
        }
        pStack->mvf[u].iValue = s;
        ASSERT(pStack->mvf[u].iValue != -MAX_INT);

    } // next move
}


static void
_ScoreQSearchMovesNoChecks(IN MOVE_STACK *pStack,
                           IN SEARCHER_THREAD_CONTEXT *ctx)
/**

Routine description:

    We have just generated all the moves.  We were called from the
    Qsearch so:

       1. Unlike _ScoreAllMoves we don't have to think about a hash move
       2. QSearch only cares about winning/even captures/promotes.  At
          this point it is so deep that it doesn't even care about
          checks.

    Like _ScoreSearchMoves, this function takes "hints" from the
    searcher context about what squares are in danger and tries to
    order moves away from those squares sooner.  Unlike
    _ScoreSearchMoves this function also attempts to capture enemies
    that are in danger sooner.

Parameters:

    IN MOVE_STACK *pStack,
    IN SEARCHER_THREAD_CONTEXT *ctx

Return value:

    static void

**/
{
    register POSITION *pos = &(ctx->sPosition);
    ULONG uPly = ctx->uPly;
    ULONG u;
#ifdef DEBUG
    ULONG uColor;
#endif
    MOVE mv;
    SCORE s;

    //
    // We have generate all moves or just legal escapes from check
    // here.  There can be a hash move -- if there is then the search
    // has already tried it and we should not generate it again.
    //
    // White has 218 legal moves in this position:
    // 3Q4/1Q4Q1/4Q3/2Q4R/Q4Q2/3Q4/1Q4Rp/1K1BBNNk w - - 0 1
    //
    ASSERT(MOVE_COUNT(ctx, uPly) <= MAX_MOVES_PER_PLY);

#ifdef DEBUG
    uColor = pos->uToMove;
#endif
    for (u = pStack->uBegin[uPly];
         u < pStack->uEnd[uPly];
         u++)
    {
        mv = pStack->mvf[u].mv;
        ASSERT(GET_COLOR(mv.pMoved) == uColor);
#ifdef DEBUG
        pStack->mvf[u].iValue = -MAX_INT;
        pStack->mvf[u].bvFlags = 0;
#endif
        //
        // 1. There can't be a hash move so don't worry about it
        // 2. Winning captures & promotions
        // 3. Even captures & promotions -- >= SORT_THESE_FIRST
        // 4. Everything else is ignored -- <= 0
        //

        //
        // Captures and promotions, use SEE
        //
        s = 0;
        if (IS_CAPTURE_OR_PROMOTION(mv))
        {
            ASSERT((mv.pCaptured) || (mv.pPromoted));
            s = PIECE_VALUE(mv.pCaptured) -
                PIECE_VALUE(mv.pMoved);
            //
            // TODO: how does this handle positions like K *p *k ?
            //
            if (s <= 0)
            {
                s = SEE(pos, mv);
            }

            if (s >= 0)
            {
                //
                // Winning / even captures / promotes should be >=
                // SORT_THESE_FIRST.
                //
                s += PIECE_VALUE_OVER_100(mv.pCaptured) + 120;
                s += PIECE_VALUE_OVER_100(mv.pPromoted);
                s -= PIECE_VALUE_OVER_100(mv.pMoved);
                s += SORT_THESE_FIRST;

                //
                // IDEA: bonus for capturing an enprise enemy piece?
                //
                ASSERT(s >= SORT_THESE_FIRST);
                ASSERT(s > 0);
            }
        }
        pStack->mvf[u].iValue = s;
        ASSERT(pStack->mvf[u].iValue != -MAX_INT);

    } // next move
}



void
GenerateMoves(IN SEARCHER_THREAD_CONTEXT *ctx,
              IN MOVE mvHash,
              IN ULONG uType)
/**

Routine description:

    This is the entrypoint to the move generator.  It invokes the
    requested generation code which push moves onto the move stack in
    ctx.  Once the moves are generated this code optionally will score
    the moves.

Parameters:

    SEARCHER_THREAD_CONTEXT *ctx : a searcher thread's context

        IN: ctx->sPosition.uDangerCount and ctx->sPosition.cDanger
            data is used to tweak move scoring.  This data MUST be
            consistent with the state of the current board.

       OUT: ctx->sMoveStack.uBegin[ctx->uPly] is set,
            ctx->sMoveStack.uEnd[ctx->uPly] is set,
            ctx->sMoveStack.mvf[begin..end] are populated

    MOVE mvHash : the hash move to not generate

    ULONG uType : what kind of moves to generate

        GENERATE_ALL_MOVES : pseudo-legal generation of all moves;
            scored by _ScoreAllMoves.  Return value is count of moves
            generated.

        GENERATE_ESCAPE: called when stm in check, generate evasions
            scored by _ScoreAllMoves.  Return value is special code;
            see inline comment below.

        GENERATE_CAPTURES_PROMS_CHECKS: caps, promotions, and checks
            scored by _ScoreQSearchMoves.  Return value is count of
            moves generated.

        GENERATE_CAPTURES_PROMS: caps, promotions.  Skip the checks.

        GENERATE_DONT_SCORE: pseudo-legal generation of all moves;
            not scored to save time.  Return value always zero.

Return value:

    void

**/
{
    register ULONG uPly = ctx->uPly;
    MOVE_STACK *pStack = &ctx->sMoveStack;
    POSITION *pos = &ctx->sPosition;
    ULONG uReturn;
#ifdef DEBUG
    POSITION board;
    ULONG u;
    MOVE mv;
    PIECE p;

    ASSERT((uPly >= 0) && (uPly < MAX_PLY_PER_SEARCH));
    memcpy(&board, pos, sizeof(POSITION));
    memcpy(&(pStack->board[uPly]), pos, sizeof(POSITION));

    //
    // Make sure the hash move makes sense (if provided)
    //
    if (mvHash.uMove)
    {
        p = pos->rgSquare[mvHash.cFrom].pPiece;
        ASSERT(p);
        ASSERT(GET_COLOR(p) == pos->uToMove);
        p = pos->rgSquare[mvHash.cTo].pPiece;
        ASSERT(!p || OPPOSITE_COLORS(p, pos->uToMove));
    }
#endif
    pStack->uPly = uPly;
    pStack->uEnd[uPly] = pStack->uBegin[uPly];
    pStack->sGenFlags[uPly].uAllGenFlags = 0;
    
    switch(uType)
    {
        case GENERATE_CAPTURES_PROMS_CHECKS:
            ASSERT(!InCheck(pos, pos->uToMove));
            ASSERT(mvHash.uMove == 0);
            _FindUnblockedSquares(pStack, pos);
            _GenerateAllMoves(pStack, pos);
            _ScoreQSearchMovesInclChecks(pStack, ctx);
            break;
        case GENERATE_CAPTURES_PROMS:
            ASSERT(!InCheck(pos, pos->uToMove));
            ASSERT(mvHash.uMove == 0);
            _FindUnblockedSquares(pStack, pos);
            _GenerateAllMoves(pStack, pos);
            _ScoreQSearchMovesNoChecks(pStack, ctx);
            break;
        case GENERATE_ALL_MOVES:
            ASSERT(!InCheck(pos, pos->uToMove));
            _FindUnblockedSquares(pStack, pos);
            _GenerateAllMoves(pStack, pos);
            _ScoreAllMoves(pStack, ctx, mvHash);
            uReturn = MOVE_COUNT(ctx, uPly);
            break;
        case GENERATE_ESCAPES:
            ASSERT(InCheck(pos, pos->uToMove));
            _FindUnblockedSquares(pStack, pos);
            uReturn = _GenerateEscapes(pStack, pos);
            ASSERT(uReturn);
            pStack->sGenFlags[uPly].uKingMoveCount = uReturn >> 16;
            pStack->sGenFlags[uPly].uCheckingPieces = uReturn & 0xFF;
            _ScoreAllEscapes(pStack, ctx, mvHash);
            break;
            
        // Note: this is just for plytest / seetest.  Just generate
        // moves, do not score them.
        case GENERATE_DONT_SCORE:
            if (InCheck(pos, pos->uToMove))
            {
                (void)_GenerateEscapes(pStack, pos);
                for (uReturn = pStack->uBegin[uPly];
                     uReturn < pStack->uEnd[uPly];
                     uReturn++)
                {
                    pStack->mvf[uReturn].mv.bvFlags |=
                        MOVE_FLAG_ESCAPING_CHECK;
                }
            }
            else
            {
                (void)_GenerateAllMoves(pStack, pos);
            }
            goto end;
#ifdef DEBUG
        default:
            uReturn = 0;
            ASSERT(FALSE);
#endif
    }

#ifdef DEBUG
    //
    // Sanity check the move list we just generated...
    //
    ASSERT(MOVE_COUNT(ctx, uPly) >= 0);
    for (u = pStack->uBegin[uPly];
         u < pStack->uEnd[uPly];
         u++)
    {
        mv = pStack->mvf[u].mv;
        ASSERT(!IS_SAME_MOVE(mv, mvHash));
        SanityCheckMove(pos, mv);

        if (WouldGiveCheck(ctx, mv))
        {
            if (MakeMove(ctx, mv))
            {
                ASSERT(ctx->uPly == (uPly + 1));
                ASSERT(InCheck(pos, pos->uToMove));
                UnmakeMove(ctx, mv);

                //
                // Note: this is so that DEBUG and RELEASE builds search
                // the same trees.  Without this the MakeMove/UnmakeMove
                // pair here can affect the order of the pieces in the
                // POSITION piece lists which in turn affects the order
                // in which moves are generated down the road.
                //
                memcpy(&ctx->sPosition, &board, sizeof(POSITION));
            }
        }
        else
        {
            if (MakeMove(ctx, mv))
            {
                ASSERT(ctx->uPly == (uPly + 1));
                ASSERT(!InCheck(pos, pos->uToMove));
                UnmakeMove(ctx, mv);

                //
                // Note: this is so that DEBUG and RELEASE builds search
                // the same trees.  Without this the MakeMove/UnmakeMove
                // pair here can affect the order of the pieces in the
                // POSITION piece lists which in turn affects the order
                // in which moves are generated down the road.
                //
                memcpy(&ctx->sPosition, &board, sizeof(POSITION));
            }
        }
    }
    ASSERT(PositionsAreEquivalent(&board, pos));
#endif
 end:
    pStack->sGenFlags[uPly].uMoveCount = MOVE_COUNT(ctx, uPly);
    pStack->uBegin[uPly + 1] = pStack->uEnd[uPly];
}