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
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- T R E E P R --
-- --
-- B o d y --
-- --
-- Copyright (C) 1992-2016, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT 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 distributed with GNAT; see file COPYING3. If not, go to --
-- http://www.gnu.org/licenses for a complete copy of the license. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with Aspects; use Aspects;
with Atree; use Atree;
with Csets; use Csets;
with Debug; use Debug;
with Einfo; use Einfo;
with Elists; use Elists;
with Lib; use Lib;
with Namet; use Namet;
with Nlists; use Nlists;
with Output; use Output;
with Sem_Mech; use Sem_Mech;
with Sinfo; use Sinfo;
with Snames; use Snames;
with Sinput; use Sinput;
with Stand; use Stand;
with Stringt; use Stringt;
with SCIL_LL; use SCIL_LL;
with Treeprs; use Treeprs;
with Uintp; use Uintp;
with Urealp; use Urealp;
with Uname; use Uname;
with Unchecked_Deallocation;
package body Treepr is
use Atree.Unchecked_Access;
-- This module uses the unchecked access functions in package Atree
-- since it does an untyped traversal of the tree (we do not want to
-- count on the structure of the tree being correct in this routine).
----------------------------------
-- Approach Used for Tree Print --
----------------------------------
-- When a complete subtree is being printed, a trace phase first marks
-- the nodes and lists to be printed. This trace phase allocates logical
-- numbers corresponding to the order in which the nodes and lists will
-- be printed. The Node_Id, List_Id and Elist_Id values are mapped to
-- logical node numbers using a hash table. Output is done using a set
-- of Print_xxx routines, which are similar to the Write_xxx routines
-- with the same name, except that they do not generate any output in
-- the marking phase. This allows identical logic to be used in the
-- two phases.
-- Note that the hash table not only holds the serial numbers, but also
-- acts as a record of which nodes have already been visited. In the
-- marking phase, a node has been visited if it is already in the hash
-- table, and in the printing phase, we can tell whether a node has
-- already been printed by looking at the value of the serial number.
----------------------
-- Global Variables --
----------------------
type Hash_Record is record
Serial : Nat;
-- Serial number for hash table entry. A value of zero means that
-- the entry is currently unused.
Id : Int;
-- If serial number field is non-zero, contains corresponding Id value
end record;
type Hash_Table_Type is array (Nat range <>) of Hash_Record;
type Access_Hash_Table_Type is access Hash_Table_Type;
Hash_Table : Access_Hash_Table_Type;
-- The hash table itself, see Serial_Number function for details of use
Hash_Table_Len : Nat;
-- Range of Hash_Table is from 0 .. Hash_Table_Len - 1 so that dividing
-- by Hash_Table_Len gives a remainder that is in Hash_Table'Range.
Next_Serial_Number : Nat;
-- Number of last visited node or list. Used during the marking phase to
-- set proper node numbers in the hash table, and during the printing
-- phase to make sure that a given node is not printed more than once.
-- (nodes are printed in order during the printing phase, that's the
-- point of numbering them in the first place).
Printing_Descendants : Boolean;
-- True if descendants are being printed, False if not. In the false case,
-- only node Id's are printed. In the true case, node numbers as well as
-- node Id's are printed, as described above.
type Phase_Type is (Marking, Printing);
-- Type for Phase variable
Phase : Phase_Type;
-- When an entire tree is being printed, the traversal operates in two
-- phases. The first phase marks the nodes in use by installing node
-- numbers in the node number table. The second phase prints the nodes.
-- This variable indicates the current phase.
----------------------
-- Local Procedures --
----------------------
procedure Print_End_Span (N : Node_Id);
-- Special routine to print contents of End_Span field of node N.
-- The format includes the implicit source location as well as the
-- value of the field.
procedure Print_Init;
-- Initialize for printing of tree with descendants
procedure Print_Term;
-- Clean up after printing of tree with descendants
procedure Print_Char (C : Character);
-- Print character C if currently in print phase, noop if in marking phase
procedure Print_Name (N : Name_Id);
-- Print name from names table if currently in print phase, noop if in
-- marking phase. Note that the name is output in mixed case mode.
procedure Print_Node_Header (N : Node_Id);
-- Print header line used by Print_Node and Print_Node_Briefly
procedure Print_Node_Kind (N : Node_Id);
-- Print node kind name in mixed case if in print phase, noop if in
-- marking phase.
procedure Print_Str (S : String);
-- Print string S if currently in print phase, noop if in marking phase
procedure Print_Str_Mixed_Case (S : String);
-- Like Print_Str, except that the string is printed in mixed case mode
procedure Print_Int (I : Int);
-- Print integer I if currently in print phase, noop if in marking phase
procedure Print_Eol;
-- Print end of line if currently in print phase, noop if in marking phase
procedure Print_Node_Ref (N : Node_Id);
-- Print "<empty>", "<error>" or "Node #nnn" with additional information
-- in the latter case, including the Id and the Nkind of the node.
procedure Print_List_Ref (L : List_Id);
-- Print "<no list>", or "<empty node list>" or "Node list #nnn"
procedure Print_Elist_Ref (E : Elist_Id);
-- Print "<no elist>", or "<empty element list>" or "Element list #nnn"
procedure Print_Entity_Info (Ent : Entity_Id; Prefix : String);
-- Called if the node being printed is an entity. Prints fields from the
-- extension, using routines in Einfo to get the field names and flags.
procedure Print_Field (Val : Union_Id; Format : UI_Format := Auto);
-- Print representation of Field value (name, tree, string, uint, charcode)
-- The format parameter controls the format of printing in the case of an
-- integer value (see UI_Write for details).
procedure Print_Flag (F : Boolean);
-- Print True or False
procedure Print_Node
(N : Node_Id;
Prefix_Str : String;
Prefix_Char : Character);
-- This is the internal routine used to print a single node. Each line of
-- output is preceded by Prefix_Str (which is used to set the indentation
-- level and the bars used to link list elements). In addition, for lines
-- other than the first, an additional character Prefix_Char is output.
function Serial_Number (Id : Int) return Nat;
-- Given a Node_Id, List_Id or Elist_Id, returns the previously assigned
-- serial number, or zero if no serial number has yet been assigned.
procedure Set_Serial_Number;
-- Can be called only immediately following a call to Serial_Number that
-- returned a value of zero. Causes the value of Next_Serial_Number to be
-- placed in the hash table (corresponding to the Id argument used in the
-- Serial_Number call), and increments Next_Serial_Number.
procedure Visit_Node
(N : Node_Id;
Prefix_Str : String;
Prefix_Char : Character);
-- Called to process a single node in the case where descendants are to
-- be printed before every line, and Prefix_Char added to all lines
-- except the header line for the node.
procedure Visit_List (L : List_Id; Prefix_Str : String);
-- Visit_List is called to process a list in the case where descendants
-- are to be printed. Prefix_Str is to be added to all printed lines.
procedure Visit_Elist (E : Elist_Id; Prefix_Str : String);
-- Visit_Elist is called to process an element list in the case where
-- descendants are to be printed. Prefix_Str is to be added to all
-- printed lines.
-------
-- p --
-------
function p (N : Union_Id) return Node_Or_Entity_Id is
begin
case N is
when List_Low_Bound .. List_High_Bound - 1 =>
return Nlists.Parent (List_Id (N));
when Node_Range =>
return Atree.Parent (Node_Or_Entity_Id (N));
when others =>
Write_Int (Int (N));
Write_Str (" is not a Node_Id or List_Id value");
Write_Eol;
return Empty;
end case;
end p;
---------
-- par --
---------
function par (N : Union_Id) return Node_Or_Entity_Id renames p;
--------
-- pe --
--------
procedure pe (N : Union_Id) renames pn;
--------
-- pl --
--------
procedure pl (L : Int) is
Lid : Int;
begin
if L < 0 then
Lid := L;
-- This is the case where we transform e.g. +36 to -99999936
else
if L <= 9 then
Lid := -(99999990 + L);
elsif L <= 99 then
Lid := -(99999900 + L);
elsif L <= 999 then
Lid := -(99999000 + L);
elsif L <= 9999 then
Lid := -(99990000 + L);
elsif L <= 99999 then
Lid := -(99900000 + L);
elsif L <= 999999 then
Lid := -(99000000 + L);
elsif L <= 9999999 then
Lid := -(90000000 + L);
else
Lid := -L;
end if;
end if;
-- Now output the list
Print_Tree_List (List_Id (Lid));
end pl;
--------
-- pn --
--------
procedure pn (N : Union_Id) is
begin
case N is
when List_Low_Bound .. List_High_Bound - 1 =>
pl (Int (N));
when Node_Range =>
Print_Tree_Node (Node_Id (N));
when Elist_Range =>
Print_Tree_Elist (Elist_Id (N));
when Elmt_Range =>
declare
Id : constant Elmt_Id := Elmt_Id (N);
begin
if No (Id) then
Write_Str ("No_Elmt");
Write_Eol;
else
Write_Str ("Elmt_Id --> ");
Print_Tree_Node (Node (Id));
end if;
end;
when Names_Range =>
Namet.wn (Name_Id (N));
when Strings_Range =>
Write_String_Table_Entry (String_Id (N));
when Uint_Range =>
Uintp.pid (From_Union (N));
when Ureal_Range =>
Urealp.pr (From_Union (N));
when others =>
Write_Str ("Invalid Union_Id: ");
Write_Int (Int (N));
Write_Eol;
end case;
end pn;
--------
-- pp --
--------
procedure pp (N : Union_Id) renames pn;
---------
-- ppp --
---------
procedure ppp (N : Union_Id) renames pt;
----------------
-- Print_Char --
----------------
procedure Print_Char (C : Character) is
begin
if Phase = Printing then
Write_Char (C);
end if;
end Print_Char;
---------------------
-- Print_Elist_Ref --
---------------------
procedure Print_Elist_Ref (E : Elist_Id) is
begin
if Phase /= Printing then
return;
end if;
if E = No_Elist then
Write_Str ("<no elist>");
elsif Is_Empty_Elmt_List (E) then
Write_Str ("Empty elist, (Elist_Id=");
Write_Int (Int (E));
Write_Char (')');
else
Write_Str ("(Elist_Id=");
Write_Int (Int (E));
Write_Char (')');
if Printing_Descendants then
Write_Str (" #");
Write_Int (Serial_Number (Int (E)));
end if;
end if;
end Print_Elist_Ref;
-------------------------
-- Print_Elist_Subtree --
-------------------------
procedure Print_Elist_Subtree (E : Elist_Id) is
begin
Print_Init;
Next_Serial_Number := 1;
Phase := Marking;
Visit_Elist (E, "");
Next_Serial_Number := 1;
Phase := Printing;
Visit_Elist (E, "");
Print_Term;
end Print_Elist_Subtree;
--------------------
-- Print_End_Span --
--------------------
procedure Print_End_Span (N : Node_Id) is
Val : constant Uint := End_Span (N);
begin
UI_Write (Val);
Write_Str (" (Uint = ");
Write_Int (Int (Field5 (N)));
Write_Str (") ");
if Val /= No_Uint then
Write_Location (End_Location (N));
end if;
end Print_End_Span;
-----------------------
-- Print_Entity_Info --
-----------------------
procedure Print_Entity_Info (Ent : Entity_Id; Prefix : String) is
function Field_Present (U : Union_Id) return Boolean;
-- Returns False unless the value U represents a missing value
-- (Empty, No_Uint, No_Ureal or No_String)
function Field_Present (U : Union_Id) return Boolean is
begin
return
U /= Union_Id (Empty) and then
U /= To_Union (No_Uint) and then
U /= To_Union (No_Ureal) and then
U /= Union_Id (No_String);
end Field_Present;
-- Start of processing for Print_Entity_Info
begin
Print_Str (Prefix);
Print_Str ("Ekind = ");
Print_Str_Mixed_Case (Entity_Kind'Image (Ekind (Ent)));
Print_Eol;
Print_Str (Prefix);
Print_Str ("Etype = ");
Print_Node_Ref (Etype (Ent));
Print_Eol;
if Convention (Ent) /= Convention_Ada then
Print_Str (Prefix);
Print_Str ("Convention = ");
-- Print convention name skipping the Convention_ at the start
declare
S : constant String := Convention_Id'Image (Convention (Ent));
begin
Print_Str_Mixed_Case (S (12 .. S'Last));
Print_Eol;
end;
end if;
if Field_Present (Field6 (Ent)) then
Print_Str (Prefix);
Write_Field6_Name (Ent);
Write_Str (" = ");
Print_Field (Field6 (Ent));
Print_Eol;
end if;
if Field_Present (Field7 (Ent)) then
Print_Str (Prefix);
Write_Field7_Name (Ent);
Write_Str (" = ");
Print_Field (Field7 (Ent));
Print_Eol;
end if;
if Field_Present (Field8 (Ent)) then
Print_Str (Prefix);
Write_Field8_Name (Ent);
Write_Str (" = ");
Print_Field (Field8 (Ent));
Print_Eol;
end if;
if Field_Present (Field9 (Ent)) then
Print_Str (Prefix);
Write_Field9_Name (Ent);
Write_Str (" = ");
Print_Field (Field9 (Ent));
Print_Eol;
end if;
if Field_Present (Field10 (Ent)) then
Print_Str (Prefix);
Write_Field10_Name (Ent);
Write_Str (" = ");
Print_Field (Field10 (Ent));
Print_Eol;
end if;
if Field_Present (Field11 (Ent)) then
Print_Str (Prefix);
Write_Field11_Name (Ent);
Write_Str (" = ");
Print_Field (Field11 (Ent));
Print_Eol;
end if;
if Field_Present (Field12 (Ent)) then
Print_Str (Prefix);
Write_Field12_Name (Ent);
Write_Str (" = ");
Print_Field (Field12 (Ent));
Print_Eol;
end if;
if Field_Present (Field13 (Ent)) then
Print_Str (Prefix);
Write_Field13_Name (Ent);
Write_Str (" = ");
Print_Field (Field13 (Ent));
Print_Eol;
end if;
if Field_Present (Field14 (Ent)) then
Print_Str (Prefix);
Write_Field14_Name (Ent);
Write_Str (" = ");
Print_Field (Field14 (Ent));
Print_Eol;
end if;
if Field_Present (Field15 (Ent)) then
Print_Str (Prefix);
Write_Field15_Name (Ent);
Write_Str (" = ");
Print_Field (Field15 (Ent));
Print_Eol;
end if;
if Field_Present (Field16 (Ent)) then
Print_Str (Prefix);
Write_Field16_Name (Ent);
Write_Str (" = ");
Print_Field (Field16 (Ent));
Print_Eol;
end if;
if Field_Present (Field17 (Ent)) then
Print_Str (Prefix);
Write_Field17_Name (Ent);
Write_Str (" = ");
Print_Field (Field17 (Ent));
Print_Eol;
end if;
if Field_Present (Field18 (Ent)) then
Print_Str (Prefix);
Write_Field18_Name (Ent);
Write_Str (" = ");
Print_Field (Field18 (Ent));
Print_Eol;
end if;
if Field_Present (Field19 (Ent)) then
Print_Str (Prefix);
Write_Field19_Name (Ent);
Write_Str (" = ");
Print_Field (Field19 (Ent));
Print_Eol;
end if;
if Field_Present (Field20 (Ent)) then
Print_Str (Prefix);
Write_Field20_Name (Ent);
Write_Str (" = ");
Print_Field (Field20 (Ent));
Print_Eol;
end if;
if Field_Present (Field21 (Ent)) then
Print_Str (Prefix);
Write_Field21_Name (Ent);
Write_Str (" = ");
Print_Field (Field21 (Ent));
Print_Eol;
end if;
if Field_Present (Field22 (Ent)) then
Print_Str (Prefix);
Write_Field22_Name (Ent);
Write_Str (" = ");
-- Mechanism case has to be handled specially
if Ekind (Ent) = E_Function or else Is_Formal (Ent) then
declare
M : constant Mechanism_Type := Mechanism (Ent);
begin
case M is
when Default_Mechanism =>
Write_Str ("Default");
when By_Copy =>
Write_Str ("By_Copy");
when By_Reference =>
Write_Str ("By_Reference");
when 1 .. Mechanism_Type'Last =>
Write_Str ("By_Copy if size <= ");
Write_Int (Int (M));
end case;
end;
-- Normal case (not Mechanism)
else
Print_Field (Field22 (Ent));
end if;
Print_Eol;
end if;
if Field_Present (Field23 (Ent)) then
Print_Str (Prefix);
Write_Field23_Name (Ent);
Write_Str (" = ");
Print_Field (Field23 (Ent));
Print_Eol;
end if;
if Field_Present (Field24 (Ent)) then
Print_Str (Prefix);
Write_Field24_Name (Ent);
Write_Str (" = ");
Print_Field (Field24 (Ent));
Print_Eol;
end if;
if Field_Present (Field25 (Ent)) then
Print_Str (Prefix);
Write_Field25_Name (Ent);
Write_Str (" = ");
Print_Field (Field25 (Ent));
Print_Eol;
end if;
if Field_Present (Field26 (Ent)) then
Print_Str (Prefix);
Write_Field26_Name (Ent);
Write_Str (" = ");
Print_Field (Field26 (Ent));
Print_Eol;
end if;
if Field_Present (Field27 (Ent)) then
Print_Str (Prefix);
Write_Field27_Name (Ent);
Write_Str (" = ");
Print_Field (Field27 (Ent));
Print_Eol;
end if;
if Field_Present (Field28 (Ent)) then
Print_Str (Prefix);
Write_Field28_Name (Ent);
Write_Str (" = ");
Print_Field (Field28 (Ent));
Print_Eol;
end if;
if Field_Present (Field29 (Ent)) then
Print_Str (Prefix);
Write_Field29_Name (Ent);
Write_Str (" = ");
Print_Field (Field29 (Ent));
Print_Eol;
end if;
if Field_Present (Field30 (Ent)) then
Print_Str (Prefix);
Write_Field30_Name (Ent);
Write_Str (" = ");
Print_Field (Field30 (Ent));
Print_Eol;
end if;
if Field_Present (Field31 (Ent)) then
Print_Str (Prefix);
Write_Field31_Name (Ent);
Write_Str (" = ");
Print_Field (Field31 (Ent));
Print_Eol;
end if;
if Field_Present (Field32 (Ent)) then
Print_Str (Prefix);
Write_Field32_Name (Ent);
Write_Str (" = ");
Print_Field (Field32 (Ent));
Print_Eol;
end if;
if Field_Present (Field33 (Ent)) then
Print_Str (Prefix);
Write_Field33_Name (Ent);
Write_Str (" = ");
Print_Field (Field33 (Ent));
Print_Eol;
end if;
if Field_Present (Field34 (Ent)) then
Print_Str (Prefix);
Write_Field34_Name (Ent);
Write_Str (" = ");
Print_Field (Field34 (Ent));
Print_Eol;
end if;
if Field_Present (Field35 (Ent)) then
Print_Str (Prefix);
Write_Field35_Name (Ent);
Write_Str (" = ");
Print_Field (Field35 (Ent));
Print_Eol;
end if;
if Field_Present (Field36 (Ent)) then
Print_Str (Prefix);
Write_Field36_Name (Ent);
Write_Str (" = ");
Print_Field (Field36 (Ent));
Print_Eol;
end if;
if Field_Present (Field37 (Ent)) then
Print_Str (Prefix);
Write_Field37_Name (Ent);
Write_Str (" = ");
Print_Field (Field37 (Ent));
Print_Eol;
end if;
if Field_Present (Field38 (Ent)) then
Print_Str (Prefix);
Write_Field38_Name (Ent);
Write_Str (" = ");
Print_Field (Field38 (Ent));
Print_Eol;
end if;
if Field_Present (Field39 (Ent)) then
Print_Str (Prefix);
Write_Field39_Name (Ent);
Write_Str (" = ");
Print_Field (Field39 (Ent));
Print_Eol;
end if;
if Field_Present (Field40 (Ent)) then
Print_Str (Prefix);
Write_Field40_Name (Ent);
Write_Str (" = ");
Print_Field (Field40 (Ent));
Print_Eol;
end if;
if Field_Present (Field41 (Ent)) then
Print_Str (Prefix);
Write_Field41_Name (Ent);
Write_Str (" = ");
Print_Field (Field41 (Ent));
Print_Eol;
end if;
Write_Entity_Flags (Ent, Prefix);
end Print_Entity_Info;
---------------
-- Print_Eol --
---------------
procedure Print_Eol is
begin
if Phase = Printing then
Write_Eol;
end if;
end Print_Eol;
-----------------
-- Print_Field --
-----------------
procedure Print_Field (Val : Union_Id; Format : UI_Format := Auto) is
begin
if Phase /= Printing then
return;
end if;
if Val in Node_Range then
Print_Node_Ref (Node_Id (Val));
elsif Val in List_Range then
Print_List_Ref (List_Id (Val));
elsif Val in Elist_Range then
Print_Elist_Ref (Elist_Id (Val));
elsif Val in Names_Range then
Print_Name (Name_Id (Val));
Write_Str (" (Name_Id=");
Write_Int (Int (Val));
Write_Char (')');
elsif Val in Strings_Range then
Write_String_Table_Entry (String_Id (Val));
Write_Str (" (String_Id=");
Write_Int (Int (Val));
Write_Char (')');
elsif Val in Uint_Range then
UI_Write (From_Union (Val), Format);
Write_Str (" (Uint = ");
Write_Int (Int (Val));
Write_Char (')');
elsif Val in Ureal_Range then
UR_Write (From_Union (Val));
Write_Str (" (Ureal = ");
Write_Int (Int (Val));
Write_Char (')');
else
Print_Str ("****** Incorrect value = ");
Print_Int (Int (Val));
end if;
end Print_Field;
----------------
-- Print_Flag --
----------------
procedure Print_Flag (F : Boolean) is
begin
if F then
Print_Str ("True");
else
Print_Str ("False");
end if;
end Print_Flag;
----------------
-- Print_Init --
----------------
procedure Print_Init is
begin
Printing_Descendants := True;
Write_Eol;
-- Allocate and clear serial number hash table. The size is 150% of
-- the maximum possible number of entries, so that the hash table
-- cannot get significantly overloaded.
Hash_Table_Len := (150 * (Num_Nodes + Num_Lists + Num_Elists)) / 100;
Hash_Table := new Hash_Table_Type (0 .. Hash_Table_Len - 1);
for J in Hash_Table'Range loop
Hash_Table (J).Serial := 0;
end loop;
end Print_Init;
---------------
-- Print_Int --
---------------
procedure Print_Int (I : Int) is
begin
if Phase = Printing then
Write_Int (I);
end if;
end Print_Int;
--------------------
-- Print_List_Ref --
--------------------
procedure Print_List_Ref (L : List_Id) is
begin
if Phase /= Printing then
return;
end if;
if No (L) then
Write_Str ("<no list>");
elsif Is_Empty_List (L) then
Write_Str ("<empty list> (List_Id=");
Write_Int (Int (L));
Write_Char (')');
else
Write_Str ("List");
if Printing_Descendants then
Write_Str (" #");
Write_Int (Serial_Number (Int (L)));
end if;
Write_Str (" (List_Id=");
Write_Int (Int (L));
Write_Char (')');
end if;
end Print_List_Ref;
------------------------
-- Print_List_Subtree --
------------------------
procedure Print_List_Subtree (L : List_Id) is
begin
Print_Init;
Next_Serial_Number := 1;
Phase := Marking;
Visit_List (L, "");
Next_Serial_Number := 1;
Phase := Printing;
Visit_List (L, "");
Print_Term;
end Print_List_Subtree;
----------------
-- Print_Name --
----------------
procedure Print_Name (N : Name_Id) is
begin
if Phase = Printing then
if N = No_Name then
Print_Str ("<No_Name>");
elsif N = Error_Name then
Print_Str ("<Error_Name>");
elsif Is_Valid_Name (N) then
Get_Name_String (N);
Print_Char ('"');
Write_Name (N);
Print_Char ('"');
else
Print_Str ("<invalid name ???>");
end if;
end if;
end Print_Name;
----------------
-- Print_Node --
----------------
procedure Print_Node
(N : Node_Id;
Prefix_Str : String;
Prefix_Char : Character)
is
F : Fchar;
P : Natural;
Field_To_Be_Printed : Boolean;
Prefix_Str_Char : String (Prefix_Str'First .. Prefix_Str'Last + 1);
Sfile : Source_File_Index;
Fmt : UI_Format;
begin
if Phase /= Printing then
return;
end if;
-- If there is no such node, indicate that. Skip the rest, so we don't
-- crash getting fields of the nonexistent node.
if N > Atree_Private_Part.Nodes.Last then
Print_Str ("No such node: ");
Print_Int (Int (N));
Print_Eol;
return;
end if;
Prefix_Str_Char (Prefix_Str'Range) := Prefix_Str;
Prefix_Str_Char (Prefix_Str'Last + 1) := Prefix_Char;
-- Print header line
Print_Str (Prefix_Str);
Print_Node_Header (N);
if Is_Rewrite_Substitution (N) then
Print_Str (Prefix_Str);
Print_Str (" Rewritten: original node = ");
Print_Node_Ref (Original_Node (N));
Print_Eol;
end if;
if N = Empty then
return;
end if;
if not Is_List_Member (N) then
Print_Str (Prefix_Str);
Print_Str (" Parent = ");
Print_Node_Ref (Parent (N));
Print_Eol;
end if;
-- Print Sloc field if it is set
if Sloc (N) /= No_Location then
Print_Str (Prefix_Str_Char);
Print_Str ("Sloc = ");
if Sloc (N) = Standard_Location then
Print_Str ("Standard_Location");
elsif Sloc (N) = Standard_ASCII_Location then
Print_Str ("Standard_ASCII_Location");
else
Sfile := Get_Source_File_Index (Sloc (N));
Print_Int (Int (Sloc (N)) - Int (Source_Text (Sfile)'First));
Write_Str (" ");
Write_Location (Sloc (N));
end if;
Print_Eol;
end if;
-- Print Chars field if present
if Nkind (N) in N_Has_Chars and then Chars (N) /= No_Name then
Print_Str (Prefix_Str_Char);
Print_Str ("Chars = ");
Print_Name (Chars (N));
Write_Str (" (Name_Id=");
Write_Int (Int (Chars (N)));
Write_Char (')');
Print_Eol;
end if;
-- Special field print operations for non-entity nodes
if Nkind (N) not in N_Entity then
-- Deal with Left_Opnd and Right_Opnd fields
if Nkind (N) in N_Op
or else Nkind (N) in N_Short_Circuit
or else Nkind (N) in N_Membership_Test
then
-- Print Left_Opnd if present
if Nkind (N) not in N_Unary_Op then
Print_Str (Prefix_Str_Char);
Print_Str ("Left_Opnd = ");
Print_Node_Ref (Left_Opnd (N));
Print_Eol;
end if;
-- Print Right_Opnd
Print_Str (Prefix_Str_Char);
Print_Str ("Right_Opnd = ");
Print_Node_Ref (Right_Opnd (N));
Print_Eol;
end if;
-- Print Entity field if operator (other cases of Entity
-- are in the table, so are handled in the normal circuit)
if Nkind (N) in N_Op and then Present (Entity (N)) then
Print_Str (Prefix_Str_Char);
Print_Str ("Entity = ");
Print_Node_Ref (Entity (N));
Print_Eol;
end if;
-- Print special fields if we have a subexpression
if Nkind (N) in N_Subexpr then
if Assignment_OK (N) then
Print_Str (Prefix_Str_Char);
Print_Str ("Assignment_OK = True");
Print_Eol;
end if;
if Do_Range_Check (N) then
Print_Str (Prefix_Str_Char);
Print_Str ("Do_Range_Check = True");
Print_Eol;
end if;
if Has_Dynamic_Length_Check (N) then
Print_Str (Prefix_Str_Char);
Print_Str ("Has_Dynamic_Length_Check = True");
Print_Eol;
end if;
if Has_Aspects (N) then
Print_Str (Prefix_Str_Char);
Print_Str ("Has_Aspects = True");
Print_Eol;
end if;
if Has_Dynamic_Range_Check (N) then
Print_Str (Prefix_Str_Char);
Print_Str ("Has_Dynamic_Range_Check = True");
Print_Eol;
end if;
if Is_Controlling_Actual (N) then
Print_Str (Prefix_Str_Char);
Print_Str ("Is_Controlling_Actual = True");
Print_Eol;
end if;
if Is_Overloaded (N) then
Print_Str (Prefix_Str_Char);
Print_Str ("Is_Overloaded = True");
Print_Eol;
end if;
if Is_Static_Expression (N) then
Print_Str (Prefix_Str_Char);
Print_Str ("Is_Static_Expression = True");
Print_Eol;
end if;
if Must_Not_Freeze (N) then
Print_Str (Prefix_Str_Char);
Print_Str ("Must_Not_Freeze = True");
Print_Eol;
end if;
if Paren_Count (N) /= 0 then
Print_Str (Prefix_Str_Char);
Print_Str ("Paren_Count = ");
Print_Int (Int (Paren_Count (N)));
Print_Eol;
end if;
if Raises_Constraint_Error (N) then
Print_Str (Prefix_Str_Char);
Print_Str ("Raise_Constraint_Error = True");
Print_Eol;
end if;
end if;
-- Print Do_Overflow_Check field if present
if Nkind (N) in N_Op and then Do_Overflow_Check (N) then
Print_Str (Prefix_Str_Char);
Print_Str ("Do_Overflow_Check = True");
Print_Eol;
end if;
-- Print Etype field if present (printing of this field for entities
-- is handled by the Print_Entity_Info procedure).
if Nkind (N) in N_Has_Etype and then Present (Etype (N)) then
Print_Str (Prefix_Str_Char);
Print_Str ("Etype = ");
Print_Node_Ref (Etype (N));
Print_Eol;
end if;
end if;
-- Loop to print fields included in Pchars array
P := Pchar_Pos (Nkind (N));
if Nkind (N) = N_Integer_Literal and then Print_In_Hex (N) then
Fmt := Hex;
else
Fmt := Auto;
end if;
while P < Pchar_Pos (Node_Kind'Succ (Nkind (N))) loop
F := Pchars (P);
P := P + 1;
-- Check for case of False flag, which we never print, or an Empty
-- field, which is also never printed.
case F is
when F_Field1 =>
Field_To_Be_Printed := Field1 (N) /= Union_Id (Empty);
when F_Field2 =>
Field_To_Be_Printed := Field2 (N) /= Union_Id (Empty);
when F_Field3 =>
Field_To_Be_Printed := Field3 (N) /= Union_Id (Empty);
when F_Field4 =>
Field_To_Be_Printed := Field4 (N) /= Union_Id (Empty);
when F_Field5 =>
Field_To_Be_Printed := Field5 (N) /= Union_Id (Empty);
when F_Flag1 => Field_To_Be_Printed := Flag1 (N);
when F_Flag2 => Field_To_Be_Printed := Flag2 (N);
when F_Flag3 => Field_To_Be_Printed := Flag3 (N);
when F_Flag4 => Field_To_Be_Printed := Flag4 (N);
when F_Flag5 => Field_To_Be_Printed := Flag5 (N);
when F_Flag6 => Field_To_Be_Printed := Flag6 (N);
when F_Flag7 => Field_To_Be_Printed := Flag7 (N);
when F_Flag8 => Field_To_Be_Printed := Flag8 (N);
when F_Flag9 => Field_To_Be_Printed := Flag9 (N);
when F_Flag10 => Field_To_Be_Printed := Flag10 (N);
when F_Flag11 => Field_To_Be_Printed := Flag11 (N);
when F_Flag12 => Field_To_Be_Printed := Flag12 (N);
when F_Flag13 => Field_To_Be_Printed := Flag13 (N);
when F_Flag14 => Field_To_Be_Printed := Flag14 (N);
when F_Flag15 => Field_To_Be_Printed := Flag15 (N);
when F_Flag16 => Field_To_Be_Printed := Flag16 (N);
when F_Flag17 => Field_To_Be_Printed := Flag17 (N);
when F_Flag18 => Field_To_Be_Printed := Flag18 (N);
end case;
-- Print field if it is to be printed
if Field_To_Be_Printed then
Print_Str (Prefix_Str_Char);
while P < Pchar_Pos (Node_Kind'Succ (Nkind (N)))
and then Pchars (P) not in Fchar
loop
Print_Char (Pchars (P));
P := P + 1;
end loop;
Print_Str (" = ");
case F is
when F_Field1 => Print_Field (Field1 (N), Fmt);
when F_Field2 => Print_Field (Field2 (N), Fmt);
when F_Field3 => Print_Field (Field3 (N), Fmt);
when F_Field4 => Print_Field (Field4 (N), Fmt);
-- Special case End_Span = Uint5
when F_Field5 =>
if Nkind_In (N, N_Case_Statement, N_If_Statement) then
Print_End_Span (N);
else
Print_Field (Field5 (N), Fmt);
end if;
when F_Flag1 => Print_Flag (Flag1 (N));
when F_Flag2 => Print_Flag (Flag2 (N));
when F_Flag3 => Print_Flag (Flag3 (N));
when F_Flag4 => Print_Flag (Flag4 (N));
when F_Flag5 => Print_Flag (Flag5 (N));
when F_Flag6 => Print_Flag (Flag6 (N));
when F_Flag7 => Print_Flag (Flag7 (N));
when F_Flag8 => Print_Flag (Flag8 (N));
when F_Flag9 => Print_Flag (Flag9 (N));
when F_Flag10 => Print_Flag (Flag10 (N));
when F_Flag11 => Print_Flag (Flag11 (N));
when F_Flag12 => Print_Flag (Flag12 (N));
when F_Flag13 => Print_Flag (Flag13 (N));
when F_Flag14 => Print_Flag (Flag14 (N));
when F_Flag15 => Print_Flag (Flag15 (N));
when F_Flag16 => Print_Flag (Flag16 (N));
when F_Flag17 => Print_Flag (Flag17 (N));
when F_Flag18 => Print_Flag (Flag18 (N));
end case;
Print_Eol;
-- Field is not to be printed (False flag field)
else
while P < Pchar_Pos (Node_Kind'Succ (Nkind (N)))
and then Pchars (P) not in Fchar
loop
P := P + 1;
end loop;
end if;
end loop;
-- Print aspects if present
if Has_Aspects (N) then
Print_Str (Prefix_Str_Char);
Print_Str ("Aspect_Specifications = ");
Print_Field (Union_Id (Aspect_Specifications (N)));
Print_Eol;
end if;
-- Print entity information for entities
if Nkind (N) in N_Entity then
Print_Entity_Info (N, Prefix_Str_Char);
end if;
-- Print the SCIL node (if available)
if Present (Get_SCIL_Node (N)) then
Print_Str (Prefix_Str_Char);
Print_Str ("SCIL_Node = ");
Print_Node_Ref (Get_SCIL_Node (N));
Print_Eol;
end if;
end Print_Node;
------------------------
-- Print_Node_Briefly --
------------------------
procedure Print_Node_Briefly (N : Node_Id) is
begin
Printing_Descendants := False;
Phase := Printing;
Print_Node_Header (N);
end Print_Node_Briefly;
-----------------------
-- Print_Node_Header --
-----------------------
procedure Print_Node_Header (N : Node_Id) is
Enumerate : Boolean := False;
-- Flag set when enumerating multiple header flags
procedure Print_Header_Flag (Flag : String);
-- Output one of the flags that appears in a node header. The routine
-- automatically handles enumeration of multiple flags.
-----------------------
-- Print_Header_Flag --
-----------------------
procedure Print_Header_Flag (Flag : String) is
begin
if Enumerate then
Print_Char (',');
else
Enumerate := True;
Print_Char ('(');
end if;
Print_Str (Flag);
end Print_Header_Flag;
-- Start of processing for Print_Node_Header
begin
Print_Node_Ref (N);
if N > Atree_Private_Part.Nodes.Last then
Print_Str (" (no such node)");
Print_Eol;
return;
end if;
Print_Char (' ');
if Comes_From_Source (N) then
Print_Header_Flag ("source");
end if;
if Analyzed (N) then
Print_Header_Flag ("analyzed");
end if;
if Error_Posted (N) then
Print_Header_Flag ("posted");
end if;
if Is_Ignored_Ghost_Node (N) then
Print_Header_Flag ("ignored ghost");
end if;
if Check_Actuals (N) then
Print_Header_Flag ("check actuals");
end if;
if Enumerate then
Print_Char (')');
end if;
Print_Eol;
end Print_Node_Header;
---------------------
-- Print_Node_Kind --
---------------------
procedure Print_Node_Kind (N : Node_Id) is
Ucase : Boolean;
S : constant String := Node_Kind'Image (Nkind (N));
begin
if Phase = Printing then
Ucase := True;
-- Note: the call to Fold_Upper in this loop is to get past the GNAT
-- bug of 'Image returning lower case instead of upper case.
for J in S'Range loop
if Ucase then
Write_Char (Fold_Upper (S (J)));
else
Write_Char (Fold_Lower (S (J)));
end if;
Ucase := (S (J) = '_');
end loop;
end if;
end Print_Node_Kind;
--------------------
-- Print_Node_Ref --
--------------------
procedure Print_Node_Ref (N : Node_Id) is
S : Nat;
begin
if Phase /= Printing then
return;
end if;
if N = Empty then
Write_Str ("<empty>");
elsif N = Error then
Write_Str ("<error>");
else
if Printing_Descendants then
S := Serial_Number (Int (N));
if S /= 0 then
Write_Str ("Node");
Write_Str (" #");
Write_Int (S);
Write_Char (' ');
end if;
end if;
Print_Node_Kind (N);
if Nkind (N) in N_Has_Chars then
Write_Char (' ');
Print_Name (Chars (N));
end if;
if Nkind (N) in N_Entity then
Write_Str (" (Entity_Id=");
else
Write_Str (" (Node_Id=");
end if;
Write_Int (Int (N));
if Sloc (N) <= Standard_Location then
Write_Char ('s');
end if;
Write_Char (')');
end if;
end Print_Node_Ref;
------------------------
-- Print_Node_Subtree --
------------------------
procedure Print_Node_Subtree (N : Node_Id) is
begin
Print_Init;
Next_Serial_Number := 1;
Phase := Marking;
Visit_Node (N, "", ' ');
Next_Serial_Number := 1;
Phase := Printing;
Visit_Node (N, "", ' ');
Print_Term;
end Print_Node_Subtree;
---------------
-- Print_Str --
---------------
procedure Print_Str (S : String) is
begin
if Phase = Printing then
Write_Str (S);
end if;
end Print_Str;
--------------------------
-- Print_Str_Mixed_Case --
--------------------------
procedure Print_Str_Mixed_Case (S : String) is
Ucase : Boolean;
begin
if Phase = Printing then
Ucase := True;
for J in S'Range loop
if Ucase then
Write_Char (S (J));
else
Write_Char (Fold_Lower (S (J)));
end if;
Ucase := (S (J) = '_');
end loop;
end if;
end Print_Str_Mixed_Case;
----------------
-- Print_Term --
----------------
procedure Print_Term is
procedure Free is new Unchecked_Deallocation
(Hash_Table_Type, Access_Hash_Table_Type);
begin
Free (Hash_Table);
end Print_Term;
---------------------
-- Print_Tree_Elist --
---------------------
procedure Print_Tree_Elist (E : Elist_Id) is
M : Elmt_Id;
begin
Printing_Descendants := False;
Phase := Printing;
Print_Elist_Ref (E);
Print_Eol;
if Present (E) and then not Is_Empty_Elmt_List (E) then
M := First_Elmt (E);
loop
Print_Char ('|');
Print_Eol;
exit when No (Next_Elmt (M));
Print_Node (Node (M), "", '|');
Next_Elmt (M);
end loop;
Print_Node (Node (M), "", ' ');
Print_Eol;
end if;
end Print_Tree_Elist;
---------------------
-- Print_Tree_List --
---------------------
procedure Print_Tree_List (L : List_Id) is
N : Node_Id;
begin
Printing_Descendants := False;
Phase := Printing;
Print_List_Ref (L);
Print_Str (" List_Id=");
Print_Int (Int (L));
Print_Eol;
N := First (L);
if N = Empty then
Print_Str ("<empty node list>");
Print_Eol;
else
loop
Print_Char ('|');
Print_Eol;
exit when Next (N) = Empty;
Print_Node (N, "", '|');
Next (N);
end loop;
Print_Node (N, "", ' ');
Print_Eol;
end if;
end Print_Tree_List;
---------------------
-- Print_Tree_Node --
---------------------
procedure Print_Tree_Node (N : Node_Id; Label : String := "") is
begin
Printing_Descendants := False;
Phase := Printing;
Print_Node (N, Label, ' ');
end Print_Tree_Node;
--------
-- pt --
--------
procedure pt (N : Union_Id) is
begin
case N is
when List_Low_Bound .. List_High_Bound - 1 =>
Print_List_Subtree (List_Id (N));
when Node_Range =>
Print_Node_Subtree (Node_Id (N));
when Elist_Range =>
Print_Elist_Subtree (Elist_Id (N));
when others =>
pp (N);
end case;
end pt;
-------------------
-- Serial_Number --
-------------------
-- The hashing algorithm is to use the remainder of the ID value divided
-- by the hash table length as the starting point in the table, and then
-- handle collisions by serial searching wrapping at the end of the table.
Hash_Slot : Nat;
-- Set by an unsuccessful call to Serial_Number (one which returns zero)
-- to save the slot that should be used if Set_Serial_Number is called.
function Serial_Number (Id : Int) return Nat is
H : Int := Id mod Hash_Table_Len;
begin
while Hash_Table (H).Serial /= 0 loop
if Id = Hash_Table (H).Id then
return Hash_Table (H).Serial;
end if;
H := H + 1;
if H > Hash_Table'Last then
H := 0;
end if;
end loop;
-- Entry was not found, save slot number for possible subsequent call
-- to Set_Serial_Number, and unconditionally save the Id in this slot
-- in case of such a call (the Id field is never read if the serial
-- number of the slot is zero, so this is harmless in the case where
-- Set_Serial_Number is not subsequently called).
Hash_Slot := H;
Hash_Table (H).Id := Id;
return 0;
end Serial_Number;
-----------------------
-- Set_Serial_Number --
-----------------------
procedure Set_Serial_Number is
begin
Hash_Table (Hash_Slot).Serial := Next_Serial_Number;
Next_Serial_Number := Next_Serial_Number + 1;
end Set_Serial_Number;
---------------
-- Tree_Dump --
---------------
procedure Tree_Dump is
procedure Underline;
-- Put underline under string we just printed
procedure Underline is
Col : constant Int := Column;
begin
Write_Eol;
while Col > Column loop
Write_Char ('-');
end loop;
Write_Eol;
end Underline;
-- Start of processing for Tree_Dump. Note that we turn off the tree dump
-- flags immediately, before starting the dump. This avoids generating two
-- copies of the dump if an abort occurs after printing the dump, and more
-- importantly, avoids an infinite loop if an abort occurs during the dump.
-- Note: unlike in the source print case (in Sprint), we do not output
-- separate trees for each unit. Instead the -df debug switch causes the
-- tree that is output from the main unit to trace references into other
-- units (normally such references are not traced). Since all other units
-- are linked to the main unit by at least one reference, this causes all
-- tree nodes to be included in the output tree.
begin
if Debug_Flag_Y then
Debug_Flag_Y := False;
Write_Eol;
Write_Str ("Tree created for Standard (spec) ");
Underline;
Print_Node_Subtree (Standard_Package_Node);
Write_Eol;
end if;
if Debug_Flag_T then
Debug_Flag_T := False;
Write_Eol;
Write_Str ("Tree created for ");
Write_Unit_Name (Unit_Name (Main_Unit));
Underline;
Print_Node_Subtree (Cunit (Main_Unit));
Write_Eol;
end if;
end Tree_Dump;
-----------------
-- Visit_Elist --
-----------------
procedure Visit_Elist (E : Elist_Id; Prefix_Str : String) is
M : Elmt_Id;
N : Node_Id;
S : constant Nat := Serial_Number (Int (E));
begin
-- In marking phase, return if already marked, otherwise set next
-- serial number in hash table for later reference.
if Phase = Marking then
if S /= 0 then
return; -- already visited
else
Set_Serial_Number;
end if;
-- In printing phase, if already printed, then return, otherwise we
-- are printing the next item, so increment the serial number.
else
if S < Next_Serial_Number then
return; -- already printed
else
Next_Serial_Number := Next_Serial_Number + 1;
end if;
end if;
-- Now process the list (Print calls have no effect in marking phase)
Print_Str (Prefix_Str);
Print_Elist_Ref (E);
Print_Eol;
if Is_Empty_Elmt_List (E) then
Print_Str (Prefix_Str);
Print_Str ("(Empty element list)");
Print_Eol;
Print_Eol;
else
if Phase = Printing then
M := First_Elmt (E);
while Present (M) loop
N := Node (M);
Print_Str (Prefix_Str);
Print_Str (" ");
Print_Node_Ref (N);
Print_Eol;
Next_Elmt (M);
end loop;
Print_Str (Prefix_Str);
Print_Eol;
end if;
M := First_Elmt (E);
while Present (M) loop
Visit_Node (Node (M), Prefix_Str, ' ');
Next_Elmt (M);
end loop;
end if;
end Visit_Elist;
----------------
-- Visit_List --
----------------
procedure Visit_List (L : List_Id; Prefix_Str : String) is
N : Node_Id;
S : constant Nat := Serial_Number (Int (L));
begin
-- In marking phase, return if already marked, otherwise set next
-- serial number in hash table for later reference.
if Phase = Marking then
if S /= 0 then
return;
else
Set_Serial_Number;
end if;
-- In printing phase, if already printed, then return, otherwise we
-- are printing the next item, so increment the serial number.
else
if S < Next_Serial_Number then
return; -- already printed
else
Next_Serial_Number := Next_Serial_Number + 1;
end if;
end if;
-- Now process the list (Print calls have no effect in marking phase)
Print_Str (Prefix_Str);
Print_List_Ref (L);
Print_Eol;
Print_Str (Prefix_Str);
Print_Str ("|Parent = ");
Print_Node_Ref (Parent (L));
Print_Eol;
N := First (L);
if N = Empty then
Print_Str (Prefix_Str);
Print_Str ("(Empty list)");
Print_Eol;
Print_Eol;
else
Print_Str (Prefix_Str);
Print_Char ('|');
Print_Eol;
while Next (N) /= Empty loop
Visit_Node (N, Prefix_Str, '|');
Next (N);
end loop;
end if;
Visit_Node (N, Prefix_Str, ' ');
end Visit_List;
----------------
-- Visit_Node --
----------------
procedure Visit_Node
(N : Node_Id;
Prefix_Str : String;
Prefix_Char : Character)
is
New_Prefix : String (Prefix_Str'First .. Prefix_Str'Last + 2);
-- Prefix string for printing referenced fields
procedure Visit_Descendant
(D : Union_Id;
No_Indent : Boolean := False);
-- This procedure tests the given value of one of the Fields referenced
-- by the current node to determine whether to visit it recursively.
-- Normally No_Indent is false, which means that the visited node will
-- be indented using New_Prefix. If No_Indent is set to True, then
-- this indentation is skipped, and Prefix_Str is used for the call
-- to print the descendant. No_Indent is effective only if the
-- referenced descendant is a node.
----------------------
-- Visit_Descendant --
----------------------
procedure Visit_Descendant
(D : Union_Id;
No_Indent : Boolean := False)
is
begin
-- Case of descendant is a node
if D in Node_Range then
-- Don't bother about Empty or Error descendants
if D <= Union_Id (Empty_Or_Error) then
return;
end if;
declare
Nod : constant Node_Or_Entity_Id := Node_Or_Entity_Id (D);
begin
-- Descendants in one of the standardly compiled internal
-- packages are normally ignored, unless the parent is also
-- in such a package (happens when Standard itself is output)
-- or if the -df switch is set which causes all links to be
-- followed, even into package standard.
if Sloc (Nod) <= Standard_Location then
if Sloc (N) > Standard_Location
and then not Debug_Flag_F
then
return;
end if;
-- Don't bother about a descendant in a different unit than
-- the node we came from unless the -df switch is set. Note
-- that we know at this point that Sloc (D) > Standard_Location
-- Note: the tests for No_Location here just make sure that we
-- don't blow up on a node which is missing an Sloc value. This
-- should not normally happen.
else
if (Sloc (N) <= Standard_Location
or else Sloc (N) = No_Location
or else Sloc (Nod) = No_Location
or else not In_Same_Source_Unit (Nod, N))
and then not Debug_Flag_F
then
return;
end if;
end if;
-- Don't bother visiting a source node that has a parent which
-- is not the node we came from. We prefer to trace such nodes
-- from their real parents. This causes the tree to be printed
-- in a more coherent order, e.g. a defining identifier listed
-- next to its corresponding declaration, instead of next to
-- some semantic reference.
-- This test is skipped for nodes in standard packages unless
-- the -dy option is set (which outputs the tree for standard)
-- Also, always follow pointers to Is_Itype entities,
-- since we want to list these when they are first referenced.
if Parent (Nod) /= Empty
and then Comes_From_Source (Nod)
and then Parent (Nod) /= N
and then (Sloc (N) > Standard_Location or else Debug_Flag_Y)
then
return;
end if;
-- If we successfully fall through all the above tests (which
-- execute a return if the node is not to be visited), we can
-- go ahead and visit the node.
if No_Indent then
Visit_Node (Nod, Prefix_Str, Prefix_Char);
else
Visit_Node (Nod, New_Prefix, ' ');
end if;
end;
-- Case of descendant is a list
elsif D in List_Range then
-- Don't bother with a missing list, empty list or error list
pragma Assert (D /= Union_Id (No_List));
-- Because No_List = Empty, which is in Node_Range above
if D = Union_Id (Error_List)
or else Is_Empty_List (List_Id (D))
then
return;
-- Otherwise we can visit the list. Note that we don't bother to
-- do the parent test that we did for the node case, because it
-- just does not happen that lists are referenced more than one
-- place in the tree. We aren't counting on this being the case
-- to generate valid output, it is just that we don't need in
-- practice to worry about listing the list at a place that is
-- inconvenient.
else
Visit_List (List_Id (D), New_Prefix);
end if;
-- Case of descendant is an element list
elsif D in Elist_Range then
-- Don't bother with a missing list, or an empty list
if D = Union_Id (No_Elist)
or else Is_Empty_Elmt_List (Elist_Id (D))
then
return;
-- Otherwise, visit the referenced element list
else
Visit_Elist (Elist_Id (D), New_Prefix);
end if;
-- For all other kinds of descendants (strings, names, uints etc),
-- there is nothing to visit (the contents of the field will be
-- printed when we print the containing node, but what concerns
-- us now is looking for descendants in the tree.
else
null;
end if;
end Visit_Descendant;
-- Start of processing for Visit_Node
begin
if N = Empty then
return;
end if;
-- Set fatal error node in case we get a blow up during the trace
Current_Error_Node := N;
New_Prefix (Prefix_Str'Range) := Prefix_Str;
New_Prefix (Prefix_Str'Last + 1) := Prefix_Char;
New_Prefix (Prefix_Str'Last + 2) := ' ';
-- In the marking phase, all we do is to set the serial number
if Phase = Marking then
if Serial_Number (Int (N)) /= 0 then
return; -- already visited
else
Set_Serial_Number;
end if;
-- In the printing phase, we print the node
else
if Serial_Number (Int (N)) < Next_Serial_Number then
-- Here we have already visited the node, but if it is in a list,
-- we still want to print the reference, so that it is clear that
-- it belongs to the list.
if Is_List_Member (N) then
Print_Str (Prefix_Str);
Print_Node_Ref (N);
Print_Eol;
Print_Str (Prefix_Str);
Print_Char (Prefix_Char);
Print_Str ("(already output)");
Print_Eol;
Print_Str (Prefix_Str);
Print_Char (Prefix_Char);
Print_Eol;
end if;
return;
else
Print_Node (N, Prefix_Str, Prefix_Char);
Print_Str (Prefix_Str);
Print_Char (Prefix_Char);
Print_Eol;
Next_Serial_Number := Next_Serial_Number + 1;
end if;
end if;
-- Visit all descendants of this node
if Nkind (N) not in N_Entity then
Visit_Descendant (Field1 (N));
Visit_Descendant (Field2 (N));
Visit_Descendant (Field3 (N));
Visit_Descendant (Field4 (N));
Visit_Descendant (Field5 (N));
if Has_Aspects (N) then
Visit_Descendant (Union_Id (Aspect_Specifications (N)));
end if;
-- Entity case
else
Visit_Descendant (Field1 (N));
Visit_Descendant (Field3 (N));
Visit_Descendant (Field4 (N));
Visit_Descendant (Field5 (N));
Visit_Descendant (Field6 (N));
Visit_Descendant (Field7 (N));
Visit_Descendant (Field8 (N));
Visit_Descendant (Field9 (N));
Visit_Descendant (Field10 (N));
Visit_Descendant (Field11 (N));
Visit_Descendant (Field12 (N));
Visit_Descendant (Field13 (N));
Visit_Descendant (Field14 (N));
Visit_Descendant (Field15 (N));
Visit_Descendant (Field16 (N));
Visit_Descendant (Field17 (N));
Visit_Descendant (Field18 (N));
Visit_Descendant (Field19 (N));
Visit_Descendant (Field20 (N));
Visit_Descendant (Field21 (N));
Visit_Descendant (Field22 (N));
Visit_Descendant (Field23 (N));
-- Now an interesting special case. Normally parents are always
-- printed since we traverse the tree in a downwards direction.
-- However, there is an exception to this rule, which is the
-- case where a parent is constructed by the compiler and is not
-- referenced elsewhere in the tree. The following catches this case.
if not Comes_From_Source (N) then
Visit_Descendant (Union_Id (Parent (N)));
end if;
-- You may be wondering why we omitted Field2 above. The answer
-- is that this is the Next_Entity field, and we want to treat
-- it rather specially. Why? Because a Next_Entity link does not
-- correspond to a level deeper in the tree, and we do not want
-- the tree to march off to the right of the page due to bogus
-- indentations coming from this effect.
-- To prevent this, what we do is to control references via
-- Next_Entity only from the first entity on a given scope chain,
-- and we keep them all at the same level. Of course if an entity
-- has already been referenced it is not printed.
if Present (Next_Entity (N))
and then Present (Scope (N))
and then First_Entity (Scope (N)) = N
then
declare
Nod : Node_Id;
begin
Nod := N;
while Present (Nod) loop
Visit_Descendant (Union_Id (Next_Entity (Nod)));
Nod := Next_Entity (Nod);
end loop;
end;
end if;
end if;
end Visit_Node;
end Treepr;
|