aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/vhdl-prints.adb
blob: b09c00db681f66be09a3bdbf49225e3ba0cca075 (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
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
--  VHDL regeneration from internal nodes.
--  Copyright (C) 2002, 2003, 2004, 2005 Tristan Gingold
--
--  This program is free software: you can redistribute it and/or modify
--  it under the terms of the GNU General Public License as published by
--  the Free Software Foundation, either version 2 of the License, or
--  (at your option) any later version.
--
--  This program 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 for more details.
--
--  You should have received a copy of the GNU General Public License
--  along with this program.  If not, see <gnu.org/licenses>.

--  Re-print a tree as VHDL sources.  Except for comments and parenthesis, the
--  sequence of tokens displayed is the same as the sequence of tokens in the
--  input file.  If parenthesis are kept by the parser, the only differences
--  are comments and layout.
with Ada.Unchecked_Deallocation;

with Types; use Types;
with Simple_IO;
with Flags; use Flags;
with Name_Table;
with Str_Table;
with Std_Names; use Std_Names;
with Files_Map;
with File_Comments;

with Vhdl.Types; use Vhdl.Types;
with Vhdl.Errors; use Vhdl.Errors;
with Vhdl.Utils; use Vhdl.Utils;
with Vhdl.Std_Package;
with PSL.Priorities; use PSL.Priorities;
with PSL.Nodes; use PSL.Nodes;
with PSL.Prints;
with PSL.NFAs;
with PSL.Errors;

package body Vhdl.Prints is

   --  If True, display extra parenthesis to make priority of operators
   --  explicit.
   Flag_Parenthesis : constant Boolean := False;

   --  If set, disp after a string literal the type enclosed into brackets.
   Flag_Disp_String_Literal_Type: constant Boolean := False;

   --  If set, disp implicit declarations.
   Flag_Implicit : constant Boolean := False;

   procedure Disp_Type (Ctxt : in out Ctxt_Class; A_Type: Iir);
   procedure Disp_Range (Ctxt : in out Ctxt_Class; Rng : Iir);
   procedure Print (Ctxt : in out Ctxt_Class; Expr: Iir);

   procedure Disp_Concurrent_Statement (Ctxt : in out Ctxt_Class; Stmt: Iir);
   procedure Disp_Concurrent_Statement_Chain
     (Ctxt : in out Ctxt_Class; Parent: Iir);
   procedure Disp_Simultaneous_Statement_Chain
     (Ctxt : in out Ctxt_Class; Chain: Iir);
   procedure Disp_Declaration_Chain
     (Ctxt : in out Ctxt_Class; Parent : Iir);
   procedure Disp_Process_Statement (Ctxt : in out Ctxt_Class; Process: Iir);
   procedure Disp_Sequential_Statements
     (Ctxt : in out Ctxt_Class; First : Iir);
   procedure Disp_Choice (Ctxt : in out Ctxt_Class; Choice: in out Iir);
   procedure Disp_Association_Chain (Ctxt : in out Ctxt_Class; Chain : Iir);
   procedure Disp_Block_Configuration
     (Ctxt : in out Ctxt_Class; Block: Iir_Block_Configuration);
   procedure Disp_Subprogram_Declaration
     (Ctxt : in out Ctxt_Class; Subprg: Iir; Implicit : Boolean := False);
   procedure Disp_Binding_Indication
     (Ctxt : in out Ctxt_Class; Bind : Iir);
   procedure Disp_Subtype_Indication
     (Ctxt : in out Ctxt_Class; Def : Iir; Full_Decl : Boolean := False);
   procedure Disp_Subnature_Indication (Ctxt : in out Ctxt_Class; Ind : Iir);
   procedure Disp_Parametered_Attribute
     (Ctxt : in out Ctxt_Class; Name : Name_Id; Expr : Iir);
   procedure Disp_String_Literal
     (Ctxt : in out Ctxt_Class; Str : Iir; El_Type : Iir);
   procedure Disp_Package_Declaration
     (Ctxt : in out Ctxt_Class; Decl: Iir_Package_Declaration);
   procedure Disp_Package_Instantiation_Declaration
     (Ctxt : in out Ctxt_Class; Decl: Iir);
   procedure Disp_Package_Body (Ctxt : in out Ctxt_Class; Decl: Iir);
   procedure Disp_Attribute_Name (Ctxt : in out Ctxt_Class; Attr : Iir);

   procedure Print_Property (Ctxt : in out Ctxt_Class;
                             Prop : PSL_Node;
                             Parent_Prio : Priority := Prio_Lowest);
   procedure Print_Sequence (Ctxt : in out Ctxt_Class;
                             Seq : PSL_Node;
                             Parent_Prio : Priority := Prio_Lowest);

   procedure Disp_Int64 (Ctxt : in out Ctxt_Class; Val: Int64);
   procedure Disp_Int32 (Ctxt : in out Ctxt_Class; Val: Iir_Int32);
   procedure Disp_Fp64 (Ctxt : in out Ctxt_Class; Val: Fp64);

   package OOB is
      procedure Put (Str : String);
      procedure New_Line;
   end OOB;

   package body OOB is
      procedure Put (Str : String) is
      begin
         Simple_IO.Put_Err (Str);
      end Put;

      procedure Put (C : Character) is
      begin
         Put ((1 => C));
      end Put;

      procedure New_Line is
      begin
         Put (ASCII.LF);
      end New_Line;
   end OOB;

   procedure Disp_Token (Ctxt : in out Ctxt_Class; Tok1, Tok2 : Token_Type) is
   begin
      Disp_Token (Ctxt, Tok1);
      Disp_Token (Ctxt, Tok2);
   end Disp_Token;

   procedure Disp_Ident (Ctxt : in out Ctxt_Class; Id: Name_Id) is
   begin
      if Name_Table.Is_Character (Id) then
         Start_Lit (Ctxt, Tok_Character);
         Disp_Char (Ctxt, ''');
         Disp_Char (Ctxt, Name_Table.Get_Character (Id));
         Disp_Char (Ctxt, ''');
         Close_Lit (Ctxt);
      else
         Start_Lit (Ctxt, Tok_Identifier);
         if Id = Null_Identifier then
            Disp_Str (Ctxt, "<anonymous>");
         else
            Disp_Str (Ctxt, Name_Table.Image (Id));
         end if;
         Close_Lit (Ctxt);
      end if;
   end Disp_Ident;

   function Or_Else (L, R : Iir) return Iir is
   begin
      if L /= Null_Iir then
         return L;
      end if;
      pragma Assert (R /= Null_Iir);
      return R;
   end Or_Else;

   --  Disp a literal from the sources (so using exactely the same characters).
   procedure Disp_From_Source
     (Ctxt : in out Ctxt_Class;
      Loc : Location_Type; Len : Int32; Tok : Token_Type)
   is
      use Files_Map;
      pragma Assert (Len > 0);
      File : Source_File_Entry;
      Pos : Source_Ptr;
      Buf : File_Buffer_Acc;
   begin
      Location_To_File_Pos (Loc, File, Pos);
      Buf := Get_File_Source (File);
      Start_Lit (Ctxt, Tok);
      for I in 1 .. Len loop
         Disp_Char (Ctxt, Buf (Pos));
         Pos := Pos + 1;
      end loop;
      Close_Lit (Ctxt);
   end Disp_From_Source;

   procedure Disp_Identifier (Ctxt : in out Ctxt_Class; Node : Iir)
   is
      use Name_Table;
      Id : constant Name_Id := Get_Identifier (Node);
      Loc : constant Location_Type := Get_Location (Node);
   begin
      --  Try to display the one from the sources.
      if Id /= Null_Identifier
        and then not Is_Character (Id)
        and then Loc /= No_Location
        and then Loc /= Std_Package.Std_Location
      then
         Disp_From_Source
           (Ctxt, Loc, Int32 (Get_Name_Length (Id)), Tok_Identifier);
      else
         Disp_Ident (Ctxt, Id);
      end if;
   end Disp_Identifier;

   procedure Disp_Literal_From_Source
     (Ctxt : in out Ctxt_Class; Lit : Iir; Tok : Token_Type) is
   begin
      Disp_From_Source
        (Ctxt, Get_Location (Lit), Get_Literal_Length (Lit), Tok);
   end Disp_Literal_From_Source;

   procedure Disp_Function_Name (Ctxt : in out Ctxt_Class; Func: Iir)
   is
      use Name_Table;
      Id : constant Name_Id := Get_Identifier (Func);
   begin
      case Id is
         when Name_Id_Operators
           | Name_Word_Operators
           | Name_Logical_Operators
           | Name_Xnor
           | Name_Shift_Operators =>
            Start_Lit (Ctxt, Tok_String);
            Disp_Char (Ctxt, '"');
            Disp_Str (Ctxt, Image (Id));
            Disp_Char (Ctxt, '"');
            Close_Lit (Ctxt);
         when others =>
            Disp_Ident (Ctxt, Id);
      end case;
   end Disp_Function_Name;

   --  Disp the name of DECL.
   procedure Disp_Name_Of (Ctxt : in out Ctxt_Class; Decl: Iir) is
   begin
      case Get_Kind (Decl) is
         when Iir_Kind_Component_Declaration
           | Iir_Kind_Entity_Declaration
           | Iir_Kind_Architecture_Body
           | Iir_Kind_Configuration_Declaration
           | Iir_Kind_Context_Declaration
           | Iir_Kinds_Verification_Unit
           | Iir_Kinds_Interface_Object_Declaration
           | Iir_Kind_Interface_Terminal_Declaration
           | Iir_Kind_Interface_Type_Declaration
           | Iir_Kinds_Interface_Subprogram_Declaration
           | Iir_Kind_Constant_Declaration
           | Iir_Kind_Signal_Declaration
           | Iir_Kind_Guard_Signal_Declaration
           | Iir_Kind_Variable_Declaration
           | Iir_Kind_File_Declaration
           | Iir_Kind_Type_Declaration
           | Iir_Kind_Subtype_Declaration
           | Iir_Kind_Element_Declaration
           | Iir_Kind_Record_Element_Constraint
           | Iir_Kind_Package_Declaration
           | Iir_Kind_Object_Alias_Declaration
           | Iir_Kind_Non_Object_Alias_Declaration
           | Iir_Kind_Iterator_Declaration
           | Iir_Kind_Library_Declaration
           | Iir_Kind_Unit_Declaration
           | Iir_Kind_Nature_Declaration
           | Iir_Kind_Subnature_Declaration
           | Iir_Kind_Terminal_Declaration
           | Iir_Kinds_Quantity_Declaration
           | Iir_Kind_Group_Template_Declaration
           | Iir_Kind_Character_Literal
           | Iir_Kinds_Process_Statement
           | Iir_Kind_Psl_Endpoint_Declaration
           | Iir_Kind_Psl_Boolean_Parameter =>
            Disp_Identifier (Ctxt, Decl);
         when Iir_Kind_Anonymous_Type_Declaration =>
            Start_Lit (Ctxt, Tok_Identifier);
            Disp_Char (Ctxt, '<');
            Disp_Str (Ctxt, Name_Table.Image (Get_Identifier (Decl)));
            Disp_Char (Ctxt, '>');
            Close_Lit (Ctxt);
         when Iir_Kind_Function_Declaration =>
            Disp_Function_Name (Ctxt, Decl);
         when Iir_Kind_Procedure_Declaration =>
            Disp_Identifier (Ctxt, Decl);
         when Iir_Kind_Physical_Subtype_Definition
           | Iir_Kind_Enumeration_Type_Definition
           | Iir_Kind_Physical_Type_Definition
           | Iir_Kind_Record_Type_Definition
           | Iir_Kind_Protected_Type_Declaration =>
            --  Used for 'end' DECL_NAME.
            Disp_Identifier (Ctxt, Get_Type_Declarator (Decl));
         when Iir_Kind_Record_Nature_Definition =>
            Disp_Identifier (Ctxt, Get_Nature_Declarator (Decl));
         when Iir_Kind_Component_Instantiation_Statement =>
            Disp_Ident (Ctxt, Get_Label (Decl));
         when Iir_Kind_Design_Unit =>
            Disp_Name_Of (Ctxt, Get_Library_Unit (Decl));
         when Iir_Kind_Enumeration_Literal
           | Iir_Kind_Simple_Name =>
            Disp_Identifier (Ctxt, Decl);
         when Iir_Kind_Block_Statement
           | Iir_Kind_If_Generate_Statement
           | Iir_Kind_Case_Generate_Statement
           | Iir_Kind_For_Generate_Statement
           | Iir_Kind_Simultaneous_Procedural_Statement =>
            Disp_Ident (Ctxt, Get_Label (Decl));
         when Iir_Kind_Package_Body =>
            Disp_Identifier (Ctxt, Decl);
         when Iir_Kind_Procedure_Body
           | Iir_Kind_Function_Body =>
            Disp_Function_Name (Ctxt, Get_Subprogram_Specification (Decl));
         when Iir_Kind_Protected_Type_Body =>
            Disp_Identifier (Ctxt, Decl);
         when others =>
            Error_Kind ("disp_name_of", Decl);
      end case;
   end Disp_Name_Of;

   procedure Disp_Name_Attribute
     (Ctxt : in out Ctxt_Class; Attr : Iir; Name : Name_Id) is
   begin
      Print (Ctxt, Get_Prefix (Attr));
      Disp_Token (Ctxt, Tok_Tick);
      Disp_Ident (Ctxt, Name);
   end Disp_Name_Attribute;

   procedure Disp_Range (Ctxt : in out Ctxt_Class; Rng : Iir) is
   begin
      case Get_Kind (Rng) is
         when Iir_Kind_Range_Expression =>
            declare
               Origin : constant Iir := Get_Range_Origin (Rng);
            begin
               if Dump_Origin_Flag and then Origin /= Null_Iir then
                  Print (Ctxt, Origin);
               else
                  Print (Ctxt, Or_Else (Get_Left_Limit_Expr (Rng),
                                        Get_Left_Limit (Rng)));
                  if Get_Direction (Rng) = Dir_To then
                     Disp_Token (Ctxt, Tok_To);
                  else
                     Disp_Token (Ctxt, Tok_Downto);
                  end if;
                  Print (Ctxt, Or_Else (Get_Right_Limit_Expr (Rng),
                                        Get_Right_Limit (Rng)));
               end if;
            end;
         when Iir_Kind_Range_Array_Attribute =>
            Disp_Parametered_Attribute (Ctxt, Name_Range, Rng);
         when Iir_Kind_Reverse_Range_Array_Attribute =>
            Disp_Parametered_Attribute (Ctxt, Name_Reverse_Range, Rng);
         when Iir_Kind_Simple_Name
           | Iir_Kind_Selected_Name
           | Iir_Kind_Attribute_Name
           | Iir_Kind_Parenthesis_Name =>
            Print (Ctxt, Rng);
         when others =>
            Disp_Subtype_Indication (Ctxt, Rng);
            --  Disp_Name_Of (Get_Type_Declarator (Decl));
      end case;
   end Disp_Range;

   procedure Disp_After_End
     (Ctxt : in out Ctxt_Class;
      Decl : Iir; Tok1 : Token_Type; Tok2 : Token_Type := Tok_Invalid) is
   begin
      if Get_End_Has_Reserved_Id (Decl) then
         Disp_Token (Ctxt, Tok1);
         if Tok2 /= Tok_Invalid then
            Disp_Token (Ctxt, Tok2);
         end if;
      end if;
      if Get_End_Has_Identifier (Decl) then
         Disp_Name_Of (Ctxt, Decl);
      end if;
   end Disp_After_End;

   procedure Disp_End_No_Close
     (Ctxt : in out Ctxt_Class;
      Decl : Iir; Tok1 : Token_Type; Tok2 : Token_Type := Tok_Invalid) is
   begin
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_End);
      Disp_After_End (Ctxt, Decl, Tok1, Tok2);
   end Disp_End_No_Close;

   procedure Disp_End
     (Ctxt : in out Ctxt_Class;
      Decl : Iir; Tok1 : Token_Type; Tok2 : Token_Type := Tok_Invalid) is
   begin
      Disp_End_No_Close (Ctxt, Decl, Tok1, Tok2);
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_End;

   procedure Disp_End (Ctxt : in out Ctxt_Class; Tok1 : Token_Type) is
   begin
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_End);
      Disp_Token (Ctxt, Tok1);
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_End;

   procedure Disp_End_Label_No_Close
     (Ctxt : in out Ctxt_Class; Stmt : Iir; Tok : Token_Type) is
   begin
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_End);
      Disp_Token (Ctxt, Tok);
      if Get_End_Has_Identifier (Stmt) then
         Disp_Ident (Ctxt, Get_Label (Stmt));
      end if;
      Disp_Token (Ctxt, Tok_Semi_Colon);
   end Disp_End_Label_No_Close;

   procedure Disp_End_Label
     (Ctxt : in out Ctxt_Class; Stmt : Iir; Tok : Token_Type) is
   begin
      Disp_End_Label_No_Close (Ctxt, Stmt, Tok);
      Close_Hbox (Ctxt);
   end Disp_End_Label;

   procedure Disp_Use_Clause (Ctxt : in out Ctxt_Class; Clause: Iir_Use_Clause)
   is
      Name : Iir;
   begin
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Use);
      Name := Clause;
      loop
         Print (Ctxt, Get_Selected_Name (Name));
         Name := Get_Use_Clause_Chain (Name);
         exit when Name = Null_Iir;
         Disp_Token (Ctxt, Tok_Comma);
      end loop;
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Use_Clause;

   -- Disp the resolution function (if any) of type definition DEF.
   procedure Disp_Resolution_Indication
     (Ctxt : in out Ctxt_Class; Subtype_Def: Iir)
   is
      procedure Inner (Ind : Iir) is
      begin
         case Get_Kind (Ind) is
            when Iir_Kinds_Denoting_Name =>
               Print (Ctxt, Ind);
            when Iir_Kind_Array_Element_Resolution =>
               declare
                  Res : constant Iir := Get_Resolution_Indication (Ind);
               begin
                  Disp_Token (Ctxt, Tok_Left_Paren);
                  if Is_Valid (Res) then
                     Inner (Res);
                  else
                     Print (Ctxt, Get_Resolution_Indication
                                  (Get_Element_Subtype_Indication (Ind)));
                  end if;
                  Disp_Token (Ctxt, Tok_Right_Paren);
               end;
            when others =>
               Error_Kind ("disp_resolution_indication", Ind);
         end case;
      end Inner;

      Ind : Iir;
   begin
      case Get_Kind (Subtype_Def) is
         when Iir_Kind_Access_Subtype_Definition =>
            --  No resolution indication on access subtype.
            return;
         when others =>
            Ind := Get_Resolution_Indication (Subtype_Def);
            if Ind = Null_Iir then
               --  No resolution indication.
               return;
            end if;
      end case;

      if False then
         declare
            Type_Mark : constant Iir := Get_Denoted_Type_Mark (Subtype_Def);
         begin
            if Get_Kind (Type_Mark) in Iir_Kinds_Subtype_Definition
              and then Get_Resolution_Indication (Type_Mark) = Ind
            then
               --  Resolution indication was inherited from the type_mark.
               return;
            end if;
         end;
      end if;

      Inner (Ind);
   end Disp_Resolution_Indication;

   procedure Disp_Element_Constraint
     (Ctxt : in out Ctxt_Class; Def : Iir; Type_Mark : Iir);

   procedure Disp_Discrete_Range
     (Ctxt : in out Ctxt_Class; Iterator: Iir) is
   begin
      if Get_Kind (Iterator) in Iir_Kinds_Subtype_Definition then
         Disp_Subtype_Indication (Ctxt, Iterator);
      else
         Disp_Range (Ctxt, Iterator);
      end if;
   end Disp_Discrete_Range;

   procedure Disp_Array_Sub_Definition_Indexes
     (Ctxt : in out Ctxt_Class; Def : Iir)
   is
      Indexes : Iir_Flist;
      Index : Iir;
   begin
      Indexes := Get_Index_Constraint_List (Def);
      if Indexes = Null_Iir_Flist then
         Indexes := Get_Index_Subtype_List (Def);
      end if;
      Disp_Token (Ctxt, Tok_Left_Paren);
      for I in Flist_First .. Flist_Last (Indexes) loop
         Index := Get_Nth_Element (Indexes, I);
         if I /= 0 then
            Disp_Token (Ctxt, Tok_Comma);
         end if;
         Disp_Discrete_Range (Ctxt, Index);
      end loop;
      Disp_Token (Ctxt, Tok_Right_Paren);
   end Disp_Array_Sub_Definition_Indexes;

   procedure Disp_Array_Element_Constraint
     (Ctxt : in out Ctxt_Class; Def : Iir; Type_Mark : Iir) is
   begin
      if not Get_Has_Array_Constraint_Flag (Def)
        and then not Get_Has_Element_Constraint_Flag (Def)
      then
         return;
      end if;

      if Get_Has_Array_Constraint_Flag (Def) then
         if Get_Index_Constraint_List (Def) = Null_Iir_Flist then
            Disp_Token (Ctxt, Tok_Left_Paren);
            Disp_Token (Ctxt, Tok_Open);
            Disp_Token (Ctxt, Tok_Right_Paren);
         else
            Disp_Array_Sub_Definition_Indexes (Ctxt, Def);
         end if;
      end if;

      if Get_Has_Element_Constraint_Flag (Def) then
         Disp_Element_Constraint (Ctxt, Get_Array_Element_Constraint (Def),
                                  Get_Element_Subtype (Type_Mark));
      end if;
   end Disp_Array_Element_Constraint;

   procedure Disp_Record_Element_Constraint
     (Ctxt : in out Ctxt_Class; Def : Iir)
   is
      El_List : constant Iir_Flist := Get_Elements_Declaration_List (Def);
      El : Iir;
      Has_El : Boolean := False;
   begin
      for I in Flist_First .. Flist_Last (El_List) loop
         El := Get_Nth_Element (El_List, I);
         if Get_Kind (El) = Iir_Kind_Record_Element_Constraint
           and then Get_Parent (El) = Def
         then
            if Has_El then
               Disp_Token (Ctxt, Tok_Comma);
            else
               Disp_Token (Ctxt, Tok_Left_Paren);
               Has_El := True;
            end if;
            Disp_Name_Of (Ctxt, El);
            Disp_Element_Constraint (Ctxt, Get_Type (El),
                                     Get_Base_Type (Get_Type (El)));
         end if;
      end loop;
      if Has_El then
         Disp_Token (Ctxt, Tok_Right_Paren);
      end if;
   end Disp_Record_Element_Constraint;

   procedure Disp_Element_Constraint
     (Ctxt : in out Ctxt_Class; Def : Iir; Type_Mark : Iir) is
   begin
      case Get_Kind (Def) is
         when Iir_Kind_Record_Subtype_Definition =>
            Disp_Record_Element_Constraint (Ctxt, Def);
         when Iir_Kind_Array_Subtype_Definition =>
            Disp_Array_Element_Constraint (Ctxt, Def, Type_Mark);
         when others =>
            Error_Kind ("disp_element_constraint", Def);
      end case;
   end Disp_Element_Constraint;

   procedure Disp_Tolerance_Opt (Ctxt : in out Ctxt_Class; N : Iir)
   is
      Tol : constant Iir := Get_Tolerance (N);
   begin
      if Tol /= Null_Iir then
         Disp_Token (Ctxt, Tok_Tolerance);
         Print (Ctxt, Tol);
      end if;
   end Disp_Tolerance_Opt;

   procedure Disp_Subtype_Indication
     (Ctxt : in out Ctxt_Class; Def : Iir; Full_Decl : Boolean := False)
   is
      Type_Mark : Iir;
      Base_Type : Iir;
      Decl : Iir;
   begin
      case Get_Kind (Def) is
         when Iir_Kinds_Denoting_Name
           | Iir_Kind_Subtype_Attribute
           | Iir_Kind_Attribute_Name =>
            Print (Ctxt, Def);
            return;
         when others =>
            null;
      end case;

      Decl := Get_Type_Declarator (Def);
      if not Full_Decl and then Decl /= Null_Iir then
         Disp_Name_Of (Ctxt, Decl);
         return;
      end if;

      -- Resolution function name.
      Disp_Resolution_Indication (Ctxt, Def);

      -- type mark.
      Type_Mark := Get_Subtype_Type_Mark (Def);
      if Type_Mark /= Null_Iir then
         Print (Ctxt, Type_Mark);
         Type_Mark := Get_Type (Type_Mark);
      end if;

      case Get_Kind (Def) is
         when Iir_Kind_Array_Subtype_Definition =>
            Disp_Array_Element_Constraint
              (Ctxt, Def, Or_Else (Type_Mark, Def));
         when Iir_Kind_Subtype_Definition =>
            declare
               Rng : constant Iir := Get_Range_Constraint (Def);
            begin
               if Rng /= Null_Iir then
                  Disp_Token (Ctxt, Tok_Range);
                  Print (Ctxt, Get_Range_Constraint (Def));
               end if;
               Disp_Tolerance_Opt (Ctxt, Def);
            end;
         when others =>
            Base_Type := Get_Base_Type (Def);
            case Get_Kind (Base_Type) is
               when Iir_Kind_Integer_Type_Definition
                 | Iir_Kind_Enumeration_Type_Definition
                 | Iir_Kind_Floating_Type_Definition
                 | Iir_Kind_Physical_Type_Definition =>
                  if Type_Mark = Null_Iir
                    or else Get_Range_Constraint (Def)
                    /= Get_Range_Constraint (Type_Mark)
                  then
                     if Type_Mark /= Null_Iir then
                        Disp_Token (Ctxt, Tok_Range);
                     end if;
                     Print (Ctxt, Get_Range_Constraint (Def));
                  end if;
                  if Get_Kind (Base_Type) = Iir_Kind_Floating_Type_Definition
                  then
                     Disp_Tolerance_Opt (Ctxt, Def);
                  end if;
               when Iir_Kind_Access_Type_Definition =>
                  declare
                     Des_Ind : constant Iir :=
                       Get_Designated_Subtype_Indication (Def);
                  begin
                     if Des_Ind /= Null_Iir then
                        pragma Assert (Get_Kind (Des_Ind)
                                         = Iir_Kind_Array_Subtype_Definition);
                        Disp_Array_Element_Constraint
                          (Ctxt, Des_Ind, Get_Designated_Type (Base_Type));
                     end if;
                  end;
               when Iir_Kind_Array_Type_Definition =>
                  Disp_Array_Element_Constraint
                    (Ctxt, Def, Or_Else (Type_Mark, Def));
               when Iir_Kind_Record_Type_Definition =>
                  Disp_Record_Element_Constraint (Ctxt, Def);
               when others =>
                  Error_Kind ("disp_subtype_indication", Base_Type);
            end case;
      end case;
   end Disp_Subtype_Indication;

   procedure Disp_Enumeration_Type_Definition
     (Ctxt : in out Ctxt_Class; Def: Iir_Enumeration_Type_Definition)
   is
      Lits : constant Iir_Flist := Get_Enumeration_Literal_List (Def);
      A_Lit: Iir;
   begin
      Disp_Token (Ctxt, Tok_Left_Paren);
      for I in Flist_First .. Flist_Last (Lits) loop
         A_Lit := Get_Nth_Element (Lits, I);
         if I > 0 then
            Disp_Token (Ctxt, Tok_Comma);
         end if;
         Disp_Name_Of (Ctxt, A_Lit);
      end loop;
      Disp_Token (Ctxt, Tok_Right_Paren);
   end Disp_Enumeration_Type_Definition;

   procedure Disp_Array_Definition_Indexes
     (Ctxt : in out Ctxt_Class; Def: Iir)
   is
      Indexes : Iir_Flist;
      Index: Iir;
   begin
      Indexes := Get_Index_Subtype_Definition_List (Def);
      if Indexes = Null_Iir_Flist then
         Indexes := Get_Index_Subtype_List (Def);
      end if;
      Disp_Token (Ctxt, Tok_Array, Tok_Left_Paren);
      for I in Flist_First .. Flist_Last (Indexes) loop
         Index := Get_Nth_Element (Indexes, I);
         if I /= 0 then
            Disp_Token (Ctxt, Tok_Comma);
         end if;
         Print (Ctxt, Index);
         Disp_Token (Ctxt, Tok_Range, Tok_Box);
      end loop;
      Disp_Token (Ctxt, Tok_Right_Paren, Tok_Of);
   end Disp_Array_Definition_Indexes;

   procedure Disp_Array_Type_Definition
     (Ctxt : in out Ctxt_Class; Def: Iir_Array_Type_Definition) is
   begin
      Disp_Array_Definition_Indexes (Ctxt, Def);
      Disp_Subtype_Indication (Ctxt, Get_Element_Subtype_Indication (Def));
   end Disp_Array_Type_Definition;

   procedure Disp_Physical_Literal (Ctxt : in out Ctxt_Class; Lit: Iir)
   is
      Len : constant Int32 := Get_Literal_Length (Lit);
      Unit : Iir;
   begin
      case Iir_Kinds_Physical_Literal (Get_Kind (Lit)) is
         when Iir_Kind_Physical_Int_Literal =>
            if Len /= 0 then
               Disp_Literal_From_Source (Ctxt, Lit, Tok_Integer);
            else
               Disp_Int64 (Ctxt, Get_Value (Lit));
            end if;
         when Iir_Kind_Physical_Fp_Literal =>
            if Len /= 0 then
               Disp_Literal_From_Source (Ctxt, Lit, Tok_Real);
            else
               Disp_Fp64 (Ctxt, Get_Fp_Value (Lit));
            end if;
      end case;

      Unit := Get_Unit_Name (Lit);
      if Is_Valid (Unit) then
         --  No unit in range_constraint of physical type declaration.
         Print (Ctxt, Unit);
      end if;
   end Disp_Physical_Literal;

   procedure Disp_Record_Type_Definition
     (Ctxt : in out Ctxt_Class; Def: Iir_Record_Type_Definition)
   is
      List : constant Iir_Flist := Get_Elements_Declaration_List (Def);
      El: Iir_Element_Declaration;
      El_Subtype : Iir;
      Reindent : Boolean;
   begin
      Disp_Token (Ctxt, Tok_Record);
      Close_Hbox (Ctxt);
      Reindent := True;
      Start_Vbox (Ctxt);
      for I in Flist_First .. Flist_Last (List) loop
         El := Get_Nth_Element (List, I);
         if Reindent then
            El_Subtype := Get_Subtype_Indication (El);
            Start_Hbox (Ctxt);
         end if;
         Disp_Identifier (Ctxt, El);
         if Get_Has_Identifier_List (El) then
            Disp_Token (Ctxt, Tok_Comma);
            Reindent := False;
         else
            Disp_Token (Ctxt, Tok_Colon);
            Disp_Subtype_Indication (Ctxt, Or_Else (El_Subtype,
                                                    Get_Type (El)));
            Disp_Token (Ctxt, Tok_Semi_Colon);
            Close_Hbox (Ctxt);
            Reindent := True;
         end if;
      end loop;
      Close_Vbox (Ctxt);
      Disp_End_No_Close (Ctxt, Def, Tok_Record);
   end Disp_Record_Type_Definition;

   procedure Disp_Designator_List (Ctxt : in out Ctxt_Class; List: Iir_List)
   is
      El : Iir;
      It : List_Iterator;
      Is_First : Boolean;
   begin
      case List is
         when Null_Iir_List =>
            null;
         when Iir_List_All =>
            Disp_Token (Ctxt, Tok_All);
         when others =>
            It := List_Iterate (List);
            Is_First := True;
            while Is_Valid (It) loop
               El := Get_Element (It);
               if not Is_First then
                  Disp_Token (Ctxt, Tok_Comma);
               else
                  Is_First := False;
               end if;
               Print (Ctxt, El);
               Next (It);
            end loop;
      end case;
   end Disp_Designator_List;

   procedure Disp_Array_Subtype_Definition
     (Ctxt : in out Ctxt_Class; Def : Iir; El_Def : Iir) is
   begin
      Disp_Token (Ctxt, Tok_Array);
      Disp_Array_Sub_Definition_Indexes (Ctxt, Def);
      Disp_Token (Ctxt, Tok_Of);
      Disp_Subtype_Indication (Ctxt, El_Def);
   end Disp_Array_Subtype_Definition;

   -- Display the full definition of a type, ie the sequence that can create
   -- such a type.
   procedure Disp_Type_Definition (Ctxt : in out Ctxt_Class; Def: Iir) is
   begin
      case Get_Kind (Def) is
         when Iir_Kind_Enumeration_Type_Definition =>
            Disp_Enumeration_Type_Definition (Ctxt, Def);
         when Iir_Kind_Array_Type_Definition =>
            Disp_Array_Type_Definition (Ctxt, Def);
         when Iir_Kind_Array_Subtype_Definition =>
            Disp_Array_Subtype_Definition
              (Ctxt, Def, Get_Element_Subtype (Get_Base_Type (Def)));
         when Iir_Kind_Record_Type_Definition =>
            Disp_Record_Type_Definition (Ctxt, Def);
         when Iir_Kind_Access_Type_Definition =>
            Disp_Token (Ctxt, Tok_Access);
            Disp_Subtype_Indication
              (Ctxt, Get_Designated_Subtype_Indication (Def));
         when Iir_Kind_File_Type_Definition =>
            Disp_Token (Ctxt, Tok_File, Tok_Of);
            Disp_Subtype_Indication (Ctxt, Get_File_Type_Mark (Def));
         when Iir_Kind_Protected_Type_Declaration =>
            Disp_Token (Ctxt, Tok_Protected);
            Close_Hbox (Ctxt);
            Start_Vbox (Ctxt);
            Disp_Declaration_Chain (Ctxt, Def);
            Close_Vbox (Ctxt);
            Disp_End_No_Close (Ctxt, Def, Tok_Protected);
         when Iir_Kind_Attribute_Name
           | Iir_Kind_Range_Expression
           | Iir_Kind_Parenthesis_Name =>
            Disp_Token (Ctxt, Tok_Range);
            Print (Ctxt, Def);
         when others =>
            Error_Kind ("disp_type_definition", Def);
      end case;
   end Disp_Type_Definition;

   procedure Disp_Type_Declaration
     (Ctxt : in out Ctxt_Class; Decl: Iir_Type_Declaration)
   is
      Def : constant Iir := Get_Type_Definition (Decl);
   begin
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Type);
      Disp_Name_Of (Ctxt, Decl);
      if Def /= Null_Iir
        and then Get_Kind (Def) /= Iir_Kind_Incomplete_Type_Definition
      then
         Disp_Token (Ctxt, Tok_Is);
         Disp_Type_Definition (Ctxt, Def);
      end if;
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Type_Declaration;

   procedure Disp_Physical_Type_Definition
     (Ctxt : in out Ctxt_Class; Decl : Iir)
   is
      Def : constant Iir := Get_Type_Definition (Decl);
      St : constant Iir := Get_Subtype_Definition (Decl);
      Unit : Iir_Unit_Declaration;
      Rng : Iir;
   begin
      Disp_Token (Ctxt, Tok_Range);
      Rng := Or_Else (St, Def);
      Print (Ctxt, Get_Range_Constraint (Rng));
      Disp_Token (Ctxt, Tok_Units);
      Close_Hbox (Ctxt);

      Start_Vbox (Ctxt);
      Unit := Get_Unit_Chain (Def);
      Start_Hbox (Ctxt);
      Disp_Identifier (Ctxt, Unit);
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
      Unit := Get_Chain (Unit);
      while Unit /= Null_Iir loop
         Start_Hbox (Ctxt);
         Disp_Identifier (Ctxt, Unit);
         Disp_Token (Ctxt, Tok_Equal);
         Print (Ctxt, Get_Physical_Literal (Unit));
         Disp_Token (Ctxt, Tok_Semi_Colon);
         Close_Hbox (Ctxt);
         Unit := Get_Chain (Unit);
      end loop;
      Close_Vbox (Ctxt);
      Disp_End_No_Close (Ctxt, Def, Tok_Units);
   end Disp_Physical_Type_Definition;

   procedure Disp_Anonymous_Type_Declaration
     (Ctxt : in out Ctxt_Class; Decl: Iir_Anonymous_Type_Declaration)
   is
      Def : constant Iir := Get_Type_Definition (Decl);
   begin
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Type);
      Disp_Identifier (Ctxt, Decl);
      Disp_Token (Ctxt, Tok_Is);
      case Get_Kind (Def) is
         when Iir_Kind_Array_Type_Definition =>
            Disp_Array_Subtype_Definition
              (Ctxt, Get_Subtype_Definition (Decl),
               Get_Element_Subtype_Indication (Def));
         when Iir_Kind_Array_Subtype_Definition =>
            Disp_Array_Subtype_Definition
              (Ctxt, Def, Get_Array_Element_Constraint (Def));
         when Iir_Kind_Physical_Type_Definition =>
            Disp_Physical_Type_Definition (Ctxt, Decl);
         when Iir_Kind_Floating_Type_Definition
           | Iir_Kind_Integer_Type_Definition =>
            declare
               St : constant Iir := Get_Subtype_Definition (Decl);
            begin
               Disp_Token (Ctxt, Tok_Range);
               Print (Ctxt, Get_Range_Constraint (St));
            end;
         when others =>
            Disp_Type_Definition (Ctxt, Def);
      end case;
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Anonymous_Type_Declaration;

   procedure Disp_Subtype_Declaration
     (Ctxt : in out Ctxt_Class; Decl: Iir_Subtype_Declaration)
   is
      Def : constant Iir := Get_Type (Decl);
   begin
      --  If the subtype declaration was implicit (added because of a type
      --  declaration), put it as a comment.
      if Def /= Null_Iir
        and then
        (Get_Identifier (Decl)
           = Get_Identifier (Get_Type_Declarator (Get_Base_Type (Def))))
      then
         if Flag_Implicit then
            OOB.Put ("-- ");
         else
            return;
         end if;
      end if;
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Subtype);
      Disp_Name_Of (Ctxt, Decl);
      Disp_Token (Ctxt, Tok_Is);
      Disp_Subtype_Indication
        (Ctxt, Or_Else (Get_Subtype_Indication (Decl), Get_Type (Decl)), True);
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Subtype_Declaration;

   procedure Disp_Type (Ctxt : in out Ctxt_Class; A_Type: Iir)
   is
      Decl: Iir;
   begin
      Decl := Get_Type_Declarator (A_Type);
      if Decl /= Null_Iir then
         Disp_Name_Of (Ctxt, Decl);
      else
         case Get_Kind (A_Type) is
            when Iir_Kind_Enumeration_Type_Definition
              | Iir_Kind_Integer_Type_Definition =>
               raise Program_Error;
            when Iir_Kind_Integer_Subtype_Definition
              | Iir_Kind_Enumeration_Subtype_Definition
              | Iir_Kind_Access_Subtype_Definition =>
               Disp_Subtype_Indication (Ctxt, A_Type);
            when Iir_Kind_Array_Subtype_Definition =>
               Disp_Subtype_Indication (Ctxt, A_Type);
            when others =>
               Error_Kind ("disp_type", A_Type);
         end case;
      end if;
   end Disp_Type;

   procedure Disp_Scalar_Nature_Definition
     (Ctxt : in out Ctxt_Class; Def : Iir) is
   begin
      Print (Ctxt, Get_Across_Type_Mark (Def));
      Disp_Token (Ctxt, Tok_Across);
      Print (Ctxt, Get_Through_Type_Mark (Def));
      Disp_Token (Ctxt, Tok_Through);
      Disp_Name_Of (Ctxt, Get_Reference (Def));
      Disp_Token (Ctxt, Tok_Reference);
   end Disp_Scalar_Nature_Definition;

   procedure Disp_Array_Nature_Definition
     (Ctxt : in out Ctxt_Class; Def: Iir) is
   begin
      Disp_Array_Definition_Indexes (Ctxt, Def);
      Disp_Subnature_Indication (Ctxt, Get_Element_Subnature_Indication (Def));
   end Disp_Array_Nature_Definition;

   procedure Disp_Record_Nature_Definition
     (Ctxt : in out Ctxt_Class; Def : Iir)
   is
      List : constant Iir_Flist := Get_Elements_Declaration_List (Def);
      El: Iir_Element_Declaration;
      El_Subnature : Iir;
      Reindent : Boolean;
   begin
      Disp_Token (Ctxt, Tok_Record);
      Close_Hbox (Ctxt);
      Reindent := True;
      Start_Vbox (Ctxt);
      for I in Flist_First .. Flist_Last (List) loop
         El := Get_Nth_Element (List, I);
         if Reindent then
            El_Subnature := Get_Subnature_Indication (El);
            Start_Hbox (Ctxt);
         end if;
         Disp_Identifier (Ctxt, El);
         if Get_Has_Identifier_List (El) then
            Disp_Token (Ctxt, Tok_Comma);
            Reindent := False;
         else
            Disp_Token (Ctxt, Tok_Colon);
            Disp_Subnature_Indication (Ctxt, El_Subnature);
            Disp_Token (Ctxt, Tok_Semi_Colon);
            Close_Hbox (Ctxt);
            Reindent := True;
         end if;
      end loop;
      Close_Vbox (Ctxt);
      Disp_End_No_Close (Ctxt, Def, Tok_Record);
   end Disp_Record_Nature_Definition;

   procedure Disp_Nature_Definition (Ctxt : in out Ctxt_Class; Def : Iir) is
   begin
      case Get_Kind (Def) is
         when Iir_Kind_Scalar_Nature_Definition =>
            Disp_Scalar_Nature_Definition (Ctxt, Def);
         when Iir_Kind_Record_Nature_Definition =>
            Disp_Record_Nature_Definition (Ctxt, Def);
         when Iir_Kind_Array_Nature_Definition =>
            Disp_Array_Nature_Definition (Ctxt, Def);
         when others =>
            Error_Kind ("disp_nature_definition", Def);
      end case;
   end Disp_Nature_Definition;

   procedure Disp_Nature_Declaration (Ctxt : in out Ctxt_Class; Decl : Iir) is
   begin
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Nature);
      Disp_Identifier (Ctxt, Decl);
      Disp_Token (Ctxt, Tok_Is);
      Disp_Nature_Definition (Ctxt, Get_Nature (Decl));
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Nature_Declaration;

   procedure Disp_Subnature_Indication (Ctxt : in out Ctxt_Class; Ind : Iir) is
   begin
      case Get_Kind (Ind) is
         when Iir_Kinds_Denoting_Name
           | Iir_Kind_Subtype_Attribute
           | Iir_Kind_Attribute_Name =>
            Print (Ctxt, Ind);
         when Iir_Kind_Array_Subnature_Definition =>
            Print (Ctxt, Get_Subnature_Nature_Mark (Ind));
            Disp_Array_Sub_Definition_Indexes (Ctxt, Ind);
         when others =>
            Error_Kind ("disp_subnature_indication", Ind);
      end case;
   end Disp_Subnature_Indication;

   procedure Disp_Subnature_Declaration
     (Ctxt : in out Ctxt_Class; Decl : Iir) is
   begin
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Subnature);
      Disp_Identifier (Ctxt, Decl);
      Disp_Token (Ctxt, Tok_Is);
      Disp_Subnature_Indication (Ctxt, Get_Subnature_Indication (Decl));
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Subnature_Declaration;

   procedure Disp_Mode (Ctxt : in out Ctxt_Class; Mode: Iir_Mode) is
   begin
      case Mode is
         when Iir_In_Mode =>
            Disp_Token (Ctxt, Tok_In);
         when Iir_Out_Mode =>
            Disp_Token (Ctxt, Tok_Out);
         when Iir_Inout_Mode =>
            Disp_Token (Ctxt, Tok_Inout);
         when Iir_Buffer_Mode =>
            Disp_Token (Ctxt, Tok_Buffer);
         when Iir_Linkage_Mode =>
            Disp_Token (Ctxt, Tok_Linkage);
         when Iir_Unknown_Mode =>
            null;
      end case;
   end Disp_Mode;

   procedure Disp_Signal_Kind (Ctxt : in out Ctxt_Class; Sig : Iir) is
   begin
      if Get_Guarded_Signal_Flag (Sig) then
         case Get_Signal_Kind (Sig) is
            when Iir_Register_Kind =>
               Disp_Token (Ctxt, Tok_Register);
            when Iir_Bus_Kind =>
               Disp_Token (Ctxt, Tok_Bus);
         end case;
      end if;
   end Disp_Signal_Kind;

   procedure Disp_Interface_Class (Ctxt : in out Ctxt_Class; Inter: Iir) is
   begin
      if Get_Has_Class (Inter) then
         case Get_Kind (Inter) is
            when Iir_Kind_Interface_Signal_Declaration =>
               Disp_Token (Ctxt, Tok_Signal);
            when Iir_Kind_Interface_Variable_Declaration =>
               Disp_Token (Ctxt, Tok_Variable);
            when Iir_Kind_Interface_Constant_Declaration =>
               Disp_Token (Ctxt, Tok_Constant);
            when Iir_Kind_Interface_File_Declaration =>
               Disp_Token (Ctxt, Tok_File);
            when Iir_Kind_Interface_Terminal_Declaration =>
               Disp_Token (Ctxt, Tok_Terminal);
            when Iir_Kind_Interface_Quantity_Declaration =>
               Disp_Token (Ctxt, Tok_Quantity);
            when others =>
               Error_Kind ("disp_interface_class", Inter);
         end case;
      end if;
   end Disp_Interface_Class;

   procedure Disp_Default_Value_Opt (Ctxt : in out Ctxt_Class; Obj : Iir)
   is
      Default: constant Iir := Get_Default_Value (Obj);
   begin
      if Default /= Null_Iir then
         Valign (Ctxt, Valign_Assign);
         Disp_Token (Ctxt, Tok_Assign);
         Print (Ctxt, Default);
      end if;
   end Disp_Default_Value_Opt;

   procedure Disp_Interface_Mode_And_Type
     (Ctxt : in out Ctxt_Class; Inter: Iir)
   is
      Ind : constant Iir := Get_Subtype_Indication (Inter);
   begin
      Valign (Ctxt, Valign_Colon);
      Disp_Token (Ctxt, Tok_Colon);
      if Get_Has_Mode (Inter) then
         Disp_Mode (Ctxt, Get_Mode (Inter));
      end if;
      Valign (Ctxt, Valign_Typemark);
      if Ind = Null_Iir then
         --  For implicit subprogram
         Disp_Type (Ctxt, Get_Type (Inter));
      else
         Disp_Subtype_Indication (Ctxt, Ind);
      end if;
      if Get_Kind (Inter) = Iir_Kind_Interface_Signal_Declaration then
         Disp_Signal_Kind (Ctxt, Inter);
      end if;
      Disp_Default_Value_Opt (Ctxt, Inter);
   end Disp_Interface_Mode_And_Type;

   --  Disp interfaces, followed by END_STR (';' in general).
   procedure Disp_Interface_Chain
     (Ctxt : in out Ctxt_Class; Chain: Iir; With_Box : Boolean)
   is
      Inter: Iir;
      Next_Inter : Iir;
      First_Inter : Iir;
   begin
      if Chain = Null_Iir then
         return;
      end if;
      Disp_Token (Ctxt, Tok_Left_Paren);

      if With_Box then
         Close_Hbox (Ctxt);
         Start_Vbox (Ctxt);
      end if;

      Inter := Chain;
      loop
         Next_Inter := Get_Chain (Inter);

         First_Inter := Inter;

         Start_Node (Ctxt, Inter);

         if With_Box then
            Start_Hbox (Ctxt);
         end if;

         case Iir_Kinds_Interface_Declaration (Get_Kind (Inter)) is
            when Iir_Kinds_Interface_Object_Declaration =>
               Disp_Interface_Class (Ctxt, Inter);
               Disp_Name_Of (Ctxt, Inter);
               while Get_Has_Identifier_List (Inter) loop
                  Disp_Token (Ctxt, Tok_Comma);
                  Inter := Next_Inter;
                  Next_Inter := Get_Chain (Inter);
                  Disp_Name_Of (Ctxt, Inter);
               end loop;
               Disp_Interface_Mode_And_Type (Ctxt, First_Inter);
            when Iir_Kind_Interface_Terminal_Declaration =>
               Disp_Interface_Class (Ctxt, Inter);
               Disp_Name_Of (Ctxt, Inter);
               while Get_Has_Identifier_List (Inter) loop
                  Disp_Token (Ctxt, Tok_Comma);
                  Inter := Next_Inter;
                  Next_Inter := Get_Chain (Inter);
                  Disp_Name_Of (Ctxt, Inter);
               end loop;
               Disp_Token (Ctxt, Tok_Colon);
               Disp_Subnature_Indication
                 (Ctxt, Get_Subnature_Indication (First_Inter));
            when Iir_Kind_Interface_Package_Declaration =>
               Disp_Token (Ctxt, Tok_Package);
               Disp_Identifier (Ctxt, Inter);
               Disp_Token (Ctxt, Tok_Is, Tok_New);
               Print (Ctxt, Get_Uninstantiated_Package_Name (Inter));
               Disp_Token (Ctxt, Tok_Generic, Tok_Map);
               declare
                  Assoc_Chain : constant Iir :=
                    Get_Generic_Map_Aspect_Chain (Inter);
               begin
                  if Assoc_Chain = Null_Iir then
                     Disp_Token (Ctxt, Tok_Left_Paren);
                     Disp_Token (Ctxt, Tok_Box);
                     Disp_Token (Ctxt, Tok_Right_Paren);
                  else
                     Disp_Association_Chain (Ctxt, Assoc_Chain);
                  end if;
               end;
            when Iir_Kind_Interface_Type_Declaration =>
               Disp_Token (Ctxt, Tok_Type);
               Disp_Identifier (Ctxt, Inter);
            when Iir_Kinds_Interface_Subprogram_Declaration =>
               Disp_Subprogram_Declaration (Ctxt, Inter);
            --  when others =>
            --     Error_Kind ("disp_interface_chain", Inter);
         end case;

         if Next_Inter /= Null_Iir then
            Disp_Token (Ctxt, Tok_Semi_Colon);
         end if;

         if With_Box then
            Close_Hbox (Ctxt);
         end if;

         exit when Next_Inter = Null_Iir;

         Inter := Next_Inter;
         Next_Inter := Get_Chain (Inter);
      end loop;

      if With_Box then
         Close_Vbox (Ctxt);
         Start_Hbox (Ctxt);
      end if;

      Disp_Token (Ctxt, Tok_Right_Paren);
   end Disp_Interface_Chain;

   procedure Disp_Ports (Ctxt : in out Ctxt_Class; Parent : Iir)
   is
      Ports : constant Iir := Get_Port_Chain (Parent);
   begin
      if Ports /= Null_Iir then
         Start_Hbox (Ctxt);
         Disp_Token (Ctxt, Tok_Port);
         Disp_Interface_Chain (Ctxt, Ports, True);
         Disp_Token (Ctxt, Tok_Semi_Colon);
         Close_Hbox (Ctxt);
      end if;
   end Disp_Ports;

   procedure Disp_Generics (Ctxt : in out Ctxt_Class; Parent : Iir)
   is
      Generics : constant Iir := Get_Generic_Chain (Parent);
   begin
      if Generics /= Null_Iir then
         Start_Hbox (Ctxt);
         Disp_Token (Ctxt, Tok_Generic);
         Disp_Interface_Chain (Ctxt, Generics, True);
         Disp_Token (Ctxt, Tok_Semi_Colon);
         Close_Hbox (Ctxt);
      end if;
   end Disp_Generics;

   procedure Disp_Entity_Declaration
     (Ctxt : in out Ctxt_Class; Decl: Iir_Entity_Declaration) is
   begin
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Entity);
      Disp_Name_Of (Ctxt, Decl);
      Disp_Token (Ctxt, Tok_Is);
      Close_Hbox (Ctxt);

      Start_Vbox (Ctxt);
      Disp_Generics (Ctxt, Decl);
      Disp_Ports (Ctxt, Decl);
      Disp_Declaration_Chain (Ctxt, Decl);
      Close_Vbox (Ctxt);

      if Get_Has_Begin (Decl) then
         Start_Hbox (Ctxt);
         Disp_Token (Ctxt, Tok_Begin);
         Close_Hbox (Ctxt);
      end if;
      if Get_Concurrent_Statement_Chain (Decl) /= Null_Iir then
         Start_Vbox (Ctxt);
         Disp_Concurrent_Statement_Chain (Ctxt, Decl);
         Close_Vbox (Ctxt);
      end if;
      Disp_End (Ctxt, Decl, Tok_Entity);
   end Disp_Entity_Declaration;

   procedure Disp_Component_Declaration
     (Ctxt : in out Ctxt_Class; Decl: Iir_Component_Declaration) is
   begin
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Component);
      Disp_Name_Of (Ctxt, Decl);
      if Get_Has_Is (Decl) then
         Disp_Token (Ctxt, Tok_Is);
      end if;
      Close_Hbox (Ctxt);

      Start_Vbox (Ctxt);
      if Get_Generic_Chain (Decl) /= Null_Iir then
         Disp_Generics (Ctxt, Decl);
      end if;
      if Get_Port_Chain (Decl) /= Null_Iir then
         Disp_Ports (Ctxt, Decl);
      end if;
      Close_Vbox (Ctxt);

      Disp_End (Ctxt, Decl, Tok_Component);
   end Disp_Component_Declaration;

   procedure Disp_Concurrent_Statement_Chain
     (Ctxt : in out Ctxt_Class; Parent : Iir)
   is
      El: Iir;
   begin
      El := Get_Concurrent_Statement_Chain (Parent);
      while El /= Null_Iir loop
         Disp_Concurrent_Statement (Ctxt, El);
         El := Get_Chain (El);
      end loop;
   end Disp_Concurrent_Statement_Chain;

   procedure Disp_Simultaneous_Statement_Chain
     (Ctxt : in out Ctxt_Class; Chain : Iir)
   is
      El: Iir;
   begin
      El := Chain;
      while El /= Null_Iir loop
         Disp_Concurrent_Statement (Ctxt, El);
         El := Get_Chain (El);
      end loop;
   end Disp_Simultaneous_Statement_Chain;

   procedure Disp_Architecture_Body
     (Ctxt : in out Ctxt_Class; Arch: Iir_Architecture_Body) is
   begin
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Architecture);
      Disp_Name_Of (Ctxt, Arch);
      Disp_Token (Ctxt, Tok_Of);
      Print (Ctxt, Get_Entity_Name (Arch));
      Close_Hbox (Ctxt);
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Is);
      Close_Hbox (Ctxt);

      Start_Vbox (Ctxt);
      Disp_Declaration_Chain (Ctxt, Arch);
      Close_Vbox (Ctxt);

      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Begin);
      Close_Hbox (Ctxt);

      Start_Vbox (Ctxt);
      Disp_Concurrent_Statement_Chain (Ctxt, Arch);
      Close_Vbox (Ctxt);

      Disp_End (Ctxt, Arch, Tok_Architecture);
   end Disp_Architecture_Body;

   procedure Disp_Signature (Ctxt : in out Ctxt_Class; Sig : Iir)
   is
      Prefix : constant Iir := Get_Signature_Prefix (Sig);
      List : constant Iir_Flist := Get_Type_Marks_List (Sig);
      El : Iir;
   begin
      if Is_Valid (Prefix) then
         --  Only in alias.
         Print (Ctxt, Prefix);
      end if;
      Disp_Token (Ctxt, Tok_Left_Bracket);
      if List /= Null_Iir_Flist then
         for I in Flist_First .. Flist_Last (List) loop
            El := Get_Nth_Element (List, I);
            if I /= 0 then
               Disp_Token (Ctxt, Tok_Comma);
            end if;
            Print (Ctxt, El);
         end loop;
      end if;
      El := Get_Return_Type_Mark (Sig);
      if El /= Null_Iir then
         Disp_Token (Ctxt, Tok_Return);
         Print (Ctxt, El);
      end if;
      Disp_Token (Ctxt, Tok_Right_Bracket);
   end Disp_Signature;

   procedure Disp_Object_Alias_Declaration
     (Ctxt : in out Ctxt_Class; Decl: Iir_Object_Alias_Declaration)
   is
      St_Ind : constant Iir := Get_Subtype_Indication (Decl);
   begin
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Alias);
      Disp_Function_Name (Ctxt, Decl);
      if St_Ind /= Null_Iir then
         Disp_Token (Ctxt, Tok_Colon);
         Disp_Subtype_Indication (Ctxt, St_Ind);
      end if;
      Disp_Token (Ctxt, Tok_Is);
      Print (Ctxt, Get_Name (Decl));
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Object_Alias_Declaration;

   procedure Disp_Non_Object_Alias_Declaration
     (Ctxt : in out Ctxt_Class; Decl: Iir_Non_Object_Alias_Declaration)
   is
      Sig : constant Iir := Get_Alias_Signature (Decl);
   begin
      if Get_Implicit_Alias_Flag (Decl) then
         if Flag_Implicit then
            OOB.Put ("-- ");
         else
            return;
         end if;
      end if;

      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Alias);
      Disp_Function_Name (Ctxt, Decl);
      Disp_Token (Ctxt, Tok_Is);
      Print (Ctxt, Get_Name (Decl));
      if Sig /= Null_Iir then
         Disp_Signature (Ctxt, Sig);
      end if;
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Non_Object_Alias_Declaration;

   procedure Disp_File_Declaration
     (Ctxt : in out Ctxt_Class; Decl: Iir_File_Declaration)
   is
      Next_Decl : Iir;
      Expr: Iir;
   begin
      Disp_Token (Ctxt, Tok_File);
      Disp_Name_Of (Ctxt, Decl);
      Next_Decl := Decl;
      while Get_Has_Identifier_List (Next_Decl) loop
         Next_Decl := Get_Chain (Next_Decl);
         Disp_Token (Ctxt, Tok_Comma);
         Disp_Name_Of (Ctxt, Next_Decl);
      end loop;
      Disp_Token (Ctxt, Tok_Colon);
      Disp_Subtype_Indication (Ctxt, Or_Else (Get_Subtype_Indication (Decl),
                                              Get_Type (Decl)));
      if Vhdl_Std = Vhdl_87 then
         Disp_Token (Ctxt, Tok_Is);
         if Get_Has_Mode (Decl) then
            Disp_Mode (Ctxt, Get_Mode (Decl));
         end if;
         Print (Ctxt, Get_File_Logical_Name (Decl));
      else
         Expr := Get_File_Open_Kind (Decl);
         if Expr /= Null_Iir then
            Disp_Token (Ctxt, Tok_Open);
            Print (Ctxt, Expr);
         end if;
         Expr := Get_File_Logical_Name (Decl);
         if Expr /= Null_Iir then
            Disp_Token (Ctxt, Tok_Is);
            Print (Ctxt, Expr);
         end if;
      end if;
      Disp_Token (Ctxt, Tok_Semi_Colon);
   end Disp_File_Declaration;

   procedure Disp_Branch_Quantity_Declaration
     (Ctxt : in out Ctxt_Class; Head : Iir)
   is
      Term : Iir;
      Decl : Iir;
      First_Decl : Iir;
   begin
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Quantity);

      Decl := Head;
      if Get_Kind (Decl) = Iir_Kind_Across_Quantity_Declaration then
         loop
            Disp_Name_Of (Ctxt, Decl);
            if not Get_Has_Identifier_List (Decl) then
               Decl := Null_Iir;
               exit;
            end if;
            Decl := Get_Chain (Decl);
            exit when Get_Kind (Decl) /= Iir_Kind_Across_Quantity_Declaration;
            Disp_Token (Ctxt, Tok_Comma);
         end loop;

         Disp_Tolerance_Opt (Ctxt, Head);
         Disp_Default_Value_Opt (Ctxt, Head);
         Disp_Token (Ctxt, Tok_Across);
      end if;

      if Decl /= Null_Iir then
         pragma Assert
           (Get_Kind (Decl) = Iir_Kind_Through_Quantity_Declaration);

         First_Decl := Decl;
         loop
            Disp_Name_Of (Ctxt, Decl);
            if not Get_Has_Identifier_List (Decl) then
               Decl := Null_Iir;
               exit;
            end if;
            Decl := Get_Chain (Decl);
            exit when Get_Kind (Decl) /= Iir_Kind_Through_Quantity_Declaration;
            Disp_Token (Ctxt, Tok_Comma);
         end loop;

         Disp_Tolerance_Opt (Ctxt, First_Decl);
         Disp_Default_Value_Opt (Ctxt, First_Decl);
         Disp_Token (Ctxt, Tok_Through);
      end if;

      Print (Ctxt, Get_Plus_Terminal_Name (Head));
      Term := Get_Minus_Terminal_Name (Head);
      if Term /= Null_Iir then
         Disp_Token (Ctxt, Tok_To);
         Print (Ctxt, Term);
      end if;

      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Branch_Quantity_Declaration;

   procedure Disp_Terminal_Declaration (Ctxt : in out Ctxt_Class; Decl: Iir)
   is
      Ndecl : Iir;
   begin
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Terminal);
      Disp_Name_Of (Ctxt, Decl);
      Ndecl := Decl;
      while Get_Has_Identifier_List (Ndecl) loop
         Disp_Token (Ctxt, Tok_Comma);
         Ndecl := Get_Chain (Ndecl);
         Disp_Name_Of (Ctxt, Ndecl);
      end loop;
      Disp_Token (Ctxt, Tok_Colon);
      Disp_Subnature_Indication (Ctxt, Get_Subnature_Indication (Decl));
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Terminal_Declaration;

   procedure Disp_Object_Declaration (Ctxt : in out Ctxt_Class; Decl: Iir)
   is
      Next_Decl : Iir;
   begin
      Start_Node (Ctxt, Decl);

      Start_Hbox (Ctxt);
      case Get_Kind (Decl) is
         when Iir_Kind_Variable_Declaration =>
            if Get_Shared_Flag (Decl) then
               Disp_Token (Ctxt, Tok_Shared);
            end if;
            Disp_Token (Ctxt, Tok_Variable);
         when Iir_Kind_Constant_Declaration =>
            Disp_Token (Ctxt, Tok_Constant);
         when Iir_Kind_Signal_Declaration =>
            Disp_Token (Ctxt, Tok_Signal);
         when Iir_Kind_File_Declaration =>
            Disp_File_Declaration (Ctxt, Decl);
            Close_Hbox (Ctxt);
            return;
         when Iir_Kind_Free_Quantity_Declaration
           | Iir_Kinds_Source_Quantity_Declaration =>
            Disp_Token (Ctxt, Tok_Quantity);
         when others =>
            raise Internal_Error;
      end case;
      Disp_Name_Of (Ctxt, Decl);
      Next_Decl := Decl;
      while Get_Has_Identifier_List (Next_Decl) loop
         Next_Decl := Get_Chain (Next_Decl);
         Disp_Token (Ctxt, Tok_Comma);
         Disp_Name_Of (Ctxt, Next_Decl);
      end loop;
      Valign (Ctxt, Valign_Colon);
      Disp_Token (Ctxt, Tok_Colon);
      Valign (Ctxt, Valign_Typemark);
      Disp_Subtype_Indication (Ctxt, Get_Subtype_Indication (Decl));
      if Get_Kind (Decl) = Iir_Kind_Signal_Declaration then
         Disp_Signal_Kind (Ctxt, Decl);
      end if;

      case Get_Kind (Decl) is
         when Iir_Kind_Spectrum_Quantity_Declaration =>
            Disp_Token (Ctxt, Tok_Spectrum);
            Print (Ctxt, Get_Magnitude_Expression (Decl));
            Disp_Token (Ctxt, Tok_Comma);
            Print (Ctxt, Get_Phase_Expression (Decl));
         when Iir_Kind_Noise_Quantity_Declaration =>
            Disp_Token (Ctxt, Tok_Noise);
            Print (Ctxt, Get_Power_Expression (Decl));
         when others =>
            Disp_Default_Value_Opt (Ctxt, Decl);
      end case;
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Object_Declaration;

   procedure Disp_Pure (Ctxt : in out Ctxt_Class; Subprg : Iir) is
   begin
      if Get_Pure_Flag (Subprg) then
         Disp_Token (Ctxt, Tok_Pure);
      else
         Disp_Token (Ctxt, Tok_Impure);
      end if;
   end Disp_Pure;

   procedure Disp_Subprogram_Declaration
     (Ctxt : in out Ctxt_Class; Subprg: Iir; Implicit : Boolean := False)
   is
      Inter : Iir;
      Default : Iir;
   begin
      if Implicit then
         OOB.Put ("-- ");
      end if;

      case Get_Kind (Subprg) is
         when Iir_Kind_Function_Declaration
           | Iir_Kind_Interface_Function_Declaration =>
            if Get_Has_Pure (Subprg) then
               Disp_Pure (Ctxt, Subprg);
            end if;
            Disp_Token (Ctxt, Tok_Function);
         when Iir_Kind_Procedure_Declaration
           | Iir_Kind_Interface_Procedure_Declaration =>
            Disp_Token (Ctxt, Tok_Procedure);
         when others =>
            raise Internal_Error;
      end case;

      Disp_Function_Name (Ctxt, Subprg);

      if Get_Has_Parameter (Subprg) then
         Disp_Token (Ctxt, Tok_Parameter);
      end if;

      Inter := Get_Interface_Declaration_Chain (Subprg);
      Disp_Interface_Chain (Ctxt, Inter, True);

      case Get_Kind (Subprg) is
         when Iir_Kind_Function_Declaration
           | Iir_Kind_Interface_Function_Declaration =>
            Disp_Token (Ctxt, Tok_Return);
            Disp_Subtype_Indication
              (Ctxt, Or_Else (Get_Return_Type_Mark (Subprg),
                              Get_Return_Type (Subprg)));
         when Iir_Kind_Procedure_Declaration
           | Iir_Kind_Interface_Procedure_Declaration =>
            null;
         when others =>
            raise Internal_Error;
      end case;

      if Get_Kind (Subprg) in Iir_Kinds_Interface_Subprogram_Declaration then
         Default := Get_Default_Subprogram (Subprg);
         if Default /= Null_Iir then
            Disp_Token (Ctxt, Tok_Is);
            if Get_Kind (Default) = Iir_Kind_Reference_Name then
               Disp_Token (Ctxt, Tok_Box);
            else
               Print (Ctxt, Default);
            end if;
         end if;
      end if;
   end Disp_Subprogram_Declaration;

   procedure Disp_Subprogram_Body (Ctxt : in out Ctxt_Class; Subprg : Iir) is
   begin
      Start_Vbox (Ctxt);
      Disp_Declaration_Chain (Ctxt, Subprg);
      Close_Vbox (Ctxt);
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Begin);
      Close_Hbox (Ctxt);
      Start_Vbox (Ctxt);
      Disp_Sequential_Statements
        (Ctxt, Get_Sequential_Statement_Chain (Subprg));
      Close_Vbox (Ctxt);
      if Get_Kind (Subprg) = Iir_Kind_Function_Body then
         Disp_End (Ctxt, Subprg, Tok_Function);
      else
         Disp_End (Ctxt, Subprg, Tok_Procedure);
      end if;
   end Disp_Subprogram_Body;

   procedure Disp_Instantiation_List
     (Ctxt : in out Ctxt_Class; Insts: Iir_Flist)
   is
      El : Iir;
   begin
      case Insts is
         when Iir_Flist_All =>
            Disp_Token (Ctxt, Tok_All);
         when Iir_Flist_Others =>
            Disp_Token (Ctxt, Tok_Others);
         when others =>
            for I in Flist_First .. Flist_Last (Insts) loop
               El := Get_Nth_Element (Insts, I);
               if I /= Flist_First then
                  Disp_Token (Ctxt, Tok_Comma);
               end if;
               Print (Ctxt, El);
            end loop;
      end case;
   end Disp_Instantiation_List;

   procedure Disp_Configuration_Specification
     (Ctxt : in out Ctxt_Class; Spec : Iir_Configuration_Specification) is
   begin
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_For);
      Disp_Instantiation_List (Ctxt, Get_Instantiation_List (Spec));
      Disp_Token (Ctxt, Tok_Colon);
      Print (Ctxt, Get_Component_Name (Spec));
      Close_Hbox (Ctxt);

      Start_Vbox (Ctxt);
      Start_Hbox (Ctxt);
      Disp_Binding_Indication (Ctxt, Get_Binding_Indication (Spec));
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
      Close_Vbox (Ctxt);

      if Get_Has_End (Spec) then
         Disp_End (Ctxt, Tok_For);
      end if;
   end Disp_Configuration_Specification;

   procedure Disp_Disconnection_Specification
     (Ctxt : in out Ctxt_Class; Dis : Iir_Disconnection_Specification) is
   begin
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Disconnect);
      Disp_Instantiation_List (Ctxt, Get_Signal_List (Dis));
      Disp_Token (Ctxt, Tok_Colon);
      Print (Ctxt, Get_Type_Mark (Dis));
      Disp_Token (Ctxt, Tok_After);
      Print (Ctxt, Get_Expression (Dis));
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Disconnection_Specification;

   procedure Disp_Step_Limit_Specification
     (Ctxt : in out Ctxt_Class; Limit : Iir) is
   begin
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Limit);
      Disp_Instantiation_List (Ctxt, Get_Quantity_List (Limit));
      Disp_Token (Ctxt, Tok_Colon);
      Print (Ctxt, Get_Type_Mark (Limit));
      Disp_Token (Ctxt, Tok_With);
      Print (Ctxt, Get_Expression (Limit));
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Step_Limit_Specification;

   procedure Disp_Attribute_Declaration
     (Ctxt : in out Ctxt_Class; Attr : Iir_Attribute_Declaration) is
   begin
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Attribute);
      Disp_Identifier (Ctxt, Attr);
      Disp_Token (Ctxt, Tok_Colon);
      Print (Ctxt, Get_Type_Mark (Attr));
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Attribute_Declaration;

   procedure Disp_Attribute_Value (Ctxt : in out Ctxt_Class; Attr : Iir) is
   begin
      Disp_Name_Of (Ctxt, Get_Designated_Entity (Attr));
      Disp_Token (Ctxt, Tok_Tick);
      Disp_Identifier
        (Ctxt, Get_Attribute_Designator (Get_Attribute_Specification (Attr)));
   end Disp_Attribute_Value;

   procedure Disp_Attribute_Name (Ctxt : in out Ctxt_Class; Attr : Iir)
   is
      Sig : constant Iir := Get_Attribute_Signature (Attr);
   begin
      Print (Ctxt, Get_Prefix (Attr));
      if Sig /= Null_Iir then
         Disp_Signature (Ctxt, Sig);
      end if;
      Disp_Token (Ctxt, Tok_Tick);
      Disp_Ident (Ctxt, Get_Identifier (Attr));
   end Disp_Attribute_Name;

   procedure Disp_Entity_Kind (Ctxt : in out Ctxt_Class; Tok : Token_Type) is
   begin
      Disp_Token (Ctxt, Tok);
   end Disp_Entity_Kind;

   procedure Disp_Entity_Name_List (Ctxt : in out Ctxt_Class; List : Iir_Flist)
   is
      El : Iir;
   begin
      case List is
         when Iir_Flist_All =>
            Disp_Token (Ctxt, Tok_All);
         when Iir_Flist_Others =>
            Disp_Token (Ctxt, Tok_Others);
         when others =>
            for I in Flist_First .. Flist_Last (List) loop
               El := Get_Nth_Element (List, I);
               if I /= Flist_First then
                  Disp_Token (Ctxt, Tok_Comma);
               end if;
               Print (Ctxt, El);
            end loop;
      end case;
   end Disp_Entity_Name_List;

   procedure Disp_Attribute_Specification
     (Ctxt : in out Ctxt_Class; Attr : Iir_Attribute_Specification) is
   begin
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Attribute);
      Disp_Identifier (Ctxt, Get_Attribute_Designator (Attr));
      Disp_Token (Ctxt, Tok_Of);
      Disp_Entity_Name_List (Ctxt, Get_Entity_Name_List (Attr));
      Disp_Token (Ctxt, Tok_Colon);
      Disp_Entity_Kind (Ctxt, Get_Entity_Class (Attr));
      Disp_Token (Ctxt, Tok_Is);
      Print (Ctxt, Get_Expression (Attr));
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Attribute_Specification;

   procedure Disp_Protected_Type_Body
     (Ctxt : in out Ctxt_Class; Bod : Iir_Protected_Type_Body) is
   begin
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Type);
      Disp_Identifier (Ctxt, Bod);
      Disp_Token (Ctxt, Tok_Is);
      Disp_Token (Ctxt, Tok_Protected, Tok_Body);
      Close_Hbox (Ctxt);

      Start_Vbox (Ctxt);
      Disp_Declaration_Chain (Ctxt, Bod);
      Close_Vbox (Ctxt);

      Disp_End (Ctxt, Bod, Tok_Protected, Tok_Body);
   end Disp_Protected_Type_Body;

   procedure Disp_Group_Template_Declaration
     (Ctxt : in out Ctxt_Class; Decl : Iir)
   is
      Ent : Iir;
   begin
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Group);
      Disp_Identifier (Ctxt, Decl);
      Disp_Token (Ctxt, Tok_Is, Tok_Left_Paren);
      Ent := Get_Entity_Class_Entry_Chain (Decl);
      loop
         Disp_Entity_Kind (Ctxt, Get_Entity_Class (Ent));
         Ent := Get_Chain (Ent);
         exit when Ent = Null_Iir;
         if Get_Entity_Class (Ent) = Tok_Box then
            Disp_Token (Ctxt, Tok_Box);
            exit;
         else
            Disp_Token (Ctxt, Tok_Comma);
         end if;
      end loop;
      Disp_Token (Ctxt, Tok_Right_Paren, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Group_Template_Declaration;

   procedure Disp_Group_Declaration (Ctxt : in out Ctxt_Class; Decl : Iir)
   is
      List : Iir_Flist;
      El : Iir;
   begin
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Group);
      Disp_Identifier (Ctxt, Decl);
      Disp_Token (Ctxt, Tok_Colon);
      Print (Ctxt, Get_Group_Template_Name (Decl));
      Disp_Token (Ctxt, Tok_Left_Paren);
      List := Get_Group_Constituent_List (Decl);
      for I in Flist_First .. Flist_Last (List) loop
         El := Get_Nth_Element (List, I);
         if I /= 0 then
            Disp_Token (Ctxt, Tok_Comma);
         end if;
         Disp_Name_Of (Ctxt, El);
      end loop;
      Disp_Token (Ctxt, Tok_Right_Paren, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Group_Declaration;

   procedure Print_Expr (Ctxt : in out Ctxt_Class;
                         N : PSL_Node;
                         Parent_Prio : Priority := Prio_Lowest)
   is
      Prio : Priority;
   begin
      if N = Null_PSL_Node then
         OOB.Put (".");
         return;
      end if;
      Prio := PSL.Prints.Get_Priority (N);
      if Prio < Parent_Prio then
         Disp_Token (Ctxt, Tok_Left_Paren);
      end if;
      case Get_Kind (N) is
         when N_Number =>
            declare
               Str : constant String := Uns32'Image (Get_Value (N));
            begin
               Start_Lit (Ctxt, Tok_Integer);
               Disp_Str (Ctxt, Str);
               Close_Lit (Ctxt);
            end;
         when N_Inf =>
            Start_Lit (Ctxt, Tok_Identifier);
            Disp_Str (Ctxt, "INF");
            Close_Lit (Ctxt);
         when N_Name_Decl =>
            Disp_Ident (Ctxt, Get_Identifier (N));
         when N_HDL_Expr
           | N_HDL_Bool =>
            Print (Ctxt, Vhdl_Node (PSL.Nodes.Get_HDL_Node (N)));
            --  FIXME: this is true only when using the scanner.
            --  Print_Expr (Node (Get_HDL_Node (N)));
         when N_True =>
            Start_Lit (Ctxt, Tok_Identifier);
            Disp_Str (Ctxt, "TRUE");
            Close_Lit (Ctxt);
         when N_False =>
            Start_Lit (Ctxt, Tok_Identifier);
            Disp_Str (Ctxt, "FALSE");
            Close_Lit (Ctxt);
         when N_EOS =>
            Start_Lit (Ctxt, Tok_Identifier);
            Disp_Str (Ctxt, "EOS");
            Close_Lit (Ctxt);
         when N_Not_Bool =>
            Disp_Token (Ctxt, Tok_Not);
--            Disp_Token (Ctxt, Tok_Left_Paren);
            Print_Expr (Ctxt, Get_Boolean (N), Prio);
--            Disp_Token (Ctxt, Tok_Right_Paren);
         when N_And_Bool =>
            Disp_Token (Ctxt, Tok_Left_Paren);
            Print_Expr (Ctxt, Get_Left (N), Prio);
            Disp_Token (Ctxt, Tok_And);
            Print_Expr (Ctxt, Get_Right (N), Prio);
            Disp_Token (Ctxt, Tok_Right_Paren);
         when N_Or_Bool =>
            Disp_Token (Ctxt, Tok_Left_Paren);
            Print_Expr (Ctxt, Get_Left (N), Prio);
            Disp_Token (Ctxt, Tok_Or);
            Print_Expr (Ctxt, Get_Right (N), Prio);
            Disp_Token (Ctxt, Tok_Right_Paren);
         when N_Imp_Bool =>
            Print_Expr (Ctxt, Get_Left (N), Prio);
            Disp_Token (Ctxt, Tok_Minus_Greater);
            Print_Expr (Ctxt, Get_Right (N), Prio);
         when others =>
            PSL.Errors.Error_Kind ("print_expr", N);
      end case;
      if Prio < Parent_Prio then
         Disp_Token (Ctxt, Tok_Right_Paren);
      end if;
   end Print_Expr;

   procedure Print_Count (Ctxt : in out Ctxt_Class; N : PSL_Node)
   is
      B : PSL_Node;
   begin
      B := Get_Low_Bound (N);
      if B = Null_PSL_Node then
         return;
      end if;
      Print_Expr (Ctxt, B);
      B := Get_High_Bound (N);
      if B = Null_PSL_Node then
         return;
      end if;
      Disp_Token (Ctxt, Tok_Colon);
      Print_Expr (Ctxt, B);
   end Print_Count;

   procedure Print_Binary_Sequence (Ctxt : in out Ctxt_Class;
                                    Tok : Token_Type;
                                    N : PSL_Node;
                                    Prio : Priority) is
   begin
      Print_Sequence (Ctxt, Get_Left (N), Prio);
      Disp_Token (Ctxt, Tok);
      Print_Sequence (Ctxt, Get_Right (N), Prio);
   end Print_Binary_Sequence;

   procedure Print_Seq_Repeat_Sere (Ctxt : in out Ctxt_Class; N : PSL_Node)
   is
      S : constant PSL_Node := Get_Sequence (N);
   begin
      if S /= Null_PSL_Node then
         Print_Sequence (Ctxt, S, Prio_SERE_Repeat);
      end if;
      Disp_Token (Ctxt, Tok_Brack_Star);
      Print_Count (Ctxt, N);
      Disp_Token (Ctxt, Tok_Right_Bracket);
   end Print_Seq_Repeat_Sere;

   procedure Print_Bool_Repeat_Sere
     (Ctxt : in out Ctxt_Class; Tok : Token_Type; N : PSL_Node) is
   begin
      Print_Expr (Ctxt, Get_Boolean (N));
      Disp_Token (Ctxt, Tok);
      Print_Count (Ctxt, N);
      Disp_Token (Ctxt, Tok_Right_Bracket);
   end Print_Bool_Repeat_Sere;

   procedure Print_PSL_Instance (Ctxt : in out Ctxt_Class; Inst : PSL_Node)
   is
      Decl : constant PSL_Node := Get_Declaration (Inst);
      Assoc : PSL_Node;
      Actual, Formal : PSL_Node;
   begin
      Disp_Ident (Ctxt, Get_Identifier (Decl));
      Assoc := Get_Association_Chain (Inst);
      if Assoc = Null_PSL_Node then
         return;
      end if;
      Disp_Token (Ctxt, Tok_Left_Paren);
      loop
         Actual := Get_Actual (Assoc);
         Formal := Get_Formal (Assoc);
         case Get_Kind (Formal) is
            when N_Boolean_Parameter =>
               Print_Expr (Ctxt, Actual);
            when others =>
               PSL.Errors.Error_Kind ("print_psl_instance", Formal);
         end case;
         Assoc := Get_Chain (Assoc);
         exit when Assoc = Null_PSL_Node;
         Disp_Token (Ctxt, Tok_Comma);
      end loop;
      Disp_Token (Ctxt, Tok_Right_Paren);
   end Print_PSL_Instance;

   procedure Print_Sequence (Ctxt : in out Ctxt_Class;
                             Seq : PSL_Node;
                             Parent_Prio : Priority := Prio_Lowest)
   is
      Prio : constant Priority := PSL.Prints.Get_Priority (Seq);
      Add_Paren : constant Boolean := Prio < Parent_Prio
        or else Parent_Prio <= Prio_FL_Paren;
   begin
      if Get_Kind (Seq) = N_Sequence_Instance then
         Print_PSL_Instance (Ctxt, Seq);
         return;
      end if;

      if Add_Paren then
         Disp_Token (Ctxt, Tok_Left_Curly);
      end if;
      case Get_Kind (Seq) is
         when N_Braced_SERE =>
            Disp_Token (Ctxt, Tok_Left_Curly);
            Print_Sequence (Ctxt, Get_SERE (Seq), Prio_Lowest);
            Disp_Token (Ctxt, Tok_Right_Curly);
         when N_Concat_SERE =>
            Print_Binary_Sequence (Ctxt, Tok_Semi_Colon, Seq, Prio);
         when N_Fusion_SERE =>
            Print_Binary_Sequence (Ctxt, Tok_Colon, Seq, Prio);
         when N_Within_SERE =>
            Print_Binary_Sequence (Ctxt, Tok_Within, Seq, Prio);
         when N_Match_And_Seq =>
            Print_Binary_Sequence (Ctxt, Tok_And_And, Seq, Prio);
         when N_Or_Seq =>
            Print_Binary_Sequence (Ctxt, Tok_Bar, Seq, Prio);
         when N_And_Seq =>
            Print_Binary_Sequence (Ctxt, Tok_Ampersand, Seq, Prio);
         when N_Star_Repeat_Seq =>
            Print_Seq_Repeat_Sere (Ctxt, Seq);
         when N_Goto_Repeat_Seq =>
            Print_Bool_Repeat_Sere (Ctxt, Tok_Brack_Arrow, Seq);
         when N_Equal_Repeat_Seq =>
            Print_Bool_Repeat_Sere (Ctxt, Tok_Brack_Equal, Seq);
         when N_Plus_Repeat_Seq =>
            Print_Sequence (Ctxt, Get_Sequence (Seq), Prio);
            Disp_Token (Ctxt, Tok_Brack_Plus_Brack);
         when N_Booleans
           | N_Name_Decl =>
            Print_Expr (Ctxt, Seq);
         when N_Boolean_Parameter =>
            Disp_Ident (Ctxt, Get_Identifier (Seq));
         when others =>
            PSL.Errors.Error_Kind ("print_sequence", Seq);
      end case;
      if Add_Paren then
         Disp_Token (Ctxt, Tok_Right_Curly);
      end if;
   end Print_Sequence;

   procedure Print_Binary_Property (Ctxt : in out Ctxt_Class;
                                    Tok : Token_Type;
                                    N : PSL_Node;
                                    Prio : Priority) is
   begin
      Print_Property (Ctxt, Get_Left (N), Prio);
      Disp_Token (Ctxt, Tok);
      Print_Property (Ctxt, Get_Right (N), Prio);
   end Print_Binary_Property;

   procedure Print_Binary_Property_SI (Ctxt : in out Ctxt_Class;
                                       Op, Op_Em, Op_Un, Op_Em_Un : Token_Type;
                                       N : PSL_Node;
                                       Prio : Priority) is
   begin
      Print_Property (Ctxt, Get_Left (N), Prio);
      if Get_Strong_Flag (N) then
         if Get_Inclusive_Flag (N) then
            Disp_Token (Ctxt, Op_Em_Un);
         else
            Disp_Token (Ctxt, Op_Em);
         end if;
      else
         if Get_Inclusive_Flag (N) then
            Disp_Token (Ctxt, Op_Un);
         else
            Disp_Token (Ctxt, Op);
         end if;
      end if;
      Print_Property (Ctxt, Get_Right (N), Prio);
   end Print_Binary_Property_SI;

   procedure Print_Range_Property
     (Ctxt : in out Ctxt_Class; Tok : Token_Type; N : PSL_Node) is
   begin
      Disp_Token (Ctxt, Tok);
      Disp_Token (Ctxt, Tok_Left_Bracket);
      Print_Count (Ctxt, N);
      Disp_Token (Ctxt, Tok_Right_Bracket);
      Disp_Token (Ctxt, Tok_Left_Paren);
      Print_Property (Ctxt, Get_Property (N), Prio_FL_Paren);
      Disp_Token (Ctxt, Tok_Right_Paren);
   end Print_Range_Property;

   procedure Print_Boolean_Range_Property
     (Ctxt : in out Ctxt_Class; Tok : Token_Type; N : PSL_Node) is
   begin
      Disp_Token (Ctxt, Tok);
      Disp_Token (Ctxt, Tok_Left_Paren);
      Print_Expr (Ctxt, Get_Boolean (N));
      Disp_Token (Ctxt, Tok_Right_Paren, Tok_Left_Bracket);
      Print_Count (Ctxt, N);
      Disp_Token (Ctxt, Tok_Right_Bracket, Tok_Left_Paren);
      Print_Property (Ctxt, Get_Property (N), Prio_FL_Paren);
      Disp_Token (Ctxt, Tok_Right_Paren);
   end Print_Boolean_Range_Property;

   procedure Print_Abort_Property (Ctxt : in out Ctxt_Class;
                                   Tok : Token_Type;
                                   N : PSL_Node;
                                   Prio : Priority) is
   begin
      Print_Property (Ctxt, Get_Property (N), Prio);
      Disp_Token (Ctxt, Tok);
      Print_Expr (Ctxt, Get_Boolean (N));
   end Print_Abort_Property;

   procedure Print_Property (Ctxt : in out Ctxt_Class;
                             Prop : PSL_Node;
                             Parent_Prio : Priority := Prio_Lowest)
   is
      Prio : constant Priority := PSL.Prints.Get_Priority (Prop);
   begin
      if Prio < Parent_Prio then
         Disp_Token (Ctxt, Tok_Left_Paren);
      end if;
      case Get_Kind (Prop) is
         when N_Never =>
            Disp_Token (Ctxt, Tok_Never);
            Print_Property (Ctxt, Get_Property (Prop), Prio);
         when N_Always =>
            Disp_Token (Ctxt, Tok_Always, Tok_Left_Paren);
            Print_Property (Ctxt, Get_Property (Prop), Prio);
            Disp_Token (Ctxt, Tok_Right_Paren);
         when N_Eventually =>
            Disp_Token (Ctxt, Tok_Eventually_Em, Tok_Left_Paren);
            Print_Property (Ctxt, Get_Property (Prop), Prio);
            Disp_Token (Ctxt, Tok_Right_Paren);
         when N_Strong =>
            Print_Property (Ctxt, Get_Property (Prop), Prio);
            Disp_Token (Ctxt, Tok_Exclam_Mark);
         when N_Next =>
            Disp_Token (Ctxt, Tok_Next);
--              if Get_Strong_Flag (Prop) then
--                 Put ('!');
--              end if;
            Disp_Token (Ctxt, Tok_Left_Paren);
            Print_Property (Ctxt, Get_Property (Prop), Prio);
            Disp_Token (Ctxt, Tok_Right_Paren);
         when N_Next_A =>
            Print_Range_Property (Ctxt, Tok_Next_A, Prop);
         when N_Next_E =>
            Print_Range_Property (Ctxt, Tok_Next_E, Prop);
         when N_Next_Event =>
            Disp_Token (Ctxt, Tok_Next_Event, Tok_Left_Paren);
            Print_Expr (Ctxt, Get_Boolean (Prop));
            Disp_Token (Ctxt, Tok_Right_Paren, Tok_Left_Paren);
            Print_Property (Ctxt, Get_Property (Prop), Prio);
            Disp_Token (Ctxt, Tok_Right_Paren);
         when N_Next_Event_A =>
            Print_Boolean_Range_Property (Ctxt, Tok_Next_Event_A, Prop);
         when N_Next_Event_E =>
            Print_Boolean_Range_Property (Ctxt, Tok_Next_Event_E, Prop);
         when N_Until =>
            Print_Binary_Property_SI
              (Ctxt,
               Tok_Until, Tok_Until_Em, Tok_Until_Un, Tok_Until_Em_Un,
               Prop, Prio);
         when N_Abort =>
            Print_Abort_Property (Ctxt, Tok_Abort, Prop, Prio);
         when N_Sync_Abort =>
            Print_Abort_Property (Ctxt, Tok_Sync_Abort, Prop, Prio);
         when N_Async_Abort =>
            Print_Abort_Property (Ctxt, Tok_Async_Abort, Prop, Prio);
         when N_Before =>
            Print_Binary_Property_SI
              (Ctxt,
               Tok_Before, Tok_Before_Em, Tok_Before_Un, Tok_Before_Em_Un,
               Prop, Prio);
         when N_Or_Prop =>
            Print_Binary_Property (Ctxt, Tok_Or, Prop, Prio);
         when N_And_Prop =>
            Print_Binary_Property (Ctxt, Tok_And, Prop, Prio);
         when N_Paren_Prop =>
            Disp_Token (Ctxt, Tok_Left_Paren);
            Print_Property (Ctxt, Get_Property (Prop), Prio);
            Disp_Token (Ctxt, Tok_Right_Paren);
         when N_Imp_Seq =>
            Print_Property (Ctxt, Get_Sequence (Prop), Prio);
            Disp_Token (Ctxt, Tok_Bar_Double_Arrow);
            Print_Property (Ctxt, Get_Property (Prop), Prio);
         when N_Overlap_Imp_Seq =>
            Print_Property (Ctxt, Get_Sequence (Prop), Prio);
            Disp_Token (Ctxt, Tok_Bar_Arrow);
            Print_Property (Ctxt, Get_Property (Prop), Prio);
         when N_Log_Imp_Prop =>
            Print_Binary_Property (Ctxt, Tok_Minus_Greater, Prop, Prio);
         when N_Booleans
           | N_Name_Decl =>
            Print_Expr (Ctxt, Prop);
         when N_Sequences =>
            Print_Sequence (Ctxt, Prop, Parent_Prio);
         when N_Property_Instance =>
            Disp_Ident (Ctxt, Get_Identifier (Get_Declaration (Prop)));
         when N_EOS =>
            Start_Lit (Ctxt, Tok_Identifier);
            Disp_Str (Ctxt, "EOS");
            Close_Lit (Ctxt);
         when others =>
            PSL.Errors.Error_Kind ("print_property", Prop);
      end case;
      if Prio < Parent_Prio then
         Disp_Token (Ctxt, Tok_Right_Paren);
      end if;
   end Print_Property;

   procedure Disp_Psl_Expression
     (Ctxt : in out Ctxt_Class; Expr : PSL_Node)  is
   begin
      Print_Property (Ctxt, Expr);
   end Disp_Psl_Expression;

   procedure Disp_Psl_Default_Clock (Ctxt : in out Ctxt_Class; Stmt : Iir) is
   begin
      Start_Hbox (Ctxt);
      if Vhdl_Std < Vhdl_08 then
         OOB.Put ("--psl ");
      end if;
      Disp_Token (Ctxt, Tok_Default, Tok_Psl_Clock);
      Disp_Token (Ctxt, Tok_Is);
      Disp_Psl_Expression (Ctxt, Get_Psl_Boolean (Stmt));
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Psl_Default_Clock;

   procedure Disp_Psl_Prev (Ctxt : in out Ctxt_Class; Call : Iir)
   is
      Expr : Iir;
   begin
      Disp_Token (Ctxt, Tok_Prev);
      Disp_Token (Ctxt, Tok_Left_Paren);
      Print (Ctxt, Get_Expression (Call));
      Expr := Get_Count_Expression (Call);
      if Expr /= Null_Iir then
         Disp_Token (Ctxt, Tok_Comma);
         Print (Ctxt, Expr);

         Expr := Get_Clock_Expression (Call);
         if Expr /= Null_Iir then
            Disp_Token (Ctxt, Tok_Comma);
            Print (Ctxt, Expr);
         end if;
      end if;
      Disp_Token (Ctxt, Tok_Right_Paren);
   end Disp_Psl_Prev;

   procedure Disp_Psl_Stable (Ctxt : in out Ctxt_Class; Call : Iir)
   is
      Expr : Iir;
   begin
      Disp_Token (Ctxt, Tok_Stable);
      Disp_Token (Ctxt, Tok_Left_Paren);
      Print (Ctxt, Get_Expression (Call));
      Expr := Get_Clock_Expression (Call);
      if Expr /= Null_Iir then
         Disp_Token (Ctxt, Tok_Comma);
         Print (Ctxt, Expr);
      end if;
      Disp_Token (Ctxt, Tok_Right_Paren);
   end Disp_Psl_Stable;

   procedure Disp_Psl_Rose (Ctxt : in out Ctxt_Class; Call : Iir)
   is
      Expr : Iir;
   begin
      Disp_Token (Ctxt, Tok_Rose);
      Disp_Token (Ctxt, Tok_Left_Paren);
      Print (Ctxt, Get_Expression (Call));
      Expr := Get_Clock_Expression (Call);
      if Expr /= Null_Iir then
         Disp_Token (Ctxt, Tok_Comma);
         Print (Ctxt, Expr);
      end if;
      Disp_Token (Ctxt, Tok_Right_Paren);
   end Disp_Psl_Rose;

   procedure Disp_Psl_Fell (Ctxt : in out Ctxt_Class; Call : Iir)
   is
      Expr : Iir;
   begin
      Disp_Token (Ctxt, Tok_Fell);
      Disp_Token (Ctxt, Tok_Left_Paren);
      Print (Ctxt, Get_Expression (Call));
      Expr := Get_Clock_Expression (Call);
      if Expr /= Null_Iir then
         Disp_Token (Ctxt, Tok_Comma);
         Print (Ctxt, Expr);
      end if;
      Disp_Token (Ctxt, Tok_Right_Paren);
   end Disp_Psl_Fell;

   procedure Disp_Psl_Onehot (Ctxt : in out Ctxt_Class; Call : Iir) is
   begin
      Disp_Token (Ctxt, Tok_Onehot);
      Disp_Token (Ctxt, Tok_Left_Paren);
      Print (Ctxt, Get_Expression (Call));
      Disp_Token (Ctxt, Tok_Right_Paren);
   end Disp_Psl_Onehot;

   procedure Disp_Psl_Onehot0 (Ctxt : in out Ctxt_Class; Call : Iir) is
   begin
      Disp_Token (Ctxt, Tok_Onehot0);
      Disp_Token (Ctxt, Tok_Left_Paren);
      Print (Ctxt, Get_Expression (Call));
      Disp_Token (Ctxt, Tok_Right_Paren);
   end Disp_Psl_Onehot0;

   procedure Disp_Psl_Parameter_List
     (Ctxt : in out Ctxt_Class; Decl : PSL_Node)
   is
      Param : PSL_Node;
   begin
      Param := Get_Parameter_List (Decl);
      if Param = Null_PSL_Node then
         return;
      end if;
      Disp_Token (Ctxt, Tok_Left_Paren);
      loop
         case Get_Kind (Param) is
            when N_Boolean_Parameter =>
               Disp_Ident (Ctxt, Name_Boolean);
            when N_Property_Parameter =>
               Disp_Token (Ctxt, Tok_Property);
            when N_Sequence_Parameter =>
               Disp_Token (Ctxt, Tok_Sequence);
            when others =>
               PSL.Errors.Error_Kind ("disp_psl_parameter_list", Param);
         end case;
         loop
            Disp_Ident (Ctxt, Get_Identifier (Param));
            exit when not Get_Has_Identifier_List (Param);
            Disp_Token (Ctxt, Tok_Comma);
            Param := Get_Chain (Param);
         end loop;
         Param := Get_Chain (Param);
         exit when Param = Null_PSL_Node;
         Disp_Token (Ctxt, Tok_Semi_Colon);
      end loop;
      Disp_Token (Ctxt, Tok_Right_Paren);
   end Disp_Psl_Parameter_List;

   procedure Disp_Psl_Declaration (Ctxt : in out Ctxt_Class; Stmt : Iir)
   is
      Decl : constant PSL_Node := Get_Psl_Declaration (Stmt);
   begin
      Start_Hbox (Ctxt);
      if Vhdl_Std < Vhdl_08 then
         OOB.Put ("--psl ");
      end if;
      case Get_Kind (Decl) is
         when N_Property_Declaration =>
            Disp_Token (Ctxt, Tok_Property);
            Disp_Ident (Ctxt, Get_Identifier (Decl));
            Disp_Psl_Parameter_List (Ctxt, Decl);
            Disp_Token (Ctxt, Tok_Is);
            Disp_Psl_Expression (Ctxt, Get_Property (Decl));
            Disp_Token (Ctxt, Tok_Semi_Colon);
         when N_Sequence_Declaration =>
            Disp_Token (Ctxt, Tok_Sequence);
            Disp_Ident (Ctxt, Get_Identifier (Decl));
            Disp_Psl_Parameter_List (Ctxt, Decl);
            Disp_Token (Ctxt, Tok_Is);
            Print_Sequence (Ctxt, Get_Sequence (Decl));
            Disp_Token (Ctxt, Tok_Semi_Colon);
         when N_Endpoint_Declaration =>
            Disp_Token (Ctxt, Tok_Psl_Endpoint);
            Disp_Ident (Ctxt, Get_Identifier (Decl));
            Disp_Psl_Parameter_List (Ctxt, Decl);
            Disp_Token (Ctxt, Tok_Is);
            Print_Sequence (Ctxt, Get_Sequence (Decl));
            Disp_Token (Ctxt, Tok_Semi_Colon);
         when others =>
            PSL.Errors.Error_Kind ("disp_psl_declaration", Decl);
      end case;
      Close_Hbox (Ctxt);
      case Get_Kind (Decl) is
         when N_Endpoint_Declaration =>
            Disp_PSL_NFA (Get_PSL_NFA (Stmt));
         when others =>
            null;
      end case;
   end Disp_Psl_Declaration;

   procedure Disp_Declaration_Chain
     (Ctxt : in out Ctxt_Class; Parent : Iir)
   is
      Decl: Iir;
   begin
      Decl := Get_Declaration_Chain (Parent);
      while Decl /= Null_Iir loop
         case Get_Kind (Decl) is
            when Iir_Kind_Type_Declaration =>
               Disp_Type_Declaration (Ctxt, Decl);
            when Iir_Kind_Anonymous_Type_Declaration =>
               Disp_Anonymous_Type_Declaration (Ctxt, Decl);
            when Iir_Kind_Subtype_Declaration =>
               Disp_Subtype_Declaration (Ctxt, Decl);
            when Iir_Kind_Use_Clause =>
               Disp_Use_Clause (Ctxt, Decl);
            when Iir_Kind_Component_Declaration =>
               Disp_Component_Declaration (Ctxt, Decl);
            when Iir_Kind_File_Declaration
              | Iir_Kind_Signal_Declaration
              | Iir_Kind_Constant_Declaration
              | Iir_Kind_Variable_Declaration
              | Iir_Kind_Free_Quantity_Declaration
              | Iir_Kinds_Source_Quantity_Declaration =>
               Disp_Object_Declaration (Ctxt, Decl);
               while Get_Has_Identifier_List (Decl) loop
                  Decl := Get_Chain (Decl);
               end loop;
            when Iir_Kind_Object_Alias_Declaration =>
               Disp_Object_Alias_Declaration (Ctxt, Decl);
            when Iir_Kind_Terminal_Declaration =>
               Disp_Terminal_Declaration (Ctxt, Decl);
               while Get_Has_Identifier_List (Decl) loop
                  Decl := Get_Chain (Decl);
               end loop;
            when Iir_Kind_Across_Quantity_Declaration
              | Iir_Kind_Through_Quantity_Declaration =>
               Disp_Branch_Quantity_Declaration (Ctxt, Decl);
               while Get_Has_Identifier_List (Decl) loop
                  Decl := Get_Chain (Decl);
               end loop;
            when Iir_Kind_Nature_Declaration =>
               Disp_Nature_Declaration (Ctxt, Decl);
               declare
                  Def : constant Iir := Get_Nature_Definition (Decl);
               begin
                  if Get_Kind (Def) = Iir_Kind_Scalar_Nature_Definition
                    and then Get_Reference (Def) = Get_Chain (Decl)
                  then
                     Decl := Get_Chain (Decl);
                  end if;
               end;
            when Iir_Kind_Subnature_Declaration =>
               Disp_Subnature_Declaration (Ctxt, Decl);
            when Iir_Kind_Non_Object_Alias_Declaration =>
               Disp_Non_Object_Alias_Declaration (Ctxt, Decl);
            when Iir_Kind_Function_Declaration
              | Iir_Kind_Procedure_Declaration =>
               declare
                  Implicit : constant Boolean :=
                    Is_Implicit_Subprogram (Decl)
                    and then (Get_Implicit_Definition (Decl)
                                /= Iir_Predefined_Now_Function);
               begin
                  if not Implicit or else Flag_Implicit then
                     Start_Hbox (Ctxt);
                     Disp_Subprogram_Declaration (Ctxt, Decl, Implicit);
                     if not Get_Has_Body (Decl) then
                        Disp_Token (Ctxt, Tok_Semi_Colon);
                        Close_Hbox (Ctxt);
                     end if;
                  end if;
               end;
            when Iir_Kind_Function_Body
              | Iir_Kind_Procedure_Body =>
               --  The declaration was just displayed.
               Close_Hbox (Ctxt);
               Start_Hbox (Ctxt);
               Disp_Token (Ctxt, Tok_Is);
               Close_Hbox (Ctxt);
               Disp_Subprogram_Body (Ctxt, Decl);
            when Iir_Kind_Protected_Type_Body =>
               Disp_Protected_Type_Body (Ctxt, Decl);
            when Iir_Kind_Configuration_Specification =>
               Disp_Configuration_Specification (Ctxt, Decl);
            when Iir_Kind_Disconnection_Specification =>
               Disp_Disconnection_Specification (Ctxt, Decl);
            when Iir_Kind_Step_Limit_Specification =>
               Disp_Step_Limit_Specification (Ctxt, Decl);
            when Iir_Kind_Attribute_Declaration =>
               Disp_Attribute_Declaration (Ctxt, Decl);
            when Iir_Kind_Attribute_Specification =>
               Disp_Attribute_Specification (Ctxt, Decl);
            when Iir_Kind_Attribute_Implicit_Declaration =>
               null;
            when Iir_Kind_Group_Template_Declaration =>
               Disp_Group_Template_Declaration (Ctxt, Decl);
            when Iir_Kind_Group_Declaration =>
               Disp_Group_Declaration (Ctxt, Decl);
            when Iir_Kind_Package_Declaration =>
               Disp_Package_Declaration (Ctxt, Decl);
            when Iir_Kind_Package_Body =>
               Disp_Package_Body (Ctxt, Decl);
            when Iir_Kind_Package_Instantiation_Declaration =>
               Disp_Package_Instantiation_Declaration (Ctxt, Decl);
            when Iir_Kind_Psl_Default_Clock =>
               Disp_Psl_Default_Clock (Ctxt, Decl);

            when Iir_Kind_Suspend_State_Declaration =>
               Start_Hbox (Ctxt);
               Disp_Ident (Ctxt, Name_State);
               Disp_Token (Ctxt, Tok_Semi_Colon);
               Close_Hbox (Ctxt);

            when Iir_Kind_Package_Instantiation_Body =>
               Start_Hbox (Ctxt);
               OOB.Put ("-- body for instantiation ");
               Disp_Ident (Ctxt, Get_Identifier (Get_Package (Decl)));
               Close_Hbox (Ctxt);

            when others =>
               Error_Kind ("disp_declaration_chain", Decl);
         end case;
         Decl := Get_Chain (Decl);
      end loop;
   end Disp_Declaration_Chain;

   procedure Disp_Waveform
     (Ctxt : in out Ctxt_Class; Chain : Iir_Waveform_Element)
   is
      We: Iir_Waveform_Element;
      Val : Iir;
   begin
      if Chain = Null_Iir then
         Disp_Token (Ctxt, Tok_Null);
         --  Put ("null after {disconnection_time}");
         return;
      elsif Get_Kind (Chain) = Iir_Kind_Unaffected_Waveform then
         Disp_Token (Ctxt, Tok_Unaffected);
         return;
      end if;
      We := Chain;
      while We /= Null_Iir loop
         if We /= Chain then
            Disp_Token (Ctxt, Tok_Comma);
         end if;
         Val := Get_We_Value (We);
         Print (Ctxt, Val);
         if Get_Time (We) /= Null_Iir then
            Disp_Token (Ctxt, Tok_After);
            Print (Ctxt, Get_Time (We));
         end if;
         We := Get_Chain (We);
      end loop;
   end Disp_Waveform;

   procedure Disp_Delay_Mechanism (Ctxt : in out Ctxt_Class; Stmt: Iir) is
      Expr: Iir;
   begin
      case Get_Delay_Mechanism (Stmt) is
         when Iir_Transport_Delay =>
            Disp_Token (Ctxt, Tok_Transport);
         when Iir_Inertial_Delay =>
            Expr := Get_Reject_Time_Expression (Stmt);
            if Expr /= Null_Iir then
               Disp_Token (Ctxt, Tok_Reject);
               Print (Ctxt, Expr);
               Disp_Token (Ctxt, Tok_Inertial);
            elsif Get_Has_Delay_Mechanism (Stmt) then
               Disp_Token (Ctxt, Tok_Inertial);
            end if;
      end case;
   end Disp_Delay_Mechanism;

   procedure Disp_Label (Ctxt : in out Ctxt_Class; Stmt : Iir)
   is
      Label: constant Name_Id := Get_Label (Stmt);
   begin
      if Label /= Null_Identifier then
         Disp_Identifier (Ctxt, Stmt);
         Disp_Token (Ctxt, Tok_Colon);
      end if;
   end Disp_Label;

   procedure Disp_Simple_Signal_Assignment
     (Ctxt : in out Ctxt_Class; Stmt: Iir) is
   begin
      Start_Hbox (Ctxt);
      Disp_Label (Ctxt, Stmt);
      Print (Ctxt, Get_Target (Stmt));
      Disp_Token (Ctxt, Tok_Less_Equal);
      Disp_Delay_Mechanism (Ctxt, Stmt);
      Disp_Waveform (Ctxt, Get_Waveform_Chain (Stmt));
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Simple_Signal_Assignment;

   procedure Disp_Conditional_Waveform (Ctxt : in out Ctxt_Class; Chain : Iir)
   is
      Cond_Wf : Iir;
      Expr : Iir;
   begin
      Cond_Wf := Chain;
      loop
         Disp_Waveform (Ctxt, Get_Waveform_Chain (Cond_Wf));
         Expr := Get_Condition (Cond_Wf);
         if Expr /= Null_Iir then
            Disp_Token (Ctxt, Tok_When);
            Print (Ctxt, Expr);
         end if;
         Cond_Wf := Get_Chain (Cond_Wf);
         exit when Cond_Wf = Null_Iir;
         Disp_Token (Ctxt, Tok_Else);
      end loop;
   end Disp_Conditional_Waveform;

   procedure Disp_Conditional_Signal_Assignment
     (Ctxt : in out Ctxt_Class; Stmt: Iir) is
   begin
      Start_Hbox (Ctxt);
      Print (Ctxt, Get_Target (Stmt));
      Disp_Token (Ctxt, Tok_Less_Equal);
      Disp_Delay_Mechanism (Ctxt, Stmt);
      Disp_Conditional_Waveform (Ctxt, Get_Conditional_Waveform_Chain (Stmt));
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Conditional_Signal_Assignment;

   procedure Disp_Selected_Waveforms
     (Ctxt : in out Ctxt_Class; Stmt : Iir)
   is
      Assoc_Chain : constant Iir := Get_Selected_Waveform_Chain (Stmt);
      Assoc: Iir;
   begin
      Assoc := Assoc_Chain;
      while Assoc /= Null_Iir loop
         if Assoc /= Assoc_Chain then
            Disp_Token (Ctxt, Tok_Comma);
         end if;
         Disp_Waveform (Ctxt, Get_Associated_Chain (Assoc));
         Disp_Token (Ctxt, Tok_When);
         Disp_Choice (Ctxt, Assoc);
      end loop;
      Disp_Token (Ctxt, Tok_Semi_Colon);
   end Disp_Selected_Waveforms;

   procedure Disp_Selected_Waveform_Assignment
     (Ctxt : in out Ctxt_Class; Stmt: Iir) is
   begin
      Start_Hbox (Ctxt);
      Disp_Label (Ctxt, Stmt);
      Disp_Token (Ctxt, Tok_With);
      Print (Ctxt, Get_Expression (Stmt));
      Disp_Token (Ctxt, Tok_Select);
      Print (Ctxt, Get_Target (Stmt));
      Disp_Token (Ctxt, Tok_Less_Equal);
      Disp_Delay_Mechanism (Ctxt, Stmt);
      Disp_Selected_Waveforms (Ctxt, Stmt);
      Close_Hbox (Ctxt);
   end Disp_Selected_Waveform_Assignment;

   procedure Disp_Variable_Assignment
     (Ctxt : in out Ctxt_Class; Stmt: Iir) is
   begin
      Start_Hbox (Ctxt);
      Disp_Label (Ctxt, Stmt);
      Print (Ctxt, Get_Target (Stmt));
      Disp_Token (Ctxt, Tok_Assign);
      Print (Ctxt, Get_Expression (Stmt));
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Variable_Assignment;

   procedure Disp_Conditional_Expression_Chain
     (Ctxt : in out Ctxt_Class; Exprs : Iir)
   is
      Expr : Iir;
      Cond : Iir;
   begin
      Expr := Exprs;
      loop
         Print (Ctxt, Get_Expression (Expr));
         Cond := Get_Condition (Expr);
         if Cond /= Null_Iir then
            Disp_Token (Ctxt, Tok_When);
            Print (Ctxt, Cond);
         end if;
         Expr := Get_Chain (Expr);
         exit when Expr = Null_Iir;
         Disp_Token (Ctxt, Tok_Else);
      end loop;
   end Disp_Conditional_Expression_Chain;

   procedure Disp_Conditional_Variable_Assignment
     (Ctxt : in out Ctxt_Class; Stmt: Iir) is
   begin
      Start_Hbox (Ctxt);
      Disp_Label (Ctxt, Stmt);
      Print (Ctxt, Get_Target (Stmt));
      Disp_Token (Ctxt, Tok_Assign);
      Disp_Conditional_Expression_Chain
        (Ctxt, Get_Conditional_Expression_Chain (Stmt));
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Conditional_Variable_Assignment;

   procedure Disp_Postponed (Ctxt : in out Ctxt_Class; Stmt : Iir) is
   begin
      if Get_Postponed_Flag (Stmt) then
         Disp_Token (Ctxt, Tok_Postponed);
      end if;
   end Disp_Postponed;

   procedure Disp_Concurrent_Simple_Signal_Assignment
     (Ctxt : in out Ctxt_Class; Stmt: Iir) is
   begin
      Start_Hbox (Ctxt);
      Disp_Label (Ctxt, Stmt);
      Disp_Postponed (Ctxt, Stmt);
      Print (Ctxt, Get_Target (Stmt));
      Disp_Token (Ctxt, Tok_Less_Equal);
      if Get_Guard (Stmt) /= Null_Iir then
         Disp_Token (Ctxt, Tok_Guarded);
      end if;
      Disp_Delay_Mechanism (Ctxt, Stmt);
      Disp_Waveform (Ctxt, Get_Waveform_Chain (Stmt));

      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Concurrent_Simple_Signal_Assignment;

   procedure Disp_Concurrent_Selected_Signal_Assignment
     (Ctxt : in out Ctxt_Class; Stmt: Iir) is
   begin
      Start_Hbox (Ctxt);
      Disp_Label (Ctxt, Stmt);
      Disp_Postponed (Ctxt, Stmt);
      Disp_Token (Ctxt, Tok_With);
      Print (Ctxt, Get_Expression (Stmt));
      Disp_Token (Ctxt, Tok_Select);
      Print (Ctxt, Get_Target (Stmt));
      Disp_Token (Ctxt, Tok_Less_Equal);
      if Get_Guard (Stmt) /= Null_Iir then
         Disp_Token (Ctxt, Tok_Guarded);
      end if;
      Disp_Delay_Mechanism (Ctxt, Stmt);
      Disp_Selected_Waveforms (Ctxt, Stmt);
      Close_Hbox (Ctxt);
   end Disp_Concurrent_Selected_Signal_Assignment;

   procedure Disp_Concurrent_Conditional_Signal_Assignment
     (Ctxt : in out Ctxt_Class; Stmt: Iir) is
   begin
      Start_Hbox (Ctxt);
      Disp_Label (Ctxt, Stmt);
      Disp_Postponed (Ctxt, Stmt);
      Print (Ctxt, Get_Target (Stmt));
      Disp_Token (Ctxt, Tok_Less_Equal);
      if Get_Guard (Stmt) /= Null_Iir then
         Disp_Token (Ctxt, Tok_Guarded);
      end if;
      Disp_Delay_Mechanism (Ctxt, Stmt);
      Disp_Conditional_Waveform (Ctxt, Get_Conditional_Waveform_Chain (Stmt));
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Concurrent_Conditional_Signal_Assignment;

   procedure Disp_Break_Statement (Ctxt : in out Ctxt_Class; Stmt: Iir)
   is
      List : Iir_List;
      El : Iir;
      Sel : Iir;
      Cond : Iir;
   begin
      Start_Hbox (Ctxt);
      Disp_Label (Ctxt, Stmt);
      Disp_Token (Ctxt, Tok_Break);

      El := Get_Break_Element (Stmt);
      if El /= Null_Iir then
         loop
            Sel := Get_Selector_Quantity (El);
            if Sel /= Null_Iir then
               Disp_Token (Ctxt, Tok_For);
               Print (Ctxt, Sel);
               Disp_Token (Ctxt, Tok_Use);
            end if;
            Print (Ctxt, Get_Break_Quantity (El));
            Disp_Token (Ctxt, Tok_Double_Arrow);
            Print (Ctxt, Get_Expression (El));
            El := Get_Chain (El);
            exit when El = Null_Iir;
            Disp_Token (Ctxt, Tok_Comma);
         end loop;
      end if;

      if Get_Kind (Stmt) = Iir_Kind_Concurrent_Break_Statement then
         List := Get_Sensitivity_List (Stmt);
         if List /= Null_Iir_List then
            Disp_Token (Ctxt, Tok_On);
            Disp_Designator_List (Ctxt, List);
         end if;
      end if;

      Cond := Get_Condition (Stmt);
      if Cond /= Null_Iir then
         Disp_Token (Ctxt, Tok_When);
         Print (Ctxt, Cond);
      end if;
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Break_Statement;

   procedure Disp_Severity_Expression (Ctxt : in out Ctxt_Class; Stmt : Iir)
   is
      Expr : constant Iir := Get_Severity_Expression (Stmt);
   begin
      if Expr /= Null_Iir then
         Disp_Token (Ctxt, Tok_Severity);
         Print (Ctxt, Expr);
      end if;
   end Disp_Severity_Expression;

   procedure Disp_Report_Expression (Ctxt : in out Ctxt_Class; Stmt : Iir)
   is
      Expr : constant Iir := Get_Report_Expression (Stmt);
   begin
      if Expr /= Null_Iir then
         Disp_Token (Ctxt, Tok_Report);
         Print (Ctxt, Expr);
      end if;
   end Disp_Report_Expression;

   procedure Disp_Assertion_Statement (Ctxt : in out Ctxt_Class; Stmt: Iir) is
   begin
      Start_Hbox (Ctxt);
      Disp_Label (Ctxt, Stmt);
      if Get_Kind (Stmt) = Iir_Kind_Concurrent_Assertion_Statement then
         Disp_Postponed (Ctxt, Stmt);
      end if;
      Disp_Token (Ctxt, Tok_Assert);
      Print (Ctxt, Get_Assertion_Condition (Stmt));
      Disp_Report_Expression (Ctxt, Stmt);
      Disp_Severity_Expression (Ctxt, Stmt);
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Assertion_Statement;

   procedure Disp_Report_Statement (Ctxt : in out Ctxt_Class; Stmt: Iir) is
   begin
      Start_Hbox (Ctxt);
      Disp_Label (Ctxt, Stmt);
      Disp_Token (Ctxt, Tok_Report);
      Print (Ctxt, Get_Report_Expression (Stmt));
      Disp_Severity_Expression (Ctxt, Stmt);
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Report_Statement;

   function Get_Operator_Token (Op : Iir) return Token_Type is
   begin
      case Get_Kind (Op) is
         when Iir_Kind_And_Operator
           | Iir_Kind_Reduction_And_Operator =>
            return Tok_And;
         when Iir_Kind_Or_Operator
           | Iir_Kind_Reduction_Or_Operator =>
            return Tok_Or;
         when Iir_Kind_Nand_Operator
           | Iir_Kind_Reduction_Nand_Operator =>
            return Tok_Nand;
         when Iir_Kind_Nor_Operator
           | Iir_Kind_Reduction_Nor_Operator =>
            return Tok_Nor;
         when Iir_Kind_Xor_Operator
           | Iir_Kind_Reduction_Xor_Operator =>
            return Tok_Xor;
         when Iir_Kind_Xnor_Operator
           | Iir_Kind_Reduction_Xnor_Operator =>
            return Tok_Xnor;

         when Iir_Kind_Equality_Operator =>
            return Tok_Equal;
         when Iir_Kind_Inequality_Operator =>
            return Tok_Not_Equal;
         when Iir_Kind_Less_Than_Operator =>
            return Tok_Less;
         when Iir_Kind_Less_Than_Or_Equal_Operator =>
            return Tok_Less_Equal;
         when Iir_Kind_Greater_Than_Operator =>
            return Tok_Greater;
         when Iir_Kind_Greater_Than_Or_Equal_Operator =>
            return Tok_Greater_Equal;

         when Iir_Kind_Match_Equality_Operator =>
            return Tok_Match_Equal;
         when Iir_Kind_Match_Inequality_Operator =>
            return Tok_Match_Not_Equal;
         when Iir_Kind_Match_Less_Than_Operator =>
            return Tok_Match_Less;
         when Iir_Kind_Match_Less_Than_Or_Equal_Operator =>
            return Tok_Match_Less_Equal;
         when Iir_Kind_Match_Greater_Than_Operator =>
            return Tok_Match_Greater;
         when Iir_Kind_Match_Greater_Than_Or_Equal_Operator =>
            return Tok_Match_Greater_Equal;

         when Iir_Kind_Sll_Operator =>
            return Tok_Sll;
         when Iir_Kind_Sla_Operator =>
            return Tok_Sla;
         when Iir_Kind_Srl_Operator =>
            return Tok_Srl;
         when Iir_Kind_Sra_Operator =>
            return Tok_Sra;
         when Iir_Kind_Rol_Operator =>
            return Tok_Rol;
         when Iir_Kind_Ror_Operator =>
            return Tok_Ror;

         when Iir_Kind_Addition_Operator =>
            return Tok_Plus;
         when Iir_Kind_Substraction_Operator =>
            return Tok_Minus;
         when Iir_Kind_Concatenation_Operator =>
            return Tok_Ampersand;
         when Iir_Kind_Multiplication_Operator =>
            return Tok_Star;
         when Iir_Kind_Division_Operator =>
            return Tok_Slash;
         when Iir_Kind_Modulus_Operator =>
            return Tok_Mod;
         when Iir_Kind_Remainder_Operator =>
            return Tok_Rem;
         when Iir_Kind_Exponentiation_Operator =>
            return Tok_Double_Star;
         when Iir_Kind_Not_Operator =>
            return Tok_Not;
         when Iir_Kind_Negation_Operator =>
            return Tok_Minus;
         when Iir_Kind_Identity_Operator =>
            return Tok_Plus;
         when Iir_Kind_Absolute_Operator =>
            return Tok_Abs;
         when Iir_Kind_Condition_Operator
           | Iir_Kind_Implicit_Condition_Operator =>
            return Tok_Condition;
         when others =>
            raise Internal_Error;
      end case;
   end Get_Operator_Token;

   procedure Disp_Dyadic_Operator (Ctxt : in out Ctxt_Class; Expr: Iir) is
   begin
      if Flag_Parenthesis then
         Disp_Token (Ctxt, Tok_Left_Paren);
      end if;
      Print (Ctxt, Get_Left (Expr));
      Disp_Token (Ctxt, Get_Operator_Token (Expr));
      Print (Ctxt, Get_Right (Expr));
      if Flag_Parenthesis then
         Disp_Token (Ctxt, Tok_Right_Paren);
      end if;
   end Disp_Dyadic_Operator;

   procedure Disp_Monadic_Operator (Ctxt : in out Ctxt_Class; Expr: Iir) is
   begin
      if Get_Kind (Expr) = Iir_Kind_Implicit_Condition_Operator then
         Print (Ctxt, Get_Operand (Expr));
         return;
      end if;

      Disp_Token (Ctxt, Get_Operator_Token (Expr));
      if Flag_Parenthesis then
         Disp_Token (Ctxt, Tok_Left_Paren);
      end if;
      Print (Ctxt, Get_Operand (Expr));
      if Flag_Parenthesis then
         Disp_Token (Ctxt, Tok_Right_Paren);
      end if;
   end Disp_Monadic_Operator;

   procedure Disp_Case_Statement
     (Ctxt : in out Ctxt_Class; Stmt: Iir_Case_Statement)
   is
      Assoc: Iir;
      Sel_Stmt : Iir;
   begin
      Disp_Token (Ctxt, Tok_Case);
      Print (Ctxt, Get_Expression (Stmt));
      Close_Hbox (Ctxt);
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Is);
      Close_Hbox (Ctxt);

      Start_Vbox (Ctxt);
      Assoc := Get_Case_Statement_Alternative_Chain (Stmt);
      while Assoc /= Null_Iir loop
         Start_Hbox (Ctxt);
         Disp_Token (Ctxt, Tok_When);
         Sel_Stmt := Get_Associated_Chain (Assoc);
         Disp_Choice (Ctxt, Assoc);
         Disp_Token (Ctxt, Tok_Double_Arrow);
         Close_Hbox (Ctxt);

         Start_Vbox (Ctxt);
         Disp_Sequential_Statements (Ctxt, Sel_Stmt);
         Close_Vbox (Ctxt);
      end loop;
      Close_Vbox (Ctxt);

      Disp_End_Label_No_Close (Ctxt, Stmt, Tok_Case);
   end Disp_Case_Statement;

   procedure Disp_Wait_Statement
     (Ctxt : in out Ctxt_Class; Stmt: Iir_Wait_Statement)
   is
      List: Iir_List;
      Expr: Iir;
   begin
      Start_Hbox (Ctxt);
      Disp_Label (Ctxt, Stmt);
      Disp_Token (Ctxt, Tok_Wait);
      List := Get_Sensitivity_List (Stmt);
      if List /= Null_Iir_List then
         Disp_Token (Ctxt, Tok_On);
         Disp_Designator_List (Ctxt, List);
      end if;
      Expr := Get_Condition_Clause (Stmt);
      if Expr /= Null_Iir then
         Disp_Token (Ctxt, Tok_Until);
         Print (Ctxt, Expr);
      end if;
      Expr := Get_Timeout_Clause (Stmt);
      if Expr /= Null_Iir then
         Disp_Token (Ctxt, Tok_For);
         Print (Ctxt, Expr);
      end if;
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Wait_Statement;

   procedure Disp_If_Statement
     (Ctxt : in out Ctxt_Class; Stmt : Iir_If_Statement)
   is
      Clause : Iir;
      Expr : Iir;
   begin
      Start_Hbox (Ctxt);
      Disp_Label (Ctxt, Stmt);
      Disp_Token (Ctxt, Tok_If);
      Clause := Stmt;
      Print (Ctxt, Get_Condition (Clause));
      Close_Hbox (Ctxt);
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Then);
      Close_Hbox (Ctxt);
      while Clause /= Null_Iir loop
         Start_Vbox (Ctxt);
         Disp_Sequential_Statements
           (Ctxt, Get_Sequential_Statement_Chain (Clause));
         Close_Vbox (Ctxt);
         Clause := Get_Else_Clause (Clause);
         exit when Clause = Null_Iir;
         Start_Hbox (Ctxt);
         Expr := Get_Condition (Clause);
         if Expr /= Null_Iir then
            Disp_Token (Ctxt, Tok_Elsif);
            Print (Ctxt, Expr);
            Close_Hbox (Ctxt);
            Start_Hbox (Ctxt);
            Disp_Token (Ctxt, Tok_Then);
         else
            Disp_Token (Ctxt, Tok_Else);
         end if;
         Close_Hbox (Ctxt);
      end loop;
      Disp_End_Label (Ctxt, Stmt, Tok_If);
   end Disp_If_Statement;

   procedure Disp_Parameter_Specification
     (Ctxt : in out Ctxt_Class; Iterator : Iir_Iterator_Declaration) is
   begin
      Disp_Identifier (Ctxt, Iterator);
      Disp_Token (Ctxt, Tok_In);
      Disp_Discrete_Range (Ctxt, Or_Else (Get_Discrete_Range (Iterator),
                                          Get_Subtype_Indication (Iterator)));
   end Disp_Parameter_Specification;

   procedure Disp_Procedure_Call (Ctxt : in out Ctxt_Class; Stmt : Iir)
   is
      Call : constant Iir := Get_Procedure_Call (Stmt);
   begin
      Start_Hbox (Ctxt);
      Disp_Label (Ctxt, Stmt);
      if Get_Kind (Stmt) = Iir_Kind_Concurrent_Procedure_Call_Statement then
         Disp_Postponed (Ctxt, Stmt);
      end if;
      Print (Ctxt, Get_Prefix (Call));
      Disp_Association_Chain (Ctxt, Get_Parameter_Association_Chain (Call));
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Procedure_Call;

   procedure Disp_For_Loop_Statement (Ctxt : in out Ctxt_Class; Stmt : Iir) is
   begin
      Start_Hbox (Ctxt);
      Disp_Label (Ctxt, Stmt);
      Disp_Token (Ctxt, Tok_For);
      Disp_Parameter_Specification (Ctxt, Get_Parameter_Specification (Stmt));
      Disp_Token (Ctxt, Tok_Loop);
      Close_Hbox (Ctxt);

      Start_Vbox (Ctxt);
      Disp_Sequential_Statements (Ctxt, Get_Sequential_Statement_Chain (Stmt));
      Close_Vbox (Ctxt);

      Disp_End_Label (Ctxt, Stmt, Tok_Loop);
   end Disp_For_Loop_Statement;

   procedure Disp_Force_Mode_Opt (Ctxt : in out Ctxt_Class; Stmt : Iir) is
   begin
      if Get_Has_Force_Mode (Stmt) then
         case Get_Force_Mode (Stmt) is
            when Iir_Force_In =>
               Disp_Token (Ctxt, Tok_In);
            when Iir_Force_Out =>
               Disp_Token (Ctxt, Tok_Out);
         end case;
      end if;
   end Disp_Force_Mode_Opt;

   procedure Disp_Sequential_Statements (Ctxt : in out Ctxt_Class; First : Iir)
   is
      Stmt: Iir;
   begin
      Stmt := First;
      while Stmt /= Null_Iir loop
         case Iir_Kinds_Sequential_Statement_Ext (Get_Kind (Stmt)) is
            when Iir_Kind_Null_Statement =>
               Start_Hbox (Ctxt);
               Disp_Label (Ctxt, Stmt);
               Disp_Token (Ctxt, Tok_Null, Tok_Semi_Colon);
               Close_Hbox (Ctxt);
            when Iir_Kind_If_Statement =>
               Disp_If_Statement (Ctxt, Stmt);
            when Iir_Kind_For_Loop_Statement =>
               Disp_For_Loop_Statement (Ctxt, Stmt);
            when Iir_Kind_While_Loop_Statement =>
               declare
                  Cond : constant Iir := Get_Condition (Stmt);
               begin
                  --  As an HBox cannot be empty, check before opening it.
                  if Get_Label (Stmt) /= Null_Identifier
                    or else Cond /= Null_Iir
                  then
                     Start_Hbox (Ctxt);
                     Disp_Label (Ctxt, Stmt);
                     if Get_Condition (Stmt) /= Null_Iir then
                        Disp_Token (Ctxt, Tok_While);
                        Print (Ctxt, Get_Condition (Stmt));
                     end if;
                     Close_Hbox (Ctxt);
                  end if;
               end;
               Start_Hbox (Ctxt);
               Disp_Token (Ctxt, Tok_Loop);
               Close_Hbox (Ctxt);
               Start_Vbox (Ctxt);
               Disp_Sequential_Statements
                 (Ctxt, Get_Sequential_Statement_Chain (Stmt));
               Close_Vbox (Ctxt);
               Disp_End_Label (Ctxt, Stmt, Tok_Loop);
            when Iir_Kind_Simple_Signal_Assignment_Statement =>
               Disp_Simple_Signal_Assignment (Ctxt, Stmt);
            when Iir_Kind_Conditional_Signal_Assignment_Statement =>
               Start_Hbox (Ctxt);
               Disp_Label (Ctxt, Stmt);
               Disp_Conditional_Signal_Assignment (Ctxt, Stmt);
               Close_Hbox (Ctxt);
            when Iir_Kind_Selected_Waveform_Assignment_Statement =>
               Disp_Selected_Waveform_Assignment (Ctxt, Stmt);
            when Iir_Kind_Signal_Force_Assignment_Statement =>
               Start_Hbox (Ctxt);
               Disp_Label (Ctxt, Stmt);
               Print (Ctxt, Get_Target (Stmt));
               Disp_Token (Ctxt, Tok_Less_Equal);
               Disp_Token (Ctxt, Tok_Force);
               Disp_Force_Mode_Opt (Ctxt, Stmt);
               Print (Ctxt, Get_Expression (Stmt));
               Disp_Token (Ctxt, Tok_Semi_Colon);
               Close_Hbox (Ctxt);
            when Iir_Kind_Signal_Release_Assignment_Statement =>
               Start_Hbox (Ctxt);
               Disp_Label (Ctxt, Stmt);
               Print (Ctxt, Get_Target (Stmt));
               Disp_Token (Ctxt, Tok_Less_Equal);
               Disp_Token (Ctxt, Tok_Release);
               Disp_Force_Mode_Opt (Ctxt, Stmt);
               Disp_Token (Ctxt, Tok_Semi_Colon);
               Close_Hbox (Ctxt);
            when Iir_Kind_Variable_Assignment_Statement =>
               Disp_Variable_Assignment (Ctxt, Stmt);
            when Iir_Kind_Conditional_Variable_Assignment_Statement =>
               Disp_Conditional_Variable_Assignment (Ctxt, Stmt);
            when Iir_Kind_Assertion_Statement =>
               Disp_Assertion_Statement (Ctxt, Stmt);
            when Iir_Kind_Report_Statement =>
               Disp_Report_Statement (Ctxt, Stmt);
            when Iir_Kind_Return_Statement =>
               Start_Hbox (Ctxt);
               Disp_Label (Ctxt, Stmt);
               Disp_Token (Ctxt, Tok_Return);
               if Get_Expression (Stmt) /= Null_Iir then
                  Print (Ctxt, Get_Expression (Stmt));
               end if;
               Disp_Token (Ctxt, Tok_Semi_Colon);
               Close_Hbox (Ctxt);
            when Iir_Kind_Case_Statement =>
               Start_Hbox (Ctxt);
               Disp_Label (Ctxt, Stmt);
               Disp_Case_Statement (Ctxt, Stmt);
               Close_Hbox (Ctxt);
            when Iir_Kind_Wait_Statement =>
               Disp_Wait_Statement (Ctxt, Stmt);
            when Iir_Kind_Procedure_Call_Statement =>
               Disp_Procedure_Call (Ctxt, Stmt);
            when Iir_Kind_Exit_Statement
              | Iir_Kind_Next_Statement =>
               declare
                  Label : constant Iir := Get_Loop_Label (Stmt);
                  Cond : constant Iir := Get_Condition (Stmt);
               begin
                  Start_Hbox (Ctxt);
                  Disp_Label (Ctxt, Stmt);
                  if Get_Kind (Stmt) = Iir_Kind_Exit_Statement then
                     Disp_Token (Ctxt, Tok_Exit);
                  else
                     Disp_Token (Ctxt, Tok_Next);
                  end if;
                  if Label /= Null_Iir then
                     Print (Ctxt, Label);
                  end if;
                  if Cond /= Null_Iir then
                     Disp_Token (Ctxt, Tok_When);
                     Print (Ctxt, Cond);
                  end if;
                  Disp_Token (Ctxt, Tok_Semi_Colon);
                  Close_Hbox (Ctxt);
               end;
            when Iir_Kind_Break_Statement =>
               Disp_Break_Statement (Ctxt, Stmt);

            when Iir_Kind_Suspend_State_Statement =>
               Start_Hbox (Ctxt);
               Disp_Ident (Ctxt, Name_State);
               Disp_Token (Ctxt, Tok_Colon);
               Start_Lit (Ctxt, Tok_Integer);
               Disp_Int32 (Ctxt, Iir_Int32 (Get_Suspend_State_Index (Stmt)));
               Close_Lit (Ctxt);
               Disp_Token (Ctxt, Tok_Semi_Colon);
               Close_Hbox (Ctxt);

         end case;
         Stmt := Get_Chain (Stmt);
      end loop;
   end Disp_Sequential_Statements;

   procedure Disp_Process_Statement (Ctxt : in out Ctxt_Class; Process: Iir) is
   begin
      Start_Hbox (Ctxt);
      Disp_Label (Ctxt, Process);
      Disp_Postponed (Ctxt, Process);

      Disp_Token (Ctxt, Tok_Process);
      if Get_Kind (Process) = Iir_Kind_Sensitized_Process_Statement then
         Disp_Token (Ctxt, Tok_Left_Paren);
         Disp_Designator_List (Ctxt, Get_Sensitivity_List (Process));
         Disp_Token (Ctxt, Tok_Right_Paren);
      end if;
      if Get_Has_Is (Process) then
         Disp_Token (Ctxt, Tok_Is);
      end if;
      Close_Hbox (Ctxt);

      Start_Vbox (Ctxt);
      Disp_Declaration_Chain (Ctxt, Process);
      Close_Vbox (Ctxt);

      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Begin);
      Close_Hbox (Ctxt);

      Start_Vbox (Ctxt);
      Disp_Sequential_Statements
        (Ctxt, Get_Sequential_Statement_Chain (Process));
      Close_Vbox (Ctxt);

      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_End);
      if Get_End_Has_Postponed (Process) then
         Disp_Token (Ctxt, Tok_Postponed);
      end if;
      Disp_After_End (Ctxt, Process, Tok_Process);
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Process_Statement;

   procedure Disp_Conversion (Ctxt : in out Ctxt_Class; Conv : Iir) is
   begin
      case Get_Kind (Conv) is
         when Iir_Kind_Function_Call =>
            Disp_Function_Name (Ctxt, Get_Implementation (Conv));
         when Iir_Kind_Type_Conversion =>
            Disp_Name_Of (Ctxt, Get_Type_Mark (Conv));
         when others =>
            Error_Kind ("disp_conversion", Conv);
      end case;
   end Disp_Conversion;

   procedure Disp_Association_Chain (Ctxt : in out Ctxt_Class; Chain : Iir)
   is
      El: Iir;
      Formal: Iir;
      Need_Comma : Boolean;
      Conv : Iir;
   begin
      if Chain = Null_Iir then
         return;
      end if;
      Disp_Token (Ctxt, Tok_Left_Paren);
      Need_Comma := False;

      El := Chain;
      while El /= Null_Iir loop
         if Get_Kind (El) /= Iir_Kind_Association_Element_By_Individual
           and then not (Get_Kind (El) = Iir_Kind_Association_Element_Open
                           and then Get_Artificial_Flag (El))
         then
            if Need_Comma then
               Disp_Token (Ctxt, Tok_Comma);
            end if;

            --  Formal part.
            if Get_Kind (El) in Iir_Kinds_Association_Element_By_Actual then
               Conv := Get_Formal_Conversion (El);
               if Conv /= Null_Iir then
                  Disp_Conversion (Ctxt, Conv);
                  Disp_Token (Ctxt, Tok_Left_Paren);
               end if;
            else
               Conv := Null_Iir;
            end if;
            Formal := Get_Formal (El);
            if Formal /= Null_Iir then
               Print (Ctxt, Formal);
               if Conv /= Null_Iir then
                  Disp_Token (Ctxt, Tok_Right_Paren);
               end if;
               Disp_Token (Ctxt, Tok_Double_Arrow);
            end if;

            case Iir_Kinds_Association_Element (Get_Kind (El)) is
               when Iir_Kind_Association_Element_Open =>
                  Disp_Token (Ctxt, Tok_Open);
               when Iir_Kind_Association_Element_Package
                 | Iir_Kind_Association_Element_Type
                 | Iir_Kind_Association_Element_Subprogram
                 | Iir_Kind_Association_Element_Terminal =>
                  Print (Ctxt, Get_Actual (El));
               when Iir_Kind_Association_Element_By_Expression
                 | Iir_Kind_Association_Element_By_Name =>
                  Conv := Get_Actual_Conversion (El);
                  if Conv /= Null_Iir then
                     Disp_Conversion (Ctxt, Conv);
                     Disp_Token (Ctxt, Tok_Left_Paren);
                  end if;
                  Print (Ctxt, Get_Actual (El));
                  if Conv /= Null_Iir then
                     Disp_Token (Ctxt, Tok_Right_Paren);
                  end if;
               when Iir_Kind_Association_Element_By_Individual =>
                  raise Program_Error;
            end case;
            Need_Comma := True;
         end if;
         El := Get_Chain (El);
      end loop;
      Disp_Token (Ctxt, Tok_Right_Paren);
   end Disp_Association_Chain;

   procedure Disp_Generic_Map_Aspect
     (Ctxt : in out Ctxt_Class; Parent : Iir) is
   begin
      Disp_Token (Ctxt, Tok_Generic, Tok_Map);
      Disp_Association_Chain (Ctxt, Get_Generic_Map_Aspect_Chain (Parent));
   end Disp_Generic_Map_Aspect;

   procedure Disp_Port_Map_Aspect (Ctxt : in out Ctxt_Class; Parent : Iir) is
   begin
      Disp_Token (Ctxt, Tok_Port, Tok_Map);
      Disp_Association_Chain (Ctxt, Get_Port_Map_Aspect_Chain (Parent));
   end Disp_Port_Map_Aspect;

   procedure Disp_Entity_Aspect (Ctxt : in out Ctxt_Class; Aspect : Iir) is
      Arch : Iir;
   begin
      case Get_Kind (Aspect) is
         when Iir_Kind_Entity_Aspect_Entity =>
            Disp_Token (Ctxt, Tok_Entity);
            Print (Ctxt, Get_Entity_Name (Aspect));
            Arch := Get_Architecture (Aspect);
            if Arch /= Null_Iir then
               Disp_Token (Ctxt, Tok_Left_Paren);
               Disp_Name_Of (Ctxt, Arch);
               Disp_Token (Ctxt, Tok_Right_Paren);
            end if;
         when Iir_Kind_Entity_Aspect_Configuration =>
            Disp_Token (Ctxt, Tok_Configuration);
            Print (Ctxt, Get_Configuration_Name (Aspect));
         when Iir_Kind_Entity_Aspect_Open =>
            Disp_Token (Ctxt, Tok_Open);
         when others =>
            Error_Kind ("disp_entity_aspect", Aspect);
      end case;
   end Disp_Entity_Aspect;

   procedure Disp_Component_Instantiation_Statement
     (Ctxt : in out Ctxt_Class; Stmt: Iir_Component_Instantiation_Statement)
   is
      Component: constant Iir := Get_Instantiated_Unit (Stmt);
      Gen_Map : constant Iir := Get_Generic_Map_Aspect_Chain (Stmt);
      Port_Map : constant Iir := Get_Port_Map_Aspect_Chain (Stmt);
   begin
      Start_Hbox (Ctxt);
      Disp_Label (Ctxt, Stmt);
      if Get_Kind (Component) in Iir_Kinds_Denoting_Name then
         if Get_Has_Component (Stmt) then
            Disp_Token (Ctxt, Tok_Component);
         end if;
         Print (Ctxt, Component);
      else
         Disp_Entity_Aspect (Ctxt, Component);
      end if;

      if Gen_Map = Null_Iir and Port_Map = Null_Iir then
         Disp_Token (Ctxt, Tok_Semi_Colon);
         Close_Hbox (Ctxt);
      else
         Close_Hbox (Ctxt);

         Start_Vbox (Ctxt);
         if Gen_Map /= Null_Iir then
            Start_Hbox (Ctxt);
            Disp_Generic_Map_Aspect (Ctxt, Stmt);
            if Port_Map = Null_Iir then
               Disp_Token (Ctxt, Tok_Semi_Colon);
            end if;
            Close_Hbox (Ctxt);
         end if;

         if Port_Map /= Null_Iir then
            Start_Hbox (Ctxt);
            Disp_Port_Map_Aspect (Ctxt, Stmt);
            Disp_Token (Ctxt, Tok_Semi_Colon);
            Close_Hbox (Ctxt);
         end if;

         Close_Vbox (Ctxt);
      end if;
   end Disp_Component_Instantiation_Statement;

   procedure Disp_Function_Call
     (Ctxt : in out Ctxt_Class; Expr: Iir_Function_Call) is
   begin
      Print (Ctxt, Get_Prefix (Expr));
      Disp_Association_Chain (Ctxt, Get_Parameter_Association_Chain (Expr));
   end Disp_Function_Call;

   procedure Disp_Indexed_Name (Ctxt : in out Ctxt_Class; Indexed: Iir)
   is
      List : Iir_Flist;
      El: Iir;
   begin
      Print (Ctxt, Get_Prefix (Indexed));
      Disp_Token (Ctxt, Tok_Left_Paren);
      List := Get_Index_List (Indexed);
      for I in Flist_First .. Flist_Last (List) loop
         El := Get_Nth_Element (List, I);
         if I /= 0 then
            Disp_Token (Ctxt, Tok_Comma);
         end if;
         Print (Ctxt, El);
      end loop;
      Disp_Token (Ctxt, Tok_Right_Paren);
   end Disp_Indexed_Name;

   procedure Disp_A_Choice (Ctxt : in out Ctxt_Class; Choice : Iir) is
   begin
      case Iir_Kinds_Choice (Get_Kind (Choice)) is
         when Iir_Kind_Choice_By_Others =>
            Disp_Token (Ctxt, Tok_Others);
         when Iir_Kind_Choice_By_None =>
            null;
         when Iir_Kind_Choice_By_Expression =>
            Print (Ctxt, Get_Choice_Expression (Choice));
         when Iir_Kind_Choice_By_Range =>
            Disp_Range (Ctxt, Get_Choice_Range (Choice));
         when Iir_Kind_Choice_By_Name =>
            Disp_Name_Of (Ctxt, Get_Choice_Name (Choice));
      end case;
   end Disp_A_Choice;

   procedure Disp_Choice (Ctxt : in out Ctxt_Class; Choice: in out Iir) is
   begin
      loop
         Disp_A_Choice (Ctxt, Choice);
         Choice := Get_Chain (Choice);
         exit when Choice = Null_Iir;
         exit when Get_Same_Alternative_Flag (Choice) = False;
         --exit when Choice = Null_Iir;
         Disp_Token (Ctxt, Tok_Bar);
      end loop;
   end Disp_Choice;

   --  EL_TYPE is Null_Iir for record aggregates.
   procedure Disp_Aggregate_1
     (Ctxt : in out Ctxt_Class;
      Aggr: Iir_Aggregate; Index : Positive; El_Type : Iir)
   is
      Assoc : Iir;
      Expr : Iir;
      Is_First : Boolean;
   begin
      Disp_Token (Ctxt, Tok_Left_Paren);
      Assoc := Get_Association_Choices_Chain (Aggr);
      Is_First := True;
      while Assoc /= Null_Iir loop
         if Is_First then
            Is_First := False;
         else
            Disp_Token (Ctxt, Tok_Comma);
         end if;
         pragma Assert (not Get_Same_Alternative_Flag (Assoc));
         Expr := Get_Associated_Expr (Assoc);
         Disp_A_Choice (Ctxt, Assoc);
         if Get_Kind (Assoc) /= Iir_Kind_Choice_By_None then
            Assoc := Get_Chain (Assoc);
            while Assoc /= Null_Iir
              and then Get_Same_Alternative_Flag (Assoc)
            loop
               Disp_Token (Ctxt, Tok_Bar);
               Disp_A_Choice (Ctxt, Assoc);
               Assoc := Get_Chain (Assoc);
            end loop;
            Disp_Token (Ctxt, Tok_Double_Arrow);
         else
            Assoc := Get_Chain (Assoc);
         end if;
         if Index > 1 then
            if Get_Kind (Expr) = Iir_Kind_String_Literal8 then
               Disp_String_Literal (Ctxt, Expr, El_Type);
            else
               Disp_Aggregate_1 (Ctxt, Expr, Index - 1, El_Type);
            end if;
         else
            Print (Ctxt, Expr);
         end if;
      end loop;
      Disp_Token (Ctxt, Tok_Right_Paren);
   end Disp_Aggregate_1;

   procedure Disp_Aggregate (Ctxt : in out Ctxt_Class; Aggr: Iir_Aggregate)
   is
      Aggr_Type : constant Iir := Get_Type (Aggr);
      Base_Type : Iir;
   begin
      if Aggr_Type /= Null_Iir
        and then Get_Kind (Aggr_Type) in Iir_Kinds_Array_Type_Definition
      then
         Base_Type := Get_Base_Type (Aggr_Type);
         Disp_Aggregate_1
           (Ctxt, Aggr, Get_Nbr_Elements (Get_Index_Subtype_List (Base_Type)),
            Get_Element_Subtype (Base_Type));
      else
         Disp_Aggregate_1 (Ctxt, Aggr, 1, Null_Iir);
      end if;
   end Disp_Aggregate;

   procedure Disp_Simple_Aggregate
     (Ctxt : in out Ctxt_Class; Aggr: Iir_Simple_Aggregate)
   is
      List : constant Iir_Flist := Get_Simple_Aggregate_List (Aggr);
      El : Iir;
      First : Boolean := True;
   begin
      Disp_Token (Ctxt, Tok_Left_Paren);
      for I in Flist_First .. Flist_Last (List) loop
         El := Get_Nth_Element (List, I);
         if First then
            First := False;
         else
            Disp_Token (Ctxt, Tok_Comma);
         end if;
         Print (Ctxt, El);
      end loop;
      Disp_Token (Ctxt, Tok_Right_Paren);
   end Disp_Simple_Aggregate;

   procedure Disp_Parametered_Attribute
     (Ctxt : in out Ctxt_Class; Name : Name_Id; Expr : Iir)
   is
      Param : Iir;
      Pfx : Iir;
   begin
      Pfx := Get_Prefix (Expr);
      case Get_Kind (Pfx) is
         when Iir_Kind_Type_Declaration
           | Iir_Kind_Subtype_Declaration =>
            Disp_Name_Of (Ctxt, Pfx);
         when others =>
            Print (Ctxt, Pfx);
      end case;
      Disp_Token (Ctxt, Tok_Tick);
      Disp_Ident (Ctxt, Name);
      Param := Get_Parameter (Expr);
      if Param /= Null_Iir
        and then Param /= Vhdl.Std_Package.Universal_Integer_One
      then
         Disp_Token (Ctxt, Tok_Left_Paren);
         Print (Ctxt, Param);
         Disp_Token (Ctxt, Tok_Right_Paren);
      end if;
   end Disp_Parametered_Attribute;

   procedure Disp_Parametered_Attribute
     (Ctxt : in out Ctxt_Class; Name : Name_Id; Expr : Iir; Num : Natural)
   is
      Param : Iir;
      Pfx : Iir;
      Has_Params : Boolean;
   begin
      Pfx := Get_Prefix (Expr);
      Print (Ctxt, Pfx);
      Disp_Token (Ctxt, Tok_Tick);
      Disp_Ident (Ctxt, Name);
      Has_Params := False;
      for I in 1 .. Num loop
         Param := Get_Attribute_Parameter (Expr, I);
         exit when Param = Null_Iir;
         if not Has_Params then
            Disp_Token (Ctxt, Tok_Left_Paren);
            Has_Params := True;
         else
            Disp_Token (Ctxt, Tok_Comma);
         end if;
         Print (Ctxt, Param);
      end loop;
      if Has_Params then
         Disp_Token (Ctxt, Tok_Right_Paren);
      end if;
   end Disp_Parametered_Attribute;

   procedure Disp_Parametered_Type_Attribute
     (Ctxt : in out Ctxt_Class; Name : Name_Id; Expr : Iir) is
   begin
      Print (Ctxt, Get_Prefix (Expr));
      Disp_Token (Ctxt, Tok_Tick);
      Disp_Ident (Ctxt, Name);
      Disp_Token (Ctxt, Tok_Left_Paren);
      Print (Ctxt, Get_Parameter (Expr));
      Disp_Token (Ctxt, Tok_Right_Paren);
   end Disp_Parametered_Type_Attribute;

   procedure Disp_String_Literal_Raw
     (Ctxt : in out Ctxt_Class; Str : Iir; El_Type : Iir)
   is
      Str_Id : constant String8_Id := Get_String8_Id (Str);
      Len : constant Nat32 := Get_String_Length (Str);
      Literal_List : Iir_Flist;
      Pos : Nat8;
      Lit : Iir;
      Id : Name_Id;
      C : Character;
   begin
      if Get_Bit_String_Base (Str) /= Base_None then
         Start_Lit (Ctxt, Tok_Bit_String);
         if Get_Has_Length (Str) then
            Disp_Int32 (Ctxt, Iir_Int32 (Get_String_Length (Str)));
         end if;
         Disp_Char (Ctxt, 'b');
      else
         Start_Lit (Ctxt, Tok_String);
      end if;

      Disp_Char (Ctxt, '"');

      if El_Type /= Null_Iir then
         Literal_List :=
           Get_Enumeration_Literal_List (Get_Base_Type (El_Type));
      else
         Literal_List := Null_Iir_Flist;
      end if;

      for I in 1 .. Len loop
         Pos := Str_Table.Element_String8 (Str_Id, I);
         if Literal_List /= Null_Iir_Flist then
            Lit := Get_Nth_Element (Literal_List, Natural (Pos));
            Id := Get_Identifier (Lit);
         else
            Id := Name_Table.Get_Identifier (Character'Val (Pos));
         end if;
         pragma Assert (Name_Table.Is_Character (Id));
         C := Name_Table.Get_Character (Id);
         if C = '"' then
            Disp_Char (Ctxt, C);
         end if;
         Disp_Char (Ctxt, C);
      end loop;

      Disp_Char (Ctxt, '"');
      Close_Lit (Ctxt);
   end Disp_String_Literal_Raw;

   procedure Disp_String_Literal
     (Ctxt : in out Ctxt_Class; Str : Iir; El_Type : Iir) is
   begin
      if Get_Literal_Length (Str) /= 0 then
         declare
            Tkind : Token_Type;
         begin
            if Get_Bit_String_Base (Str) /= Base_None then
               Tkind := Tok_Bit_String;
            else
               Tkind := Tok_String;
            end if;
            Disp_Literal_From_Source (Ctxt, Str, Tkind);
         end;
      else
         Disp_String_Literal_Raw (Ctxt, Str, El_Type);
      end if;
   end Disp_String_Literal;

   procedure Disp_Block_Header
     (Ctxt : in out Ctxt_Class; Header : Iir_Block_Header)
   is
      Chain : Iir;
   begin
      if Header = Null_Iir then
         return;
      end if;
      Chain := Get_Generic_Chain (Header);
      if Chain /= Null_Iir then
         Disp_Generics (Ctxt, Header);

         Chain := Get_Generic_Map_Aspect_Chain (Header);
         if Chain /= Null_Iir then
            Start_Hbox (Ctxt);
            Disp_Generic_Map_Aspect (Ctxt, Header);
            Disp_Token (Ctxt, Tok_Semi_Colon);
            Close_Hbox (Ctxt);
         end if;
      end if;
      Chain := Get_Port_Chain (Header);
      if Chain /= Null_Iir then
         Disp_Ports (Ctxt, Header);

         Chain := Get_Port_Map_Aspect_Chain (Header);
         if Chain /= Null_Iir then
            Start_Hbox (Ctxt);
            Disp_Port_Map_Aspect (Ctxt, Header);
            Disp_Token (Ctxt, Tok_Semi_Colon);
            Close_Hbox (Ctxt);
         end if;
      end if;
   end Disp_Block_Header;

   procedure Disp_Block_Statement
     (Ctxt : in out Ctxt_Class; Block: Iir_Block_Statement)
   is
      Sensitivity: Iir_List;
      Guard : Iir_Guard_Signal_Declaration;
   begin
      Start_Hbox (Ctxt);
      Disp_Label (Ctxt, Block);
      Disp_Token (Ctxt, Tok_Block);
      Guard := Get_Guard_Decl (Block);
      if Guard /= Null_Iir then
         Disp_Token (Ctxt, Tok_Left_Paren);
         Print (Ctxt, Get_Guard_Expression (Guard));
         Disp_Token (Ctxt, Tok_Right_Paren);
      end if;
      if Get_Has_Is (Block) then
         Disp_Token (Ctxt, Tok_Is);
      end if;
      Close_Hbox (Ctxt);

      if Flags.List_Verbose and then Guard /= Null_Iir then
         Sensitivity := Get_Guard_Sensitivity_List (Guard);
         if Sensitivity /= Null_Iir_List then
            OOB.Put ("-- guard sensitivity list ");
            Disp_Designator_List (Ctxt, Sensitivity);
         end if;
      end if;

      Start_Vbox (Ctxt);
      Disp_Block_Header (Ctxt, Get_Block_Header (Block));
      Disp_Declaration_Chain (Ctxt, Block);
      Close_Vbox (Ctxt);

      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Begin);
      Close_Hbox (Ctxt);

      Start_Vbox (Ctxt);
      Disp_Concurrent_Statement_Chain (Ctxt, Block);
      Close_Vbox (Ctxt);

      Disp_End (Ctxt, Block, Tok_Block);
   end Disp_Block_Statement;

   procedure Disp_Generate_Statement_Body (Ctxt : in out Ctxt_Class; Bod : Iir)
   is
      Has_Beg : constant Boolean := Get_Has_Begin (Bod);
      Has_End : constant Boolean := Get_Has_End (Bod);
   begin
      Start_Vbox (Ctxt);
      Disp_Declaration_Chain (Ctxt, Bod);
      Close_Vbox (Ctxt);

      if Has_Beg then
         Start_Hbox (Ctxt);
         Disp_Token (Ctxt, Tok_Begin);
         Close_Hbox (Ctxt);
      end if;

      Start_Vbox (Ctxt);
      Disp_Concurrent_Statement_Chain (Ctxt, Bod);
      Close_Vbox (Ctxt);

      if Has_End then
         Start_Hbox (Ctxt);
         Disp_Token (Ctxt, Tok_End);
         if Get_End_Has_Identifier (Bod) then
            Disp_Ident (Ctxt, Get_Alternative_Label (Bod));
         end if;
         Disp_Token (Ctxt, Tok_Semi_Colon);
         Close_Hbox (Ctxt);
      end if;
   end Disp_Generate_Statement_Body;

   procedure Disp_For_Generate_Statement
     (Ctxt : in out Ctxt_Class; Stmt : Iir) is
   begin
      Start_Hbox (Ctxt);
      Disp_Label (Ctxt, Stmt);
      Disp_Token (Ctxt, Tok_For);
      Disp_Parameter_Specification (Ctxt, Get_Parameter_Specification (Stmt));
      Disp_Token (Ctxt, Tok_Generate);
      Close_Hbox (Ctxt);

      Disp_Generate_Statement_Body
        (Ctxt, Get_Generate_Statement_Body (Stmt));

      Disp_End (Ctxt, Stmt, Tok_Generate);
   end Disp_For_Generate_Statement;

   procedure Disp_If_Generate_Statement (Ctxt : in out Ctxt_Class; Stmt : Iir)
   is
      Bod : Iir;
      Clause : Iir;
      Cond : Iir;
   begin
      Start_Hbox (Ctxt);
      Disp_Label (Ctxt, Stmt);
      Disp_Token (Ctxt, Tok_If);
      Cond := Get_Condition (Stmt);
      Clause := Stmt;
      loop
         Bod := Get_Generate_Statement_Body (Clause);
         if Get_Has_Label (Bod) then
            Disp_Ident (Ctxt, Get_Alternative_Label (Bod));
            Disp_Token (Ctxt, Tok_Colon);
         end if;
         if Cond /= Null_Iir then
            Print (Ctxt, Cond);
         end if;
         Disp_Token (Ctxt, Tok_Generate);
         Close_Hbox (Ctxt);

         Disp_Generate_Statement_Body (Ctxt, Bod);

         Clause := Get_Generate_Else_Clause (Clause);
         exit when Clause = Null_Iir;

         Start_Hbox (Ctxt);
         Cond := Get_Condition (Clause);
         if Cond = Null_Iir then
            Disp_Token (Ctxt, Tok_Else);
         else
            Disp_Token (Ctxt, Tok_Elsif);
         end if;
      end loop;
      Disp_End (Ctxt, Stmt, Tok_Generate);
   end Disp_If_Generate_Statement;

   procedure Disp_Case_Generate_Statement
     (Ctxt : in out Ctxt_Class; Stmt : Iir)
   is
      Bod : Iir;
      Assoc : Iir;
   begin
      Start_Hbox (Ctxt);
      Disp_Label (Ctxt, Stmt);
      Disp_Token (Ctxt, Tok_Case);
      Print (Ctxt, Get_Expression (Stmt));
      Disp_Token (Ctxt, Tok_Generate);
      Close_Hbox (Ctxt);

      Start_Vbox (Ctxt);
      Assoc := Get_Case_Statement_Alternative_Chain (Stmt);
      while Assoc /= Null_Iir loop
         Start_Hbox (Ctxt);
         Disp_Token (Ctxt, Tok_When);
         Bod := Get_Associated_Block (Assoc);
         if Get_Has_Label (Bod) then
            Disp_Ident (Ctxt, Get_Alternative_Label (Bod));
            Disp_Token (Ctxt, Tok_Colon);
         end if;
         Disp_Choice (Ctxt, Assoc);
         Disp_Token (Ctxt, Tok_Double_Arrow);
         Close_Hbox (Ctxt);

         Disp_Generate_Statement_Body (Ctxt, Bod);
      end loop;
      Close_Vbox (Ctxt);
      Disp_End (Ctxt, Stmt, Tok_Generate);
   end Disp_Case_Generate_Statement;

   procedure Disp_PSL_NFA (Ctxt : in out Ctxt_Class; N : PSL.Nodes.NFA)
   is
      use PSL.NFAs;

      procedure Disp_State (S : NFA_State)
      is
         Str : constant String := Int32'Image (Get_State_Label (S));
         S1 : constant String := NFA_State'Image (S);
      begin
         OOB.Put (Str (2 .. Str'Last));
         OOB.Put ("[");
         OOB.Put (S1 (2 .. S1'Last));
         OOB.Put ("]");
      end Disp_State;

      S : NFA_State;
      E : NFA_Edge;
   begin
      if N = No_NFA then
         return;
      end if;

      OOB.Put ("-- start: ");
      Disp_State (Get_Start_State (N));
      OOB.Put (", final: ");
      Disp_State (Get_Final_State (N));
      OOB.Put (", active: ");
      S := Get_Active_State (N);
      if S = No_State then
         OOB.Put ("-");
      else
         Disp_State (S);
      end if;
      if Get_Epsilon_NFA (N) then
         OOB.Put (", epsilon");
      end if;
      OOB.New_Line;

      S := Get_First_State (N);
      while S /= No_State loop
         E := Get_First_Src_Edge (S);
         while E /= No_Edge loop
            OOB.Put ("-- ");
            Disp_State (S);
            OOB.Put (" -> ");
            Disp_State (Get_Edge_Dest (E));
            Disp_Token (Ctxt, Tok_Colon);  --  To display ": "
            Disp_Psl_Expression (Ctxt, Get_Edge_Expr (E));
            OOB.New_Line;
            E := Get_Next_Src_Edge (E);
         end loop;
         S := Get_Next_State (S);
      end loop;
   end Disp_PSL_NFA;

   procedure Disp_Psl_Assert_Directive
     (Ctxt : in out Ctxt_Class; Stmt : Iir) is
   begin
      Start_Hbox (Ctxt);
      if Vhdl_Std < Vhdl_08 then
         OOB.Put ("--psl ");
      end if;
      Disp_Label (Ctxt, Stmt);
      Disp_Postponed (Ctxt, Stmt);
      Disp_Token (Ctxt, Tok_Assert);
      Disp_Psl_Expression (Ctxt, Get_Psl_Property (Stmt));
      Disp_Report_Expression (Ctxt, Stmt);
      Disp_Severity_Expression (Ctxt, Stmt);
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
      Disp_PSL_NFA (Get_PSL_NFA (Stmt));
   end Disp_Psl_Assert_Directive;

   procedure Disp_Psl_Assume_Directive
     (Ctxt : in out Ctxt_Class; Stmt : Iir) is
   begin
      Start_Hbox (Ctxt);
      if Vhdl_Std < Vhdl_08 then
         OOB.Put ("--psl ");
      end if;
      Disp_Label (Ctxt, Stmt);
      Disp_Postponed (Ctxt, Stmt);
      Disp_Token (Ctxt, Tok_Assume);
      Disp_Psl_Expression (Ctxt, Get_Psl_Property (Stmt));
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
      Disp_PSL_NFA (Get_PSL_NFA (Stmt));
   end Disp_Psl_Assume_Directive;

   procedure Disp_Psl_Cover_Directive
     (Ctxt : in out Ctxt_Class; Stmt : Iir) is
   begin
      Start_Hbox (Ctxt);
      if Vhdl_Std < Vhdl_08 then
         OOB.Put ("--psl ");
      end if;
      Disp_Label (Ctxt, Stmt);
      Disp_Token (Ctxt, Tok_Cover);
      Print_Sequence (Ctxt, Get_Psl_Sequence (Stmt));
      Disp_Report_Expression (Ctxt, Stmt);
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
      Disp_PSL_NFA (Get_PSL_NFA (Stmt));
   end Disp_Psl_Cover_Directive;

   procedure Disp_Psl_Restrict_Directive
     (Ctxt : in out Ctxt_Class; Stmt : Iir) is
   begin
      Start_Hbox (Ctxt);
      if Vhdl_Std < Vhdl_08 then
         OOB.Put ("--psl ");
      end if;
      Disp_Label (Ctxt, Stmt);
      Disp_Token (Ctxt, Tok_Restrict);
      Print_Sequence (Ctxt, Get_Psl_Sequence (Stmt));
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
      Disp_PSL_NFA (Get_PSL_NFA (Stmt));
   end Disp_Psl_Restrict_Directive;

   procedure Disp_Simple_Simultaneous_Statement
     (Ctxt : in out Ctxt_Class; Stmt : Iir) is
   begin
      Start_Hbox (Ctxt);
      Disp_Label (Ctxt, Stmt);
      Print (Ctxt, Get_Simultaneous_Left (Stmt));
      Disp_Token (Ctxt, Tok_Equal_Equal);
      Print (Ctxt, Get_Simultaneous_Right (Stmt));
      Disp_Tolerance_Opt (Ctxt, Stmt);
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Simple_Simultaneous_Statement;

   procedure Disp_Simultaneous_If_Statement
     (Ctxt : in out Ctxt_Class; Stmt : Iir)
   is
      Clause : Iir;
      Expr : Iir;
   begin
      Start_Hbox (Ctxt);
      Disp_Label (Ctxt, Stmt);
      Disp_Token (Ctxt, Tok_If);
      Clause := Stmt;
      Print (Ctxt, Get_Condition (Clause));
      Close_Hbox (Ctxt);
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Use);
      Close_Hbox (Ctxt);
      while Clause /= Null_Iir loop
         Start_Vbox (Ctxt);
         Disp_Simultaneous_Statement_Chain
           (Ctxt, Get_Simultaneous_Statement_Chain (Clause));
         Close_Vbox (Ctxt);
         Clause := Get_Else_Clause (Clause);
         exit when Clause = Null_Iir;
         Start_Hbox (Ctxt);
         Expr := Get_Condition (Clause);
         if Expr /= Null_Iir then
            Disp_Token (Ctxt, Tok_Elsif);
            Print (Ctxt, Expr);
            Close_Hbox (Ctxt);
            Start_Hbox (Ctxt);
            Disp_Token (Ctxt, Tok_Use);
         else
            Disp_Token (Ctxt, Tok_Else);
         end if;
         Close_Hbox (Ctxt);
      end loop;
      Disp_End_Label (Ctxt, Stmt, Tok_Use);
   end Disp_Simultaneous_If_Statement;

   procedure Disp_Simultaneous_Case_Statement
     (Ctxt : in out Ctxt_Class; Stmt : Iir)
   is
      Assoc: Iir;
      Stmts : Iir;
   begin
      Start_Hbox (Ctxt);
      Disp_Label (Ctxt, Stmt);
      Disp_Token (Ctxt, Tok_Case);
      Print (Ctxt, Get_Expression (Stmt));
      Close_Hbox (Ctxt);
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Use);
      Close_Hbox (Ctxt);

      Start_Vbox (Ctxt);
      Assoc := Get_Case_Statement_Alternative_Chain (Stmt);
      while Assoc /= Null_Iir loop
         Start_Hbox (Ctxt);
         Disp_Token (Ctxt, Tok_When);
         Stmts := Get_Associated_Chain (Assoc);
         Disp_Choice (Ctxt, Assoc);
         Disp_Token (Ctxt, Tok_Double_Arrow);
         Close_Hbox (Ctxt);

         Start_Vbox (Ctxt);
         Disp_Simultaneous_Statement_Chain (Ctxt, Stmts);
         Close_Vbox (Ctxt);
      end loop;
      Close_Vbox (Ctxt);

      Disp_End_Label (Ctxt, Stmt, Tok_Case);
   end Disp_Simultaneous_Case_Statement;

   procedure Disp_Simultaneous_Procedural_Statement
     (Ctxt : in out Ctxt_Class; Stmt : Iir) is
   begin
      Start_Hbox (Ctxt);
      Disp_Label (Ctxt, Stmt);

      Disp_Token (Ctxt, Tok_Procedural);
      if Get_Has_Is (Stmt) then
         Disp_Token (Ctxt, Tok_Is);
      end if;
      Close_Hbox (Ctxt);

      Start_Vbox (Ctxt);
      Disp_Declaration_Chain (Ctxt, Stmt);
      Close_Vbox (Ctxt);

      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Begin);
      Close_Hbox (Ctxt);

      Start_Vbox (Ctxt);
      Disp_Sequential_Statements
        (Ctxt, Get_Sequential_Statement_Chain (Stmt));
      Close_Vbox (Ctxt);

      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_End);
      Disp_After_End (Ctxt, Stmt, Tok_Procedural);
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Simultaneous_Procedural_Statement;

   procedure Disp_Simultaneous_Null_Statement
     (Ctxt : in out Ctxt_Class; Stmt : Iir) is
   begin
      Start_Hbox (Ctxt);
      Disp_Label (Ctxt, Stmt);
      Disp_Token (Ctxt, Tok_Null);
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Simultaneous_Null_Statement;

   procedure Disp_Concurrent_Statement (Ctxt : in out Ctxt_Class; Stmt: Iir) is
   begin
      case Get_Kind (Stmt) is
         when Iir_Kind_Concurrent_Simple_Signal_Assignment =>
            Disp_Concurrent_Simple_Signal_Assignment (Ctxt, Stmt);
         when Iir_Kind_Concurrent_Conditional_Signal_Assignment =>
            Disp_Concurrent_Conditional_Signal_Assignment (Ctxt, Stmt);
         when Iir_Kind_Concurrent_Selected_Signal_Assignment =>
            Disp_Concurrent_Selected_Signal_Assignment (Ctxt, Stmt);
         when Iir_Kind_Sensitized_Process_Statement
           | Iir_Kind_Process_Statement =>
            Disp_Process_Statement (Ctxt, Stmt);
         when Iir_Kind_Concurrent_Assertion_Statement =>
            Disp_Assertion_Statement (Ctxt, Stmt);
         when Iir_Kind_Component_Instantiation_Statement =>
            Disp_Component_Instantiation_Statement (Ctxt, Stmt);
         when Iir_Kind_Concurrent_Procedure_Call_Statement =>
            Disp_Procedure_Call (Ctxt, Stmt);
         when Iir_Kind_Concurrent_Break_Statement =>
            Disp_Break_Statement (Ctxt, Stmt);
         when Iir_Kind_Block_Statement =>
            Disp_Block_Statement (Ctxt, Stmt);
         when Iir_Kind_If_Generate_Statement =>
            Disp_If_Generate_Statement (Ctxt, Stmt);
         when Iir_Kind_Case_Generate_Statement =>
            Disp_Case_Generate_Statement (Ctxt, Stmt);
         when Iir_Kind_For_Generate_Statement =>
            Disp_For_Generate_Statement (Ctxt, Stmt);
         when Iir_Kind_Psl_Default_Clock =>
            Disp_Psl_Default_Clock (Ctxt, Stmt);
         when Iir_Kind_Psl_Declaration
           | Iir_Kind_Psl_Endpoint_Declaration =>
            Disp_Psl_Declaration (Ctxt, Stmt);
         when Iir_Kind_Psl_Assert_Directive =>
            Disp_Psl_Assert_Directive (Ctxt, Stmt);
         when Iir_Kind_Psl_Assume_Directive =>
            Disp_Psl_Assume_Directive (Ctxt, Stmt);
         when Iir_Kind_Psl_Cover_Directive =>
            Disp_Psl_Cover_Directive (Ctxt, Stmt);
         when Iir_Kind_Psl_Restrict_Directive =>
            Disp_Psl_Restrict_Directive (Ctxt, Stmt);
         when Iir_Kind_Simple_Simultaneous_Statement =>
            Disp_Simple_Simultaneous_Statement (Ctxt, Stmt);
         when Iir_Kind_Simultaneous_If_Statement =>
            Disp_Simultaneous_If_Statement (Ctxt, Stmt);
         when Iir_Kind_Simultaneous_Case_Statement =>
            Disp_Simultaneous_Case_Statement (Ctxt, Stmt);
         when Iir_Kind_Simultaneous_Procedural_Statement =>
            Disp_Simultaneous_Procedural_Statement (Ctxt, Stmt);
         when Iir_Kind_Simultaneous_Null_Statement =>
            Disp_Simultaneous_Null_Statement (Ctxt, Stmt);
         when others =>
            Error_Kind ("disp_concurrent_statement", Stmt);
      end case;
   end Disp_Concurrent_Statement;

   procedure Disp_Package_Declaration
     (Ctxt : in out Ctxt_Class; Decl: Iir_Package_Declaration)
   is
      Header : constant Iir := Get_Package_Header (Decl);
   begin
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Package);
      Disp_Identifier (Ctxt, Decl);
      Disp_Token (Ctxt, Tok_Is);
      Close_Hbox (Ctxt);
      Start_Vbox (Ctxt);
      if Header /= Null_Iir then
         Disp_Generics (Ctxt, Header);
      end if;
      Disp_Declaration_Chain (Ctxt, Decl);
      Close_Vbox (Ctxt);
      Disp_End (Ctxt, Decl, Tok_Package);
   end Disp_Package_Declaration;

   procedure Disp_Package_Body (Ctxt : in out Ctxt_Class; Decl: Iir) is
   begin
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Package, Tok_Body);
      Disp_Identifier (Ctxt, Decl);
      Disp_Token (Ctxt, Tok_Is);
      Close_Hbox (Ctxt);
      Start_Vbox (Ctxt);
      Disp_Declaration_Chain (Ctxt, Decl);
      Close_Vbox (Ctxt);
      Disp_End (Ctxt, Decl, Tok_Package, Tok_Body);
   end Disp_Package_Body;

   procedure Disp_Package_Instantiation_Declaration
     (Ctxt : in out Ctxt_Class; Decl: Iir) is
   begin
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Package);
      Disp_Identifier (Ctxt, Decl);
      Disp_Token (Ctxt, Tok_Is, Tok_New);
      Print (Ctxt, Get_Uninstantiated_Package_Name (Decl));
      Disp_Generic_Map_Aspect (Ctxt, Decl);
      Disp_Token (Ctxt, Tok_Semi_Colon);
      Close_Hbox (Ctxt);
   end Disp_Package_Instantiation_Declaration;

   procedure Disp_Binding_Indication (Ctxt : in out Ctxt_Class; Bind : Iir)
   is
      El : Iir;
   begin
      El := Get_Entity_Aspect (Bind);
      if El /= Null_Iir then
         Disp_Token (Ctxt, Tok_Use);
         Disp_Entity_Aspect (Ctxt, El);
      end if;
      El := Get_Generic_Map_Aspect_Chain (Bind);
      if El /= Null_Iir then
         Disp_Generic_Map_Aspect (Ctxt, Bind);
      end if;
      El := Get_Port_Map_Aspect_Chain (Bind);
      if El /= Null_Iir then
         Disp_Port_Map_Aspect (Ctxt, Bind);
      end if;
   end Disp_Binding_Indication;

   procedure Disp_Component_Configuration
     (Ctxt : in out Ctxt_Class; Conf : Iir_Component_Configuration)
   is
      Block : Iir_Block_Configuration;
      Binding : Iir;
   begin
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_For);
      Disp_Instantiation_List (Ctxt, Get_Instantiation_List (Conf));
      Disp_Token (Ctxt, Tok_Colon);
      Print (Ctxt, Get_Component_Name (Conf));
      Close_Hbox (Ctxt);

      Start_Vbox (Ctxt);
      Binding := Get_Binding_Indication (Conf);
      if Binding /= Null_Iir then
         Start_Hbox (Ctxt);
         Disp_Binding_Indication (Ctxt, Binding);
         Disp_Token (Ctxt, Tok_Semi_Colon);
         Close_Hbox (Ctxt);
      end if;
      Block := Get_Block_Configuration (Conf);
      if Block /= Null_Iir then
         Disp_Block_Configuration (Ctxt, Block);
      end if;
      Close_Vbox (Ctxt);

      Disp_End (Ctxt, Tok_For);
   end Disp_Component_Configuration;

   procedure Disp_Configuration_Items
     (Ctxt : in out Ctxt_Class; Conf : Iir_Block_Configuration)
   is
      El : Iir;
   begin
      El := Get_Configuration_Item_Chain (Conf);
      while El /= Null_Iir loop
         case Get_Kind (El) is
            when Iir_Kind_Block_Configuration =>
               Disp_Block_Configuration (Ctxt, El);
            when Iir_Kind_Component_Configuration =>
               Disp_Component_Configuration (Ctxt, El);
            when Iir_Kind_Configuration_Specification =>
               --  This may be created by canon.
               Disp_Configuration_Specification (Ctxt, El);
               Disp_Token (Ctxt, Tok_End, Tok_For);
               Disp_Token (Ctxt, Tok_Semi_Colon);
            when others =>
               Error_Kind ("disp_configuration_item_list", El);
         end case;
         El := Get_Chain (El);
      end loop;
   end Disp_Configuration_Items;

   procedure Disp_Block_Configuration
     (Ctxt : in out Ctxt_Class; Block: Iir_Block_Configuration)
   is
      Spec : Iir;
   begin
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_For);
      Spec := Get_Block_Specification (Block);
      case Get_Kind (Spec) is
         when Iir_Kind_Block_Statement
           | Iir_Kind_If_Generate_Statement
           | Iir_Kind_For_Generate_Statement
           | Iir_Kind_Architecture_Body =>
            Disp_Name_Of (Ctxt, Spec);
         when Iir_Kind_Indexed_Name =>
            declare
               Index_List : constant Iir_Flist := Get_Index_List (Spec);
            begin
               Disp_Name_Of (Ctxt, Get_Prefix (Spec));
               Disp_Token (Ctxt, Tok_Left_Paren);
               if Index_List = Iir_Flist_Others then
                  Disp_Token (Ctxt, Tok_Others);
               else
                  Print (Ctxt, Get_Nth_Element (Index_List, 0));
               end if;
               Disp_Token (Ctxt, Tok_Right_Paren);
            end;
         when Iir_Kind_Slice_Name =>
            Disp_Name_Of (Ctxt, Get_Prefix (Spec));
            Disp_Token (Ctxt, Tok_Left_Paren);
            Disp_Range (Ctxt, Get_Suffix (Spec));
            Disp_Token (Ctxt, Tok_Right_Paren);
         when Iir_Kind_Simple_Name
           | Iir_Kind_Parenthesis_Name =>
            Print (Ctxt, Spec);
         when others =>
            Error_Kind ("disp_block_configuration", Spec);
      end case;
      Close_Hbox (Ctxt);

      Start_Vbox (Ctxt);
      Disp_Declaration_Chain (Ctxt, Block);
      Disp_Configuration_Items (Ctxt, Block);
      Close_Vbox (Ctxt);
      Disp_End (Ctxt, Tok_For);
   end Disp_Block_Configuration;

   procedure Disp_Configuration_Declaration
     (Ctxt : in out Ctxt_Class; Decl: Iir_Configuration_Declaration) is
   begin
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Configuration);
      Disp_Name_Of (Ctxt, Decl);
      Disp_Token (Ctxt, Tok_Of);
      Print (Ctxt, Get_Entity_Name (Decl));
      Disp_Token (Ctxt, Tok_Is);
      Close_Hbox (Ctxt);

      Start_Vbox (Ctxt);
      Disp_Declaration_Chain (Ctxt, Decl);
      Disp_Block_Configuration (Ctxt, Get_Block_Configuration (Decl));
      Close_Vbox (Ctxt);

      Disp_End (Ctxt, Decl, Tok_Configuration);
   end Disp_Configuration_Declaration;

   procedure Disp_Context_Items (Ctxt : in out Ctxt_Class; First : Iir)
   is
      Decl: Iir;
      Next_Decl : Iir;
   begin
      Decl := First;
      while Decl /= Null_Iir loop
         Next_Decl := Get_Chain (Decl);

         case Iir_Kinds_Clause (Get_Kind (Decl)) is
            when Iir_Kind_Use_Clause =>
               Disp_Use_Clause (Ctxt, Decl);
            when Iir_Kind_Library_Clause =>
               Start_Hbox (Ctxt);
               Disp_Token (Ctxt, Tok_Library);
               Disp_Identifier (Ctxt, Decl);
               while Get_Has_Identifier_List (Decl) loop
                  Decl := Next_Decl;
                  Next_Decl := Get_Chain (Decl);
                  Disp_Token (Ctxt, Tok_Comma);
                  Disp_Identifier (Ctxt, Decl);
               end loop;
               Disp_Token (Ctxt, Tok_Semi_Colon);
               Close_Hbox (Ctxt);
            when Iir_Kind_Context_Reference =>
               Start_Hbox (Ctxt);
               Disp_Token (Ctxt, Tok_Context);
               declare
                  Ref : Iir;
               begin
                  Ref := Decl;
                  loop
                     Print (Ctxt, Get_Selected_Name (Ref));
                     Ref := Get_Context_Reference_Chain (Ref);
                     exit when Ref = Null_Iir;
                     Disp_Token (Ctxt, Tok_Comma);
                  end loop;
                  Disp_Token (Ctxt, Tok_Semi_Colon);
               end;
               Close_Hbox (Ctxt);
         end case;
         Decl := Next_Decl;
      end loop;
   end Disp_Context_Items;

   procedure Disp_Context_Declaration (Ctxt : in out Ctxt_Class; Decl: Iir) is
   begin
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Context);
      Disp_Name_Of (Ctxt, Decl);
      Disp_Token (Ctxt, Tok_Is);
      Close_Hbox (Ctxt);
      Start_Vbox (Ctxt);
      Disp_Context_Items (Ctxt, Get_Context_Items (Decl));
      Close_Vbox (Ctxt);
      Disp_End (Ctxt, Decl, Tok_Context);
   end Disp_Context_Declaration;

   procedure Disp_Verification_Unit
     (Ctxt : in out Ctxt_Class; Unit: Iir; Tok : Token_Type)
   is
      Hier_Name : Iir;
      Arch : Iir;
      Item : Iir;
   begin
      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok);
      Disp_Name_Of (Ctxt, Unit);

      Hier_Name := Get_Hierarchical_Name (Unit);
      if Hier_Name /= Null_Iir then
         Disp_Token (Ctxt, Tok_Left_Paren);
         Print (Ctxt, Get_Entity_Name (Hier_Name));
         Arch := Get_Architecture (Hier_Name);
         if Arch /= Null_Iir then
            Disp_Token (Ctxt, Tok_Left_Paren);
            Print (Ctxt, Arch);
            Disp_Token (Ctxt, Tok_Right_Paren);
         end if;
         Disp_Token (Ctxt, Tok_Right_Paren);
      end if;
      Close_Hbox (Ctxt);

      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Left_Curly);
      Close_Hbox (Ctxt);

      Start_Vbox (Ctxt);
      Item := Get_Vunit_Item_Chain (Unit);
      while Item /= Null_Iir loop
         Print (Ctxt, Item);
         Item := Get_Chain (Item);
      end loop;
      Close_Vbox (Ctxt);

      Start_Hbox (Ctxt);
      Disp_Token (Ctxt, Tok_Right_Curly);
      Close_Hbox (Ctxt);
   end Disp_Verification_Unit;

   procedure Disp_Design_Unit (Ctxt : in out Ctxt_Class; Unit: Iir_Design_Unit)
   is
      Decl: Iir;
   begin
      Disp_Context_Items (Ctxt, Get_Context_Items (Unit));

      Decl := Get_Library_Unit (Unit);
      case Iir_Kinds_Library_Unit (Get_Kind (Decl)) is
         when Iir_Kind_Entity_Declaration =>
            Disp_Entity_Declaration (Ctxt, Decl);
         when Iir_Kind_Architecture_Body =>
            Disp_Architecture_Body (Ctxt, Decl);
         when Iir_Kind_Package_Declaration =>
            Disp_Package_Declaration (Ctxt, Decl);
         when Iir_Kind_Package_Body =>
            Disp_Package_Body (Ctxt, Decl);
         when Iir_Kind_Package_Instantiation_Declaration =>
            Disp_Package_Instantiation_Declaration (Ctxt, Decl);
         when Iir_Kind_Configuration_Declaration =>
            Disp_Configuration_Declaration (Ctxt, Decl);
         when Iir_Kind_Context_Declaration =>
            Disp_Context_Declaration (Ctxt, Decl);
         when Iir_Kind_Vunit_Declaration =>
            Disp_Verification_Unit (Ctxt, Decl, Tok_Vunit);
         when Iir_Kind_Vmode_Declaration =>
            Disp_Verification_Unit (Ctxt, Decl, Tok_Vmode);
         when Iir_Kind_Vprop_Declaration =>
            Disp_Verification_Unit (Ctxt, Decl, Tok_Vprop);
         when Iir_Kind_Foreign_Module =>
            raise Internal_Error;
      end case;
   end Disp_Design_Unit;

   procedure Disp_Vhdl (Ctxt : in out Ctxt_Class; N : Iir) is
   begin
      case Get_Kind (N) is
         when Iir_Kind_Design_File =>
            declare
               Unit : Iir;
            begin
               Unit := Get_First_Design_Unit (N);
               while Unit /= Null_Iir loop
                  Disp_Vhdl (Ctxt, Unit);
                  Unit := Get_Chain (Unit);
               end loop;
            end;
         when Iir_Kind_Design_Unit =>
            Start_Node (Ctxt, N);
            Disp_Design_Unit (Ctxt, N);
         when Iir_Kind_Enumeration_Type_Definition =>
            Disp_Enumeration_Type_Definition (Ctxt, N);
         when Iir_Kind_Concurrent_Conditional_Signal_Assignment =>
            Disp_Concurrent_Conditional_Signal_Assignment (Ctxt, N);
         when Iir_Kinds_Dyadic_Operator =>
            Disp_Dyadic_Operator (Ctxt, N);
         when Iir_Kind_Interface_Signal_Declaration
           | Iir_Kind_Signal_Declaration
           | Iir_Kind_Object_Alias_Declaration =>
            Disp_Name_Of (Ctxt, N);
         when Iir_Kind_Enumeration_Literal =>
            Disp_Identifier (Ctxt, N);
         when Iir_Kind_Component_Instantiation_Statement =>
            Disp_Component_Instantiation_Statement (Ctxt, N);
         when Iir_Kind_Array_Type_Definition =>
            Disp_Array_Type_Definition (Ctxt, N);
         when Iir_Kind_Package_Declaration =>
            Disp_Package_Declaration (Ctxt, N);
         when Iir_Kind_Wait_Statement =>
            Disp_Wait_Statement (Ctxt, N);
         when Iir_Kind_Selected_Name
           | Iir_Kind_Selected_Element
           | Iir_Kind_Indexed_Name
           | Iir_Kind_Slice_Name
           | Iir_Kind_Procedure_Body
           | Iir_Kind_Function_Body =>
            Print (Ctxt, N);
         when Iir_Kind_Psl_Cover_Directive =>
            Disp_Psl_Cover_Directive (Ctxt, N);
         when others =>
            Error_Kind ("disp", N);
      end case;
   end Disp_Vhdl;

   procedure Print_Qualified_Expression (Ctxt : in out Ctxt_Class; Expr: Iir)
   is
      Qexpr : constant Iir := Strip_Literal_Origin (Get_Expression (Expr));
      Has_Paren : constant Boolean :=
        Get_Kind (Qexpr) = Iir_Kind_Parenthesis_Expression
        or else Get_Kind (Qexpr) = Iir_Kind_Aggregate;
   begin
      Print (Ctxt, Get_Type_Mark (Expr));
      Disp_Token (Ctxt, Tok_Tick);
      if not Has_Paren then
         Disp_Token (Ctxt, Tok_Left_Paren);
      end if;
      Print (Ctxt, Qexpr);
      if not Has_Paren then
         Disp_Token (Ctxt, Tok_Right_Paren);
      end if;
   end Print_Qualified_Expression;

   procedure Print (Ctxt : in out Ctxt_Class; Expr: Iir)
   is
      Orig : Iir;
   begin
      case Get_Kind (Expr) is
         when Iir_Kind_Integer_Literal =>
            Orig := Get_Literal_Origin (Expr);
            if Dump_Origin_Flag and then Orig /= Null_Iir then
               Print (Ctxt, Orig);
            else
               if Get_Literal_Length (Expr) /= 0 then
                  Disp_Literal_From_Source (Ctxt, Expr, Tok_Integer);
               else
                  Disp_Int64 (Ctxt, Get_Value (Expr));
               end if;
            end if;
         when Iir_Kind_Floating_Point_Literal =>
            Orig := Get_Literal_Origin (Expr);
            if Dump_Origin_Flag and then Orig /= Null_Iir then
               Print (Ctxt, Orig);
            else
               if Get_Literal_Length (Expr) /= 0 then
                  Disp_Literal_From_Source (Ctxt, Expr, Tok_Real);
               else
                  Disp_Fp64 (Ctxt, Get_Fp_Value (Expr));
               end if;
            end if;
         when Iir_Kind_String_Literal8 =>
            Orig := Get_Literal_Origin (Expr);
            if Dump_Origin_Flag and then Orig /= Null_Iir then
               Print (Ctxt, Orig);
            else
               declare
                  Expr_Type : constant Iir := Get_Type (Expr);
                  El_Type : Iir;
               begin
                  if Expr_Type /= Null_Iir then
                     El_Type := Get_Element_Subtype (Expr_Type);
                  else
                     El_Type := Null_Iir;
                  end if;
                  Disp_String_Literal (Ctxt, Expr, El_Type);
                  if Flag_Disp_String_Literal_Type or Flags.List_Verbose then
                     OOB.Put ("[type: ");
                     Disp_Type (Ctxt, Expr_Type);
                     OOB.Put ("]");
                  end if;
               end;
            end if;
         when Iir_Kind_Physical_Fp_Literal
           | Iir_Kind_Physical_Int_Literal =>
            Orig := Get_Literal_Origin (Expr);
            if Dump_Origin_Flag and then Orig /= Null_Iir then
               Print (Ctxt, Orig);
            else
               Disp_Physical_Literal (Ctxt, Expr);
            end if;
         when Iir_Kind_Enumeration_Literal =>
            Orig := Get_Literal_Origin (Expr);
            if Dump_Origin_Flag and then Orig /= Null_Iir then
               Print (Ctxt, Orig);
            else
               Disp_Name_Of (Ctxt, Expr);
            end if;
         when Iir_Kind_Overflow_Literal =>
            Orig := Get_Literal_Origin (Expr);
            if Dump_Origin_Flag and then Orig /= Null_Iir then
               Print (Ctxt, Orig);
            else
               Start_Lit (Ctxt, Tok_Integer);
               Disp_Str (Ctxt, "*OVERFLOW*");
               Close_Lit (Ctxt);
            end if;

         when Iir_Kind_Object_Alias_Declaration =>
            Disp_Name_Of (Ctxt, Expr);
         when Iir_Kind_Aggregate =>
            Disp_Aggregate (Ctxt, Expr);
         when Iir_Kind_Null_Literal =>
            Disp_Token (Ctxt, Tok_Null);
         when Iir_Kind_Simple_Aggregate =>
            Orig := Get_Literal_Origin (Expr);
            if Dump_Origin_Flag and then Orig /= Null_Iir then
               Print (Ctxt, Orig);
            else
               Disp_Simple_Aggregate (Ctxt, Expr);
            end if;

         when Iir_Kind_Attribute_Value =>
            Disp_Attribute_Value (Ctxt, Expr);
         when Iir_Kind_Attribute_Name =>
            Disp_Attribute_Name (Ctxt, Expr);

         when Iir_Kind_Element_Declaration =>
            Disp_Name_Of (Ctxt, Expr);

         when Iir_Kind_Signal_Declaration
           | Iir_Kind_Guard_Signal_Declaration
           | Iir_Kind_File_Declaration
           | Iir_Kind_Iterator_Declaration =>
            Disp_Name_Of (Ctxt, Expr);
            return;
         when Iir_Kind_Reference_Name =>
            declare
               Name : constant Iir := Get_Referenced_Name (Expr);
            begin
               if Is_Valid (Name) then
                  Print (Ctxt, Name);
               else
                  Print (Ctxt, Get_Named_Entity (Expr));
               end if;
            end;

         when Iir_Kinds_Dyadic_Operator =>
            Disp_Dyadic_Operator (Ctxt, Expr);
         when Iir_Kinds_Monadic_Operator =>
            Disp_Monadic_Operator (Ctxt, Expr);
         when Iir_Kind_Function_Call =>
            Disp_Function_Call (Ctxt, Expr);
         when Iir_Kind_Parenthesis_Expression =>
            Disp_Token (Ctxt, Tok_Left_Paren);
            Print (Ctxt, Get_Expression (Expr));
            Disp_Token (Ctxt, Tok_Right_Paren);
         when Iir_Kind_Type_Conversion =>
            Print (Ctxt, Get_Type_Mark (Expr));
            Disp_Token (Ctxt, Tok_Left_Paren);
            Print (Ctxt, Get_Expression (Expr));
            Disp_Token (Ctxt, Tok_Right_Paren);
         when Iir_Kind_Qualified_Expression =>
            Print_Qualified_Expression (Ctxt, Expr);
         when Iir_Kind_Allocator_By_Expression =>
            Disp_Token (Ctxt, Tok_New);
            Print (Ctxt, Get_Expression (Expr));
         when Iir_Kind_Allocator_By_Subtype =>
            Disp_Token (Ctxt, Tok_New);
            Disp_Subtype_Indication (Ctxt, Get_Subtype_Indication (Expr));

         when Iir_Kind_Indexed_Name =>
            Disp_Indexed_Name (Ctxt, Expr);
         when Iir_Kind_Slice_Name =>
            Print (Ctxt, Get_Prefix (Expr));
            Disp_Token (Ctxt, Tok_Left_Paren);
            Disp_Range (Ctxt, Get_Suffix (Expr));
            Disp_Token (Ctxt, Tok_Right_Paren);
         when Iir_Kind_Selected_Element =>
            Print (Ctxt, Get_Prefix (Expr));
            Disp_Token (Ctxt, Tok_Dot);
            Disp_Name_Of (Ctxt, Get_Named_Entity (Expr));
         when Iir_Kind_Implicit_Dereference =>
            Print (Ctxt, Get_Prefix (Expr));

         when Iir_Kind_Left_Type_Attribute =>
            Disp_Name_Attribute (Ctxt, Expr, Name_Left);
         when Iir_Kind_Right_Type_Attribute =>
            Disp_Name_Attribute (Ctxt, Expr, Name_Right);
         when Iir_Kind_High_Type_Attribute =>
            Disp_Name_Attribute (Ctxt, Expr, Name_High);
         when Iir_Kind_Low_Type_Attribute =>
            Disp_Name_Attribute (Ctxt, Expr, Name_Low);
         when Iir_Kind_Ascending_Type_Attribute =>
            Disp_Name_Attribute (Ctxt, Expr, Name_Ascending);

         when Iir_Kind_Nature_Reference_Attribute =>
            Disp_Name_Attribute (Ctxt, Expr, Name_Reference);
         when Iir_Kind_Across_Attribute =>
            Disp_Name_Attribute (Ctxt, Expr, Name_Across);
         when Iir_Kind_Through_Attribute =>
            Disp_Name_Attribute (Ctxt, Expr, Name_Through);

         when Iir_Kind_Dot_Attribute =>
            Disp_Name_Attribute (Ctxt, Expr, Name_Dot);
         when Iir_Kind_Integ_Attribute =>
            Disp_Name_Attribute (Ctxt, Expr, Name_Integ);
         when Iir_Kind_Zoh_Attribute =>
            Disp_Parametered_Attribute (Ctxt, Name_Zoh, Expr, 2);
         when Iir_Kind_Ltf_Attribute =>
            Disp_Parametered_Attribute (Ctxt, Name_Ltf, Expr, 2);
         when Iir_Kind_Ztf_Attribute =>
            Disp_Parametered_Attribute (Ctxt, Name_Ztf, Expr, 4);

         when Iir_Kind_Signal_Slew_Attribute
           | Iir_Kind_Quantity_Slew_Attribute =>
            Disp_Parametered_Attribute (Ctxt, Name_Slew, Expr, 2);
         when Iir_Kind_Quantity_Delayed_Attribute =>
            Disp_Parametered_Attribute (Ctxt, Name_Delayed, Expr, 1);
         when Iir_Kind_Ramp_Attribute =>
            Disp_Parametered_Attribute (Ctxt, Name_Ramp, Expr, 2);
         when Iir_Kind_Above_Attribute =>
            Disp_Parametered_Attribute (Ctxt, Name_Above, Expr);
         when Iir_Kind_Stable_Attribute =>
            Disp_Parametered_Attribute (Ctxt, Name_Stable, Expr);
         when Iir_Kind_Quiet_Attribute =>
            Disp_Parametered_Attribute (Ctxt, Name_Quiet, Expr);
         when Iir_Kind_Delayed_Attribute =>
            Disp_Parametered_Attribute (Ctxt, Name_Delayed, Expr);
         when Iir_Kind_Transaction_Attribute =>
            Disp_Name_Attribute (Ctxt, Expr, Name_Transaction);
         when Iir_Kind_Event_Attribute =>
            Disp_Name_Attribute (Ctxt, Expr, Name_Event);
         when Iir_Kind_Active_Attribute =>
            Disp_Name_Attribute (Ctxt, Expr, Name_Active);
         when Iir_Kind_Driving_Attribute =>
            Disp_Name_Attribute (Ctxt, Expr, Name_Driving);
         when Iir_Kind_Driving_Value_Attribute =>
            Disp_Name_Attribute (Ctxt, Expr, Name_Driving_Value);
         when Iir_Kind_Last_Value_Attribute =>
            Disp_Name_Attribute (Ctxt, Expr, Name_Last_Value);
         when Iir_Kind_Last_Active_Attribute =>
            Disp_Name_Attribute (Ctxt, Expr, Name_Last_Active);
         when Iir_Kind_Last_Event_Attribute =>
            Disp_Name_Attribute (Ctxt, Expr, Name_Last_Event);

         when Iir_Kind_Pos_Attribute =>
            Disp_Parametered_Type_Attribute (Ctxt, Name_Pos, Expr);
         when Iir_Kind_Val_Attribute =>
            Disp_Parametered_Type_Attribute (Ctxt, Name_Val, Expr);
         when Iir_Kind_Succ_Attribute =>
            Disp_Parametered_Type_Attribute (Ctxt, Name_Succ, Expr);
         when Iir_Kind_Pred_Attribute =>
            Disp_Parametered_Type_Attribute (Ctxt, Name_Pred, Expr);
         when Iir_Kind_Leftof_Attribute =>
            Disp_Parametered_Type_Attribute (Ctxt, Name_Leftof, Expr);
         when Iir_Kind_Rightof_Attribute =>
            Disp_Parametered_Type_Attribute (Ctxt, Name_Rightof, Expr);

         when Iir_Kind_Length_Array_Attribute =>
            Disp_Parametered_Attribute (Ctxt, Name_Length, Expr);
         when Iir_Kind_Range_Array_Attribute =>
            Disp_Parametered_Attribute (Ctxt, Name_Range, Expr);
         when Iir_Kind_Reverse_Range_Array_Attribute =>
            Disp_Parametered_Attribute (Ctxt, Name_Reverse_Range, Expr);
         when Iir_Kind_Left_Array_Attribute =>
            Disp_Parametered_Attribute (Ctxt, Name_Left, Expr);
         when Iir_Kind_Right_Array_Attribute =>
            Disp_Parametered_Attribute (Ctxt, Name_Right, Expr);
         when Iir_Kind_Low_Array_Attribute =>
            Disp_Parametered_Attribute (Ctxt, Name_Low, Expr);
         when Iir_Kind_High_Array_Attribute =>
            Disp_Parametered_Attribute (Ctxt, Name_High, Expr);
         when Iir_Kind_Ascending_Array_Attribute =>
            Disp_Parametered_Attribute (Ctxt, Name_Ascending, Expr);

         when Iir_Kind_Image_Attribute =>
            Disp_Parametered_Attribute (Ctxt, Name_Image, Expr);
         when Iir_Kind_Value_Attribute =>
            Disp_Parametered_Attribute (Ctxt, Name_Value, Expr);
         when Iir_Kind_Simple_Name_Attribute =>
            Disp_Name_Attribute (Ctxt, Expr, Name_Simple_Name);
         when Iir_Kind_Instance_Name_Attribute =>
            Disp_Name_Attribute (Ctxt, Expr, Name_Instance_Name);
         when Iir_Kind_Path_Name_Attribute =>
            Disp_Name_Attribute (Ctxt, Expr, Name_Path_Name);

         when Iir_Kind_Psl_Prev =>
            Disp_Psl_Prev (Ctxt, Expr);
         when Iir_Kind_Psl_Stable =>
            Disp_Psl_Stable (Ctxt, Expr);
         when Iir_Kind_Psl_Rose =>
            Disp_Psl_Rose (Ctxt, Expr);
         when Iir_Kind_Psl_Fell =>
            Disp_Psl_Fell (Ctxt, Expr);
         when Iir_Kind_Psl_Onehot =>
            Disp_Psl_Onehot (Ctxt, Expr);
         when Iir_Kind_Psl_Onehot0 =>
            Disp_Psl_Onehot0 (Ctxt, Expr);

         when Iir_Kinds_Type_And_Subtype_Definition =>
            Disp_Type (Ctxt, Expr);

         when Iir_Kind_Range_Expression =>
            Disp_Range (Ctxt, Expr);
         when Iir_Kind_Subtype_Definition =>
            Disp_Subtype_Indication (Ctxt, Expr);

         when Iir_Kind_Selected_By_All_Name
           | Iir_Kind_Dereference =>
            Print (Ctxt, Get_Prefix (Expr));
            Disp_Token (Ctxt, Tok_Dot, Tok_All);
         when Iir_Kind_Simple_Name
           | Iir_Kind_Character_Literal =>
            Disp_Identifier (Ctxt, Expr);
         when Iir_Kind_Operator_Symbol =>
            Disp_Function_Name (Ctxt, Expr);
         when Iir_Kind_Selected_Name =>
            Print (Ctxt, Get_Prefix (Expr));
            Disp_Token (Ctxt, Tok_Dot);
            Disp_Function_Name (Ctxt, Expr);
         when Iir_Kind_Parenthesis_Name =>
            Print (Ctxt, Get_Prefix (Expr));
            Disp_Association_Chain (Ctxt, Get_Association_Chain (Expr));
         when Iir_Kind_Base_Attribute =>
            Disp_Name_Attribute (Ctxt, Expr, Name_Base);
         when Iir_Kind_Subtype_Attribute =>
            Disp_Name_Attribute (Ctxt, Expr, Name_Subtype);
         when Iir_Kind_Element_Attribute =>
            Disp_Name_Attribute (Ctxt, Expr, Name_Element);
         when Iir_Kind_Type_Declaration
           | Iir_Kind_Subtype_Declaration
           | Iir_Kind_Unit_Declaration
           | Iir_Kinds_Interface_Object_Declaration
           | Iir_Kinds_Interface_Subprogram_Declaration
           | Iir_Kind_Variable_Declaration
           | Iir_Kind_Constant_Declaration
           | Iir_Kind_Function_Declaration
           | Iir_Kind_Procedure_Declaration
           | Iir_Kind_Terminal_Declaration
           | Iir_Kinds_Quantity_Declaration
           | Iir_Kind_Component_Declaration
           | Iir_Kind_Group_Template_Declaration
           | Iir_Kind_Psl_Endpoint_Declaration =>
            Disp_Name_Of (Ctxt, Expr);

         when Iir_Kind_Function_Body
           | Iir_Kind_Procedure_Body =>
            Disp_Subprogram_Body (Ctxt, Expr);

         when Iir_Kind_Attribute_Declaration =>
            Disp_Attribute_Declaration (Ctxt, Expr);
         when Iir_Kind_Attribute_Specification =>
            Disp_Attribute_Specification (Ctxt, Expr);

         when Iir_Kind_Signature =>
            Disp_Signature (Ctxt, Expr);

         when Iir_Kind_Psl_Default_Clock =>
            Disp_Psl_Default_Clock (Ctxt, Expr);
         when Iir_Kind_Psl_Assert_Directive =>
            Disp_Psl_Assert_Directive (Ctxt, Expr);
         when Iir_Kind_Psl_Assume_Directive =>
            Disp_Psl_Assume_Directive (Ctxt, Expr);
         when Iir_Kind_Psl_Restrict_Directive =>
            Disp_Psl_Restrict_Directive (Ctxt, Expr);
         when Iir_Kind_Psl_Boolean_Parameter =>
            Disp_Name_Of (Ctxt, Expr);

         when Iir_Kind_Error =>
            declare
               Orig : constant Iir := Get_Error_Origin (Expr);
            begin
               if Orig /= Null_Iir then
                  Print (Ctxt, Orig);
               else
                  Error_Kind ("print/error", Expr);
               end if;
            end;
         when others =>
            Error_Kind ("print", Expr);
      end case;
   end Print;

   procedure Disp_Int_Trim (Ctxt : in out Ctxt_Class; Str : String) is
   begin
      Start_Lit (Ctxt, Tok_Integer);
      if Str (Str'First) = ' ' then
         Disp_Str (Ctxt, Str (Str'First + 1 .. Str'Last));
      else
         Disp_Str (Ctxt, Str);
      end if;
      Close_Lit (Ctxt);
   end Disp_Int_Trim;

   procedure Disp_Int64 (Ctxt : in out Ctxt_Class; Val: Int64) is
   begin
      Disp_Int_Trim (Ctxt, Int64'Image (Val));
   end Disp_Int64;

   procedure Disp_Int32 (Ctxt : in out Ctxt_Class; Val: Iir_Int32) is
   begin
      Disp_Int_Trim (Ctxt, Iir_Int32'Image (Val));
   end Disp_Int32;

   procedure Disp_Fp64 (Ctxt : in out Ctxt_Class; Val: Fp64)
   is
      Str: constant String := Fp64'Image (Val);
   begin
      Start_Lit (Ctxt, Tok_Real);
      if Str (Str'First) = ' ' then
         Disp_Str (Ctxt, Str (Str'First + 1 .. Str'Last));
      else
         Disp_Str (Ctxt, Str);
      end if;
      Close_Lit (Ctxt);
   end Disp_Fp64;

   procedure Disp_Str (Ctxt : in out Ctxt_Class; Str : String) is
   begin
      for I in Str'Range loop
         Disp_Char (Ctxt, Str (I));
      end loop;
   end Disp_Str;

   function Need_Space (Tok, Prev_Tok : Token_Type) return Boolean is
   begin
      if Prev_Tok = Tok_Newline then
         return False;
      elsif Prev_Tok >= Tok_First_Keyword then
         --  A space after a keyword.
         if Tok /= Tok_Semi_Colon
           and Tok /= Tok_Dot
           and Tok /= Tok_Right_Paren
         then
            return True;
         end if;
      elsif Tok >= Tok_First_Keyword then
         --  Space before a keyword.
         if Prev_Tok /= Tok_Dot
           and Prev_Tok /= Tok_Left_Paren
         then
            return True;
         end if;
      elsif (Tok = Tok_Identifier
               or Tok = Tok_String)
        and (Prev_Tok = Tok_Identifier
               or Prev_Tok = Tok_String
               or Prev_Tok = Tok_Integer
               or Prev_Tok = Tok_Real)
      then
         --  A space is needed between 2 identifiers.
         return True;
      elsif Prev_Tok = Tok_Comma
        or Prev_Tok = Tok_Semi_Colon
        or Prev_Tok = Tok_Colon
        or Prev_Tok = Tok_Assign
        or Prev_Tok = Tok_Double_Arrow
        or Prev_Tok = Tok_Equal_Equal
        or Prev_Tok in Token_Relational_Operator_Type
        or Prev_Tok in Token_Adding_Operator_Type
        or Prev_Tok in Token_Multiplying_Operator_Type
        or Prev_Tok = Tok_Bar
      then
         --  Always a space after ',', ':', ':='
         return True;
      elsif Tok = Tok_Left_Paren then
         if Prev_Tok /= Tok_Tick
           and Prev_Tok /= Tok_Left_Paren
           and Prev_Tok /= Tok_Right_Paren
           and Prev_Tok /= Tok_Exclam_Mark
         then
            --  A space before '('.
            return True;
         end if;
      elsif Tok = Tok_Left_Bracket
        or Tok = Tok_Assign
        or Tok = Tok_Double_Arrow
        or Tok = Tok_Equal_Equal
        or Tok in Token_Relational_Operator_Type
        or Tok in Token_Adding_Operator_Type
        or Tok in Token_Multiplying_Operator_Type
        or Tok = Tok_Minus_Greater
        or Tok = Tok_Bar
      then
         --  Always a space before '[', ':='.
         return True;
      end if;
      return False;
   end Need_Space;

   package Simple_Disp_Ctxt is
      type Simple_Ctxt is new Disp_Ctxt with record
         --  Boxes level.
         Vnum : Natural;
         Hnum : Natural;

         --  Used by comments.
         Sfe : Source_File_Entry;

         --  Previous token, to decided whether or not a blank must be added.
         Prev_Tok : Token_Type;
      end record;

      procedure Init (Ctxt : out Simple_Ctxt);
      procedure Start_Hbox (Ctxt : in out Simple_Ctxt);
      procedure Close_Hbox (Ctxt : in out Simple_Ctxt);
      procedure Start_Vbox (Ctxt : in out Simple_Ctxt);
      procedure Close_Vbox (Ctxt : in out Simple_Ctxt);
      procedure Start_Node (Ctxt : in out Simple_Ctxt; N : Iir);
      procedure Valign (Ctxt : in out Simple_Ctxt; Point : Valign_Type);
      procedure Disp_Token (Ctxt : in out Simple_Ctxt; Tok : Token_Type);
      procedure Start_Lit (Ctxt : in out Simple_Ctxt; Tok : Token_Type);
      procedure Disp_Char (Ctxt : in out Simple_Ctxt; C : Character);
      procedure Close_Lit (Ctxt : in out Simple_Ctxt);
   private
      procedure Put (Ctxt : in out Simple_Ctxt; C : Character);
   end Simple_Disp_Ctxt;

   package body Simple_Disp_Ctxt is
      procedure Init (Ctxt : out Simple_Ctxt) is
      begin
         Ctxt := (Vnum => 0,
                  Hnum => 0,
                  Sfe => No_Source_File_Entry,
                  Prev_Tok => Tok_Newline);
      end Init;

      procedure Put (Ctxt : in out Simple_Ctxt; C : Character)
      is
         pragma Unreferenced (Ctxt);
      begin
         Simple_IO.Put (C);
      end Put;

      procedure Start_Hbox (Ctxt : in out Simple_Ctxt) is
      begin
         if Ctxt.Hnum = 0 then
            for I in 1 .. Ctxt.Vnum loop
               Put (Ctxt, ' ');
               Put (Ctxt, ' ');
            end loop;
         end if;
         Ctxt.Hnum := Ctxt.Hnum + 1;
      end Start_Hbox;

      procedure Close_Hbox (Ctxt : in out Simple_Ctxt) is
      begin
         Ctxt.Hnum := Ctxt.Hnum - 1;
         if Ctxt.Hnum = 0 then
            Put (Ctxt, ASCII.LF);
            Ctxt.Prev_Tok := Tok_Newline;
         end if;
      end Close_Hbox;

      procedure Start_Vbox (Ctxt : in out Simple_Ctxt) is
      begin
         pragma Assert (Ctxt.Hnum = 0);
         Ctxt.Vnum := Ctxt.Vnum + 1;
      end Start_Vbox;

      procedure Close_Vbox (Ctxt : in out Simple_Ctxt) is
      begin
         Ctxt.Vnum := Ctxt.Vnum - 1;
      end Close_Vbox;

      procedure Start_Node (Ctxt : in out Simple_Ctxt; N : Iir)
      is
         use File_Comments;
         Sfe : Source_File_Entry;
         Idx : Comment_Index;
      begin
         if not Flag_Gather_Comments then
            return;
         end if;
         Sfe := Ctxt.Sfe;
         if Sfe = No_Source_File_Entry then
            Sfe := Files_Map.Location_To_File (Get_Location (N));
            Ctxt.Sfe := Sfe;
         end if;
         Idx := Find_First_Comment (Sfe, Uns32 (N));
         while Idx /= No_Comment_Index loop
            declare
               Buf : constant File_Buffer_Acc :=
                 Files_Map.Get_File_Source (Sfe);
               Start, Last : Source_Ptr;
            begin
               --  TODO: indent
               Get_Comment (Sfe, Idx, Start, Last);
               Start_Hbox (Ctxt);
               for I in Start .. Last loop
                  Disp_Char (Ctxt, Buf (I));
               end loop;
               Close_Hbox (Ctxt);
            end;
            Idx := Get_Next_Comment (Sfe, Idx);
         end loop;
      end Start_Node;

      procedure Valign (Ctxt : in out Simple_Ctxt; Point : Valign_Type) is
      begin
         null;
      end Valign;

      procedure Disp_Space (Ctxt : in out Simple_Ctxt; Tok : Token_Type)
      is
         Prev_Tok : constant Token_Type := Ctxt.Prev_Tok;
      begin
         if Need_Space (Tok, Prev_Tok) then
            Put (Ctxt, ' ');
         end if;
         Ctxt.Prev_Tok := Tok;
      end Disp_Space;

      procedure Disp_Token (Ctxt : in out Simple_Ctxt; Tok : Token_Type) is
      begin
         Disp_Space (Ctxt, Tok);
         Disp_Str (Ctxt, Image (Tok));
      end Disp_Token;

      procedure Start_Lit (Ctxt : in out Simple_Ctxt; Tok : Token_Type) is
      begin
         Disp_Space (Ctxt, Tok);
      end Start_Lit;

      procedure Disp_Char (Ctxt : in out Simple_Ctxt; C : Character) is
      begin
         Put (Ctxt, C);
      end Disp_Char;

      procedure Close_Lit (Ctxt : in out Simple_Ctxt) is
      begin
         null;
      end Close_Lit;
   end Simple_Disp_Ctxt;

   procedure Disp_Vhdl (N : Iir)
   is
      use Simple_Disp_Ctxt;
      Ctxt : Simple_Ctxt;
   begin
      Init (Ctxt);
      Disp_Vhdl (Ctxt, N);
   end Disp_Vhdl;

   procedure Disp_Expression (Expr: Iir)
   is
      use Simple_Disp_Ctxt;
      Ctxt : Simple_Ctxt;
   begin
      Init (Ctxt);
      Print (Ctxt, Expr);
   end Disp_Expression;

   procedure Disp_PSL_NFA (N : PSL.Nodes.NFA)
   is
      use Simple_Disp_Ctxt;
      Ctxt : Simple_Ctxt;
   begin
      Init (Ctxt);
      Disp_PSL_NFA (Ctxt, N);
   end Disp_PSL_NFA;

   procedure Disp_PSL_Expr (N : PSL_Node)
   is
      use Simple_Disp_Ctxt;
      Ctxt : Simple_Ctxt;
   begin
      Init (Ctxt);
      Disp_Psl_Expression (Ctxt, N);
      OOB.New_Line;
   end Disp_PSL_Expr;

   package Vstring_Disp_Ctxt is
      type Vstring_Ctxt is new Disp_Ctxt with record
         Buf : Vstring_Acc;

         --  Previous token, to decided whether or not a blank must be added.
         Prev_Tok : Token_Type;
      end record;

      procedure Init (Ctxt : out Vstring_Ctxt; Buf : Vstring_Acc);
      procedure Start_Hbox (Ctxt : in out Vstring_Ctxt) is null;
      procedure Close_Hbox (Ctxt : in out Vstring_Ctxt) is null;
      procedure Start_Vbox (Ctxt : in out Vstring_Ctxt) is null;
      procedure Close_Vbox (Ctxt : in out Vstring_Ctxt) is null;
      procedure Start_Node (Ctxt : in out Vstring_Ctxt; N : Iir) is null;
      procedure Valign (Ctxt : in out Vstring_Ctxt; Point : Valign_Type)
        is null;
      procedure Disp_Token (Ctxt : in out Vstring_Ctxt; Tok : Token_Type);
      procedure Start_Lit (Ctxt : in out Vstring_Ctxt; Tok : Token_Type);
      procedure Disp_Char (Ctxt : in out Vstring_Ctxt; C : Character);
      procedure Close_Lit (Ctxt : in out Vstring_Ctxt) is null;
   private
      procedure Put (Ctxt : in out Vstring_Ctxt; C : Character);
   end Vstring_Disp_Ctxt;

   package body Vstring_Disp_Ctxt is
      procedure Init (Ctxt : out Vstring_Ctxt; Buf : Vstring_Acc) is
      begin
         Ctxt := (Buf => Buf,
                  Prev_Tok => Tok_Newline);
      end Init;

      procedure Put (Ctxt : in out Vstring_Ctxt; C : Character) is
      begin
         Grt.Vstrings.Append (Ctxt.Buf.all, C);
      end Put;

      procedure Disp_Space (Ctxt : in out Vstring_Ctxt; Tok : Token_Type)
      is
         Prev_Tok : constant Token_Type := Ctxt.Prev_Tok;
      begin
         if Need_Space (Tok, Prev_Tok) then
            Put (Ctxt, ' ');
         end if;
         Ctxt.Prev_Tok := Tok;
      end Disp_Space;

      procedure Disp_Token (Ctxt : in out Vstring_Ctxt; Tok : Token_Type) is
      begin
         Disp_Space (Ctxt, Tok);
         Disp_Str (Ctxt, Image (Tok));
      end Disp_Token;

      procedure Start_Lit (Ctxt : in out Vstring_Ctxt; Tok : Token_Type) is
      begin
         Disp_Space (Ctxt, Tok);
      end Start_Lit;

      procedure Disp_Char (Ctxt : in out Vstring_Ctxt; C : Character) is
      begin
         Put (Ctxt, C);
      end Disp_Char;
   end Vstring_Disp_Ctxt;

   procedure Print_String (N : Iir; Buf : Vstring_Acc)
   is
      use Vstring_Disp_Ctxt;
      Ctxt : Vstring_Ctxt;
   begin
      Init (Ctxt, Buf);

      case Get_Kind (N) is
         when Iir_Kind_File_Declaration
            | Iir_Kind_Signal_Declaration
            | Iir_Kind_Constant_Declaration
            | Iir_Kind_Variable_Declaration
            | Iir_Kind_Free_Quantity_Declaration
            | Iir_Kinds_Source_Quantity_Declaration =>
            Disp_Object_Declaration (Ctxt, N);
         when Iir_Kind_Type_Declaration =>
            Disp_Type_Declaration (Ctxt, N);
         when Iir_Kind_Subtype_Declaration =>
            Disp_Subtype_Declaration (Ctxt, N);
         when Iir_Kinds_Interface_Object_Declaration =>
            Disp_Interface_Class (Ctxt, N);
            Disp_Name_Of (Ctxt, N);
            --  FIXME: need first interface.
            Disp_Interface_Mode_And_Type (Ctxt, N);
         when Iir_Kind_Function_Declaration
           | Iir_Kind_Procedure_Declaration =>
            Disp_Subprogram_Declaration (Ctxt, N, False);
         when Iir_Kind_Element_Declaration =>
            Disp_Identifier (Ctxt, N);
            Disp_Token (Ctxt, Tok_Colon);
            Disp_Subtype_Indication
              (Ctxt, Or_Else (Get_Subtype_Indication (N), Get_Type (N)));
         when others =>
            null;
      end case;
   end Print_String;

   function Allocate_Handle return Vstring_Acc is
   begin
      return new Grt.Vstrings.Vstring;
   end Allocate_Handle;

   function Get_Length (Handle : Vstring_Acc) return Natural is
   begin
      return Grt.Vstrings.Length (Handle.all);
   end Get_Length;

   function Get_C_String (Handle : Vstring_Acc)
                         return Grt.Types.Ghdl_C_String is
   begin
      return Grt.Vstrings.Get_C_String (Handle.all);
   end Get_C_String;

   procedure Free_Handle (Handle : Vstring_Acc)
   is
      procedure Deallocate is new Ada.Unchecked_Deallocation
        (Grt.Vstrings.Vstring, Vstring_Acc);
      Handle1 : Vstring_Acc;
   begin
      Grt.Vstrings.Free (Handle.all);
      Handle1 := Handle;
      Deallocate (Handle1);
   end Free_Handle;

end Vhdl.Prints;