summaryrefslogtreecommitdiffstats
path: root/depends/pack200/src/unpack.cpp
blob: 722d67b5a69682d80339cd9823f8ea1acd999a1a (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
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
/*
 * Copyright (c) 2001, 2011, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.  Oracle designates this
 * particular file as subject to the "Classpath" exception as provided
 * by Oracle in the LICENSE file that accompanied this code.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

// -*- C++ -*-
// Program for unpacking specially compressed Java packages.
// John R. Rose

/*
 * When compiling for a 64bit LP64 system (longs and pointers being 64bits),
 *    the printf format %ld is correct and use of %lld will cause warning
 *    errors from some compilers (gcc/g++).
 * _LP64 can be explicitly set (used on Linux).
 * Solaris compilers will define __sparcv9 or __x86_64 on 64bit compilations.
 */
#if defined(_LP64) || defined(__sparcv9) || defined(__x86_64)
#define LONG_LONG_FORMAT "%ld"
#define LONG_LONG_HEX_FORMAT "%lx"
#else
#define LONG_LONG_FORMAT "%lld"
#define LONG_LONG_HEX_FORMAT "%016llx"
#endif

#include <sys/types.h>

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdarg.h>
#include <assert.h>
#include <limits.h>
#include <time.h>

#include "defines.h"
#include "bytes.h"
#include "utils.h"
#include "coding.h"
#include "bands.h"

#include "constants.h"

#include "zip.h"

#include "unpack.h"

// tags, in canonical order:
static const byte TAGS_IN_ORDER[] = {
	CONSTANT_Utf8,		CONSTANT_Integer,  CONSTANT_Float,	 CONSTANT_Long,
	CONSTANT_Double,	  CONSTANT_String,   CONSTANT_Class,	 CONSTANT_Signature,
	CONSTANT_NameandType, CONSTANT_Fieldref, CONSTANT_Methodref, CONSTANT_InterfaceMethodref};
#define N_TAGS_IN_ORDER (sizeof TAGS_IN_ORDER)

// REQUESTED must be -2 for u2 and REQUESTED_LDC must be -1 for u1
enum
{
	NOT_REQUESTED = 0,
	REQUESTED = -2,
	REQUESTED_LDC = -1
};

#define NO_INORD ((uint) - 1)

struct entry
{
	byte tag;

#if 0
  byte bits;
  enum {
    //EB_EXTRA = 1,
    EB_SUPER = 2
  };
#endif
	unsigned short nrefs; // pack w/ tag

	int outputIndex;
	uint inord; // &cp.entries[cp.tag_base[this->tag]+this->inord] == this

	entry **refs;

	// put last to pack best
	union
	{
		bytes b;
		int i;
		jlong l;
	} value;

	void requestOutputIndex(cpool &cp, int req = REQUESTED);
	int getOutputIndex()
	{
		assert(outputIndex > NOT_REQUESTED);
		return outputIndex;
	}

	entry *ref(int refnum)
	{
		assert((uint)refnum < nrefs);
		return refs[refnum];
	}

	const char *utf8String()
	{
		assert(tagMatches(CONSTANT_Utf8));
		assert(value.b.len == strlen((const char *)value.b.ptr));
		return (const char *)value.b.ptr;
	}

	entry *className()
	{
		assert(tagMatches(CONSTANT_Class));
		return ref(0);
	}

	entry *memberClass()
	{
		assert(tagMatches(CONSTANT_Member));
		return ref(0);
	}

	entry *memberDescr()
	{
		assert(tagMatches(CONSTANT_Member));
		return ref(1);
	}

	entry *descrName()
	{
		assert(tagMatches(CONSTANT_NameandType));
		return ref(0);
	}

	entry *descrType()
	{
		assert(tagMatches(CONSTANT_NameandType));
		return ref(1);
	}

	int typeSize();

	bytes &asUtf8();
	int asInteger()
	{
		assert(tag == CONSTANT_Integer);
		return value.i;
	}

	bool isUtf8(bytes &b)
	{
		return tagMatches(CONSTANT_Utf8) && value.b.equals(b);
	}

	bool isDoubleWord()
	{
		return tag == CONSTANT_Double || tag == CONSTANT_Long;
	}

	bool tagMatches(byte tag2)
	{
		return (tag2 == tag) || (tag2 == CONSTANT_Utf8 && tag == CONSTANT_Signature);
	}
};

entry *cpindex::get(uint i)
{
	if (i >= len)
		return nullptr;
	else if (base1 != nullptr)
		// primary index
		return &base1[i];
	else
		// secondary index
		return base2[i];
}

inline bytes &entry::asUtf8()
{
	assert(tagMatches(CONSTANT_Utf8));
	return value.b;
}

int entry::typeSize()
{
	assert(tagMatches(CONSTANT_Utf8));
	const char *sigp = (char *)value.b.ptr;
	switch (*sigp)
	{
	case '(':
		sigp++;
		break; // skip opening '('
	case 'D':
	case 'J':
		return 2; // double field
	default:
		return 1; // field
	}
	int siglen = 0;
	for (;;)
	{
		int ch = *sigp++;
		switch (ch)
		{
		case 'D':
		case 'J':
			siglen += 1;
			break;
		case '[':
			// Skip rest of array info.
			while (ch == '[')
			{
				ch = *sigp++;
			}
			if (ch != 'L')
				break;
		// else fall through
		case 'L':
			sigp = strchr(sigp, ';');
			if (sigp == nullptr)
			{
				unpack_abort("bad data");
				return 0;
			}
			sigp += 1;
			break;
		case ')': // closing ')'
			return siglen;
		}
		siglen += 1;
	}
}

inline cpindex *cpool::getFieldIndex(entry *classRef)
{
	assert(classRef->tagMatches(CONSTANT_Class));
	assert((uint)classRef->inord < (uint)tag_count[CONSTANT_Class]);
	return &member_indexes[classRef->inord * 2 + 0];
}
inline cpindex *cpool::getMethodIndex(entry *classRef)
{
	assert(classRef->tagMatches(CONSTANT_Class));
	assert((uint)classRef->inord < (uint)tag_count[CONSTANT_Class]);
	return &member_indexes[classRef->inord * 2 + 1];
}

struct inner_class
{
	entry *inner;
	entry *outer;
	entry *name;
	int flags;
	inner_class *next_sibling;
	bool requested;
};

// Here is where everything gets deallocated:
void unpacker::free()
{
	int i;
	assert(infileptr == nullptr); // caller resp.
	if (jarout != nullptr)
		jarout->reset();
	if (gzin != nullptr)
	{
		gzin->free();
		gzin = nullptr;
	}
	if (free_input)
		input.free();
	// free everybody ever allocated with U_NEW or (recently) with T_NEW
	assert(smallbuf.base() == nullptr || mallocs.contains(smallbuf.base()));
	assert(tsmallbuf.base() == nullptr || tmallocs.contains(tsmallbuf.base()));
	mallocs.freeAll();
	tmallocs.freeAll();
	smallbuf.init();
	tsmallbuf.init();
	bcimap.free();
	class_fixup_type.free();
	class_fixup_offset.free();
	class_fixup_ref.free();
	code_fixup_type.free();
	code_fixup_offset.free();
	code_fixup_source.free();
	requested_ics.free();
	cur_classfile_head.free();
	cur_classfile_tail.free();
	for (i = 0; i < ATTR_CONTEXT_LIMIT; i++)
		attr_defs[i].free();

	// free CP state
	cp.outputEntries.free();
	for (i = 0; i < CONSTANT_Limit; i++)
		cp.tag_extras[i].free();
}

// input handling
// Attempts to advance rplimit so that (rplimit-rp) is at least 'more'.
// Will eagerly read ahead by larger chunks, if possible.
// Returns false if (rplimit-rp) is not at least 'more',
// unless rplimit hits input.limit().
bool unpacker::ensure_input(jlong more)
{
	julong want = more - input_remaining();
	if ((jlong)want <= 0)
		return true; // it's already in the buffer
	if (rplimit == input.limit())
		return true; // not expecting any more

	if (read_input_fn == nullptr)
	{
		// assume it is already all there
		bytes_read += input.limit() - rplimit;
		rplimit = input.limit();
		return true;
	}
	CHECK_0;

	julong remaining = (input.limit() - rplimit); // how much left to read?
	byte *rpgoal = (want >= remaining) ? input.limit() : rplimit + (size_t)want;
	enum
	{
		CHUNK_SIZE = (1 << 14)
	};
	julong fetch = want;
	if (fetch < CHUNK_SIZE)
		fetch = CHUNK_SIZE;
	if (fetch > remaining * 3 / 4)
		fetch = remaining;
	// Try to fetch at least "more" bytes.
	while ((jlong)fetch > 0)
	{
		jlong nr = (*read_input_fn)(this, rplimit, fetch, remaining);
		if (nr <= 0)
		{
			return (rplimit >= rpgoal);
		}
		remaining -= nr;
		rplimit += nr;
		fetch -= nr;
		bytes_read += nr;
		assert(remaining == (julong)(input.limit() - rplimit));
	}
	return true;
}

// output handling

fillbytes *unpacker::close_output(fillbytes *which)
{
	assert(wp != nullptr);
	if (which == nullptr)
	{
		if (wpbase == cur_classfile_head.base())
		{
			which = &cur_classfile_head;
		}
		else
		{
			which = &cur_classfile_tail;
		}
	}
	assert(wpbase == which->base());
	assert(wplimit == which->end());
	which->setLimit(wp);
	wp = nullptr;
	wplimit = nullptr;
	// wpbase = nullptr;
	return which;
}

// maybe_inline
void unpacker::ensure_put_space(size_t size)
{
	if (wp + size <= wplimit)
		return;
	// Determine which segment needs expanding.
	fillbytes *which = close_output();
	byte *wp0 = which->grow(size);
	wpbase = which->base();
	wplimit = which->end();
	wp = wp0;
}

byte *unpacker::put_space(size_t size)
{
	byte *wp0 = wp;
	byte *wp1 = wp0 + size;
	if (wp1 > wplimit)
	{
		ensure_put_space(size);
		wp0 = wp;
		wp1 = wp0 + size;
	}
	wp = wp1;
	return wp0;
}

void unpacker::putu2_at(byte *wp, int n)
{
	if (n != (unsigned short)n)
	{
		unpack_abort(ERROR_OVERFLOW);
		return;
	}
	wp[0] = (n) >> 8;
	wp[1] = (n) >> 0;
}

void unpacker::putu4_at(byte *wp, int n)
{
	wp[0] = (n) >> 24;
	wp[1] = (n) >> 16;
	wp[2] = (n) >> 8;
	wp[3] = (n) >> 0;
}

void unpacker::putu8_at(byte *wp, jlong n)
{
	putu4_at(wp + 0, (int)((julong)n >> 32));
	putu4_at(wp + 4, (int)((julong)n >> 0));
}

void unpacker::putu2(int n)
{
	putu2_at(put_space(2), n);
}

void unpacker::putu4(int n)
{
	putu4_at(put_space(4), n);
}

void unpacker::putu8(jlong n)
{
	putu8_at(put_space(8), n);
}

int unpacker::putref_index(entry *e, int size)
{
	if (e == nullptr)
		return 0;
	else if (e->outputIndex > NOT_REQUESTED)
		return e->outputIndex;
	else if (e->tag == CONSTANT_Signature)
		return putref_index(e->ref(0), size);
	else
	{
		e->requestOutputIndex(cp, -size);
		// Later on we'll fix the bits.
		class_fixup_type.addByte(size);
		class_fixup_offset.add((int)wpoffset());
		class_fixup_ref.add(e);
		return 0;
	}
}

void unpacker::putref(entry *e)
{
	int oidx = putref_index(e, 2);
	putu2_at(put_space(2), oidx);
}

void unpacker::putu1ref(entry *e)
{
	int oidx = putref_index(e, 1);
	putu1_at(put_space(1), oidx);
}

static int total_cp_size[] = {0, 0};
static int largest_cp_ref[] = {0, 0};
static int hash_probes[] = {0, 0};

// Allocation of small and large blocks.

enum
{
	CHUNK = (1 << 14),
	SMALL = (1 << 9)
};

// Call malloc.  Try to combine small blocks and free much later.
void *unpacker::alloc_heap(size_t size, bool smallOK, bool temp)
{
	if (!smallOK || size > SMALL)
	{
		void *res = must_malloc((int)size);
		(temp ? &tmallocs : &mallocs)->add(res);
		return res;
	}
	fillbytes &xsmallbuf = *(temp ? &tsmallbuf : &smallbuf);
	if (!xsmallbuf.canAppend(size + 1))
	{
		xsmallbuf.init(CHUNK);
		(temp ? &tmallocs : &mallocs)->add(xsmallbuf.base());
	}
	int growBy = (int)size;
	growBy += -growBy & 7; // round up mod 8
	return xsmallbuf.grow(growBy);
}

void unpacker::saveTo(bytes &b, byte *ptr, size_t len)
{
	b.ptr = U_NEW(byte, add_size(len, 1));
	if (aborting())
	{
		b.len = 0;
		return;
	}
	b.len = len;
	b.copyFrom(ptr, len);
}

// Read up through band_headers.
// Do the archive_size dance to set the size of the input mega-buffer.
void unpacker::read_file_header()
{
	// Read file header to determine file type and total size.
	enum
	{
		MAGIC_BYTES = 4,
		AH_LENGTH_0 = 3, // minver, majver, options are outside of archive_size
		AH_LENGTH_0_MAX = AH_LENGTH_0 + 1, // options might have 2 bytes
		AH_LENGTH = 26,					// maximum archive header length (w/ all fields)
		// Length contributions from optional header fields:
		AH_FILE_HEADER_LEN = 5,	// sizehi/lo/next/modtime/files
		AH_ARCHIVE_SIZE_LEN = 2,   // sizehi/lo only; part of AH_FILE_HEADER_LEN
		AH_CP_NUMBER_LEN = 4,	  // int/float/long/double
		AH_SPECIAL_FORMAT_LEN = 2, // layouts/band-headers
		AH_LENGTH_MIN =
			AH_LENGTH - (AH_FILE_HEADER_LEN + AH_SPECIAL_FORMAT_LEN + AH_CP_NUMBER_LEN),
		ARCHIVE_SIZE_MIN = AH_LENGTH_MIN - (AH_LENGTH_0 + AH_ARCHIVE_SIZE_LEN),
		FIRST_READ = MAGIC_BYTES + AH_LENGTH_MIN
	};

	assert(AH_LENGTH_MIN == 15);	// # of UNSIGNED5 fields required after archive_magic
	assert(ARCHIVE_SIZE_MIN == 10); // # of UNSIGNED5 fields required after archive_size
	// An absolute minimum nullptr archive is magic[4], {minver,majver,options}[3],
	// archive_size[0], cp_counts[8], class_counts[4], for a total of 19 bytes.
	// (Note that archive_size is optional; it may be 0..10 bytes in length.)
	// The first read must capture everything up through the options field.
	// This happens to work even if {minver,majver,options} is a pathological
	// 15 bytes long.  Legal pack files limit those three fields to 1+1+2 bytes.
	assert(FIRST_READ >= MAGIC_BYTES + AH_LENGTH_0 * B_MAX);

	// Up through archive_size, the largest possible archive header is
	// magic[4], {minver,majver,options}[4], archive_size[10].
	// (Note only the low 12 bits of options are allowed to be non-zero.)
	// In order to parse archive_size, we need at least this many bytes
	// in the first read.  Of course, if archive_size_hi is more than
	// a byte, we probably will fail to allocate the buffer, since it
	// will be many gigabytes long.  This is a practical, not an
	// architectural limit to Pack200 archive sizes.
	assert(FIRST_READ >= MAGIC_BYTES + AH_LENGTH_0_MAX + 2 * B_MAX);

	bool foreign_buf = (read_input_fn == nullptr);
	byte initbuf[(int)FIRST_READ + (int)C_SLOP + 200]; // 200 is for JAR I/O
	if (foreign_buf)
	{
		// inbytes is all there is
		input.set(inbytes);
		rp = input.base();
		rplimit = input.limit();
	}
	else
	{
		// inbytes, if not empty, contains some read-ahead we must use first
		// ensure_input will take care of copying it into initbuf,
		// then querying read_input_fn for any additional data needed.
		// However, the caller must assume that we use up all of inbytes.
		// There is no way to tell the caller that we used only part of them.
		// Therefore, the caller must use only a bare minimum of read-ahead.
		if (inbytes.len > FIRST_READ)
		{
			abort("too much read-ahead");
			return;
		}
		input.set(initbuf, sizeof(initbuf));
		input.b.clear();
		input.b.copyFrom(inbytes);
		rplimit = rp = input.base();
		rplimit += inbytes.len;
		bytes_read += inbytes.len;
	}
	// Read only 19 bytes, which is certain to contain #archive_options fields,
	// but is certain not to overflow past the archive_header.
	input.b.len = FIRST_READ;
	if (!ensure_input(FIRST_READ))
		abort("EOF reading archive magic number");

	if (rp[0] == 'P' && rp[1] == 'K')
	{
		// In the Unix-style program, we simply simulate a copy command.
		// Copy until EOF; assume the JAR file is the last segment.
		fprintf(stderr, "Copy-mode.\n");
		for (;;)
		{
			jarout->write_data(rp, (int)input_remaining());
			if (foreign_buf)
				break; // one-time use of a passed in buffer
			if (input.size() < CHUNK)
			{
				// Get some breathing room.
				input.set(U_NEW(byte, (size_t)CHUNK + C_SLOP), (size_t)CHUNK);
				CHECK;
			}
			rp = rplimit = input.base();
			if (!ensure_input(1))
				break;
		}
		jarout->closeJarFile(false);
		return;
	}

	// Read the magic number.
	magic = 0;
	for (int i1 = 0; i1 < (int)sizeof(magic); i1++)
	{
		magic <<= 8;
		magic += (*rp++ & 0xFF);
	}

	// Read the first 3 values from the header.
	value_stream hdr;
	int hdrVals = 0;
	int hdrValsSkipped = 0; // debug only
	hdr.init(rp, rplimit, UNSIGNED5_spec);
	minver = hdr.getInt();
	majver = hdr.getInt();
	hdrVals += 2;

	if (magic != (int)JAVA_PACKAGE_MAGIC ||
		(majver != JAVA5_PACKAGE_MAJOR_VERSION && majver != JAVA6_PACKAGE_MAJOR_VERSION) ||
		(minver != JAVA5_PACKAGE_MINOR_VERSION && minver != JAVA6_PACKAGE_MINOR_VERSION))
	{
		char message[200];
		sprintf(message, "@" ERROR_FORMAT ": magic/ver = "
						 "%08X/%d.%d should be %08X/%d.%d OR %08X/%d.%d\n",
				magic, majver, minver, JAVA_PACKAGE_MAGIC, JAVA5_PACKAGE_MAJOR_VERSION,
				JAVA5_PACKAGE_MINOR_VERSION, JAVA_PACKAGE_MAGIC, JAVA6_PACKAGE_MAJOR_VERSION,
				JAVA6_PACKAGE_MINOR_VERSION);
		abort(message);
	}
	CHECK;

	archive_options = hdr.getInt();
	hdrVals += 1;
	assert(hdrVals == AH_LENGTH_0); // first three fields only

#define ORBIT(bit) | (bit)
	int OPTION_LIMIT = (0 ARCHIVE_BIT_DO(ORBIT));
#undef ORBIT
	if ((archive_options & ~OPTION_LIMIT) != 0)
	{
		fprintf(stderr, "Warning: Illegal archive options 0x%x\n", archive_options);
		abort("illegal archive options");
		return;
	}

	if ((archive_options & AO_HAVE_FILE_HEADERS) != 0)
	{
		uint hi = hdr.getInt();
		uint lo = hdr.getInt();
		julong x = band::makeLong(hi, lo);
		archive_size = (size_t)x;
		if (archive_size != x)
		{
			// Silly size specified; force overflow.
			archive_size = PSIZE_MAX + 1;
		}
		hdrVals += 2;
	}
	else
	{
		hdrValsSkipped += 2;
	}

	// Now we can size the whole archive.
	// Read everything else into a mega-buffer.
	rp = hdr.rp;
	int header_size_0 = (int)(rp - input.base()); // used-up header (4byte + 3int)
	int header_size_1 = (int)(rplimit - rp);	  // buffered unused initial fragment
	int header_size = header_size_0 + header_size_1;
	unsized_bytes_read = header_size_0;
	CHECK;
	if (foreign_buf)
	{
		if (archive_size > (size_t)header_size_1)
		{
			abort("EOF reading fixed input buffer");
			return;
		}
	}
	else if (archive_size != 0)
	{
		if (archive_size < ARCHIVE_SIZE_MIN)
		{
			abort("impossible archive size"); // bad input data
			return;
		}
		if (archive_size < header_size_1)
		{
			abort("too much read-ahead"); // somehow we pre-fetched too much?
			return;
		}
		input.set(U_NEW(byte, add_size(header_size_0, archive_size, C_SLOP)),
				  (size_t)header_size_0 + archive_size);
		CHECK;
		assert(input.limit()[0] == 0);
		// Move all the bytes we read initially into the real buffer.
		input.b.copyFrom(initbuf, header_size);
		rp = input.b.ptr + header_size_0;
		rplimit = input.b.ptr + header_size;
	}
	else
	{
		// It's more complicated and painful.
		// A zero archive_size means that we must read until EOF.
		input.init(CHUNK * 2);
		CHECK;
		input.b.len = input.allocated;
		rp = rplimit = input.base();
		// Set up input buffer as if we already read the header:
		input.b.copyFrom(initbuf, header_size);
		CHECK;
		rplimit += header_size;
		while (ensure_input(input.limit() - rp))
		{
			size_t dataSoFar = input_remaining();
			size_t nextSize = add_size(dataSoFar, CHUNK);
			input.ensureSize(nextSize);
			CHECK;
			input.b.len = input.allocated;
			rp = rplimit = input.base();
			rplimit += dataSoFar;
		}
		size_t dataSize = (rplimit - input.base());
		input.b.len = dataSize;
		input.grow(C_SLOP);
		CHECK;
		free_input = true; // free it later
		input.b.len = dataSize;
		assert(input.limit()[0] == 0);
		rp = rplimit = input.base();
		rplimit += dataSize;
		rp += header_size_0; // already scanned these bytes...
	}
	live_input = true; // mark as "do not reuse"
	if (aborting())
	{
		abort("cannot allocate large input buffer for package file");
		return;
	}

	// read the rest of the header fields
	ensure_input((AH_LENGTH - AH_LENGTH_0) * B_MAX);
	CHECK;
	hdr.rp = rp;
	hdr.rplimit = rplimit;

	if ((archive_options & AO_HAVE_FILE_HEADERS) != 0)
	{
		archive_next_count = hdr.getInt();
		CHECK_COUNT(archive_next_count);
		archive_modtime = hdr.getInt();
		file_count = hdr.getInt();
		CHECK_COUNT(file_count);
		hdrVals += 3;
	}
	else
	{
		hdrValsSkipped += 3;
	}

	if ((archive_options & AO_HAVE_SPECIAL_FORMATS) != 0)
	{
		band_headers_size = hdr.getInt();
		CHECK_COUNT(band_headers_size);
		attr_definition_count = hdr.getInt();
		CHECK_COUNT(attr_definition_count);
		hdrVals += 2;
	}
	else
	{
		hdrValsSkipped += 2;
	}

	int cp_counts[N_TAGS_IN_ORDER];
	for (int k = 0; k < (int)N_TAGS_IN_ORDER; k++)
	{
		if (!(archive_options & AO_HAVE_CP_NUMBERS))
		{
			switch (TAGS_IN_ORDER[k])
			{
			case CONSTANT_Integer:
			case CONSTANT_Float:
			case CONSTANT_Long:
			case CONSTANT_Double:
				cp_counts[k] = 0;
				hdrValsSkipped += 1;
				continue;
			}
		}
		cp_counts[k] = hdr.getInt();
		CHECK_COUNT(cp_counts[k]);
		hdrVals += 1;
	}

	ic_count = hdr.getInt();
	CHECK_COUNT(ic_count);
	default_class_minver = hdr.getInt();
	default_class_majver = hdr.getInt();
	class_count = hdr.getInt();
	CHECK_COUNT(class_count);
	hdrVals += 4;

	// done with archive_header
	hdrVals += hdrValsSkipped;
	assert(hdrVals == AH_LENGTH);

	rp = hdr.rp;
	if (rp > rplimit)
		abort("EOF reading archive header");

	// Now size the CP.
	cp.init(this, cp_counts);
	CHECK;

	default_file_modtime = archive_modtime;
	if (default_file_modtime == 0 && !(archive_options & AO_HAVE_FILE_MODTIME))
		default_file_modtime = DEFAULT_ARCHIVE_MODTIME; // taken from driver
	if ((archive_options & AO_DEFLATE_HINT) != 0)
		default_file_options |= FO_DEFLATE_HINT;

	// meta-bytes, if any, immediately follow archive header
	// band_headers.readData(band_headers_size);
	ensure_input(band_headers_size);
	if (input_remaining() < (size_t)band_headers_size)
	{
		abort("EOF reading band headers");
		return;
	}
	bytes band_headers;
	// The "1+" allows an initial byte to be pushed on the front.
	band_headers.set(1 + U_NEW(byte, 1 + band_headers_size + C_SLOP), band_headers_size);
	CHECK;
	// Start scanning band headers here:
	band_headers.copyFrom(rp, band_headers.len);
	rp += band_headers.len;
	assert(rp <= rplimit);
	meta_rp = band_headers.ptr;
	// Put evil meta-codes at the end of the band headers,
	// so we are sure to throw an error if we run off the end.
	bytes::of(band_headers.limit(), C_SLOP).clear(_meta_error);
}

void unpacker::finish()
{
	if (verbose >= 1)
	{
		fprintf(stderr, "A total of " LONG_LONG_FORMAT " bytes were read in %d segment(s).\n",
				(bytes_read_before_reset + bytes_read), segments_read_before_reset + 1);
		fprintf(stderr, "A total of " LONG_LONG_FORMAT " file content bytes were written.\n",
				(bytes_written_before_reset + bytes_written));
		fprintf(stderr,
				"A total of %d files (of which %d are classes) were written to output.\n",
				files_written_before_reset + files_written,
				classes_written_before_reset + classes_written);
	}
	if (jarout != nullptr)
		jarout->closeJarFile(true);
}

// Cf. PackageReader.readConstantPoolCounts
void cpool::init(unpacker *u_, int counts[NUM_COUNTS])
{
	this->u = u_;

	// Fill-pointer for CP.
	int next_entry = 0;

	// Size the constant pool:
	for (int k = 0; k < (int)N_TAGS_IN_ORDER; k++)
	{
		byte tag = TAGS_IN_ORDER[k];
		int len = counts[k];
		tag_count[tag] = len;
		tag_base[tag] = next_entry;
		next_entry += len;
		// Detect and defend against constant pool size overflow.
		// (Pack200 forbids the sum of CP counts to exceed 2^29-1.)
		enum
		{
			CP_SIZE_LIMIT = (1 << 29),
			IMPLICIT_ENTRY_COUNT = 1 // empty Utf8 string
		};
		if (len >= (1 << 29) || len < 0 || next_entry >= CP_SIZE_LIMIT + IMPLICIT_ENTRY_COUNT)
		{
			abort("archive too large:  constant pool limit exceeded");
			return;
		}
	}

	// Close off the end of the CP:
	nentries = next_entry;

	// place a limit on future CP growth:
	int generous = 0;
	generous = add_size(generous, u->ic_count);	// implicit name
	generous = add_size(generous, u->ic_count);	// outer
	generous = add_size(generous, u->ic_count);	// outer.utf8
	generous = add_size(generous, 40);			 // WKUs, misc
	generous = add_size(generous, u->class_count); // implicit SourceFile strings
	maxentries = add_size(nentries, generous);

	// Note that this CP does not include "empty" entries
	// for longs and doubles.  Those are introduced when
	// the entries are renumbered for classfile output.

	entries = U_NEW(entry, maxentries);
	CHECK;

	first_extra_entry = &entries[nentries];

	// Initialize the standard indexes.
	tag_count[CONSTANT_All] = nentries;
	tag_base[CONSTANT_All] = 0;
	for (int tag = 0; tag < CONSTANT_Limit; tag++)
	{
		entry *cpMap = &entries[tag_base[tag]];
		tag_index[tag].init(tag_count[tag], cpMap, tag);
	}

	// Initialize hashTab to a generous power-of-two size.
	uint pow2 = 1;
	uint target = maxentries + maxentries / 2; // 60% full
	while (pow2 < target)
		pow2 <<= 1;
	hashTab = U_NEW(entry *, hashTabLength = pow2);
}

static byte *store_Utf8_char(byte *cp, unsigned short ch)
{
	if (ch >= 0x001 && ch <= 0x007F)
	{
		*cp++ = (byte)ch;
	}
	else if (ch <= 0x07FF)
	{
		*cp++ = (byte)(0xC0 | ((ch >> 6) & 0x1F));
		*cp++ = (byte)(0x80 | ((ch >> 0) & 0x3F));
	}
	else
	{
		*cp++ = (byte)(0xE0 | ((ch >> 12) & 0x0F));
		*cp++ = (byte)(0x80 | ((ch >> 6) & 0x3F));
		*cp++ = (byte)(0x80 | ((ch >> 0) & 0x3F));
	}
	return cp;
}

static byte *skip_Utf8_chars(byte *cp, int len)
{
	for (;; cp++)
	{
		int ch = *cp & 0xFF;
		if ((ch & 0xC0) != 0x80)
		{
			if (len-- == 0)
				return cp;
			if (ch < 0x80 && len == 0)
				return cp + 1;
		}
	}
}

static int compare_Utf8_chars(bytes &b1, bytes &b2)
{
	int l1 = (int)b1.len;
	int l2 = (int)b2.len;
	int l0 = (l1 < l2) ? l1 : l2;
	byte *p1 = b1.ptr;
	byte *p2 = b2.ptr;
	int c0 = 0;
	for (int i = 0; i < l0; i++)
	{
		int c1 = p1[i] & 0xFF;
		int c2 = p2[i] & 0xFF;
		if (c1 != c2)
		{
			// Before returning the obvious answer,
			// check to see if c1 or c2 is part of a 0x0000,
			// which encodes as {0xC0,0x80}.  The 0x0000 is the
			// lowest-sorting Java char value, and yet it encodes
			// as if it were the first char after 0x7F, which causes
			// strings containing nulls to sort too high.  All other
			// comparisons are consistent between Utf8 and Java chars.
			if (c1 == 0xC0 && (p1[i + 1] & 0xFF) == 0x80)
				c1 = 0;
			if (c2 == 0xC0 && (p2[i + 1] & 0xFF) == 0x80)
				c2 = 0;
			if (c0 == 0xC0)
			{
				assert(((c1 | c2) & 0xC0) == 0x80); // c1 & c2 are extension chars
				if (c1 == 0x80)
					c1 = 0; // will sort below c2
				if (c2 == 0x80)
					c2 = 0; // will sort below c1
			}
			return c1 - c2;
		}
		c0 = c1; // save away previous char
	}
	// common prefix is identical; return length difference if any
	return l1 - l2;
}

// Cf. PackageReader.readUtf8Bands
void unpacker::read_Utf8_values(entry *cpMap, int len)
{
	// Implicit first Utf8 string is the empty string.
	enum
	{
		// certain bands begin with implicit zeroes
		PREFIX_SKIP_2 = 2,
		SUFFIX_SKIP_1 = 1
	};

	int i;

	// First band:  Read lengths of shared prefixes.
	if (len > PREFIX_SKIP_2)
		cp_Utf8_prefix.readData(len - PREFIX_SKIP_2);

	// Second band:  Read lengths of unshared suffixes:
	if (len > SUFFIX_SKIP_1)
		cp_Utf8_suffix.readData(len - SUFFIX_SKIP_1);

	bytes *allsuffixes = T_NEW(bytes, len);
	CHECK;

	int nbigsuf = 0;
	fillbytes charbuf; // buffer to allocate small strings
	charbuf.init();

	// Third band:  Read the char values in the unshared suffixes:
	cp_Utf8_chars.readData(cp_Utf8_suffix.getIntTotal());
	for (i = 0; i < len; i++)
	{
		int suffix = (i < SUFFIX_SKIP_1) ? 0 : cp_Utf8_suffix.getInt();
		if (suffix < 0)
		{
			abort("bad utf8 suffix");
			return;
		}
		if (suffix == 0 && i >= SUFFIX_SKIP_1)
		{
			// chars are packed in cp_Utf8_big_chars
			nbigsuf += 1;
			continue;
		}
		bytes &chars = allsuffixes[i];
		uint size3 = suffix * 3; // max Utf8 length
		bool isMalloc = (suffix > SMALL);
		if (isMalloc)
		{
			chars.malloc(size3);
		}
		else
		{
			if (!charbuf.canAppend(size3 + 1))
			{
				assert(charbuf.allocated == 0 || tmallocs.contains(charbuf.base()));
				charbuf.init(CHUNK); // Reset to new buffer.
				tmallocs.add(charbuf.base());
			}
			chars.set(charbuf.grow(size3 + 1), size3);
		}
		CHECK;
		byte *chp = chars.ptr;
		for (int j = 0; j < suffix; j++)
		{
			unsigned short ch = cp_Utf8_chars.getInt();
			chp = store_Utf8_char(chp, ch);
		}
		// shrink to fit:
		if (isMalloc)
		{
			chars.realloc(chp - chars.ptr);
			CHECK;
			tmallocs.add(chars.ptr); // free it later
		}
		else
		{
			int shrink = (int)(chars.limit() - chp);
			chars.len -= shrink;
			charbuf.b.len -= shrink; // ungrow to reclaim buffer space
			// Note that we did not reclaim the final '\0'.
			assert(chars.limit() == charbuf.limit() - 1);
			assert(strlen((char *)chars.ptr) == chars.len);
		}
	}
	// cp_Utf8_chars.done();

	// Fourth band:  Go back and size the specially packed strings.
	int maxlen = 0;
	cp_Utf8_big_suffix.readData(nbigsuf);
	cp_Utf8_suffix.rewind();
	for (i = 0; i < len; i++)
	{
		int suffix = (i < SUFFIX_SKIP_1) ? 0 : cp_Utf8_suffix.getInt();
		int prefix = (i < PREFIX_SKIP_2) ? 0 : cp_Utf8_prefix.getInt();
		if (prefix < 0 || prefix + suffix < 0)
		{
			abort("bad utf8 prefix");
			return;
		}
		bytes &chars = allsuffixes[i];
		if (suffix == 0 && i >= SUFFIX_SKIP_1)
		{
			suffix = cp_Utf8_big_suffix.getInt();
			assert(chars.ptr == nullptr);
			chars.len = suffix; // just a momentary hack
		}
		else
		{
			assert(chars.ptr != nullptr);
		}
		if (maxlen < prefix + suffix)
		{
			maxlen = prefix + suffix;
		}
	}
	// cp_Utf8_suffix.done();      // will use allsuffixes[i].len (ptr!=nullptr)
	// cp_Utf8_big_suffix.done();  // will use allsuffixes[i].len

	// Fifth band(s):  Get the specially packed characters.
	cp_Utf8_big_suffix.rewind();
	for (i = 0; i < len; i++)
	{
		bytes &chars = allsuffixes[i];
		if (chars.ptr != nullptr)
			continue;				// already input
		int suffix = (int)chars.len; // pick up the hack
		uint size3 = suffix * 3;
		if (suffix == 0)
			continue; // done with empty string
		chars.malloc(size3);
		byte *chp = chars.ptr;
		band saved_band = cp_Utf8_big_chars;
		cp_Utf8_big_chars.readData(suffix);
		for (int j = 0; j < suffix; j++)
		{
			unsigned short ch = cp_Utf8_big_chars.getInt();
			chp = store_Utf8_char(chp, ch);
		}
		chars.realloc(chp - chars.ptr);
		CHECK;
		tmallocs.add(chars.ptr); // free it later
		// cp_Utf8_big_chars.done();
		cp_Utf8_big_chars = saved_band; // reset the band for the next string
	}
	cp_Utf8_big_chars.readData(0); // zero chars
								   // cp_Utf8_big_chars.done();

	// Finally, sew together all the prefixes and suffixes.
	bytes bigbuf;
	bigbuf.malloc(maxlen * 3 + 1); // max Utf8 length, plus slop for nullptr
	CHECK;
	int prevlen = 0;		  // previous string length (in chars)
	tmallocs.add(bigbuf.ptr); // free after this block
	cp_Utf8_prefix.rewind();
	for (i = 0; i < len; i++)
	{
		bytes &chars = allsuffixes[i];
		int prefix = (i < PREFIX_SKIP_2) ? 0 : cp_Utf8_prefix.getInt();
		int suffix = (int)chars.len;
		byte *fillp;
		// by induction, the buffer is already filled with the prefix
		// make sure the prefix value is not corrupted, though:
		if (prefix > prevlen)
		{
			abort("utf8 prefix overflow");
			return;
		}
		fillp = skip_Utf8_chars(bigbuf.ptr, prefix);
		// copy the suffix into the same buffer:
		fillp = chars.writeTo(fillp);
		assert(bigbuf.inBounds(fillp));
		*fillp = 0; // bigbuf must contain a well-formed Utf8 string
		int length = (int)(fillp - bigbuf.ptr);
		bytes &value = cpMap[i].value.b;
		value.set(U_NEW(byte, add_size(length, 1)), length);
		value.copyFrom(bigbuf.ptr, length);
		CHECK;
		// Index all Utf8 strings
		entry *&htref = cp.hashTabRef(CONSTANT_Utf8, value);
		if (htref == nullptr)
		{
			// Note that if two identical strings are transmitted,
			// the first is taken to be the canonical one.
			htref = &cpMap[i];
		}
		prevlen = prefix + suffix;
	}
	// cp_Utf8_prefix.done();

	// Free intermediate buffers.
	free_temps();
}

void unpacker::read_single_words(band &cp_band, entry *cpMap, int len)
{
	cp_band.readData(len);
	for (int i = 0; i < len; i++)
	{
		cpMap[i].value.i = cp_band.getInt(); // coding handles signs OK
	}
}

void unpacker::read_double_words(band &cp_bands, entry *cpMap, int len)
{
	band &cp_band_hi = cp_bands;
	band &cp_band_lo = cp_bands.nextBand();
	cp_band_hi.readData(len);
	cp_band_lo.readData(len);
	for (int i = 0; i < len; i++)
	{
		cpMap[i].value.l = cp_band_hi.getLong(cp_band_lo, true);
	}
	// cp_band_hi.done();
	// cp_band_lo.done();
}

void unpacker::read_single_refs(band &cp_band, byte refTag, entry *cpMap, int len)
{
	assert(refTag == CONSTANT_Utf8);
	cp_band.setIndexByTag(refTag);
	cp_band.readData(len);
	CHECK;
	int indexTag = (cp_band.bn == e_cp_Class) ? CONSTANT_Class : 0;
	for (int i = 0; i < len; i++)
	{
		entry &e = cpMap[i];
		e.refs = U_NEW(entry *, e.nrefs = 1);
		entry *utf = cp_band.getRef();
		CHECK;
		e.refs[0] = utf;
		e.value.b = utf->value.b; // copy value of Utf8 string to self
		if (indexTag != 0)
		{
			// Maintain cross-reference:
			entry *&htref = cp.hashTabRef(indexTag, e.value.b);
			if (htref == nullptr)
			{
				// Note that if two identical classes are transmitted,
				// the first is taken to be the canonical one.
				htref = &e;
			}
		}
	}
	// cp_band.done();
}

void unpacker::read_double_refs(band &cp_band, byte ref1Tag, byte ref2Tag, entry *cpMap,
								int len)
{
	band &cp_band1 = cp_band;
	band &cp_band2 = cp_band.nextBand();
	cp_band1.setIndexByTag(ref1Tag);
	cp_band2.setIndexByTag(ref2Tag);
	cp_band1.readData(len);
	cp_band2.readData(len);
	CHECK;
	for (int i = 0; i < len; i++)
	{
		entry &e = cpMap[i];
		e.refs = U_NEW(entry *, e.nrefs = 2);
		e.refs[0] = cp_band1.getRef();
		e.refs[1] = cp_band2.getRef();
		CHECK;
	}
	// cp_band1.done();
	// cp_band2.done();
}

// Cf. PackageReader.readSignatureBands
void unpacker::read_signature_values(entry *cpMap, int len)
{
	cp_Signature_form.setIndexByTag(CONSTANT_Utf8);
	cp_Signature_form.readData(len);
	CHECK;
	int ncTotal = 0;
	int i;
	for (i = 0; i < len; i++)
	{
		entry &e = cpMap[i];
		entry &form = *cp_Signature_form.getRef();
		CHECK;
		int nc = 0;

		for (const char *ncp = form.utf8String(); *ncp; ncp++)
		{
			if (*ncp == 'L')
				nc++;
		}

		ncTotal += nc;
		e.refs = U_NEW(entry *, cpMap[i].nrefs = 1 + nc);
		CHECK;
		e.refs[0] = &form;
	}
	// cp_Signature_form.done();
	cp_Signature_classes.setIndexByTag(CONSTANT_Class);
	cp_Signature_classes.readData(ncTotal);
	for (i = 0; i < len; i++)
	{
		entry &e = cpMap[i];
		for (int j = 1; j < e.nrefs; j++)
		{
			e.refs[j] = cp_Signature_classes.getRef();
			CHECK;
		}
	}
	// cp_Signature_classes.done();
}

// Cf. PackageReader.readConstantPool
void unpacker::read_cp()
{
	byte *rp0 = rp;

	int i;

	for (int k = 0; k < (int)N_TAGS_IN_ORDER; k++)
	{
		byte tag = TAGS_IN_ORDER[k];
		int len = cp.tag_count[tag];
		int base = cp.tag_base[tag];

		entry *cpMap = &cp.entries[base];
		for (i = 0; i < len; i++)
		{
			cpMap[i].tag = tag;
			cpMap[i].inord = i;
		}

		switch (tag)
		{
		case CONSTANT_Utf8:
			read_Utf8_values(cpMap, len);
			break;
		case CONSTANT_Integer:
			read_single_words(cp_Int, cpMap, len);
			break;
		case CONSTANT_Float:
			read_single_words(cp_Float, cpMap, len);
			break;
		case CONSTANT_Long:
			read_double_words(cp_Long_hi /*& cp_Long_lo*/, cpMap, len);
			break;
		case CONSTANT_Double:
			read_double_words(cp_Double_hi /*& cp_Double_lo*/, cpMap, len);
			break;
		case CONSTANT_String:
			read_single_refs(cp_String, CONSTANT_Utf8, cpMap, len);
			break;
		case CONSTANT_Class:
			read_single_refs(cp_Class, CONSTANT_Utf8, cpMap, len);
			break;
		case CONSTANT_Signature:
			read_signature_values(cpMap, len);
			break;
		case CONSTANT_NameandType:
			read_double_refs(cp_Descr_name /*& cp_Descr_type*/, CONSTANT_Utf8,
							 CONSTANT_Signature, cpMap, len);
			break;
		case CONSTANT_Fieldref:
			read_double_refs(cp_Field_class /*& cp_Field_desc*/, CONSTANT_Class,
							 CONSTANT_NameandType, cpMap, len);
			break;
		case CONSTANT_Methodref:
			read_double_refs(cp_Method_class /*& cp_Method_desc*/, CONSTANT_Class,
							 CONSTANT_NameandType, cpMap, len);
			break;
		case CONSTANT_InterfaceMethodref:
			read_double_refs(cp_Imethod_class /*& cp_Imethod_desc*/, CONSTANT_Class,
							 CONSTANT_NameandType, cpMap, len);
			break;
		default:
			assert(false);
			break;
		}
		CHECK;
	}

	cp.expandSignatures();
	CHECK;
	cp.initMemberIndexes();
	CHECK;

#define SNAME(n, s) #s "\0"
	const char *symNames = (ALL_ATTR_DO(SNAME) "<init>");
#undef SNAME

	for (int sn = 0; sn < cpool::s_LIMIT; sn++)
	{
		assert(symNames[0] >= '0' && symNames[0] <= 'Z'); // sanity
		bytes name;
		name.set(symNames);
		if (name.len > 0 && name.ptr[0] != '0')
		{
			cp.sym[sn] = cp.ensureUtf8(name);
		}
		symNames += name.len + 1; // skip trailing nullptr to next name
	}

	band::initIndexes(this);
}

static band *no_bands[] = {nullptr}; // shared empty body

inline band &unpacker::attr_definitions::fixed_band(int e_class_xxx)
{
	return u->all_bands[xxx_flags_hi_bn + (e_class_xxx - e_class_flags_hi)];
}
inline band &unpacker::attr_definitions::xxx_flags_hi()
{
	return fixed_band(e_class_flags_hi);
}
inline band &unpacker::attr_definitions::xxx_flags_lo()
{
	return fixed_band(e_class_flags_lo);
}
inline band &unpacker::attr_definitions::xxx_attr_count()
{
	return fixed_band(e_class_attr_count);
}
inline band &unpacker::attr_definitions::xxx_attr_indexes()
{
	return fixed_band(e_class_attr_indexes);
}
inline band &unpacker::attr_definitions::xxx_attr_calls()
{
	return fixed_band(e_class_attr_calls);
}

inline unpacker::layout_definition *
unpacker::attr_definitions::defineLayout(int idx, entry *nameEntry, const char *layout)
{
	const char *name = nameEntry->value.b.strval();
	layout_definition *lo = defineLayout(idx, name, layout);
	CHECK_0;
	lo->nameEntry = nameEntry;
	return lo;
}

unpacker::layout_definition *unpacker::attr_definitions::defineLayout(int idx, const char *name,
																	  const char *layout)
{
	assert(flag_limit != 0); // must be set up already
	if (idx >= 0)
	{
		// Fixed attr.
		if (idx >= (int)flag_limit)
			abort("attribute index too large");
		if (isRedefined(idx))
			abort("redefined attribute index");
		redef |= ((julong)1 << idx);
	}
	else
	{
		idx = flag_limit + overflow_count.length();
		overflow_count.add(0); // make a new counter
	}
	layout_definition *lo = U_NEW(layout_definition, 1);
	CHECK_0;
	lo->idx = idx;
	lo->name = name;
	lo->layout = layout;
	for (int adds = (idx + 1) - layouts.length(); adds > 0; adds--)
	{
		layouts.add(nullptr);
	}
	CHECK_0;
	layouts.get(idx) = lo;
	return lo;
}

band **unpacker::attr_definitions::buildBands(unpacker::layout_definition *lo)
{
	int i;
	if (lo->elems != nullptr)
		return lo->bands();
	if (lo->layout[0] == '\0')
	{
		lo->elems = no_bands;
	}
	else
	{
		// Create bands for this attribute by parsing the layout.
		bool hasCallables = lo->hasCallables();
		bands_made = 0x10000; // base number for bands made
		const char *lp = lo->layout;
		lp = parseLayout(lp, lo->elems, -1);
		CHECK_0;
		if (lp[0] != '\0' || band_stack.length() > 0)
		{
			abort("garbage at end of layout");
		}
		band_stack.popTo(0);
		CHECK_0;

		// Fix up callables to point at their callees.
		band **bands = lo->elems;
		assert(bands == lo->bands());
		int num_callables = 0;
		if (hasCallables)
		{
			while (bands[num_callables] != nullptr)
			{
				if (bands[num_callables]->le_kind != EK_CBLE)
				{
					abort("garbage mixed with callables");
					break;
				}
				num_callables += 1;
			}
		}
		for (i = 0; i < calls_to_link.length(); i++)
		{
			band &call = *(band *)calls_to_link.get(i);
			assert(call.le_kind == EK_CALL);
			// Determine the callee.
			int call_num = call.le_len;
			if (call_num < 0 || call_num >= num_callables)
			{
				abort("bad call in layout");
				break;
			}
			band &cble = *bands[call_num];
			// Link the call to it.
			call.le_body[0] = &cble;
			// Distinguish backward calls and callables:
			assert(cble.le_kind == EK_CBLE);
			assert(cble.le_len == call_num);
			cble.le_back |= call.le_back;
		}
		calls_to_link.popTo(0);
	}
	return lo->elems;
}

/* attribute layout language parser

  attribute_layout:
		( layout_element )* | ( callable )+
  layout_element:
		( integral | replication | union | call | reference )

  callable:
		'[' body ']'
  body:
		( layout_element )+

  integral:
		( unsigned_int | signed_int | bc_index | bc_offset | flag )
  unsigned_int:
		uint_type
  signed_int:
		'S' uint_type
  any_int:
		( unsigned_int | signed_int )
  bc_index:
		( 'P' uint_type | 'PO' uint_type )
  bc_offset:
		'O' any_int
  flag:
		'F' uint_type
  uint_type:
		( 'B' | 'H' | 'I' | 'V' )

  replication:
		'N' uint_type '[' body ']'

  union:
		'T' any_int (union_case)* '(' ')' '[' (body)? ']'
  union_case:
		'(' union_case_tag (',' union_case_tag)* ')' '[' (body)? ']'
  union_case_tag:
		( numeral | numeral '-' numeral )
  call:
		'(' numeral ')'

  reference:
		reference_type ( 'N' )? uint_type
  reference_type:
		( constant_ref | schema_ref | utf8_ref | untyped_ref )
  constant_ref:
		( 'KI' | 'KJ' | 'KF' | 'KD' | 'KS' | 'KQ' )
  schema_ref:
		( 'RC' | 'RS' | 'RD' | 'RF' | 'RM' | 'RI' )
  utf8_ref:
		'RU'
  untyped_ref:
		'RQ'

  numeral:
		'(' ('-')? (digit)+ ')'
  digit:
		( '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' )

*/

const char *unpacker::attr_definitions::parseIntLayout(const char *lp, band *&res, byte le_kind,
													   bool can_be_signed)
{
	const char *lp0 = lp;
	band *b = U_NEW(band, 1);
	CHECK_(lp);
	char le = *lp++;
	int spec = UNSIGNED5_spec;
	if (le == 'S' && can_be_signed)
	{
		// Note:  This is the last use of sign.  There is no 'EF_SIGN'.
		spec = SIGNED5_spec;
		le = *lp++;
	}
	else if (le == 'B')
	{
		spec = BYTE1_spec; // unsigned byte
	}
	b->init(u, bands_made++, spec);
	b->le_kind = le_kind;
	int le_len = 0;
	switch (le)
	{
	case 'B':
		le_len = 1;
		break;
	case 'H':
		le_len = 2;
		break;
	case 'I':
		le_len = 4;
		break;
	case 'V':
		le_len = 0;
		break;
	default:
		abort("bad layout element");
	}
	b->le_len = le_len;
	band_stack.add(b);
	res = b;
	return lp;
}

const char *unpacker::attr_definitions::parseNumeral(const char *lp, int &res)
{
	const char *lp0 = lp;
	bool sgn = false;
	if (*lp == '0')
	{
		res = 0;
		return lp + 1;
	} // special case '0'
	if (*lp == '-')
	{
		sgn = true;
		lp++;
	}
	const char *dp = lp;
	int con = 0;
	while (*dp >= '0' && *dp <= '9')
	{
		int con0 = con;
		con *= 10;
		con += (*dp++) - '0';
		if (con <= con0)
		{
			con = -1;
			break;
		} //  numeral overflow
	}
	if (lp == dp)
	{
		abort("missing numeral in layout");
		return "";
	}
	lp = dp;
	if (con < 0 && !(sgn && con == -con))
	{
		// (Portability note:  Misses the error if int is not 32 bits.)
		abort("numeral overflow");
		return "";
	}
	if (sgn)
		con = -con;
	res = con;
	return lp;
}

band **unpacker::attr_definitions::popBody(int bs_base)
{
	// Return everything that was pushed, as a nullptr-terminated pointer array.
	int bs_limit = band_stack.length();
	if (bs_base == bs_limit)
	{
		return no_bands;
	}
	else
	{
		int nb = bs_limit - bs_base;
		band **res = U_NEW(band *, add_size(nb, 1));
		CHECK_(no_bands);
		for (int i = 0; i < nb; i++)
		{
			band *b = (band *)band_stack.get(bs_base + i);
			res[i] = b;
		}
		band_stack.popTo(bs_base);
		return res;
	}
}

const char *unpacker::attr_definitions::parseLayout(const char *lp, band **&res, int curCble)
{
	const char *lp0 = lp;
	int bs_base = band_stack.length();
	bool top_level = (bs_base == 0);
	band *b;
	enum
	{
		can_be_signed = true
	}; // optional arg to parseIntLayout

	for (bool done = false; !done;)
	{
		switch (*lp++)
		{
		case 'B':
		case 'H':
		case 'I':
		case 'V': // unsigned_int
		case 'S': // signed_int
			--lp; // reparse
		case 'F':
			lp = parseIntLayout(lp, b, EK_INT);
			break;
		case 'P':
		{
			int le_bci = EK_BCI;
			if (*lp == 'O')
			{
				++lp;
				le_bci = EK_BCID;
			}
			assert(*lp != 'S'); // no PSH, etc.
			lp = parseIntLayout(lp, b, EK_INT);
			b->le_bci = le_bci;
			if (le_bci == EK_BCI)
				b->defc = coding::findBySpec(BCI5_spec);
			else
				b->defc = coding::findBySpec(BRANCH5_spec);
		}
		break;
		case 'O':
			lp = parseIntLayout(lp, b, EK_INT, can_be_signed);
			b->le_bci = EK_BCO;
			b->defc = coding::findBySpec(BRANCH5_spec);
			break;
		case 'N': // replication: 'N' uint '[' elem ... ']'
			lp = parseIntLayout(lp, b, EK_REPL);
			assert(*lp == '[');
			++lp;
			lp = parseLayout(lp, b->le_body, curCble);
			CHECK_(lp);
			break;
		case 'T': // union: 'T' any_int union_case* '(' ')' '[' body ']'
			lp = parseIntLayout(lp, b, EK_UN, can_be_signed);
			{
				int union_base = band_stack.length();
				for (;;)
				{ // for each case
					band &k_case = *U_NEW(band, 1);
					CHECK_(lp);
					band_stack.add(&k_case);
					k_case.le_kind = EK_CASE;
					k_case.bn = bands_made++;
					if (*lp++ != '(')
					{
						abort("bad union case");
						return "";
					}
					if (*lp++ != ')')
					{
						--lp; // reparse
						// Read some case values.  (Use band_stack for temp. storage.)
						int case_base = band_stack.length();
						for (;;)
						{
							int caseval = 0;
							lp = parseNumeral(lp, caseval);
							band_stack.add((void *)(size_t)caseval);
							if (*lp == '-')
							{
								// new in version 160, allow (1-5) for (1,2,3,4,5)
								if (u->majver < JAVA6_PACKAGE_MAJOR_VERSION)
								{
									abort("bad range in union case label (old archive format)");
									return "";
								}
								int caselimit = caseval;
								lp++;
								lp = parseNumeral(lp, caselimit);
								if (caseval >= caselimit ||
									(uint)(caselimit - caseval) > 0x10000)
								{
									// Note:  0x10000 is arbitrary implementation restriction.
									// We can remove it later if it's important to.
									abort("bad range in union case label");
									return "";
								}
								for (;;)
								{
									++caseval;
									band_stack.add((void *)(size_t)caseval);
									if (caseval == caselimit)
										break;
								}
							}
							if (*lp != ',')
								break;
							lp++;
						}
						if (*lp++ != ')')
						{
							abort("bad case label");
							return "";
						}
						// save away the case labels
						int ntags = band_stack.length() - case_base;
						int *tags = U_NEW(int, add_size(ntags, 1));
						CHECK_(lp);
						k_case.le_casetags = tags;
						*tags++ = ntags;
						for (int i = 0; i < ntags; i++)
						{
							*tags++ = ptrlowbits(band_stack.get(case_base + i));
						}
						band_stack.popTo(case_base);
						CHECK_(lp);
					}
					// Got le_casetags.  Now grab the body.
					assert(*lp == '[');
					++lp;
					lp = parseLayout(lp, k_case.le_body, curCble);
					CHECK_(lp);
					if (k_case.le_casetags == nullptr)
						break; // done
				}
				b->le_body = popBody(union_base);
			}
			break;
		case '(': // call: '(' -?NN* ')'
		{
			band &call = *U_NEW(band, 1);
			CHECK_(lp);
			band_stack.add(&call);
			call.le_kind = EK_CALL;
			call.bn = bands_made++;
			call.le_body = U_NEW(band *, 2); // fill in later
			int call_num = 0;
			lp = parseNumeral(lp, call_num);
			call.le_back = (call_num <= 0);
			call_num += curCble;	// numeral is self-relative offset
			call.le_len = call_num; // use le_len as scratch
			calls_to_link.add(&call);
			CHECK_(lp);
			if (*lp++ != ')')
			{
				abort("bad call label");
				return "";
			}
		}
		break;
		case 'K': // reference_type: constant_ref
		case 'R': // reference_type: schema_ref
		{
			int ixTag = CONSTANT_None;
			if (lp[-1] == 'K')
			{
				switch (*lp++)
				{
				case 'I':
					ixTag = CONSTANT_Integer;
					break;
				case 'J':
					ixTag = CONSTANT_Long;
					break;
				case 'F':
					ixTag = CONSTANT_Float;
					break;
				case 'D':
					ixTag = CONSTANT_Double;
					break;
				case 'S':
					ixTag = CONSTANT_String;
					break;
				case 'Q':
					ixTag = CONSTANT_Literal;
					break;
				}
			}
			else
			{
				switch (*lp++)
				{
				case 'C':
					ixTag = CONSTANT_Class;
					break;
				case 'S':
					ixTag = CONSTANT_Signature;
					break;
				case 'D':
					ixTag = CONSTANT_NameandType;
					break;
				case 'F':
					ixTag = CONSTANT_Fieldref;
					break;
				case 'M':
					ixTag = CONSTANT_Methodref;
					break;
				case 'I':
					ixTag = CONSTANT_InterfaceMethodref;
					break;
				case 'U':
					ixTag = CONSTANT_Utf8;
					break; // utf8_ref
				case 'Q':
					ixTag = CONSTANT_All;
					break; // untyped_ref
				}
			}
			if (ixTag == CONSTANT_None)
			{
				abort("bad reference layout");
				break;
			}
			bool nullOK = false;
			if (*lp == 'N')
			{
				nullOK = true;
				lp++;
			}
			lp = parseIntLayout(lp, b, EK_REF);
			b->defc = coding::findBySpec(UNSIGNED5_spec);
			b->initRef(ixTag, nullOK);
		}
		break;
		case '[':
		{
			// [callable1][callable2]...
			if (!top_level)
			{
				abort("bad nested callable");
				break;
			}
			curCble += 1;
			band &cble = *U_NEW(band, 1);
			CHECK_(lp);
			band_stack.add(&cble);
			cble.le_kind = EK_CBLE;
			cble.bn = bands_made++;
			lp = parseLayout(lp, cble.le_body, curCble);
		}
		break;
		case ']':
			// Hit a closing brace.  This ends whatever body we were in.
			done = true;
			break;
		case '\0':
			// Hit a nullptr.  Also ends the (top-level) body.
			--lp; // back up, so caller can see the nullptr also
			done = true;
			break;
		default:
			abort("bad layout");
			break;
		}
		CHECK_(lp);
	}

	// Return the accumulated bands:
	res = popBody(bs_base);
	return lp;
}

void unpacker::read_attr_defs()
{
	int i;

	// Tell each AD which attrc it is and where its fixed flags are:
	attr_defs[ATTR_CONTEXT_CLASS].attrc = ATTR_CONTEXT_CLASS;
	attr_defs[ATTR_CONTEXT_CLASS].xxx_flags_hi_bn = e_class_flags_hi;
	attr_defs[ATTR_CONTEXT_FIELD].attrc = ATTR_CONTEXT_FIELD;
	attr_defs[ATTR_CONTEXT_FIELD].xxx_flags_hi_bn = e_field_flags_hi;
	attr_defs[ATTR_CONTEXT_METHOD].attrc = ATTR_CONTEXT_METHOD;
	attr_defs[ATTR_CONTEXT_METHOD].xxx_flags_hi_bn = e_method_flags_hi;
	attr_defs[ATTR_CONTEXT_CODE].attrc = ATTR_CONTEXT_CODE;
	attr_defs[ATTR_CONTEXT_CODE].xxx_flags_hi_bn = e_code_flags_hi;

	// Decide whether bands for the optional high flag words are present.
	attr_defs[ATTR_CONTEXT_CLASS]
		.setHaveLongFlags((archive_options & AO_HAVE_CLASS_FLAGS_HI) != 0);
	attr_defs[ATTR_CONTEXT_FIELD]
		.setHaveLongFlags((archive_options & AO_HAVE_FIELD_FLAGS_HI) != 0);
	attr_defs[ATTR_CONTEXT_METHOD]
		.setHaveLongFlags((archive_options & AO_HAVE_METHOD_FLAGS_HI) != 0);
	attr_defs[ATTR_CONTEXT_CODE]
		.setHaveLongFlags((archive_options & AO_HAVE_CODE_FLAGS_HI) != 0);

	// Set up built-in attrs.
	// (The simple ones are hard-coded.  The metadata layouts are not.)
	const char *md_layout = (
// parameter annotations:
#define MDL0 "[NB[(1)]]"
		MDL0
// annotations:
#define MDL1                                                                                   \
	"[NH[(1)]]"                                                                                \
	"[RSHNH[RUH(1)]]"
			MDL1
		// member_value:
		"[TB"
		"(66,67,73,83,90)[KIH]"
		"(68)[KDH]"
		"(70)[KFH]"
		"(74)[KJH]"
		"(99)[RSH]"
		"(101)[RSHRUH]"
		"(115)[RUH]"
		"(91)[NH[(0)]]"
		"(64)["
		// nested annotation:
		"RSH"
		"NH[RUH(0)]"
		"]"
		"()[]"
		"]");

	const char *md_layout_P = md_layout;
	const char *md_layout_A = md_layout + strlen(MDL0);
	const char *md_layout_V = md_layout + strlen(MDL0 MDL1);
	assert(0 == strncmp(&md_layout_A[-3], ")]][", 4));
	assert(0 == strncmp(&md_layout_V[-3], ")]][", 4));

	for (i = 0; i < ATTR_CONTEXT_LIMIT; i++)
	{
		attr_definitions &ad = attr_defs[i];
		ad.defineLayout(X_ATTR_RuntimeVisibleAnnotations, "RuntimeVisibleAnnotations",
						md_layout_A);
		ad.defineLayout(X_ATTR_RuntimeInvisibleAnnotations, "RuntimeInvisibleAnnotations",
						md_layout_A);
		if (i != ATTR_CONTEXT_METHOD)
			continue;
		ad.defineLayout(METHOD_ATTR_RuntimeVisibleParameterAnnotations,
						"RuntimeVisibleParameterAnnotations", md_layout_P);
		ad.defineLayout(METHOD_ATTR_RuntimeInvisibleParameterAnnotations,
						"RuntimeInvisibleParameterAnnotations", md_layout_P);
		ad.defineLayout(METHOD_ATTR_AnnotationDefault, "AnnotationDefault", md_layout_V);
	}

	attr_definition_headers.readData(attr_definition_count);
	attr_definition_name.readData(attr_definition_count);
	attr_definition_layout.readData(attr_definition_count);

	CHECK;

// Initialize correct predef bits, to distinguish predefs from new defs.
#define ORBIT(n, s) | ((julong)1 << n)
	attr_defs[ATTR_CONTEXT_CLASS].predef = (0 X_ATTR_DO(ORBIT) CLASS_ATTR_DO(ORBIT));
	attr_defs[ATTR_CONTEXT_FIELD].predef = (0 X_ATTR_DO(ORBIT) FIELD_ATTR_DO(ORBIT));
	attr_defs[ATTR_CONTEXT_METHOD].predef = (0 X_ATTR_DO(ORBIT) METHOD_ATTR_DO(ORBIT));
	attr_defs[ATTR_CONTEXT_CODE].predef = (0 O_ATTR_DO(ORBIT) CODE_ATTR_DO(ORBIT));
#undef ORBIT
	// Clear out the redef bits, folding them back into predef.
	for (i = 0; i < ATTR_CONTEXT_LIMIT; i++)
	{
		attr_defs[i].predef |= attr_defs[i].redef;
		attr_defs[i].redef = 0;
	}

	// Now read the transmitted locally defined attrs.
	// This will set redef bits again.
	for (i = 0; i < attr_definition_count; i++)
	{
		int header = attr_definition_headers.getByte();
		int attrc = ADH_BYTE_CONTEXT(header);
		int idx = ADH_BYTE_INDEX(header);
		entry *name = attr_definition_name.getRef();
		entry *layout = attr_definition_layout.getRef();
		CHECK;
		attr_defs[attrc].defineLayout(idx, name, layout->value.b.strval());
	}
}

#define NO_ENTRY_YET ((entry *)-1)

static bool isDigitString(bytes &x, int beg, int end)
{
	if (beg == end)
		return false; // nullptr string
	byte *xptr = x.ptr;
	for (int i = beg; i < end; i++)
	{
		char ch = xptr[i];
		if (!(ch >= '0' && ch <= '9'))
			return false;
	}
	return true;
}

enum
{ // constants for parsing class names
	SLASH_MIN = '.',
	SLASH_MAX = '/',
	DOLLAR_MIN = 0,
	DOLLAR_MAX = '-'};

static int lastIndexOf(int chmin, int chmax, bytes &x, int pos)
{
	byte *ptr = x.ptr;
	for (byte *cp = ptr + pos; --cp >= ptr;)
	{
		assert(x.inBounds(cp));
		if (*cp >= chmin && *cp <= chmax)
			return (int)(cp - ptr);
	}
	return -1;
}

inner_class *cpool::getIC(entry *inner)
{
	if (inner == nullptr)
		return nullptr;
	assert(inner->tag == CONSTANT_Class);
	if (inner->inord == NO_INORD)
		return nullptr;
	inner_class *ic = ic_index[inner->inord];
	assert(ic == nullptr || ic->inner == inner);
	return ic;
}

inner_class *cpool::getFirstChildIC(entry *outer)
{
	if (outer == nullptr)
		return nullptr;
	assert(outer->tag == CONSTANT_Class);
	if (outer->inord == NO_INORD)
		return nullptr;
	inner_class *ic = ic_child_index[outer->inord];
	assert(ic == nullptr || ic->outer == outer);
	return ic;
}

inner_class *cpool::getNextChildIC(inner_class *child)
{
	inner_class *ic = child->next_sibling;
	assert(ic == nullptr || ic->outer == child->outer);
	return ic;
}

void unpacker::read_ics()
{
	int i;
	int index_size = cp.tag_count[CONSTANT_Class];
	inner_class **ic_index = U_NEW(inner_class *, index_size);
	inner_class **ic_child_index = U_NEW(inner_class *, index_size);
	cp.ic_index = ic_index;
	cp.ic_child_index = ic_child_index;
	ics = U_NEW(inner_class, ic_count);
	ic_this_class.readData(ic_count);
	ic_flags.readData(ic_count);
	CHECK;
	// Scan flags to get count of long-form bands.
	int long_forms = 0;
	for (i = 0; i < ic_count; i++)
	{
		int flags = ic_flags.getInt(); // may be long form!
		if ((flags & ACC_IC_LONG_FORM) != 0)
		{
			long_forms += 1;
			ics[i].name = NO_ENTRY_YET;
		}
		flags &= ~ACC_IC_LONG_FORM;
		entry *inner = ic_this_class.getRef();
		CHECK;
		uint inord = inner->inord;
		assert(inord < (uint)cp.tag_count[CONSTANT_Class]);
		if (ic_index[inord] != nullptr)
		{
			abort("identical inner class");
			break;
		}
		ic_index[inord] = &ics[i];
		ics[i].inner = inner;
		ics[i].flags = flags;
		assert(cp.getIC(inner) == &ics[i]);
	}
	CHECK;
	// ic_this_class.done();
	// ic_flags.done();
	ic_outer_class.readData(long_forms);
	ic_name.readData(long_forms);
	for (i = 0; i < ic_count; i++)
	{
		if (ics[i].name == NO_ENTRY_YET)
		{
			// Long form.
			ics[i].outer = ic_outer_class.getRefN();
			ics[i].name = ic_name.getRefN();
		}
		else
		{
			// Fill in outer and name based on inner.
			bytes &n = ics[i].inner->value.b;
			bytes pkgOuter;
			bytes number;
			bytes name;
			// Parse n into pkgOuter and name (and number).
			int dollar1, dollar2; // pointers to $ in the pattern
			// parse n = (<pkg>/)*<outer>($<number>)?($<name>)?
			int nlen = (int)n.len;
			int pkglen = lastIndexOf(SLASH_MIN, SLASH_MAX, n, nlen) + 1;
			dollar2 = lastIndexOf(DOLLAR_MIN, DOLLAR_MAX, n, nlen);
			if (dollar2 < 0)
			{
				abort();
				return;
			}
			assert(dollar2 >= pkglen);
			if (isDigitString(n, dollar2 + 1, nlen))
			{
				// n = (<pkg>/)*<outer>$<number>
				number = n.slice(dollar2 + 1, nlen);
				name.set(nullptr, 0);
				dollar1 = dollar2;
			}
			else if (pkglen < (dollar1 = lastIndexOf(DOLLAR_MIN, DOLLAR_MAX, n, dollar2 - 1)) &&
					 isDigitString(n, dollar1 + 1, dollar2))
			{
				// n = (<pkg>/)*<outer>$<number>$<name>
				number = n.slice(dollar1 + 1, dollar2);
				name = n.slice(dollar2 + 1, nlen);
			}
			else
			{
				// n = (<pkg>/)*<outer>$<name>
				dollar1 = dollar2;
				number.set(nullptr, 0);
				name = n.slice(dollar2 + 1, nlen);
			}
			if (number.ptr == nullptr)
				pkgOuter = n.slice(0, dollar1);
			else
				pkgOuter.set(nullptr, 0);

			if (pkgOuter.ptr != nullptr)
				ics[i].outer = cp.ensureClass(pkgOuter);

			if (name.ptr != nullptr)
				ics[i].name = cp.ensureUtf8(name);
		}

		// update child/sibling list
		if (ics[i].outer != nullptr)
		{
			uint outord = ics[i].outer->inord;
			if (outord != NO_INORD)
			{
				assert(outord < (uint)cp.tag_count[CONSTANT_Class]);
				ics[i].next_sibling = ic_child_index[outord];
				ic_child_index[outord] = &ics[i];
			}
		}
	}
	// ic_outer_class.done();
	// ic_name.done();
}

void unpacker::read_classes()
{
	class_this.readData(class_count);
	class_super.readData(class_count);
	class_interface_count.readData(class_count);
	class_interface.readData(class_interface_count.getIntTotal());

	CHECK;

#if 0
  int i;
  // Make a little mark on super-classes.
  for (i = 0; i < class_count; i++) {
    entry* e = class_super.getRefN();
    if (e != nullptr)  e->bits |= entry::EB_SUPER;
  }
  class_super.rewind();
#endif

	// Members.
	class_field_count.readData(class_count);
	class_method_count.readData(class_count);

	CHECK;

	int field_count = class_field_count.getIntTotal();
	int method_count = class_method_count.getIntTotal();

	field_descr.readData(field_count);
	read_attrs(ATTR_CONTEXT_FIELD, field_count);
	CHECK;

	method_descr.readData(method_count);
	read_attrs(ATTR_CONTEXT_METHOD, method_count);

	CHECK;

	read_attrs(ATTR_CONTEXT_CLASS, class_count);
	CHECK;

	read_code_headers();
}

int unpacker::attr_definitions::predefCount(uint idx)
{
	return isPredefined(idx) ? flag_count[idx] : 0;
}

void unpacker::read_attrs(int attrc, int obj_count)
{
	attr_definitions &ad = attr_defs[attrc];
	assert(ad.attrc == attrc);

	int i, idx, count;

	CHECK;

	bool haveLongFlags = ad.haveLongFlags();

	band &xxx_flags_hi = ad.xxx_flags_hi();
	assert(endsWith(xxx_flags_hi.name, "_flags_hi"));
	if (haveLongFlags)
		xxx_flags_hi.readData(obj_count);
	CHECK;

	band &xxx_flags_lo = ad.xxx_flags_lo();
	assert(endsWith(xxx_flags_lo.name, "_flags_lo"));
	xxx_flags_lo.readData(obj_count);
	CHECK;

	// pre-scan flags, counting occurrences of each index bit
	julong indexMask = ad.flagIndexMask(); // which flag bits are index bits?
	for (i = 0; i < obj_count; i++)
	{
		julong indexBits = xxx_flags_hi.getLong(xxx_flags_lo, haveLongFlags);
		if ((indexBits & ~indexMask) > (ushort) - 1)
		{
			abort("undefined attribute flag bit");
			return;
		}
		indexBits &= indexMask; // ignore classfile flag bits
		for (idx = 0; indexBits != 0; idx++, indexBits >>= 1)
		{
			ad.flag_count[idx] += (int)(indexBits & 1);
		}
	}
	// we'll scan these again later for output:
	xxx_flags_lo.rewind();
	xxx_flags_hi.rewind();

	band &xxx_attr_count = ad.xxx_attr_count();
	assert(endsWith(xxx_attr_count.name, "_attr_count"));
	// There is one count element for each 1<<16 bit set in flags:
	xxx_attr_count.readData(ad.predefCount(X_ATTR_OVERFLOW));
	CHECK;

	band &xxx_attr_indexes = ad.xxx_attr_indexes();
	assert(endsWith(xxx_attr_indexes.name, "_attr_indexes"));
	int overflowIndexCount = xxx_attr_count.getIntTotal();
	xxx_attr_indexes.readData(overflowIndexCount);
	CHECK;
	// pre-scan attr indexes, counting occurrences of each value
	for (i = 0; i < overflowIndexCount; i++)
	{
		idx = xxx_attr_indexes.getInt();
		if (!ad.isIndex(idx))
		{
			abort("attribute index out of bounds");
			return;
		}
		ad.getCount(idx) += 1;
	}
	xxx_attr_indexes.rewind(); // we'll scan it again later for output

	// We will need a backward call count for each used backward callable.
	int backwardCounts = 0;
	for (idx = 0; idx < ad.layouts.length(); idx++)
	{
		layout_definition *lo = ad.getLayout(idx);
		if (lo != nullptr && ad.getCount(idx) != 0)
		{
			// Build the bands lazily, only when they are used.
			band **bands = ad.buildBands(lo);
			CHECK;
			if (lo->hasCallables())
			{
				for (i = 0; bands[i] != nullptr; i++)
				{
					if (bands[i]->le_back)
					{
						assert(bands[i]->le_kind == EK_CBLE);
						backwardCounts += 1;
					}
				}
			}
		}
	}
	ad.xxx_attr_calls().readData(backwardCounts);
	CHECK;

	// Read built-in bands.
	// Mostly, these are hand-coded equivalents to readBandData().
	switch (attrc)
	{
	case ATTR_CONTEXT_CLASS:

		count = ad.predefCount(CLASS_ATTR_SourceFile);
		class_SourceFile_RUN.readData(count);
		CHECK;

		count = ad.predefCount(CLASS_ATTR_EnclosingMethod);
		class_EnclosingMethod_RC.readData(count);
		class_EnclosingMethod_RDN.readData(count);
		CHECK;

		count = ad.predefCount(X_ATTR_Signature);
		class_Signature_RS.readData(count);
		CHECK;

		ad.readBandData(X_ATTR_RuntimeVisibleAnnotations);
		ad.readBandData(X_ATTR_RuntimeInvisibleAnnotations);

		count = ad.predefCount(CLASS_ATTR_InnerClasses);
		class_InnerClasses_N.readData(count);
		CHECK;

		count = class_InnerClasses_N.getIntTotal();
		class_InnerClasses_RC.readData(count);
		class_InnerClasses_F.readData(count);
		CHECK;
		// Drop remaining columns wherever flags are zero:
		count -= class_InnerClasses_F.getIntCount(0);
		class_InnerClasses_outer_RCN.readData(count);
		class_InnerClasses_name_RUN.readData(count);
		CHECK;

		count = ad.predefCount(CLASS_ATTR_ClassFile_version);
		class_ClassFile_version_minor_H.readData(count);
		class_ClassFile_version_major_H.readData(count);
		CHECK;
		break;

	case ATTR_CONTEXT_FIELD:

		count = ad.predefCount(FIELD_ATTR_ConstantValue);
		field_ConstantValue_KQ.readData(count);
		CHECK;

		count = ad.predefCount(X_ATTR_Signature);
		field_Signature_RS.readData(count);
		CHECK;

		ad.readBandData(X_ATTR_RuntimeVisibleAnnotations);
		ad.readBandData(X_ATTR_RuntimeInvisibleAnnotations);
		CHECK;
		break;

	case ATTR_CONTEXT_METHOD:

		code_count = ad.predefCount(METHOD_ATTR_Code);
		// Code attrs are handled very specially below...

		count = ad.predefCount(METHOD_ATTR_Exceptions);
		method_Exceptions_N.readData(count);
		count = method_Exceptions_N.getIntTotal();
		method_Exceptions_RC.readData(count);
		CHECK;

		count = ad.predefCount(X_ATTR_Signature);
		method_Signature_RS.readData(count);
		CHECK;

		ad.readBandData(X_ATTR_RuntimeVisibleAnnotations);
		ad.readBandData(X_ATTR_RuntimeInvisibleAnnotations);
		ad.readBandData(METHOD_ATTR_RuntimeVisibleParameterAnnotations);
		ad.readBandData(METHOD_ATTR_RuntimeInvisibleParameterAnnotations);
		ad.readBandData(METHOD_ATTR_AnnotationDefault);
		CHECK;
		break;

	case ATTR_CONTEXT_CODE:
		// (keep this code aligned with its brother in unpacker::write_attrs)
		count = ad.predefCount(CODE_ATTR_StackMapTable);
		// disable this feature in old archives!
		if (count != 0 && majver < JAVA6_PACKAGE_MAJOR_VERSION)
		{
			abort("undefined StackMapTable attribute (old archive format)");
			return;
		}
		code_StackMapTable_N.readData(count);
		CHECK;
		count = code_StackMapTable_N.getIntTotal();
		code_StackMapTable_frame_T.readData(count);
		CHECK;
		// the rest of it depends in a complicated way on frame tags
		{
			int fat_frame_count = 0;
			int offset_count = 0;
			int type_count = 0;
			for (int k = 0; k < count; k++)
			{
				int tag = code_StackMapTable_frame_T.getByte();
				if (tag <= 127)
				{
					// (64-127)  [(2)]
					if (tag >= 64)
						type_count++;
				}
				else if (tag <= 251)
				{
					// (247)     [(1)(2)]
					// (248-251) [(1)]
					if (tag >= 247)
						offset_count++;
					if (tag == 247)
						type_count++;
				}
				else if (tag <= 254)
				{
					// (252)     [(1)(2)]
					// (253)     [(1)(2)(2)]
					// (254)     [(1)(2)(2)(2)]
					offset_count++;
					type_count += (tag - 251);
				}
				else
				{
					// (255)     [(1)NH[(2)]NH[(2)]]
					fat_frame_count++;
				}
			}

			// done pre-scanning frame tags:
			code_StackMapTable_frame_T.rewind();

			// deal completely with fat frames:
			offset_count += fat_frame_count;
			code_StackMapTable_local_N.readData(fat_frame_count);
			CHECK;
			type_count += code_StackMapTable_local_N.getIntTotal();
			code_StackMapTable_stack_N.readData(fat_frame_count);
			type_count += code_StackMapTable_stack_N.getIntTotal();
			CHECK;
			// read the rest:
			code_StackMapTable_offset.readData(offset_count);
			code_StackMapTable_T.readData(type_count);
			CHECK;
			// (7) [RCH]
			count = code_StackMapTable_T.getIntCount(7);
			code_StackMapTable_RC.readData(count);
			CHECK;
			// (8) [PH]
			count = code_StackMapTable_T.getIntCount(8);
			code_StackMapTable_P.readData(count);
			CHECK;
		}

		count = ad.predefCount(CODE_ATTR_LineNumberTable);
		code_LineNumberTable_N.readData(count);
		count = code_LineNumberTable_N.getIntTotal();
		code_LineNumberTable_bci_P.readData(count);
		code_LineNumberTable_line.readData(count);

		count = ad.predefCount(CODE_ATTR_LocalVariableTable);
		code_LocalVariableTable_N.readData(count);
		count = code_LocalVariableTable_N.getIntTotal();
		code_LocalVariableTable_bci_P.readData(count);
		code_LocalVariableTable_span_O.readData(count);
		code_LocalVariableTable_name_RU.readData(count);
		code_LocalVariableTable_type_RS.readData(count);
		code_LocalVariableTable_slot.readData(count);

		count = ad.predefCount(CODE_ATTR_LocalVariableTypeTable);
		code_LocalVariableTypeTable_N.readData(count);
		count = code_LocalVariableTypeTable_N.getIntTotal();
		code_LocalVariableTypeTable_bci_P.readData(count);
		code_LocalVariableTypeTable_span_O.readData(count);
		code_LocalVariableTypeTable_name_RU.readData(count);
		code_LocalVariableTypeTable_type_RS.readData(count);
		code_LocalVariableTypeTable_slot.readData(count);
		break;
	}

	// Read compressor-defined bands.
	for (idx = 0; idx < ad.layouts.length(); idx++)
	{
		if (ad.getLayout(idx) == nullptr)
			continue; // none at this fixed index <32
		if (idx < (int)ad.flag_limit && ad.isPredefined(idx))
			continue; // already handled
		if (ad.getCount(idx) == 0)
			continue; // no attributes of this type (then why transmit layouts?)
		ad.readBandData(idx);
	}
}

void unpacker::attr_definitions::readBandData(int idx)
{
	int j;
	uint count = getCount(idx);
	if (count == 0)
		return;
	layout_definition *lo = getLayout(idx);
	bool hasCallables = lo->hasCallables();
	band **bands = lo->bands();
	if (!hasCallables)
	{
		// Read through the rest of the bands in a regular way.
		readBandData(bands, count);
	}
	else
	{
		// Deal with the callables.
		// First set up the forward entry count for each callable.
		// This is stored on band::length of the callable.
		bands[0]->expectMoreLength(count);
		for (j = 0; bands[j] != nullptr; j++)
		{
			band &j_cble = *bands[j];
			assert(j_cble.le_kind == EK_CBLE);
			if (j_cble.le_back)
			{
				// Add in the predicted effects of backward calls, too.
				int back_calls = xxx_attr_calls().getInt();
				j_cble.expectMoreLength(back_calls);
				// In a moment, more forward calls may increment j_cble.length.
			}
		}
		// Now consult whichever callables have non-zero entry counts.
		readBandData(bands, (uint) - 1);
	}
}

// Recursive helper to the previous function:
void unpacker::attr_definitions::readBandData(band **body, uint count)
{
	int j, k;
	for (j = 0; body[j] != nullptr; j++)
	{
		band &b = *body[j];
		if (b.defc != nullptr)
		{
			// It has data, so read it.
			b.readData(count);
		}
		switch (b.le_kind)
		{
		case EK_REPL:
		{
			int reps = b.getIntTotal();
			readBandData(b.le_body, reps);
		}
		break;
		case EK_UN:
		{
			int remaining = count;
			for (k = 0; b.le_body[k] != nullptr; k++)
			{
				band &k_case = *b.le_body[k];
				int k_count = 0;
				if (k_case.le_casetags == nullptr)
				{
					k_count = remaining; // last (empty) case
				}
				else
				{
					int *tags = k_case.le_casetags;
					int ntags = *tags++; // 1st element is length (why not?)
					while (ntags-- > 0)
					{
						int tag = *tags++;
						k_count += b.getIntCount(tag);
					}
				}
				readBandData(k_case.le_body, k_count);
				remaining -= k_count;
			}
			assert(remaining == 0);
		}
		break;
		case EK_CALL:
			// Push the count forward, if it is not a backward call.
			if (!b.le_back)
			{
				band &cble = *b.le_body[0];
				assert(cble.le_kind == EK_CBLE);
				cble.expectMoreLength(count);
			}
			break;
		case EK_CBLE:
			assert((int)count == -1); // incoming count is meaningless
			k = b.length;
			assert(k >= 0);
			// This is intended and required for non production mode.
			assert((b.length = -1)); // make it unable to accept more calls now.
			readBandData(b.le_body, k);
			break;
		}
	}
}

static inline band **findMatchingCase(int matchTag, band **cases)
{
	for (int k = 0; cases[k] != nullptr; k++)
	{
		band &k_case = *cases[k];
		if (k_case.le_casetags != nullptr)
		{
			// If it has tags, it must match a tag.
			int *tags = k_case.le_casetags;
			int ntags = *tags++; // 1st element is length
			for (; ntags > 0; ntags--)
			{
				int tag = *tags++;
				if (tag == matchTag)
					break;
			}
			if (ntags == 0)
				continue; // does not match
		}
		return k_case.le_body;
	}
	return nullptr;
}

// write attribute band data:
void unpacker::putlayout(band **body)
{
	int i;
	int prevBII = -1;
	int prevBCI = -1;
	if (body == NULL)
	{
		abort("putlayout: unexpected NULL for body");
		return;
	}
	for (i = 0; body[i] != nullptr; i++)
	{
		band &b = *body[i];
		byte le_kind = b.le_kind;

		// Handle scalar part, if any.
		int x = 0;
		entry *e = nullptr;
		if (b.defc != nullptr)
		{
			// It has data, so unparse an element.
			if (b.ixTag != CONSTANT_None)
			{
				assert(le_kind == EK_REF);
				if (b.ixTag == CONSTANT_Literal)
					e = b.getRefUsing(cp.getKQIndex());
				else
					e = b.getRefN();
				switch (b.le_len)
				{
				case 0:
					break;
				case 1:
					putu1ref(e);
					break;
				case 2:
					putref(e);
					break;
				case 4:
					putu2(0);
					putref(e);
					break;
				default:
					assert(false);
				}
			}
			else
			{
				assert(le_kind == EK_INT || le_kind == EK_REPL || le_kind == EK_UN);
				x = b.getInt();

				assert(!b.le_bci || prevBCI == (int)to_bci(prevBII));
				switch (b.le_bci)
				{
				case EK_BCI: // PH:  transmit R(bci), store bci
					x = to_bci(prevBII = x);
					prevBCI = x;
					break;
				case EK_BCID: // POH: transmit D(R(bci)), store bci
					x = to_bci(prevBII += x);
					prevBCI = x;
					break;
				case EK_BCO: // OH:  transmit D(R(bci)), store D(bci)
					x = to_bci(prevBII += x) - prevBCI;
					prevBCI += x;
					break;
				}
				assert(!b.le_bci || prevBCI == (int)to_bci(prevBII));

				switch (b.le_len)
				{
				case 0:
					break;
				case 1:
					putu1(x);
					break;
				case 2:
					putu2(x);
					break;
				case 4:
					putu4(x);
					break;
				default:
					assert(false);
				}
			}
		}

		// Handle subparts, if any.
		switch (le_kind)
		{
		case EK_REPL:
			// x is the repeat count
			while (x-- > 0)
			{
				putlayout(b.le_body);
			}
			break;
		case EK_UN:
			// x is the tag
			putlayout(findMatchingCase(x, b.le_body));
			break;
		case EK_CALL:
		{
			band &cble = *b.le_body[0];
			assert(cble.le_kind == EK_CBLE);
			assert(cble.le_len == b.le_len);
			putlayout(cble.le_body);
		}
		break;

		case EK_CBLE:
		case EK_CASE:
			assert(false); // should not reach here
		}
	}
}

void unpacker::read_files()
{
	file_name.readData(file_count);
	if ((archive_options & AO_HAVE_FILE_SIZE_HI) != 0)
		file_size_hi.readData(file_count);
	file_size_lo.readData(file_count);
	if ((archive_options & AO_HAVE_FILE_MODTIME) != 0)
		file_modtime.readData(file_count);
	int allFiles = file_count + class_count;
	if ((archive_options & AO_HAVE_FILE_OPTIONS) != 0)
	{
		file_options.readData(file_count);
		// FO_IS_CLASS_STUB might be set, causing overlap between classes and files
		for (int i = 0; i < file_count; i++)
		{
			if ((file_options.getInt() & FO_IS_CLASS_STUB) != 0)
			{
				allFiles -= 1; // this one counts as both class and file
			}
		}
		file_options.rewind();
	}
	assert((default_file_options & FO_IS_CLASS_STUB) == 0);
	files_remaining = allFiles;
}

void unpacker::get_code_header(int &max_stack, int &max_na_locals, int &handler_count,
							   int &cflags)
{
	int sc = code_headers.getByte();
	if (sc == 0)
	{
		max_stack = max_na_locals = handler_count = cflags = -1;
		return;
	}
	// Short code header is the usual case:
	int nh;
	int mod;
	if (sc < 1 + 12 * 12)
	{
		sc -= 1;
		nh = 0;
		mod = 12;
	}
	else if (sc < 1 + 12 * 12 + 8 * 8)
	{
		sc -= 1 + 12 * 12;
		nh = 1;
		mod = 8;
	}
	else
	{
		assert(sc < 1 + 12 * 12 + 8 * 8 + 7 * 7);
		sc -= 1 + 12 * 12 + 8 * 8;
		nh = 2;
		mod = 7;
	}
	max_stack = sc % mod;
	max_na_locals = sc / mod; // caller must add static, siglen
	handler_count = nh;
	if ((archive_options & AO_HAVE_ALL_CODE_FLAGS) != 0)
		cflags = -1;
	else
		cflags = 0; // this one has no attributes
}

// Cf. PackageReader.readCodeHeaders
void unpacker::read_code_headers()
{
	code_headers.readData(code_count);
	CHECK;
	int totalHandlerCount = 0;
	int totalFlagsCount = 0;
	for (int i = 0; i < code_count; i++)
	{
		int max_stack, max_locals, handler_count, cflags;
		get_code_header(max_stack, max_locals, handler_count, cflags);
		if (max_stack < 0)
			code_max_stack.expectMoreLength(1);
		if (max_locals < 0)
			code_max_na_locals.expectMoreLength(1);
		if (handler_count < 0)
			code_handler_count.expectMoreLength(1);
		else
			totalHandlerCount += handler_count;
		if (cflags < 0)
			totalFlagsCount += 1;
	}
	code_headers.rewind(); // replay later during writing

	code_max_stack.readData();
	code_max_na_locals.readData();
	code_handler_count.readData();
	totalHandlerCount += code_handler_count.getIntTotal();
	CHECK;

	// Read handler specifications.
	// Cf. PackageReader.readCodeHandlers.
	code_handler_start_P.readData(totalHandlerCount);
	code_handler_end_PO.readData(totalHandlerCount);
	code_handler_catch_PO.readData(totalHandlerCount);
	code_handler_class_RCN.readData(totalHandlerCount);
	CHECK;

	read_attrs(ATTR_CONTEXT_CODE, totalFlagsCount);
	CHECK;
}

static inline bool is_in_range(uint n, uint min, uint max)
{
	return n - min <= max - min; // unsigned arithmetic!
}
static inline bool is_field_op(int bc)
{
	return is_in_range(bc, bc_getstatic, bc_putfield);
}
static inline bool is_invoke_init_op(int bc)
{
	return is_in_range(bc, _invokeinit_op, _invokeinit_limit - 1);
}
static inline bool is_self_linker_op(int bc)
{
	return is_in_range(bc, _self_linker_op, _self_linker_limit - 1);
}
static bool is_branch_op(int bc)
{
	return is_in_range(bc, bc_ifeq, bc_jsr) || is_in_range(bc, bc_ifnull, bc_jsr_w);
}
static bool is_local_slot_op(int bc)
{
	return is_in_range(bc, bc_iload, bc_aload) || is_in_range(bc, bc_istore, bc_astore) ||
		   bc == bc_iinc || bc == bc_ret;
}
band *unpacker::ref_band_for_op(int bc)
{
	switch (bc)
	{
	case bc_ildc:
	case bc_ildc_w:
		return &bc_intref;
	case bc_fldc:
	case bc_fldc_w:
		return &bc_floatref;
	case bc_lldc2_w:
		return &bc_longref;
	case bc_dldc2_w:
		return &bc_doubleref;
	case bc_aldc:
	case bc_aldc_w:
		return &bc_stringref;
	case bc_cldc:
	case bc_cldc_w:
		return &bc_classref;

	case bc_getstatic:
	case bc_putstatic:
	case bc_getfield:
	case bc_putfield:
		return &bc_fieldref;

	case bc_invokevirtual:
	case bc_invokespecial:
	case bc_invokestatic:
		return &bc_methodref;
	case bc_invokeinterface:
		return &bc_imethodref;

	case bc_new:
	case bc_anewarray:
	case bc_checkcast:
	case bc_instanceof:
	case bc_multianewarray:
		return &bc_classref;
	}
	return nullptr;
}

band *unpacker::ref_band_for_self_op(int bc, bool &isAloadVar, int &origBCVar)
{
	if (!is_self_linker_op(bc))
		return nullptr;
	int idx = (bc - _self_linker_op);
	bool isSuper = (idx >= _self_linker_super_flag);
	if (isSuper)
		idx -= _self_linker_super_flag;
	bool isAload = (idx >= _self_linker_aload_flag);
	if (isAload)
		idx -= _self_linker_aload_flag;
	int origBC = _first_linker_op + idx;
	bool isField = is_field_op(origBC);
	isAloadVar = isAload;
	origBCVar = _first_linker_op + idx;
	if (!isSuper)
		return isField ? &bc_thisfield : &bc_thismethod;
	else
		return isField ? &bc_superfield : &bc_supermethod;
}

// Cf. PackageReader.readByteCodes
inline // called exactly once => inline
	void
unpacker::read_bcs()
{
	// read from bc_codes and bc_case_count
	fillbytes all_switch_ops;
	all_switch_ops.init();
	CHECK;

	// Read directly from rp/rplimit.
	// Do this later:  bc_codes.readData(...)
	byte *rp0 = rp;

	band *bc_which;
	byte *opptr = rp;
	byte *oplimit = rplimit;

	bool isAload; // passed by ref and then ignored
	int junkBC;   // passed by ref and then ignored
	for (int k = 0; k < code_count; k++)
	{
		// Scan one method:
		for (;;)
		{
			if (opptr + 2 > oplimit)
			{
				rp = opptr;
				ensure_input(2);
				oplimit = rplimit;
				rp = rp0; // back up
			}
			if (opptr == oplimit)
			{
				abort();
				break;
			}
			int bc = *opptr++ & 0xFF;
			bool isWide = false;
			if (bc == bc_wide)
			{
				if (opptr == oplimit)
				{
					abort();
					break;
				}
				bc = *opptr++ & 0xFF;
				isWide = true;
			}
			// Adjust expectations of various band sizes.
			switch (bc)
			{
			case bc_tableswitch:
			case bc_lookupswitch:
				all_switch_ops.addByte(bc);
				break;
			case bc_iinc:
				bc_local.expectMoreLength(1);
				bc_which = isWide ? &bc_short : &bc_byte;
				bc_which->expectMoreLength(1);
				break;
			case bc_sipush:
				bc_short.expectMoreLength(1);
				break;
			case bc_bipush:
				bc_byte.expectMoreLength(1);
				break;
			case bc_newarray:
				bc_byte.expectMoreLength(1);
				break;
			case bc_multianewarray:
				assert(ref_band_for_op(bc) == &bc_classref);
				bc_classref.expectMoreLength(1);
				bc_byte.expectMoreLength(1);
				break;
			case bc_ref_escape:
				bc_escrefsize.expectMoreLength(1);
				bc_escref.expectMoreLength(1);
				break;
			case bc_byte_escape:
				bc_escsize.expectMoreLength(1);
				// bc_escbyte will have to be counted too
				break;
			default:
				if (is_invoke_init_op(bc))
				{
					bc_initref.expectMoreLength(1);
					break;
				}
				bc_which = ref_band_for_self_op(bc, isAload, junkBC);
				if (bc_which != nullptr)
				{
					bc_which->expectMoreLength(1);
					break;
				}
				if (is_branch_op(bc))
				{
					bc_label.expectMoreLength(1);
					break;
				}
				bc_which = ref_band_for_op(bc);
				if (bc_which != nullptr)
				{
					bc_which->expectMoreLength(1);
					assert(bc != bc_multianewarray); // handled elsewhere
					break;
				}
				if (is_local_slot_op(bc))
				{
					bc_local.expectMoreLength(1);
					break;
				}
				break;
			case bc_end_marker:
				// Increment k and test against code_count.
				goto doneScanningMethod;
			}
		}
	doneScanningMethod:
	{
	}
		if (aborting())
			break;
	}

	// Go through the formality, so we can use it in a regular fashion later:
	assert(rp == rp0);
	bc_codes.readData((int)(opptr - rp));

	int i = 0;

	// To size instruction bands correctly, we need info on switches:
	bc_case_count.readData((int)all_switch_ops.size());
	for (i = 0; i < (int)all_switch_ops.size(); i++)
	{
		int caseCount = bc_case_count.getInt();
		int bc = all_switch_ops.getByte(i);
		bc_label.expectMoreLength(1 + caseCount); // default label + cases
		bc_case_value.expectMoreLength(bc == bc_tableswitch ? 1 : caseCount);
	}
	bc_case_count.rewind(); // uses again for output

	all_switch_ops.free();

	for (i = e_bc_case_value; i <= e_bc_escsize; i++)
	{
		all_bands[i].readData();
	}

	// The bc_escbyte band is counted by the immediately previous band.
	bc_escbyte.readData(bc_escsize.getIntTotal());
}

void unpacker::read_bands()
{
	byte *rp0 = rp;

	read_file_header();
	CHECK;

	if (cp.nentries == 0)
	{
		// read_file_header failed to read a CP, because it copied a JAR.
		return;
	}

	// Do this after the file header has been read:
	check_options();

	read_cp();
	CHECK;
	read_attr_defs();
	CHECK;
	read_ics();
	CHECK;
	read_classes();
	CHECK;
	read_bcs();
	CHECK;
	read_files();
}

/// CP routines

entry *&cpool::hashTabRef(byte tag, bytes &b)
{
	uint hash = tag + (int)b.len;
	for (int i = 0; i < (int)b.len; i++)
	{
		hash = hash * 31 + (0xFF & b.ptr[i]);
	}
	entry **ht = hashTab;
	int hlen = hashTabLength;
	assert((hlen & (hlen - 1)) == 0); // must be power of 2
	uint hash1 = hash & (hlen - 1);   // == hash % hlen
	uint hash2 = 0;				   // lazily computed (requires mod op.)
	int probes = 0;
	while (ht[hash1] != nullptr)
	{
		entry &e = *ht[hash1];
		if (e.value.b.equals(b) && e.tag == tag)
			break;
		if (hash2 == 0)
			// Note:  hash2 must be relatively prime to hlen, hence the "|1".
			hash2 = (((hash % 499) & (hlen - 1)) | 1);
		hash1 += hash2;
		if (hash1 >= (uint)hlen)
			hash1 -= hlen;
		assert(hash1 < (uint)hlen);
		assert(++probes < hlen);
	}
	return ht[hash1];
}

static void insert_extra(entry *e, ptrlist &extras)
{
	// This ordering helps implement the Pack200 requirement
	// of a predictable CP order in the class files produced.
	e->inord = NO_INORD; // mark as an "extra"
	extras.add(e);
	// Note:  We will sort the list (by string-name) later.
}

entry *cpool::ensureUtf8(bytes &b)
{
	entry *&ix = hashTabRef(CONSTANT_Utf8, b);
	if (ix != nullptr)
		return ix;
	// Make one.
	if (nentries == maxentries)
	{
		abort("cp utf8 overflow");
		return &entries[tag_base[CONSTANT_Utf8]]; // return something
	}
	entry &e = entries[nentries++];
	e.tag = CONSTANT_Utf8;
	u->saveTo(e.value.b, b);
	assert(&e >= first_extra_entry);
	insert_extra(&e, tag_extras[CONSTANT_Utf8]);
	return ix = &e;
}

entry *cpool::ensureClass(bytes &b)
{
	entry *&ix = hashTabRef(CONSTANT_Class, b);
	if (ix != nullptr)
		return ix;
	// Make one.
	if (nentries == maxentries)
	{
		abort("cp class overflow");
		return &entries[tag_base[CONSTANT_Class]]; // return something
	}
	entry &e = entries[nentries++];
	e.tag = CONSTANT_Class;
	e.nrefs = 1;
	e.refs = U_NEW(entry *, 1);
	ix = &e; // hold my spot in the index
	entry *utf = ensureUtf8(b);
	e.refs[0] = utf;
	e.value.b = utf->value.b;
	assert(&e >= first_extra_entry);
	insert_extra(&e, tag_extras[CONSTANT_Class]);
	return &e;
}

void cpool::expandSignatures()
{
	int i;
	int nsigs = 0;
	int nreused = 0;
	int first_sig = tag_base[CONSTANT_Signature];
	int sig_limit = tag_count[CONSTANT_Signature] + first_sig;
	fillbytes buf;
	buf.init(1 << 10);
	CHECK;
	for (i = first_sig; i < sig_limit; i++)
	{
		entry &e = entries[i];
		assert(e.tag == CONSTANT_Signature);
		int refnum = 0;
		bytes form = e.refs[refnum++]->asUtf8();
		buf.empty();
		for (int j = 0; j < (int)form.len; j++)
		{
			int c = form.ptr[j];
			buf.addByte(c);
			if (c == 'L')
			{
				entry *cls = e.refs[refnum++];
				buf.append(cls->className()->asUtf8());
			}
		}
		assert(refnum == e.nrefs);
		bytes &sig = buf.b;

		// try to find a pre-existing Utf8:
		entry *&e2 = hashTabRef(CONSTANT_Utf8, sig);
		if (e2 != nullptr)
		{
			assert(e2->isUtf8(sig));
			e.value.b = e2->value.b;
			e.refs[0] = e2;
			e.nrefs = 1;
			nreused++;
		}
		else
		{
			// there is no other replacement; reuse this CP entry as a Utf8
			u->saveTo(e.value.b, sig);
			e.tag = CONSTANT_Utf8;
			e.nrefs = 0;
			e2 = &e;
		}
		nsigs++;
	}
	buf.free();

	// go expunge all references to remaining signatures:
	for (i = 0; i < (int)nentries; i++)
	{
		entry &e = entries[i];
		for (int j = 0; j < e.nrefs; j++)
		{
			entry *&e2 = e.refs[j];
			if (e2 != nullptr && e2->tag == CONSTANT_Signature)
				e2 = e2->refs[0];
		}
	}
}

void cpool::initMemberIndexes()
{
	// This function does NOT refer to any class schema.
	// It is totally internal to the cpool.
	int i, j;

	// Get the pre-existing indexes:
	int nclasses = tag_count[CONSTANT_Class];
	entry *classes = tag_base[CONSTANT_Class] + entries;
	int nfields = tag_count[CONSTANT_Fieldref];
	entry *fields = tag_base[CONSTANT_Fieldref] + entries;
	int nmethods = tag_count[CONSTANT_Methodref];
	entry *methods = tag_base[CONSTANT_Methodref] + entries;

	int *field_counts = T_NEW(int, nclasses);
	int *method_counts = T_NEW(int, nclasses);
	cpindex *all_indexes = U_NEW(cpindex, nclasses * 2);
	entry **field_ix = U_NEW(entry *, add_size(nfields, nclasses));
	entry **method_ix = U_NEW(entry *, add_size(nmethods, nclasses));

	for (j = 0; j < nfields; j++)
	{
		entry &f = fields[j];
		i = f.memberClass()->inord;
		assert(i < nclasses);
		field_counts[i]++;
	}
	for (j = 0; j < nmethods; j++)
	{
		entry &m = methods[j];
		i = m.memberClass()->inord;
		assert(i < nclasses);
		method_counts[i]++;
	}

	int fbase = 0, mbase = 0;
	for (i = 0; i < nclasses; i++)
	{
		int fc = field_counts[i];
		int mc = method_counts[i];
		all_indexes[i * 2 + 0].init(fc, field_ix + fbase, CONSTANT_Fieldref + SUBINDEX_BIT);
		all_indexes[i * 2 + 1].init(mc, method_ix + mbase, CONSTANT_Methodref + SUBINDEX_BIT);
		// reuse field_counts and member_counts as fill pointers:
		field_counts[i] = fbase;
		method_counts[i] = mbase;
		fbase += fc + 1;
		mbase += mc + 1;
		// (the +1 leaves a space between every subarray)
	}
	assert(fbase == nfields + nclasses);
	assert(mbase == nmethods + nclasses);

	for (j = 0; j < nfields; j++)
	{
		entry &f = fields[j];
		i = f.memberClass()->inord;
		field_ix[field_counts[i]++] = &f;
	}
	for (j = 0; j < nmethods; j++)
	{
		entry &m = methods[j];
		i = m.memberClass()->inord;
		method_ix[method_counts[i]++] = &m;
	}

	member_indexes = all_indexes;

	// Free intermediate buffers.
	u->free_temps();
}

void entry::requestOutputIndex(cpool &cp, int req)
{
	assert(outputIndex <= NOT_REQUESTED); // must not have assigned indexes yet
	if (tag == CONSTANT_Signature)
	{
		ref(0)->requestOutputIndex(cp, req);
		return;
	}
	assert(req == REQUESTED || req == REQUESTED_LDC);
	if (outputIndex != NOT_REQUESTED)
	{
		if (req == REQUESTED_LDC)
			outputIndex = req; // this kind has precedence
		return;
	}
	outputIndex = req;
	// assert(!cp.outputEntries.contains(this));
	assert(tag != CONSTANT_Signature);
	cp.outputEntries.add(this);
	for (int j = 0; j < nrefs; j++)
	{
		ref(j)->requestOutputIndex(cp);
	}
}

void cpool::resetOutputIndexes()
{
	int i;
	int noes = outputEntries.length();
	entry **oes = (entry **)outputEntries.base();
	for (i = 0; i < noes; i++)
	{
		entry &e = *oes[i];
		e.outputIndex = NOT_REQUESTED;
	}
	outputIndexLimit = 0;
	outputEntries.empty();
}

static const byte TAG_ORDER[CONSTANT_Limit] = {0, 1, 0, 2, 3, 4, 5, 7, 6, 10, 11, 12, 9, 8};

extern "C" int outputEntry_cmp(const void *e1p, const void *e2p)
{
	// Sort entries according to the Pack200 rules for deterministic
	// constant pool ordering.
	//
	// The four sort keys as follows, in order of decreasing importance:
	//   1. ldc first, then non-ldc guys
	//   2. normal cp_All entries by input order (i.e., address order)
	//   3. after that, extra entries by lexical order (as in tag_extras[*])
	entry &e1 = *(entry *)*(void **)e1p;
	entry &e2 = *(entry *)*(void **)e2p;
	int oi1 = e1.outputIndex;
	int oi2 = e2.outputIndex;
	assert(oi1 == REQUESTED || oi1 == REQUESTED_LDC);
	assert(oi2 == REQUESTED || oi2 == REQUESTED_LDC);
	if (oi1 != oi2)
	{
		if (oi1 == REQUESTED_LDC)
			return 0 - 1;
		if (oi2 == REQUESTED_LDC)
			return 1 - 0;
		// Else fall through; neither is an ldc request.
	}
	if (e1.inord != NO_INORD || e2.inord != NO_INORD)
	{
		// One or both is normal.  Use input order.
		if (&e1 > &e2)
			return 1 - 0;
		if (&e1 < &e2)
			return 0 - 1;
		return 0; // equal pointers
	}
	// Both are extras.  Sort by tag and then by value.
	if (e1.tag != e2.tag)
	{
		return TAG_ORDER[e1.tag] - TAG_ORDER[e2.tag];
	}
	// If the tags are the same, use string comparison.
	return compare_Utf8_chars(e1.value.b, e2.value.b);
}

void cpool::computeOutputIndexes()
{
	int i;

	int noes = outputEntries.length();
	entry **oes = (entry **)outputEntries.base();

	// Sort the output constant pool into the order required by Pack200.
	PTRLIST_QSORT(outputEntries, outputEntry_cmp);

	// Allocate a new index for each entry that needs one.
	// We do this in two passes, one for LDC entries and one for the rest.
	int nextIndex = 1; // always skip index #0 in output cpool
	for (i = 0; i < noes; i++)
	{
		entry &e = *oes[i];
		assert(e.outputIndex == REQUESTED || e.outputIndex == REQUESTED_LDC);
		e.outputIndex = nextIndex++;
		if (e.isDoubleWord())
			nextIndex++; // do not use the next index
	}
	outputIndexLimit = nextIndex;
}

// Unpacker Start

const char str_tf[] = "true\0false";
#undef STR_TRUE
#undef STR_FALSE
#define STR_TRUE (&str_tf[0])
#define STR_FALSE (&str_tf[5])

const char *unpacker::get_option(const char *prop)
{
	if (prop == nullptr)
		return nullptr;
	if (strcmp(prop, UNPACK_DEFLATE_HINT) == 0)
	{
		return deflate_hint_or_zero == 0 ? nullptr : STR_TF(deflate_hint_or_zero > 0);
#ifdef HAVE_STRIP
	}
	else if (strcmp(prop, UNPACK_STRIP_COMPILE) == 0)
	{
		return STR_TF(strip_compile);
	}
	else if (strcmp(prop, UNPACK_STRIP_DEBUG) == 0)
	{
		return STR_TF(strip_debug);
	}
	else if (strcmp(prop, UNPACK_STRIP_JCOV) == 0)
	{
		return STR_TF(strip_jcov);
#endif /*HAVE_STRIP*/
	}
	else if (strcmp(prop, UNPACK_REMOVE_PACKFILE) == 0)
	{
		return STR_TF(remove_packfile);
	}
	else if (strcmp(prop, DEBUG_VERBOSE) == 0)
	{
		return saveIntStr(verbose);
	}
	else if (strcmp(prop, UNPACK_MODIFICATION_TIME) == 0)
	{
		return (modification_time_or_zero == 0) ? nullptr
												: saveIntStr(modification_time_or_zero);
	}
	else
	{
		return NULL; // unknown option ignore
	}
}

bool unpacker::set_option(const char *prop, const char *value)
{
	if (prop == NULL)
		return false;
	if (strcmp(prop, UNPACK_DEFLATE_HINT) == 0)
	{
		deflate_hint_or_zero =
			((value == nullptr || strcmp(value, "keep") == 0) ? 0 : BOOL_TF(value) ? +1 : -1);
#ifdef HAVE_STRIP
	}
	else if (strcmp(prop, UNPACK_STRIP_COMPILE) == 0)
	{
		strip_compile = STR_TF(value);
	}
	else if (strcmp(prop, UNPACK_STRIP_DEBUG) == 0)
	{
		strip_debug = STR_TF(value);
	}
	else if (strcmp(prop, UNPACK_STRIP_JCOV) == 0)
	{
		strip_jcov = STR_TF(value);
#endif /*HAVE_STRIP*/
	}
	else if (strcmp(prop, UNPACK_REMOVE_PACKFILE) == 0)
	{
		remove_packfile = STR_TF(value);
	}
	else if (strcmp(prop, DEBUG_VERBOSE) == 0)
	{
		verbose = (value == nullptr) ? 0 : atoi(value);
	}
	else if (strcmp(prop, UNPACK_MODIFICATION_TIME) == 0)
	{
		if (value == nullptr || (strcmp(value, "keep") == 0))
		{
			modification_time_or_zero = 0;
		}
		else if (strcmp(value, "now") == 0)
		{
			time_t now;
			time(&now);
			modification_time_or_zero = (int)now;
		}
		else
		{
			modification_time_or_zero = atoi(value);
			if (modification_time_or_zero == 0)
				modification_time_or_zero = 1; // make non-zero
		}
	}
	else
	{
		return false; // unknown option ignore
	}
	return true;
}

// Deallocate all internal storage and reset to a clean state.
// Do not disturb any input or output connections, including
// infileptr, infileno, inbytes, read_input_fn, jarout, or errstrm.
// Do not reset any unpack options.
void unpacker::reset()
{
	bytes_read_before_reset += bytes_read;
	bytes_written_before_reset += bytes_written;
	files_written_before_reset += files_written;
	classes_written_before_reset += classes_written;
	segments_read_before_reset += 1;
	if (verbose >= 2)
	{
		fprintf(stderr, "After segment %d, " LONG_LONG_FORMAT
						" bytes read and " LONG_LONG_FORMAT " bytes written.\n",
				segments_read_before_reset - 1, bytes_read_before_reset,
				bytes_written_before_reset);
		fprintf(stderr,
				"After segment %d, %d files (of which %d are classes) written to output.\n",
				segments_read_before_reset - 1, files_written_before_reset,
				classes_written_before_reset);
		if (archive_next_count != 0)
		{
			fprintf(stderr, "After segment %d, %d segment%s remaining (estimated).\n",
					segments_read_before_reset - 1, archive_next_count,
					archive_next_count == 1 ? "" : "s");
		}
	}

	unpacker save_u = (*this); // save bytewise image
	infileptr = nullptr;	   // make asserts happy
	jarout = nullptr;		  // do not close the output jar
	gzin = nullptr;			// do not close the input gzip stream
	this->free();
	this->init(read_input_fn);

// restore selected interface state:
#define SAVE(x) this->x = save_u.x
	SAVE(infileptr); // buffered
	SAVE(infileno);  // unbuffered
	SAVE(inbytes);   // direct
	SAVE(jarout);
	SAVE(gzin);
	SAVE(verbose); // verbose level, 0 means no output
	SAVE(strip_compile);
	SAVE(strip_debug);
	SAVE(strip_jcov);
	SAVE(remove_packfile);
	SAVE(deflate_hint_or_zero); // ==0 means not set, otherwise -1 or 1
	SAVE(modification_time_or_zero);
	SAVE(bytes_read_before_reset);
	SAVE(bytes_written_before_reset);
	SAVE(files_written_before_reset);
	SAVE(classes_written_before_reset);
	SAVE(segments_read_before_reset);
#undef SAVE
	// Note:  If we use strip_names, watch out:  They get nuked here.
}

void unpacker::init(read_input_fn_t input_fn)
{
	int i;
	BYTES_OF(*this).clear();
	this->u = this; // self-reference for U_NEW macro
	read_input_fn = input_fn;
	all_bands = band::makeBands(this);
	// Make a default jar buffer; caller may safely overwrite it.
	jarout = U_NEW(jar, 1);
	jarout->init(this);
	for (i = 0; i < ATTR_CONTEXT_LIMIT; i++)
		attr_defs[i].u = u; // set up outer ptr
}

const char *unpacker::get_abort_message()
{
	return abort_message;
}

void unpacker::dump_options()
{
	static const char *opts[] = {
		UNPACK_DEFLATE_HINT,
#ifdef HAVE_STRIP
		UNPACK_STRIP_COMPILE,   UNPACK_STRIP_DEBUG, UNPACK_STRIP_JCOV,
#endif /*HAVE_STRIP*/
		UNPACK_REMOVE_PACKFILE, DEBUG_VERBOSE,	  UNPACK_MODIFICATION_TIME, nullptr};
	for (int i = 0; opts[i] != nullptr; i++)
	{
		const char *str = get_option(opts[i]);
		if (str == nullptr)
		{
			if (verbose == 0)
				continue;
			str = "(not set)";
		}
		fprintf(stderr, "%s=%s\n", opts[i], str);
	}
}

// Usage: unpack a byte buffer
// packptr is a reference to byte buffer containing a
// packed file and len is the length of the buffer.
// If nullptr, the callback is used to fill an internal buffer.
void unpacker::start(void *packptr, size_t len)
{
	if (packptr != nullptr && len != 0)
	{
		inbytes.set((byte *)packptr, len);
	}
	read_bands();
}

void unpacker::check_options()
{
	const char *strue = "true";
	const char *sfalse = "false";
	if (deflate_hint_or_zero != 0)
	{
		bool force_deflate_hint = (deflate_hint_or_zero > 0);
		if (force_deflate_hint)
			default_file_options |= FO_DEFLATE_HINT;
		else
			default_file_options &= ~FO_DEFLATE_HINT;
		// Turn off per-file deflate hint by force.
		suppress_file_options |= FO_DEFLATE_HINT;
	}
	if (modification_time_or_zero != 0)
	{
		default_file_modtime = modification_time_or_zero;
		// Turn off per-file modtime by force.
		archive_options &= ~AO_HAVE_FILE_MODTIME;
	}
	// %%% strip_compile, etc...
}

// classfile writing

void unpacker::reset_cur_classfile()
{
	// set defaults
	cur_class_minver = default_class_minver;
	cur_class_majver = default_class_majver;

	// reset constant pool state
	cp.resetOutputIndexes();

	// reset fixups
	class_fixup_type.empty();
	class_fixup_offset.empty();
	class_fixup_ref.empty();
	requested_ics.empty();
}

cpindex *cpool::getKQIndex()
{
	char ch = '?';
	if (u->cur_descr != nullptr)
	{
		entry *type = u->cur_descr->descrType();
		ch = type->value.b.ptr[0];
	}
	byte tag = CONSTANT_Integer;
	switch (ch)
	{
	case 'L':
		tag = CONSTANT_String;
		break;
	case 'I':
		tag = CONSTANT_Integer;
		break;
	case 'J':
		tag = CONSTANT_Long;
		break;
	case 'F':
		tag = CONSTANT_Float;
		break;
	case 'D':
		tag = CONSTANT_Double;
		break;
	case 'B':
	case 'S':
	case 'C':
	case 'Z':
		tag = CONSTANT_Integer;
		break;
	default:
		abort("bad KQ reference");
		break;
	}
	return getIndex(tag);
}

uint unpacker::to_bci(uint bii)
{
	uint len = bcimap.length();
	uint *map = (uint *)bcimap.base();
	assert(len > 0); // must be initialized before using to_bci
	if (bii < len)
		return map[bii];
	// Else it's a fractional or out-of-range BCI.
	uint key = bii - len;
	for (int i = len;; i--)
	{
		if (map[i - 1] - (i - 1) <= key)
			break;
		else
			--bii;
	}
	return bii;
}

void unpacker::put_stackmap_type()
{
	int tag = code_StackMapTable_T.getByte();
	putu1(tag);
	switch (tag)
	{
	case 7: // (7) [RCH]
		putref(code_StackMapTable_RC.getRef());
		break;
	case 8: // (8) [PH]
		putu2(to_bci(code_StackMapTable_P.getInt()));
		break;
	}
}

// Functions for writing code.

void unpacker::put_label(int curIP, int size)
{
	code_fixup_type.addByte(size);
	code_fixup_offset.add((int)put_empty(size));
	code_fixup_source.add(curIP);
}

inline // called exactly once => inline
	void
unpacker::write_bc_ops()
{
	bcimap.empty();
	code_fixup_type.empty();
	code_fixup_offset.empty();
	code_fixup_source.empty();

	band *bc_which;

	byte *opptr = bc_codes.curRP();
	// No need for oplimit, since the codes are pre-counted.

	size_t codeBase = wpoffset();

	bool isAload; // copy-out result
	int origBC;

	entry *thisClass = cur_class;
	entry *superClass = cur_super;
	entry *newClass = nullptr; // class of last _new opcode

	// overwrite any prior index on these bands; it changes w/ current class:
	bc_thisfield.setIndex(cp.getFieldIndex(thisClass));
	bc_thismethod.setIndex(cp.getMethodIndex(thisClass));
	if (superClass != nullptr)
	{
		bc_superfield.setIndex(cp.getFieldIndex(superClass));
		bc_supermethod.setIndex(cp.getMethodIndex(superClass));
	}

	for (int curIP = 0;; curIP++)
	{
		int curPC = (int)(wpoffset() - codeBase);
		bcimap.add(curPC);
		ensure_put_space(10); // covers most instrs w/o further bounds check
		int bc = *opptr++ & 0xFF;

		putu1_fast(bc);
		// Note:  See '--wp' below for pseudo-bytecodes like bc_end_marker.

		bool isWide = false;
		if (bc == bc_wide)
		{
			bc = *opptr++ & 0xFF;
			putu1_fast(bc);
			isWide = true;
		}
		switch (bc)
		{
		case bc_end_marker:
			--wp; // not really part of the code
			assert(opptr <= bc_codes.maxRP());
			bc_codes.curRP() = opptr; // advance over this in bc_codes
			goto doneScanningMethod;
		case bc_tableswitch:  // apc:  (df, lo, hi, (hi-lo+1)*(label))
		case bc_lookupswitch: // apc:  (df, nc, nc*(case, label))
		{
			int caseCount = bc_case_count.getInt();
			while (((wpoffset() - codeBase) % 4) != 0)
				putu1_fast(0);
			ensure_put_space(30 + caseCount * 8);
			put_label(curIP, 4); // int df = bc_label.getInt();
			if (bc == bc_tableswitch)
			{
				int lo = bc_case_value.getInt();
				int hi = lo + caseCount - 1;
				putu4(lo);
				putu4(hi);
				for (int j = 0; j < caseCount; j++)
				{
					put_label(curIP, 4); // int lVal = bc_label.getInt();
										 // int cVal = lo + j;
				}
			}
			else
			{
				putu4(caseCount);
				for (int j = 0; j < caseCount; j++)
				{
					int cVal = bc_case_value.getInt();
					putu4(cVal);
					put_label(curIP, 4); // int lVal = bc_label.getInt();
				}
			}
			assert((int)to_bci(curIP) == curPC);
			continue;
		}
		case bc_iinc:
		{
			int local = bc_local.getInt();
			int delta = (isWide ? bc_short : bc_byte).getInt();
			if (isWide)
			{
				putu2(local);
				putu2(delta);
			}
			else
			{
				putu1_fast(local);
				putu1_fast(delta);
			}
			continue;
		}
		case bc_sipush:
		{
			int val = bc_short.getInt();
			putu2(val);
			continue;
		}
		case bc_bipush:
		case bc_newarray:
		{
			int val = bc_byte.getByte();
			putu1_fast(val);
			continue;
		}
		case bc_ref_escape:
		{
			// Note that insnMap has one entry for this.
			--wp; // not really part of the code
			int size = bc_escrefsize.getInt();
			entry *ref = bc_escref.getRefN();
			CHECK;
			switch (size)
			{
			case 1:
				putu1ref(ref);
				break;
			case 2:
				putref(ref);
				break;
			default:
				assert(false);
			}
			continue;
		}
		case bc_byte_escape:
		{
			// Note that insnMap has one entry for all these bytes.
			--wp; // not really part of the code
			int size = bc_escsize.getInt();
			ensure_put_space(size);
			for (int j = 0; j < size; j++)
				putu1_fast(bc_escbyte.getByte());
			continue;
		}
		default:
			if (is_invoke_init_op(bc))
			{
				origBC = bc_invokespecial;
				entry *classRef;
				switch (bc - _invokeinit_op)
				{
				case _invokeinit_self_option:
					classRef = thisClass;
					break;
				case _invokeinit_super_option:
					classRef = superClass;
					break;
				default:
					assert(bc == _invokeinit_op + _invokeinit_new_option);
				case _invokeinit_new_option:
					classRef = newClass;
					break;
				}
				wp[-1] = origBC; // overwrite with origBC
				int coding = bc_initref.getInt();
				// Find the nth overloading of <init> in classRef.
				entry *ref = nullptr;
				cpindex *ix = (classRef == nullptr) ? nullptr : cp.getMethodIndex(classRef);
				for (int j = 0, which_init = 0;; j++)
				{
					ref = (ix == nullptr) ? nullptr : ix->get(j);
					if (ref == nullptr)
						break; // oops, bad input
					assert(ref->tag == CONSTANT_Methodref);
					if (ref->memberDescr()->descrName() == cp.sym[cpool::s_lt_init_gt])
					{
						if (which_init++ == coding)
							break;
					}
				}
				putref(ref);
				continue;
			}
			bc_which = ref_band_for_self_op(bc, isAload, origBC);
			if (bc_which != nullptr)
			{
				if (!isAload)
				{
					wp[-1] = origBC; // overwrite with origBC
				}
				else
				{
					wp[-1] = bc_aload_0; // overwrite with _aload_0
					// Note: insnMap keeps the _aload_0 separate.
					bcimap.add(++curPC);
					++curIP;
					putu1_fast(origBC);
				}
				entry *ref = bc_which->getRef();
				CHECK;
				putref(ref);
				continue;
			}
			if (is_branch_op(bc))
			{
				// int lVal = bc_label.getInt();
				if (bc < bc_goto_w)
				{
					put_label(curIP, 2); // putu2(lVal & 0xFFFF);
				}
				else
				{
					assert(bc <= bc_jsr_w);
					put_label(curIP, 4); // putu4(lVal);
				}
				assert((int)to_bci(curIP) == curPC);
				continue;
			}
			bc_which = ref_band_for_op(bc);
			if (bc_which != nullptr)
			{
				entry *ref = bc_which->getRefCommon(bc_which->ix, bc_which->nullOK);
				CHECK;
				if (ref == nullptr && bc_which == &bc_classref)
				{
					// Shorthand for class self-references.
					ref = thisClass;
				}
				origBC = bc;
				switch (bc)
				{
				case bc_ildc:
				case bc_cldc:
				case bc_fldc:
				case bc_aldc:
					origBC = bc_ldc;
					break;
				case bc_ildc_w:
				case bc_cldc_w:
				case bc_fldc_w:
				case bc_aldc_w:
					origBC = bc_ldc_w;
					break;
				case bc_lldc2_w:
				case bc_dldc2_w:
					origBC = bc_ldc2_w;
					break;
				case bc_new:
					newClass = ref;
					break;
				}
				wp[-1] = origBC; // overwrite with origBC
				if (origBC == bc_ldc)
				{
					putu1ref(ref);
				}
				else
				{
					putref(ref);
				}
				if (origBC == bc_multianewarray)
				{
					// Copy the trailing byte also.
					int val = bc_byte.getByte();
					putu1_fast(val);
				}
				else if (origBC == bc_invokeinterface)
				{
					int argSize = ref->memberDescr()->descrType()->typeSize();
					putu1_fast(1 + argSize);
					putu1_fast(0);
				}
				continue;
			}
			if (is_local_slot_op(bc))
			{
				int local = bc_local.getInt();
				if (isWide)
				{
					putu2(local);
					if (bc == bc_iinc)
					{
						int iVal = bc_short.getInt();
						putu2(iVal);
					}
				}
				else
				{
					putu1_fast(local);
					if (bc == bc_iinc)
					{
						int iVal = bc_byte.getByte();
						putu1_fast(iVal);
					}
				}
				continue;
			}
			// Random bytecode.  Just copy it.
			assert(bc < bc_bytecode_limit);
		}
	}
doneScanningMethod:
{
}
	// bcimap.add(curPC);  // PC limit is already also in map, from bc_end_marker

	// Armed with a bcimap, we can now fix up all the labels.
	for (int i = 0; i < (int)code_fixup_type.size(); i++)
	{
		int type = code_fixup_type.getByte(i);
		byte *bp = wp_at(code_fixup_offset.get(i));
		int curIP = code_fixup_source.get(i);
		int destIP = curIP + bc_label.getInt();
		int span = to_bci(destIP) - to_bci(curIP);
		switch (type)
		{
		case 2:
			putu2_at(bp, (ushort)span);
			break;
		case 4:
			putu4_at(bp, span);
			break;
		default:
			assert(false);
		}
	}
}

inline // called exactly once => inline
	void
unpacker::write_code()
{
	int j;

	int max_stack, max_locals, handler_count, cflags;
	get_code_header(max_stack, max_locals, handler_count, cflags);

	if (max_stack < 0)
		max_stack = code_max_stack.getInt();
	if (max_locals < 0)
		max_locals = code_max_na_locals.getInt();
	if (handler_count < 0)
		handler_count = code_handler_count.getInt();

	int siglen = cur_descr->descrType()->typeSize();
	CHECK;
	if ((cur_descr_flags & ACC_STATIC) == 0)
		siglen++;
	max_locals += siglen;

	putu2(max_stack);
	putu2(max_locals);
	size_t bcbase = put_empty(4);

	// Write the bytecodes themselves.
	write_bc_ops();
	CHECK;

	byte *bcbasewp = wp_at(bcbase);
	putu4_at(bcbasewp, (int)(wp - (bcbasewp + 4))); // size of code attr

	putu2(handler_count);
	for (j = 0; j < handler_count; j++)
	{
		int bii = code_handler_start_P.getInt();
		putu2(to_bci(bii));
		bii += code_handler_end_PO.getInt();
		putu2(to_bci(bii));
		bii += code_handler_catch_PO.getInt();
		putu2(to_bci(bii));
		putref(code_handler_class_RCN.getRefN());
		CHECK;
	}

	julong indexBits = cflags;
	if (cflags < 0)
	{
		bool haveLongFlags = attr_defs[ATTR_CONTEXT_CODE].haveLongFlags();
		indexBits = code_flags_hi.getLong(code_flags_lo, haveLongFlags);
	}
	write_attrs(ATTR_CONTEXT_CODE, indexBits);
}

int unpacker::write_attrs(int attrc, julong indexBits)
{
	CHECK_0;
	if (indexBits == 0)
	{
		// Quick short-circuit.
		putu2(0);
		return 0;
	}

	attr_definitions &ad = attr_defs[attrc];

	int i, j, j2, idx, count;

	int oiCount = 0;
	if (ad.isPredefined(X_ATTR_OVERFLOW) && (indexBits & ((julong)1 << X_ATTR_OVERFLOW)) != 0)
	{
		indexBits -= ((julong)1 << X_ATTR_OVERFLOW);
		oiCount = ad.xxx_attr_count().getInt();
	}

	int bitIndexes[X_ATTR_LIMIT_FLAGS_HI];
	int biCount = 0;

	// Fill bitIndexes with index bits, in order.
	for (idx = 0; indexBits != 0; idx++, indexBits >>= 1)
	{
		if ((indexBits & 1) != 0)
			bitIndexes[biCount++] = idx;
	}
	assert(biCount <= (int)lengthof(bitIndexes));

	// Write a provisional attribute count, perhaps to be corrected later.
	int naOffset = (int)wpoffset();
	int na0 = biCount + oiCount;
	putu2(na0);

	int na = 0;
	for (i = 0; i < na0; i++)
	{
		if (i < biCount)
			idx = bitIndexes[i];
		else
			idx = ad.xxx_attr_indexes().getInt();
		assert(ad.isIndex(idx));
		entry *aname = nullptr;
		entry *ref; // scratch
		size_t abase = put_empty(2 + 4);
		CHECK_0;
		if (idx < (int)ad.flag_limit && ad.isPredefined(idx))
		{
			// Switch on the attrc and idx simultaneously.
			switch (ADH_BYTE(attrc, idx))
			{

			case ADH_BYTE(ATTR_CONTEXT_CLASS, X_ATTR_OVERFLOW) :
			case ADH_BYTE(ATTR_CONTEXT_FIELD, X_ATTR_OVERFLOW) :
			case ADH_BYTE(ATTR_CONTEXT_METHOD, X_ATTR_OVERFLOW) :
			case ADH_BYTE(ATTR_CONTEXT_CODE, X_ATTR_OVERFLOW) :
				// no attribute at all, so back up on this one
				wp = wp_at(abase);
				continue;

			case ADH_BYTE(ATTR_CONTEXT_CLASS, CLASS_ATTR_ClassFile_version) :
				cur_class_minver = class_ClassFile_version_minor_H.getInt();
				cur_class_majver = class_ClassFile_version_major_H.getInt();
				// back up; not a real attribute
				wp = wp_at(abase);
				continue;

			case ADH_BYTE(ATTR_CONTEXT_CLASS, CLASS_ATTR_InnerClasses) :
				// note the existence of this attr, but save for later
				if (cur_class_has_local_ics)
					abort("too many InnerClasses attrs");
				cur_class_has_local_ics = true;
				wp = wp_at(abase);
				continue;

			case ADH_BYTE(ATTR_CONTEXT_CLASS, CLASS_ATTR_SourceFile) :
				aname = cp.sym[cpool::s_SourceFile];
				ref = class_SourceFile_RUN.getRefN();
				CHECK_0;
				if (ref == nullptr)
				{
					bytes &n = cur_class->ref(0)->value.b;
					// parse n = (<pkg>/)*<outer>?($<id>)*
					int pkglen = lastIndexOf(SLASH_MIN, SLASH_MAX, n, (int)n.len) + 1;
					bytes prefix = n.slice(pkglen, n.len);
					for (;;)
					{
						// Work backwards, finding all '$', '#', etc.
						int dollar =
							lastIndexOf(DOLLAR_MIN, DOLLAR_MAX, prefix, (int)prefix.len);
						if (dollar < 0)
							break;
						prefix = prefix.slice(0, dollar);
					}
					const char *suffix = ".java";
					int len = (int)(prefix.len + strlen(suffix));
					bytes name;
					name.set(T_NEW(byte, add_size(len, 1)), len);
					name.strcat(prefix).strcat(suffix);
					ref = cp.ensureUtf8(name);
				}
				putref(ref);
				break;

			case ADH_BYTE(ATTR_CONTEXT_CLASS, CLASS_ATTR_EnclosingMethod) :
				aname = cp.sym[cpool::s_EnclosingMethod];
				putref(class_EnclosingMethod_RC.getRefN());
				putref(class_EnclosingMethod_RDN.getRefN());
				break;

			case ADH_BYTE(ATTR_CONTEXT_FIELD, FIELD_ATTR_ConstantValue) :
				aname = cp.sym[cpool::s_ConstantValue];
				putref(field_ConstantValue_KQ.getRefUsing(cp.getKQIndex()));
				break;

			case ADH_BYTE(ATTR_CONTEXT_METHOD, METHOD_ATTR_Code) :
				aname = cp.sym[cpool::s_Code];
				write_code();
				break;

			case ADH_BYTE(ATTR_CONTEXT_METHOD, METHOD_ATTR_Exceptions) :
				aname = cp.sym[cpool::s_Exceptions];
				putu2(count = method_Exceptions_N.getInt());
				for (j = 0; j < count; j++)
				{
					putref(method_Exceptions_RC.getRefN());
				}
				break;

			case ADH_BYTE(ATTR_CONTEXT_CODE, CODE_ATTR_StackMapTable) :
				aname = cp.sym[cpool::s_StackMapTable];
				// (keep this code aligned with its brother in unpacker::read_attrs)
				putu2(count = code_StackMapTable_N.getInt());
				for (j = 0; j < count; j++)
				{
					int tag = code_StackMapTable_frame_T.getByte();
					putu1(tag);
					if (tag <= 127)
					{
						// (64-127)  [(2)]
						if (tag >= 64)
							put_stackmap_type();
					}
					else if (tag <= 251)
					{
						// (247)     [(1)(2)]
						// (248-251) [(1)]
						if (tag >= 247)
							putu2(code_StackMapTable_offset.getInt());
						if (tag == 247)
							put_stackmap_type();
					}
					else if (tag <= 254)
					{
						// (252)     [(1)(2)]
						// (253)     [(1)(2)(2)]
						// (254)     [(1)(2)(2)(2)]
						putu2(code_StackMapTable_offset.getInt());
						for (int k = (tag - 251); k > 0; k--)
						{
							put_stackmap_type();
						}
					}
					else
					{
						// (255)     [(1)NH[(2)]NH[(2)]]
						putu2(code_StackMapTable_offset.getInt());
						putu2(j2 = code_StackMapTable_local_N.getInt());
						while (j2-- > 0)
							put_stackmap_type();
						putu2(j2 = code_StackMapTable_stack_N.getInt());
						while (j2-- > 0)
							put_stackmap_type();
					}
				}
				break;

			case ADH_BYTE(ATTR_CONTEXT_CODE, CODE_ATTR_LineNumberTable) :
				aname = cp.sym[cpool::s_LineNumberTable];
				putu2(count = code_LineNumberTable_N.getInt());
				for (j = 0; j < count; j++)
				{
					putu2(to_bci(code_LineNumberTable_bci_P.getInt()));
					putu2(code_LineNumberTable_line.getInt());
				}
				break;

			case ADH_BYTE(ATTR_CONTEXT_CODE, CODE_ATTR_LocalVariableTable) :
				aname = cp.sym[cpool::s_LocalVariableTable];
				putu2(count = code_LocalVariableTable_N.getInt());
				for (j = 0; j < count; j++)
				{
					int bii = code_LocalVariableTable_bci_P.getInt();
					int bci = to_bci(bii);
					putu2(bci);
					bii += code_LocalVariableTable_span_O.getInt();
					putu2(to_bci(bii) - bci);
					putref(code_LocalVariableTable_name_RU.getRefN());
					putref(code_LocalVariableTable_type_RS.getRefN());
					putu2(code_LocalVariableTable_slot.getInt());
				}
				break;

			case ADH_BYTE(ATTR_CONTEXT_CODE, CODE_ATTR_LocalVariableTypeTable) :
				aname = cp.sym[cpool::s_LocalVariableTypeTable];
				putu2(count = code_LocalVariableTypeTable_N.getInt());
				for (j = 0; j < count; j++)
				{
					int bii = code_LocalVariableTypeTable_bci_P.getInt();
					int bci = to_bci(bii);
					putu2(bci);
					bii += code_LocalVariableTypeTable_span_O.getInt();
					putu2(to_bci(bii) - bci);
					putref(code_LocalVariableTypeTable_name_RU.getRefN());
					putref(code_LocalVariableTypeTable_type_RS.getRefN());
					putu2(code_LocalVariableTypeTable_slot.getInt());
				}
				break;

			case ADH_BYTE(ATTR_CONTEXT_CLASS, X_ATTR_Signature) :
				aname = cp.sym[cpool::s_Signature];
				putref(class_Signature_RS.getRefN());
				break;

			case ADH_BYTE(ATTR_CONTEXT_FIELD, X_ATTR_Signature) :
				aname = cp.sym[cpool::s_Signature];
				putref(field_Signature_RS.getRefN());
				break;

			case ADH_BYTE(ATTR_CONTEXT_METHOD, X_ATTR_Signature) :
				aname = cp.sym[cpool::s_Signature];
				putref(method_Signature_RS.getRefN());
				break;

			case ADH_BYTE(ATTR_CONTEXT_CLASS, X_ATTR_Deprecated) :
			case ADH_BYTE(ATTR_CONTEXT_FIELD, X_ATTR_Deprecated) :
			case ADH_BYTE(ATTR_CONTEXT_METHOD, X_ATTR_Deprecated) :
				aname = cp.sym[cpool::s_Deprecated];
				// no data
				break;
			}
		}

		if (aname == nullptr)
		{
			// Unparse a compressor-defined attribute.
			layout_definition *lo = ad.getLayout(idx);
			if (lo == nullptr)
			{
				abort("bad layout index");
				break;
			}
			assert((int)lo->idx == idx);
			aname = lo->nameEntry;
			if (aname == nullptr)
			{
				bytes nameb;
				nameb.set(lo->name);
				aname = cp.ensureUtf8(nameb);
				// Cache the name entry for next time.
				lo->nameEntry = aname;
			}
			// Execute all the layout elements.
			band **bands = lo->bands();
			if (lo->hasCallables())
			{
				band &cble = *bands[0];
				assert(cble.le_kind == EK_CBLE);
				bands = cble.le_body;
			}
			putlayout(bands);
		}

		if (aname == nullptr)
			abort("bad attribute index");
		CHECK_0;

		byte *wp1 = wp;
		wp = wp_at(abase);

		// DTRT if this attr is on the strip-list.
		// (Note that we emptied the data out of the band first.)
		if (ad.strip_names.contains(aname))
		{
			continue;
		}

		// patch the name and length
		putref(aname);
		putu4((int)(wp1 - (wp + 4))); // put the attr size
		wp = wp1;
		na++; // count the attrs actually written
	}

	if (na != na0)
		// Refresh changed count.
		putu2_at(wp_at(naOffset), na);
	return na;
}

void unpacker::write_members(int num, int attrc)
{
	CHECK;
	attr_definitions &ad = attr_defs[attrc];
	band &member_flags_hi = ad.xxx_flags_hi();
	band &member_flags_lo = ad.xxx_flags_lo();
	band &member_descr = (&member_flags_hi)[e_field_descr - e_field_flags_hi];
	assert(endsWith(member_descr.name, "_descr"));
	assert(endsWith(member_flags_lo.name, "_flags_lo"));
	assert(endsWith(member_flags_lo.name, "_flags_lo"));
	bool haveLongFlags = ad.haveLongFlags();

	putu2(num);
	julong indexMask = attr_defs[attrc].flagIndexMask();
	for (int i = 0; i < num; i++)
	{
		julong mflags = member_flags_hi.getLong(member_flags_lo, haveLongFlags);
		entry *mdescr = member_descr.getRef();
		cur_descr = mdescr;
		putu2(cur_descr_flags = (ushort)(mflags & ~indexMask));
		CHECK;
		putref(mdescr->descrName());
		putref(mdescr->descrType());
		write_attrs(attrc, (mflags & indexMask));
		CHECK;
	}
	cur_descr = nullptr;
}

extern "C" int raw_address_cmp(const void *p1p, const void *p2p)
{
	void *p1 = *(void **)p1p;
	void *p2 = *(void **)p2p;
	return (p1 > p2) ? 1 : (p1 < p2) ? -1 : 0;
}

void unpacker::write_classfile_tail()
{
	cur_classfile_tail.empty();
	set_output(&cur_classfile_tail);

	int i, num;

	attr_definitions &ad = attr_defs[ATTR_CONTEXT_CLASS];

	bool haveLongFlags = ad.haveLongFlags();
	julong kflags = class_flags_hi.getLong(class_flags_lo, haveLongFlags);
	julong indexMask = ad.flagIndexMask();

	cur_class = class_this.getRef();
	cur_super = class_super.getRef();

	CHECK;

	if (cur_super == cur_class)
		cur_super = nullptr;
	// special representation for java/lang/Object

	putu2((ushort)(kflags & ~indexMask));
	putref(cur_class);
	putref(cur_super);

	putu2(num = class_interface_count.getInt());
	for (i = 0; i < num; i++)
	{
		putref(class_interface.getRef());
	}

	write_members(class_field_count.getInt(), ATTR_CONTEXT_FIELD);
	write_members(class_method_count.getInt(), ATTR_CONTEXT_METHOD);
	CHECK;

	cur_class_has_local_ics = false; // may be set true by write_attrs

	int naOffset = (int)wpoffset();
	int na = write_attrs(ATTR_CONTEXT_CLASS, (kflags & indexMask));

// at the very last, choose which inner classes (if any) pertain to k:
#ifdef ASSERT
	for (i = 0; i < ic_count; i++)
	{
		assert(!ics[i].requested);
	}
#endif
	// First, consult the global table and the local constant pool,
	// and decide on the globally implied inner classes.
	// (Note that we read the cpool's outputIndex fields, but we
	// do not yet write them, since the local IC attribute might
	// reverse a global decision to declare an IC.)
	assert(requested_ics.length() == 0); // must start out empty
	// Always include all members of the current class.
	for (inner_class *child = cp.getFirstChildIC(cur_class); child != nullptr;
		 child = cp.getNextChildIC(child))
	{
		child->requested = true;
		requested_ics.add(child);
	}
	// And, for each inner class mentioned in the constant pool,
	// include it and all its outers.
	int noes = cp.outputEntries.length();
	entry **oes = (entry **)cp.outputEntries.base();
	for (i = 0; i < noes; i++)
	{
		entry &e = *oes[i];
		if (e.tag != CONSTANT_Class)
			continue; // wrong sort
		for (inner_class *ic = cp.getIC(&e); ic != nullptr; ic = cp.getIC(ic->outer))
		{
			if (ic->requested)
				break; // already processed
			ic->requested = true;
			requested_ics.add(ic);
		}
	}
	int local_ics = requested_ics.length();
	// Second, consult a local attribute (if any) and adjust the global set.
	inner_class *extra_ics = nullptr;
	int num_extra_ics = 0;
	if (cur_class_has_local_ics)
	{
		// adjust the set of ICs by symmetric set difference w/ the locals
		num_extra_ics = class_InnerClasses_N.getInt();
		if (num_extra_ics == 0)
		{
			// Explicit zero count has an irregular meaning:  It deletes the attr.
			local_ics = 0; // (short-circuit all tests of requested bits)
		}
		else
		{
			extra_ics = T_NEW(inner_class, num_extra_ics);
			// Note:  extra_ics will be freed up by next call to get_next_file().
		}
	}
	for (i = 0; i < num_extra_ics; i++)
	{
		inner_class &extra_ic = extra_ics[i];
		extra_ic.inner = class_InnerClasses_RC.getRef();
		CHECK;
		// Find the corresponding equivalent global IC:
		inner_class *global_ic = cp.getIC(extra_ic.inner);
		int flags = class_InnerClasses_F.getInt();
		if (flags == 0)
		{
			// The extra IC is simply a copy of a global IC.
			if (global_ic == nullptr)
			{
				abort("bad reference to inner class");
				break;
			}
			extra_ic = (*global_ic); // fill in rest of fields
		}
		else
		{
			flags &= ~ACC_IC_LONG_FORM; // clear high bit if set to get clean zero
			extra_ic.flags = flags;
			extra_ic.outer = class_InnerClasses_outer_RCN.getRefN();
			extra_ic.name = class_InnerClasses_name_RUN.getRefN();
			// Detect if this is an exact copy of the global tuple.
			if (global_ic != nullptr)
			{
				if (global_ic->flags != extra_ic.flags || global_ic->outer != extra_ic.outer ||
					global_ic->name != extra_ic.name)
				{
					global_ic = nullptr; // not really the same, so break the link
				}
			}
		}
		if (global_ic != nullptr && global_ic->requested)
		{
			// This local repetition reverses the globally implied request.
			global_ic->requested = false;
			extra_ic.requested = false;
			local_ics -= 1;
		}
		else
		{
			// The global either does not exist, or is not yet requested.
			extra_ic.requested = true;
			local_ics += 1;
		}
	}
	// Finally, if there are any that survived, put them into an attribute.
	// (Note that a zero-count attribute is always deleted.)
	// The putref calls below will tell the constant pool to add any
	// necessary local CP references to support the InnerClasses attribute.
	// This step must be the last round of additions to the local CP.
	if (local_ics > 0)
	{
		// append the new attribute:
		putref(cp.sym[cpool::s_InnerClasses]);
		putu4(2 + 2 * 4 * local_ics);
		putu2(local_ics);
		PTRLIST_QSORT(requested_ics, raw_address_cmp);
		int num_global_ics = requested_ics.length();
		for (i = -num_global_ics; i < num_extra_ics; i++)
		{
			inner_class *ic;
			if (i < 0)
				ic = (inner_class *)requested_ics.get(num_global_ics + i);
			else
				ic = &extra_ics[i];
			if (ic->requested)
			{
				putref(ic->inner);
				putref(ic->outer);
				putref(ic->name);
				putu2(ic->flags);
			}
		}
		assert(local_ics == 0);		  // must balance
		putu2_at(wp_at(naOffset), ++na); // increment class attr count
	}

	// Tidy up global 'requested' bits:
	for (i = requested_ics.length(); --i >= 0;)
	{
		inner_class *ic = (inner_class *)requested_ics.get(i);
		ic->requested = false;
	}
	requested_ics.empty();

	CHECK;
	close_output();

	// rewrite CP references in the tail
	cp.computeOutputIndexes();
	int nextref = 0;
	for (i = 0; i < (int)class_fixup_type.size(); i++)
	{
		int type = class_fixup_type.getByte(i);
		byte *fixp = wp_at(class_fixup_offset.get(i));
		entry *e = (entry *)class_fixup_ref.get(nextref++);
		int idx = e->getOutputIndex();
		switch (type)
		{
		case 1:
			putu1_at(fixp, idx);
			break;
		case 2:
			putu2_at(fixp, idx);
			break;
		default:
			assert(false); // should not reach here
		}
	}
	CHECK;
}

void unpacker::write_classfile_head()
{
	cur_classfile_head.empty();
	set_output(&cur_classfile_head);

	putu4(JAVA_MAGIC);
	putu2(cur_class_minver);
	putu2(cur_class_majver);
	putu2(cp.outputIndexLimit);

	int checkIndex = 1;
	int noes = cp.outputEntries.length();
	entry **oes = (entry **)cp.outputEntries.base();
	for (int i = 0; i < noes; i++)
	{
		entry &e = *oes[i];
		assert(e.getOutputIndex() == checkIndex++);
		byte tag = e.tag;
		assert(tag != CONSTANT_Signature);
		putu1(tag);
		switch (tag)
		{
		case CONSTANT_Utf8:
			putu2((int)e.value.b.len);
			put_bytes(e.value.b);
			break;
		case CONSTANT_Integer:
		case CONSTANT_Float:
			putu4(e.value.i);
			break;
		case CONSTANT_Long:
		case CONSTANT_Double:
			putu8(e.value.l);
			assert(checkIndex++);
			break;
		case CONSTANT_Class:
		case CONSTANT_String:
			// just write the ref
			putu2(e.refs[0]->getOutputIndex());
			break;
		case CONSTANT_Fieldref:
		case CONSTANT_Methodref:
		case CONSTANT_InterfaceMethodref:
		case CONSTANT_NameandType:
			putu2(e.refs[0]->getOutputIndex());
			putu2(e.refs[1]->getOutputIndex());
			break;
		default:
			abort(ERROR_INTERNAL);
		}
	}
	close_output();
}

unpacker::file *unpacker::get_next_file()
{
	CHECK_0;
	free_temps();
	if (files_remaining == 0)
	{
		// Leave a clue that we're exhausted.
		cur_file.name = nullptr;
		cur_file.size = 0;
		if (archive_size != 0)
		{
			julong predicted_size = unsized_bytes_read + archive_size;
			if (predicted_size != bytes_read)
				abort("archive header had incorrect size");
		}
		return nullptr;
	}
	files_remaining -= 1;
	assert(files_written < file_count || classes_written < class_count);
	cur_file.name = "";
	cur_file.size = 0;
	cur_file.modtime = default_file_modtime;
	cur_file.options = default_file_options;
	cur_file.data[0].set(nullptr, 0);
	cur_file.data[1].set(nullptr, 0);
	if (files_written < file_count)
	{
		entry *e = file_name.getRef();
		CHECK_0;
		cur_file.name = e->utf8String();
		bool haveLongSize = ((archive_options & AO_HAVE_FILE_SIZE_HI) != 0);
		cur_file.size = file_size_hi.getLong(file_size_lo, haveLongSize);
		if ((archive_options & AO_HAVE_FILE_MODTIME) != 0)
			cur_file.modtime += file_modtime.getInt(); // relative to archive modtime
		if ((archive_options & AO_HAVE_FILE_OPTIONS) != 0)
			cur_file.options |= file_options.getInt() & ~suppress_file_options;
	}
	else if (classes_written < class_count)
	{
		// there is a class for a missing file record
		cur_file.options |= FO_IS_CLASS_STUB;
	}
	if ((cur_file.options & FO_IS_CLASS_STUB) != 0)
	{
		assert(classes_written < class_count);
		classes_written += 1;
		if (cur_file.size != 0)
		{
			abort("class file size transmitted");
			return nullptr;
		}
		reset_cur_classfile();

		// write the meat of the classfile:
		write_classfile_tail();
		cur_file.data[1] = cur_classfile_tail.b;
		CHECK_0;

		// write the CP of the classfile, second:
		write_classfile_head();
		cur_file.data[0] = cur_classfile_head.b;
		CHECK_0;

		cur_file.size += cur_file.data[0].len;
		cur_file.size += cur_file.data[1].len;
		if (cur_file.name[0] == '\0')
		{
			bytes &prefix = cur_class->ref(0)->value.b;
			const char *suffix = ".class";
			int len = (int)(prefix.len + strlen(suffix));
			bytes name;
			name.set(T_NEW(byte, add_size(len, 1)), len);
			cur_file.name = name.strcat(prefix).strcat(suffix).strval();
		}
	}
	else
	{
		// If there is buffered file data, produce a pointer to it.
		if (cur_file.size != (size_t)cur_file.size)
		{
			// Silly size specified.
			abort("resource file too large");
			return nullptr;
		}
		size_t rpleft = input_remaining();
		if (rpleft > 0)
		{
			if (rpleft > cur_file.size)
				rpleft = (size_t)cur_file.size;
			cur_file.data[0].set(rp, rpleft);
			rp += rpleft;
		}
		if (rpleft < cur_file.size)
		{
			// Caller must read the rest.
			size_t fleft = (size_t)cur_file.size - rpleft;
			bytes_read += fleft; // Credit it to the overall archive size.
		}
	}
	CHECK_0;
	bytes_written += cur_file.size;
	files_written += 1;
	return &cur_file;
}

// Write a file to jarout.
void unpacker::write_file_to_jar(unpacker::file *f)
{
	size_t htsize = f->data[0].len + f->data[1].len;
	julong fsize = f->size;
	if (htsize == fsize)
	{
		jarout->addJarEntry(f->name, f->deflate_hint(), f->modtime, f->data[0], f->data[1]);
	}
	else
	{
		assert(input_remaining() == 0);
		bytes part1, part2;
		part1.len = f->data[0].len;
		part1.set(T_NEW(byte, part1.len), part1.len);
		part1.copyFrom(f->data[0]);
		assert(f->data[1].len == 0);
		part2.set(nullptr, 0);
		size_t fleft = (size_t)fsize - part1.len;
		assert(bytes_read > fleft); // part2 already credited by get_next_file
		bytes_read -= fleft;
		if (fleft > 0)
		{
			// Must read some more.
			if (live_input)
			{
				// Stop using the input buffer.  Make a new one:
				if (free_input)
					input.free();
				input.init(fleft > (1 << 12) ? fleft : (1 << 12));
				free_input = true;
				live_input = false;
			}
			else
			{
				// Make it large enough.
				assert(free_input); // must be reallocable
				input.ensureSize(fleft);
			}
			rplimit = rp = input.base();
			CHECK;
			input.setLimit(rp + fleft);
			if (!ensure_input(fleft))
				abort("EOF reading resource file");
			part2.ptr = input_scan();
			part2.len = input_remaining();
			rplimit = rp = input.base();
		}
		jarout->addJarEntry(f->name, f->deflate_hint(), f->modtime, part1, part2);
	}
	if (verbose >= 3)
	{
		fprintf(stderr, "Wrote " LONG_LONG_FORMAT " bytes to: %s\n", fsize, f->name);
	}
}

void unpacker::abort(const char *message)
{
	if (message == nullptr)
		message = "error unpacking archive";
	if (message[0] == '@')
		++message;
	fprintf(stderr, "%s\n", message);
	fflush(stderr);
	exit(-1);
}