libadalang_tools_22.0.0_c9028428/src/laltools-refactor-safe_rename.adb

   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
------------------------------------------------------------------------------
--                                                                          --
--                             Libadalang Tools                             --
--                                                                          --
--                       Copyright (C) 2021, AdaCore                        --
--                                                                          --
-- Libadalang Tools  is free software; you can redistribute it and/or modi- --
-- fy  it  under  terms of the  GNU General Public License  as published by --
-- the Free Software Foundation;  either version 3, or (at your option) any --
-- later version. This software  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.                  --
--                                                                          --
-- As a special  exception  under  Section 7  of  GPL  version 3,  you are  --
-- granted additional  permissions described in the  GCC  Runtime  Library  --
-- Exception, version 3.1, as published by the Free Software Foundation.    --
--                                                                          --
-- You should have received a copy of the GNU General Public License and a  --
-- copy of the GCC Runtime Library Exception along with this program;  see  --
-- the files COPYING3 and COPYING.RUNTIME respectively.  If not, see        --
-- <http://www.gnu.org/licenses/>.                                          --
------------------------------------------------------------------------------

with Ada.Assertions; use Ada.Assertions;

with Ada.Characters.Handling; use Ada.Characters.Handling;
with Ada.Characters.Latin_1; use Ada.Characters.Latin_1;

with Ada.Containers.Vectors;

with Ada.Directories; use Ada.Directories;

with Ada.Strings; use Ada.Strings;
with Ada.Strings.Unbounded; use Ada.Strings.Unbounded;
with Ada.Strings.Unbounded.Text_IO; use Ada.Strings.Unbounded.Text_IO;
with Ada.Strings.UTF_Encoding; use Ada.Strings.UTF_Encoding;

with Ada.Text_IO; use Ada.Text_IO;

with Libadalang.Common; use Libadalang.Common;

package body Laltools.Refactor.Safe_Rename is

   function "+"
     (T : Text_Type)
      return Unbounded_Text_Type renames To_Unbounded_Text;
   function "+" (Text : Text_Type) return UTF_8_String renames To_UTF8;
   function "+" (UT : Unbounded_Text_Type) return Text_Type renames To_Text;
   function "+"
     (Source : String)
      return Unbounded_String renames To_Unbounded_String;

   function Equivalent_Parameter_Mode (L, R : Ada_Mode) return Boolean is
      (L = R
       or else (L = Ada_Mode_In and then R = Ada_Mode_Default)
       or else (L = Ada_Mode_Default and then R = Ada_Mode_In));
   --  Returns True if L and R are the same or if both are either Ada_Mode_In
   --  or Ada_Mode_Default.

   --  Data type used to compared subprogram signatures
   --  The type definition of a parameter cannot be stored as an Ada_Node
   --  since the equality comparision between the same node with and
   --  without generic context will result False. Their have however, is
   --  the same.

   type Parameter_Data is
      record
         Has_Aliased          : Boolean;
         Mode                 : Ada_Mode;
         Type_Definition_Hash : Ada.Containers.Hash_Type;
      end record;

   function Equivalent_Parameter_Data
     (L, R : Parameter_Data)
      return Boolean;
   --  Returns True if L and R are the same, using the
   --  Equivalent_Parameter_Mode function to evaluate the equality of the Mode
   --  component.

   package Parameter_Data_Vectors is new Ada.Containers.Vectors
     (Index_Type   => Natural,
      Element_Type => Parameter_Data,
      "="          => Equivalent_Parameter_Data);

   subtype Parameter_Data_Vector is Parameter_Data_Vectors.Vector;

   function Create_Parameter_Data_Vector
     (Parameters : Params)
      return Parameter_Data_Vector;
   --  Creates a vector with the Parameter_Data of each parameter of
   --  Parameters.

   function Are_Subprograms_Type_Conformant
     (Subp_A      : Basic_Decl'Class;
      Subp_B      : Basic_Decl'Class;
      Check_Modes : Boolean := False)
      return Boolean;
   --  Checks if Subp_A and Subp_B are type conformant. Check_Modes is a flag
   --  that defines in the mode of each parameter is also checked. In such
   --  check, In and Default mode are considered the same.

   function Check_Rename_Conflict
     (New_Name : Unbounded_Text_Type;
      Target   : Defining_Name'Class)
      return Boolean is (Target.F_Name.Text = To_Text (New_Name))
     with Pre => Target /= No_Defining_Name;
   --  Checks if Target's name is equal to New_Name
   --  FIXME: Do a case insensitive comparison

   function Check_Subp_Rename_Conflict
     (Subp_A   : Basic_Decl'Class;
      New_Name : Unbounded_Text_Type;
      Subp_B   : Basic_Decl'Class)
      return Boolean
     with Pre => (Is_Subprogram (Subp_A) or else Subp_A.Kind
                    in Ada_Generic_Subp_Instantiation_Range)
                 and then (Is_Subprogram (Subp_B) or else
                             Subp_B.Kind in
                               Ada_Generic_Subp_Instantiation_Range);
   --  Checks if renaming Subp_A to New_Name causes a conflict with Subp_B.
   --  This includes checking if both subprograms are type conformant.
   --  FIXME: Do a case insensitive comparison.

   procedure Initialize_Unit_Slocs_Maps
     (Unit_References      : out Unit_Slocs_Maps.Map;
      Canonical_Definition : Defining_Name;
      References           : Base_Id_Vectors.Vector);
   --  Unitializes Unit_References with Canonical_Definition own reference
   --  and with all its references given by References.

   ---------
   -- "<" --
   ---------

   function "<" (Left, Right : Source_Location_Range)
                 return Boolean is
   begin
      if Left.Start_Line = Right.Start_Line then
         return Left.Start_Column < Right.Start_Column;
      else
         return Left.Start_Line < Right.Start_Line;
      end if;
   end "<";

   -------------------------------------
   -- Are_Subprograms_Type_Conformant --
   -------------------------------------

   function Are_Subprograms_Type_Conformant
     (Subp_A      : Basic_Decl'Class;
      Subp_B      : Basic_Decl'Class;
      Check_Modes : Boolean := False)
      return Boolean
   is
      Subp_A_Spec : constant Base_Subp_Spec := Get_Subp_Spec (Subp_A);
      Subp_B_Spec : constant Base_Subp_Spec := Get_Subp_Spec (Subp_B);

      Subp_A_Params : constant Params :=
        (if not Subp_A_Spec.Is_Null then Get_Subp_Spec_Params (Subp_A_Spec)
         else No_Params);
      Subp_B_Params : constant Params :=
        (if not Subp_A_Spec.Is_Null then Get_Subp_Spec_Params (Subp_B_Spec)
         else No_Params);

      Both_Specs_Not_Null : constant Boolean :=
        not Subp_A_Spec.Is_Null and then not Subp_B_Spec.Is_Null;

      Both_Entry_Decls : constant Boolean :=
        (Both_Specs_Not_Null
         and then Subp_A_Spec.Kind in Ada_Entry_Spec_Range
         and then Subp_B_Spec.Kind in Ada_Entry_Spec_Range);

      Both_Normal_Subps_Decls : constant Boolean :=
        (not Both_Entry_Decls
         and then Both_Specs_Not_Null
         and then Subp_A_Spec.Kind in Ada_Subp_Spec_Range
         and then Subp_B_Spec.Kind in Ada_Subp_Spec_Range);

      Both_Procedures : constant Boolean :=
        (Both_Normal_Subps_Decls
         and then Subp_A_Spec.As_Subp_Spec.F_Subp_Kind in
           Ada_Subp_Kind_Procedure_Range
         and then Subp_B_Spec.As_Subp_Spec.F_Subp_Kind in
           Ada_Subp_Kind_Procedure_Range);

      Both_Functions : constant Boolean :=
        (Both_Normal_Subps_Decls
         and then Subp_A_Spec.As_Subp_Spec.F_Subp_Kind in
           Ada_Subp_Kind_Function_Range
         and then Subp_B_Spec.As_Subp_Spec.F_Subp_Kind in
           Ada_Subp_Kind_Function_Range);

      Both_Params_Null : constant Boolean :=
        Subp_A_Params.Is_Null and then Subp_B_Params.Is_Null;

      Only_One_Params_Null : constant Boolean :=
        Subp_A_Params.Is_Null xor Subp_B_Params.Is_Null;

      package Hash_Vectors is new Ada.Containers.Vectors
        (Index_Type   => Natural,
         Element_Type => Ada.Containers.Hash_Type);

      subtype Hash_Vector is Hash_Vectors.Vector;

      function Create_Hash_Vector
        (Parameters : Params)
         return Hash_Vector;
      --  Creates a vector with the hash of the type declaration of each
      --  parameter of Parameters.

      ------------------------
      -- Create_Hash_Vector --
      ------------------------

      function Create_Hash_Vector (Parameters : Params)
                                   return Hash_Vector
      is
         Param_Type_Hash : Hash_Type;

      begin
         return Hashes : Hash_Vector do
            if not Parameters.Is_Null then
               for Param_Spec of Parameters.F_Params loop
                  Param_Type_Hash :=
                    Hash (Param_Spec.F_Type_Expr.P_Designated_Type_Decl.
                            As_Ada_Node);

                  for Unsued_Id of Param_Spec.F_Ids loop
                     Hashes.Append (Param_Type_Hash);
                  end loop;
               end loop;
            end if;
         end return;
      end Create_Hash_Vector;

      use type Hash_Vectors.Vector;
      use type Parameter_Data_Vectors.Vector;

   begin
      --  If any of the subprograms does not have a spec, then this a malformed
      --  tree. Do not detect collisions on this case, hence, return False.
      --  Consider two subprograms of different kinds as non type conformant.

      if not Both_Specs_Not_Null
        or else (not Both_Entry_Decls
                 and then not Both_Procedures
                 and then not Both_Functions)
      then
         return False;
      end if;

      --  At this point we know that:
      --    * both subprogram specs are not null
      --    * both subprograms are of the same kind
      --  If they do not have parameters, then:
      --    * if they're both procedures or entry decls, then they're type
      --      conformant
      --    * otherwise, they must both be functions and if they have different
      --      return types, then they're not type conformant
      --  If only one has parameters, then they're not type conformant.

      if Both_Params_Null then
         if Both_Procedures or else Both_Entry_Decls then
            return True;
         else
            Assert (Both_Functions);
            if Hash (Subp_A_Spec.As_Subp_Spec.P_Return_Type.As_Ada_Node) /=
                 Hash (Subp_B_Spec.As_Subp_Spec.P_Return_Type.As_Ada_Node)
            then
               return False;
            end if;
         end if;
      elsif Only_One_Params_Null then
         return False;
      end if;

      --  At this point we know that:
      --    * both subprogram specs are not null
      --    * both subprograms are of the same kind
      --    * both subprograms have parameters
      --    * if both subprogram are functions, they have the same return type
      --  The only thing left to check are their parameters.

      case Check_Modes is
         when True
            => return Create_Parameter_Data_Vector (Subp_A_Params) =
                        Create_Parameter_Data_Vector (Subp_B_Params);

         when False
            => return Create_Hash_Vector (Subp_A_Params) =
                        Create_Hash_Vector (Subp_B_Params);
      end case;
   end Are_Subprograms_Type_Conformant;

   --------------------------------
   -- Check_Subp_Rename_Conflict --
   --------------------------------

   function Check_Subp_Rename_Conflict
     (Subp_A   : Basic_Decl'Class;
      New_Name : Unbounded_Text_Type;
      Subp_B   : Basic_Decl'Class)
      return Boolean
   is
      Subp_B_Name : constant Text_Type := Subp_B.P_Defining_Name.F_Name.Text;

   begin
      if Subp_A = Subp_B or else Subp_B_Name /= To_Text (New_Name) then
         return False;
      end if;

      --  Subp_B name is the name as New_Name, therefore, we need to check if
      --  both subprograms are type conformant.
      return Are_Subprograms_Type_Conformant (Subp_A, Subp_B, False);
   end Check_Subp_Rename_Conflict;

   ----------------------------------
   -- Create_Parameter_Data_Vector --
   ----------------------------------

   function Create_Parameter_Data_Vector
     (Parameters : Params)
      return Parameter_Data_Vector is
   begin
      return Parameters_Data : Parameter_Data_Vector do
         if not Parameters.Is_Null then
            for Param_Spec of Parameters.F_Params loop
               for Parameter of Param_Spec.F_Ids loop
                  Parameters_Data.Append
                    (Parameter_Data'
                     (Has_Aliased          => Param_Spec.F_Has_Aliased,
                      Mode                 => Param_Spec.F_Mode.Kind,
                      Type_Definition_Hash => Hash
                       (Param_Spec.F_Type_Expr.P_Designated_Type_Decl.
                          As_Ada_Node)));
               end loop;
            end loop;
         end if;
      end return;
   end Create_Parameter_Data_Vector;

   -------------------------------
   -- Equivalent_Parameter_Data --
   -------------------------------

   function Equivalent_Parameter_Data
     (L, R : Parameter_Data)
      return Boolean
   is
      use type Ada.Containers.Hash_Type;
   begin
      return L.Has_Aliased = R.Has_Aliased
        and then Equivalent_Parameter_Mode (L.Mode, R.Mode)
        and then L.Type_Definition_Hash = R.Type_Definition_Hash;
   end Equivalent_Parameter_Data;

   ----------
   -- Diff --
   ----------

   procedure Diff
     (Self : in out Reference_Mapper)
   is
      Before : Unit_Slocs_Maps.Map renames Self.Original_References;
      After  : Unit_Slocs_Maps.Map renames Self.New_References;

      N_Char_Diff : constant Integer :=
        Length (Self.New_Name) - Length (Self.Original_Name);

      --  This map will contain the the references that were lost, i.e.,
      --  references that are found in Before but not in After.

      Minus : Unit_Slocs_Maps.Map := Before;

      --  This map will contain the the references that were gained, i.e.,
      --  references that are found in After but not in Before.

      Plus  : Unit_Slocs_Maps.Map := After;

      --  The top datastructure is a Unit_Slocs_Maps.Map which contains a
      --  Slocs_Maps.Map which contains a Slocs_Sets.Set. Therefore, three
      --  cursors are needed to navigate through the datastructure.

      C1 : Unit_Slocs_Maps.Cursor;
      C2 : Slocs_Maps.Cursor;
      C3 : Slocs_Sets.Cursor;

      --  The following three "Process" procedures navigate through Before
      --  and After looking for common Slocs. If a common Slocs is found then
      --  it is removed both from Minus and Plus. Since Minus was initialized
      --  as Before and Plus as After, Minus will contain the lost Slocs and
      --  Plus the gained ones.

      procedure Process_Slocs_Maps;
      --  Iterates through a Slocs_Maps.Map

      procedure Process_Slocs_Sets;
      --  Iterates through a Slocs_Sets.Set

      procedure Process_Slocs (Sloc_Index : Integer);
      --  Checks if a given Sloc of Before is found in After and if so, removes
      --  it from both Minus and Plus. Note that if the same line has multiple
      --  references, then they can have an offset between their Before Sloc
      --  and their After Sloc. This offset is cause because the length of
      --  Self.New_Name can be differente from the length of
      --  Self.Original_Name.

      -----------------------
      -- Process_Slocs_Map --
      -----------------------

      procedure Process_Slocs_Maps is
         use Unit_Slocs_Maps;
         use Slocs_Maps;

      begin
         C2 := Before.Constant_Reference (C1).First;

         while Has_Element (C2) loop
            if After.Constant_Reference (Key (C1)).Contains (Key (C2)) then
               Process_Slocs_Sets;

               --  If the element of the key given by C2 is empty (because all
               --  its Slocs were found in After) then delete this key.

               if Minus.Constant_Reference (Key (C1)).
                 Constant_Reference (Key (C2)).Length = 0
               then
                  Minus.Reference (Key (C1)).Delete (Key (C2));
               end if;

               --  If the element of the key given by C2 is empty (because
               --  Begore also has all its Slocs) then delete this key.

               if Plus.Constant_Reference (Key (C1)).
                 Constant_Reference (Key (C2)).Length = 0
               then
                  Plus.Reference (Key (C1)).Delete (Key (C2));
               end if;
            end if;

            Next (C2);
         end loop;
      end Process_Slocs_Maps;

      ------------------------
      -- Process_Slocs_Sets --
      ------------------------

      procedure Process_Slocs_Sets
      is
         use Unit_Slocs_Maps;
         use Slocs_Maps;
         use Slocs_Sets;

         Sloc_Index : Integer := 0;

      begin
         C3 := Before.Constant_Reference (C1).Constant_Reference (C2).First;

         while Has_Element (C3) loop
            Process_Slocs (Sloc_Index);
            Sloc_Index := Sloc_Index + 1;
            Next (C3);
         end loop;
      end Process_Slocs_Sets;

      -------------------
      -- Process_Slocs --
      -------------------

      procedure Process_Slocs (Sloc_Index : Integer)
      is
         use Unit_Slocs_Maps;
         use Slocs_Maps;
         use Slocs_Sets;

         --  Apply the offset to the Beforre Slocs

         Target_Start_Colum : constant Integer :=
           Integer (Element (C3).Start_Column) +  Sloc_Index * N_Char_Diff;
         Target_End_Column  : constant Integer :=
           Integer (Element (C3).End_Column) + (Sloc_Index + 1) * N_Char_Diff;

         Target_Sloc : constant Source_Location_Range :=
           (Start_Line   => Element (C3).Start_Line,
            End_Line     => Element (C3).End_Line,
            Start_Column => Column_Number (Target_Start_Colum),
            End_Column   => Column_Number (Target_End_Column));
      begin
         if After.Constant_Reference (Key (C1)).Constant_Reference (Key (C2))
           .Contains (Target_Sloc)
         then
            Minus.Reference (Key (C1)).Reference (Key (C2)).
              Delete (Element (C3));
            Plus.Reference (Key (C1)).Reference (Key (C2)).
              Delete (Target_Sloc);
         end if;
      end Process_Slocs;

      use Unit_Slocs_Maps;
      use type Ada.Containers.Count_Type;

   begin
      C1 := Before.First;

      while Has_Element (C1) loop
         if After.Contains (Key (C1)) then
            Process_Slocs_Maps;

            --  If the element of the key given by C1 is empty (because all
            --  its Slocs were found in After) then delete this key.

            if Minus.Element (Key (C1)).Length = 0 then
               Minus.Delete (Key (C1));
            end if;

            --  If the element of the key given by C1 is empty (because
            --  Begore also has all its Slocs) then delete this key.

            if Plus.Element (Key (C1)).Length = 0 then
               Plus.Delete (Key (C1));
            end if;
         end if;

         Next (C1);
      end loop;

      Self.References_Diff := (Minus, Plus);
   end Diff;

   -----------
   --  Find --
   -----------

   overriding
   function Find
     (Self : in out AST_Analyser)
      return Refactoring_Diagnotic_Vector
   is
      Problem_Finders : Specific_Rename_Problem_Finder_Vectors.Vector;
      Problems : Refactoring_Diagnotic_Vector;

   begin
      --  If we're renaming an enum literal, just check for collisions within
      --  the Enum_Literal_Decl_List.

      if Self.Canonical_Definition.Parent.Kind in Ada_Enum_Literal_Decl then
         Problem_Finders.Append
           (Enum_Name_Collision_Finder'
              (Canonical_Definition => Self.Canonical_Definition,
               New_Name             => Self.New_Name));

      else

         --  These are commons checks that need to happens independently of the
         --  kind of construct that we are renaming.

         Problem_Finders.Append
           (Name_Collision_Finder'
              (Canonical_Definition => Self.Canonical_Definition,
               New_Name             => Self.New_Name));
         Problem_Finders.Append
           (Collision_With_Compilation_Unit_Finder'
              (Units_Length         => Self.Units'Length,
               Canonical_Definition => Self.Canonical_Definition,
               New_Name             => Self.New_Name,
               Units                => Self.Units));
         Problem_Finders.Append
           (Name_Hiding_Finder'
              (Canonical_Definition => Self.Canonical_Definition,
               New_Name             => Self.New_Name));

         --  If we're trying to rename a subprogram, then check if this
         --  subprogram will collide with a compilation unit or if it will
         --  override another one.

         if Self.Canonical_Definition.P_Basic_Decl.Kind in
           Ada_Subp_Body | Ada_Subp_Decl
         then
            Problem_Finders.Append
              (Compilation_Unit_Collision_Finder'
                 (Units_Length         => Self.Units'Length,
                  Canonical_Definition => Self.Canonical_Definition,
                  New_Name             => Self.New_Name,
                  Units                => Self.Units));
            Problem_Finders.Append
              (Subp_Overriding_Finder'
                 (Canonical_Definition => Self.Canonical_Definition,
                  New_Name             => Self.New_Name));

            --  If we're trying to rename a package, then check if this package
            --  defines a compilation unit, and if so, look for conflicts with
            --  other compilation units.

         elsif Self.Canonical_Definition.P_Basic_Decl.Kind in
           Ada_Package_Decl
         then
            Problem_Finders.Append
              (Compilation_Unit_Collision_Finder'
                 (Units_Length         => Self.Units'Length,
                  Canonical_Definition => Self.Canonical_Definition,
                  New_Name             => Self.New_Name,
                  Units                => Self.Units));

            --  If we're trying to rename a subprogram parameter, then check if
            --  its subtype indication has the same name.

         elsif Self.Canonical_Definition.P_Basic_Decl.Kind in
           Ada_Param_Spec
         then
            Problem_Finders.Append
              (Param_Spec_Collision_Finder'
                 (Canonical_Definition => Self.Canonical_Definition,
                  New_Name             => Self.New_Name,
                  Reference            => No_Base_Id));
         end if;

         Problem_Finders.Append
           (Subtype_Indication_Collision_Finder'
              (Canonical_Definition => Self.Canonical_Definition,
               References           => Self.References,
               New_Name             => Self.New_Name));
         Problem_Finders.Append
           (Name_Hidden_Finder'
              (Canonical_Definition => Self.Canonical_Definition,
               References           => Self.References,
               New_Name             => Self.New_Name));
      end if;

      for Finder of Problem_Finders loop
         declare
            Problem : constant Rename_Problem'Class := Finder.Find;
         begin
            if Problem /= No_Rename_Problem then
               Problems.Append (Problem);
            end if;
         end;
      end loop;

      return Problems;
   end Find;

   -----------
   --  Find --
   -----------

   overriding
   function Find
     (Self : in out Reference_Mapper)
      return Refactoring_Diagnotic_Vector
   is
      function Create_Problems return Refactoring_Diagnotic_Vector;
      --  For every Sloc found in Self.References_Diff create either a
      --  Missing_Reference or New_Reference object and add it to a vector.

      ---------------------
      -- Create_Problems --
      ---------------------

      function Create_Problems return Refactoring_Diagnotic_Vector is
         use Unit_Slocs_Maps;
         C : Cursor;
      begin
         return Result : Refactoring_Diagnotic_Vector do
            --  Self.References_Diff.Minus contains all the references that
            --  would be lost.

            C := Self.References_Diff.Minus.First;

            while Has_Element (C) loop
               for Slocs_Set of
                 Constant_Reference (Self.References_Diff.Minus, C)
               loop
                  for Sloc of Slocs_Set loop
                     Result.Append
                       (Missing_Reference'
                          (Canonical_Definition => Self.Canonical_Definition,
                           New_Name             => Self.New_Name,
                           Conflicting_Id       =>
                             Lookup
                               (Node => Key (C).Root,
                                Sloc => Source_Location'
                                  (Line   => Sloc.Start_Line,
                                   Column => Sloc.Start_Column)).As_Name));
                  end loop;
               end loop;

               Next (C);
            end loop;

            --  Self.References_Diff.Plus contains all the references that
            --  would be gained.

            C := Self.References_Diff.Plus.First;

            while Has_Element (C) loop
               for Slocs_Set of
                 Constant_Reference (Self.References_Diff.Plus, C)
               loop
                  for Sloc of Slocs_Set loop
                     Result.Append
                       (New_Reference'
                          (Canonical_Definition => Self.Canonical_Definition,
                           New_Name             => Self.New_Name,
                           Conflicting_Id       =>
                             Lookup
                               (Node => Key (C).Root,
                                Sloc => Source_Location'
                                  (Line   => Sloc.Start_Line,
                                   Column => Sloc.Start_Column)).As_Name));
                  end loop;
               end loop;

               Next (C);
            end loop;
         end return;
      end Create_Problems;

   begin
      Self.Parse_Temporary_Buffers;
      Initialize_Unit_Slocs_Maps
        (Self.New_References,
         Self.Canonical_Definition,
         Find_All_References_For_Renaming
           (Self.Canonical_Definition, Self.Units));
      Self.Diff;
      Self.Parse_Original_Buffers;

      return Create_Problems;
   end Find;

   -----------
   --  Find --
   -----------

   overriding
   function Find
     (Self : Name_Collision_Finder)
      return Rename_Problem'Class
   is
      Canonical_Decl : constant Basic_Decl :=
        Self.Canonical_Definition.P_Basic_Decl;

      Local_Scopes : constant Ada_List_Vector :=
        Find_Local_Scopes (Canonical_Decl);

      --  If Self.Canonical_Definition is associated to a subprogram, then its
      --  spec is needed to check for collisions with other subprograms.

      Is_Subp : constant Boolean :=
        Is_Subprogram (Canonical_Decl)
        or else Canonical_Decl.Kind in Ada_Generic_Subp_Instantiation_Range;

      Canonical_Subp_Spec : constant Base_Subp_Spec :=
        (if Is_Subp then Get_Subp_Spec (Canonical_Decl)
         else No_Base_Subp_Spec);

      function Check_Rename_Conflicts
        (Scope : Ada_List'Class)
         return Defining_Name
        with Pre => not Scope.Is_Null
                    and then Scope.Kind in Ada_Ada_Node_List
                                             | Ada_Basic_Decl_List;
      --  For every declaration of Scope, checks if it has the same name
      --  as Self.New_Name. If so, return a the Defining_Name of the
      --  conflicting declaration.

      function Check_Subp_Rename_Conflicts
        (Scope : Ada_List'Class)
         return Defining_Name;
      --  For every declaration of Scope, checks if it has the same
      --  name as Self.New_Name. Also checks if such declaration is a
      --  subprogram as if so, calls Check_Subp_Rename_Conflict to check
      --  if both are type conformant (i.e., if they have the same signature).

      function Process_Scope
        (Scope : Ada_List'Class)
         return Defining_Name;
      --  If Canonical_Decl is a subprogram, then delegates to
      --  Check_Subp_Rename_Conflicts, otherwise, to Check_Rename_Conflicts.

      ----------------------------
      -- Check_Rename_Conflicts --
      ----------------------------

      function Check_Rename_Conflicts
        (Scope : Ada_List'Class)
         return Defining_Name
      is
         Result : Defining_Name := No_Defining_Name;

         function Visit (Node : Ada_Node'Class) return Visit_Status;
         --  Checks if Node is a conflict, and if so, sets Result to it,
         --  stopping the iterative process.

         -----------
         -- Visit --
         -----------

         function Visit (Node : Ada_Node'Class) return Visit_Status is
         begin
            if Node.Kind in Ada_Basic_Decl then
               for Definition of Node.As_Basic_Decl.P_Defining_Names loop
                  if Check_Rename_Conflict (Self.New_Name, Definition) then
                     Result := Definition;
                     return Stop;
                  end if;
               end loop;
            end if;

            return (if Node = Scope then Into else Over);
         end Visit;

      begin
         Scope.Traverse (Visit'Access);

         return Result;
      end Check_Rename_Conflicts;

      ---------------------------------
      -- Check_Subp_Rename_Conflicts --
      ---------------------------------

      function Check_Subp_Rename_Conflicts
        (Scope : Ada_List'Class)
         return Defining_Name
      is
         Result : Defining_Name := No_Defining_Name;

         function Visit (Node : Ada_Node'Class) return Visit_Status;
         --  Checks if Node is a conflict, and if so, sets Result to it,
         --  stopping the iterative process.

         -----------
         -- Visit --
         -----------

         function Visit (Node : Ada_Node'Class) return Visit_Status is
         begin
            if Node.Kind in Ada_Basic_Decl then
               --  Filter the nodes that are not Basic_Decl

               if Is_Subprogram (Node.As_Basic_Decl)
                 or else Node.Kind in Ada_Generic_Subp_Instantiation
               then
                  --  If Decl is a subprogram, then not only check the name
                  --  but also its signature.

                  if Check_Subp_Rename_Conflict
                    (Canonical_Decl,
                     Self.New_Name,
                     Node.As_Basic_Decl)
                  then
                     Result := Node.As_Basic_Decl.P_Defining_Name;
                     return Stop;
                  end if;

               else
                  for Definition of Node.As_Basic_Decl.P_Defining_Names loop
                     if Check_Rename_Conflict
                       (Self.New_Name, Definition)
                     then
                        Result := Node.As_Basic_Decl.P_Defining_Name;
                        return Stop;
                     end if;
                  end loop;
               end if;
            end if;

            return (if Node = Scope then Into else Over);
         end Visit;

      begin
         Scope.Traverse (Visit'Access);

         return Result;
      end Check_Subp_Rename_Conflicts;

      -------------------
      -- Process_Scope --
      -------------------

      function Process_Scope (Scope : Ada_List'Class) return Defining_Name is
      begin
         if Scope.Is_Null then
            return No_Defining_Name;
         end if;

         if Is_Subp then
            Assert (not Canonical_Subp_Spec.Is_Null);
            return Check_Subp_Rename_Conflicts (Scope);

         else
            return Check_Rename_Conflicts (Scope);
         end if;
      end Process_Scope;

   begin
      --  If we're renaming a Generic_Subp_Instantiation whose
      --  Generic_Subp_Decl does not exist, then Original_Subp_Spec will be
      --  null. In that case, there isn't enough information to check for
      --  conflicts.

      if Is_Subp and then Canonical_Subp_Spec.Is_Null then
         return No_Rename_Problem;
      end if;

      for Scope of Local_Scopes loop
         declare
            Conflicting_Definition : constant Defining_Name
              := Process_Scope (Scope);

         begin
            if Conflicting_Definition /= No_Defining_Name then
               return Name_Collision'
                 (Canonical_Definition => Self.Canonical_Definition,
                  New_Name             => Self.New_Name,
                  Conflicting_Id       => Conflicting_Definition.F_Name);
            end if;
         end;
      end loop;

      return No_Rename_Problem;
   end Find;

   ----------
   -- Find --
   ----------

   overriding
   function Find
     (Self : Enum_Name_Collision_Finder)
      return Rename_Problem'Class is
   begin
      for Enum_Literal of
        Self.Canonical_Definition.Parent.Parent.As_Enum_Literal_Decl_List
      loop
         if Enum_Literal.P_Defining_Name /= Self.Canonical_Definition then
            if Check_Rename_Conflict
              (New_Name => Self.New_Name,
               Target   => Enum_Literal.P_Defining_Name)
            then
               return Name_Collision'
                 (Canonical_Definition => Self.Canonical_Definition,
                  New_Name             => Self.New_Name,
                  Conflicting_Id       => Enum_Literal.P_Defining_Name.F_Name);
            end if;
         end if;
      end loop;

      return No_Rename_Problem;
   end Find;

   ----------
   -- Find --
   ----------

   overriding
   function Find
     (Self : Collision_With_Compilation_Unit_Finder)
      return Rename_Problem'Class
   is
      Parent_Package : Base_Package_Decl := No_Base_Package_Decl;

      package Compilation_Unit_Vectors is new Ada.Containers.Indefinite_Vectors
        (Index_Type   => Natural,
         Element_Type => Compilation_Unit'Class,
         "="          => "=");

      subtype Compilation_Unit_Vector is Compilation_Unit_Vectors.Vector;

      Compilation_Units : Compilation_Unit_Vector;

   begin
      Find_Parent_Package :
      for Parent of Self.Canonical_Definition.P_Basic_Decl.Parent.Parents loop
         case Parent.Kind is
            when Ada_Package_Body =>
               Parent_Package :=
                 Parent.As_Package_Body.P_Canonical_Part.As_Base_Package_Decl;
               exit Find_Parent_Package;

            when Ada_Base_Package_Decl =>
               Parent_Package := Parent.As_Base_Package_Decl;
               exit Find_Parent_Package;

            when Ada_Subp_Body | Ada_Task_Body | Ada_Decl_Block =>
               return No_Rename_Problem;

            when others =>
               null;
         end case;
      end loop Find_Parent_Package;

      if Parent_Package.Is_Null then
         return No_Rename_Problem;
      end if;

      if Parent_Package.Unit.Root.As_Compilation_Unit.P_Decl /=
        Parent_Package.As_Basic_Decl
      then
         return No_Rename_Problem;
      end if;

      for Unit of Self.Units loop
         if not Unit.Root.Is_Null then
            if Unit.Root.Kind in Ada_Compilation_Unit then
               Compilation_Units.Append (Unit.Root.As_Compilation_Unit);
            elsif Unit.Root.Kind in Ada_Compilation_Unit_List then
               for Comp_Unit of Unit.Root.As_Compilation_Unit_List loop
                  if not Comp_Unit.Is_Null then
                     Compilation_Units.Append (Comp_Unit);
                  end if;
               end loop;
            end if;
         end if;
      end loop;

      for Comp_Unit of Compilation_Units loop
         declare
            Unit_Decl : constant Basic_Decl :=
              (if not Comp_Unit.P_Decl.Is_Null then
                  Comp_Unit.P_Decl.P_Canonical_Part
               else
                  No_Basic_Decl);
            Unit_Decl_Parent : constant Basic_Decl :=
              (if not Unit_Decl.Is_Null then
                  Unit_Decl.P_Parent_Basic_Decl
               else
                  No_Basic_Decl);
         begin
            if not Unit_Decl.Is_Null
              and then not Unit_Decl_Parent.Is_Null
              and then Unit_Decl.P_Parent_Basic_Decl.Unit = Parent_Package.Unit
            then
               declare
                  Unit_Decl_Identifier : constant Identifier :=
                    Get_Defining_Name_Id (Unit_Decl.P_Defining_Name);

               begin
                  --  Check if the new name is already used by other unit
                  --  FIXME: Do a case insensitive comparison

                  if Unit_Decl_Identifier.Text = To_Text (Self.New_Name) then
                     return Name_Collision'
                       (Canonical_Definition => Self.Canonical_Definition,
                        New_Name             => Self.New_Name,
                        Conflicting_Id       =>
                          Unit_Decl.P_Defining_Name.F_Name);
                  end if;
               end;
            end if;
         end;
      end loop;

      return No_Rename_Problem;
   end Find;

   ----------
   -- Find --
   ----------

   overriding
   function Find
     (Self : Compilation_Unit_Collision_Finder)
      return Rename_Problem'Class
   is
      Parent_Unit : constant Analysis_Unit :=
        Self.Canonical_Definition.P_Basic_Decl.P_Parent_Basic_Decl.Unit;
      Parent_Package : Package_Decl := No_Package_Decl;

   begin
      if Self.Canonical_Definition.Unit.Root.As_Compilation_Unit.P_Decl
        /= Self.Canonical_Definition.P_Basic_Decl
      then
         return No_Rename_Problem;
      end if;

      Parent_Package :=
        Parent_Unit.Root.As_Compilation_Unit.P_Decl.As_Package_Decl;

      --  There are two kinds of conflicts:
      --
      --  1) Package/Subprogram that defines a compilation unit is renamed to
      --  an already existing declaration in the spec of the parent package.

      if Parent_Unit /= Self.Canonical_Definition.P_Standard_Unit then
         for Node of Get_Package_Decl_Public_Decls (Parent_Package) loop
            if Node.Kind in Ada_Basic_Decl
              and then Check_Rename_Conflict
                (Self.New_Name,
                 Node.As_Basic_Decl.P_Defining_Name)
            then
               return Name_Collision'
                 (Canonical_Definition => Self.Canonical_Definition,
                  New_Name             => Self.New_Name,
                  Conflicting_Id       =>
                    Node.As_Basic_Decl.P_Defining_Name.F_Name);
            end if;
         end loop;

         declare
            Private_Decls : constant Ada_Node_List :=
              Get_Package_Decl_Private_Decls (Parent_Package);
         begin
            if Private_Decls /= No_Ada_Node_List then
               for Node of Private_Decls loop
                  if Node.Kind in Ada_Basic_Decl
                    and then Check_Rename_Conflict
                      (Self.New_Name,
                       Node.As_Basic_Decl.P_Defining_Name)
                  then
                     return Name_Collision'
                       (Canonical_Definition => Self.Canonical_Definition,
                        New_Name             => Self.New_Name,
                        Conflicting_Id       =>
                          Node.As_Basic_Decl.P_Defining_Name.F_Name);
                  end if;
               end loop;
            end if;
         end;
      end if;

      --  2) Package/Subprogram that defines a compilation unit is renamed to
      --  an already existing Package/Subprogram that also defines
      --  a compilation unit and both share the same parent package.

      for Unit of Self.Units loop
         if Unit.Root.As_Compilation_Unit.P_Decl.P_Parent_Basic_Decl.Unit =
           Parent_Unit
         then
            declare
               --  Get the suffix of the declaration of this unit and check.

               Unit_Decl_Identifier : constant Identifier :=
                 Get_Defining_Name_Id
                   (Unit.Root.As_Compilation_Unit.P_Decl.P_Defining_Name);

            begin
               --  Check if Self.New_Name is already used by this unit.

               if Unit_Decl_Identifier.Text = To_Text (Self.New_Name) then
                  return Name_Collision'
                    (Canonical_Definition => Self.Canonical_Definition,
                     New_Name             => Self.New_Name,
                     Conflicting_Id       =>
                       Unit.Root.As_Compilation_Unit.P_Decl.
                         P_Defining_Name.F_Name);
               end if;
            end;
         end if;
      end loop;
      return No_Rename_Problem;
   end Find;

   ----------
   -- Find --
   ----------

   overriding
   function Find
     (Self : Subp_Overriding_Finder)
      return Rename_Problem'Class
   is
      function Check_Subp_Overriding_By_Rename_Conflict
        (Derived_Type : Type_Decl;
         Base_Type    : Type_Decl;
         Subp_Spec_A  : Subp_Spec;
         Subp_Spec_B  : Subp_Spec)
         return Boolean;
      --  Given the following three assumptions:
      --  1) Derived_Type is a tagged typed derived from Base_Type
      --  2) Subp_Spec_A is a spec of a primitive of Derived_Type
      --  3) Subp_Spec_B is a spec of a primitive of Base_Type (and therefore
      --  has been inherited by Derived_Type
      --
      --  Checks is renaming Subp_Spec_A to Self.New_Name will override
      --  Subp_Spec_B.

      ----------------------------------------------
      -- Check_Subp_Overriding_By_Rename_Conflict --
      ----------------------------------------------

      function Check_Subp_Overriding_By_Rename_Conflict
        (Derived_Type : Type_Decl;
         Base_Type    : Type_Decl;
         Subp_Spec_A  : Subp_Spec;
         Subp_Spec_B  : Subp_Spec)
         return Boolean
      is
         Subp_A_Params : Parameter_Data_Vector;
         Subp_B_Params : Parameter_Data_Vector;

         use type Parameter_Data_Vectors.Vector;

      begin
         if Subp_Spec_A.F_Subp_Kind /= Subp_Spec_B.F_Subp_Kind then
            return False;
         end if;

         Subp_A_Params :=
           Create_Parameter_Data_Vector (Subp_Spec_A.F_Subp_Params);
         Subp_B_Params :=
           Create_Parameter_Data_Vector (Subp_Spec_B.F_Subp_Params);

         case Ada_Subp_Kind'(Subp_Spec_A.F_Subp_Kind) is
            when Ada_Subp_Kind_Procedure =>
               --  This is a procedure, so the base and derived type must
               --  be the type of the first parameter. Therefore, simply
               --  compare the remaining ones.

               Assert (Subp_A_Params.Length > 0);
               Assert (Subp_B_Params.Length > 0);

               Subp_A_Params.Delete_First;
               Subp_B_Params.Delete_First;

               return Subp_A_Params = Subp_B_Params;

            when Ada_Subp_Kind_Function =>
               --  This is a function, so the types can either be in the first
               --  parameter or the the return type. Both the derived and the
               --  base type must be in the same position.

               declare
                  Return_Type_A : constant Basic_Decl :=
                    Subp_Spec_A.P_Return_Type.P_Canonical_Part;
                  Return_Type_B : constant Basic_Decl :=
                    Subp_Spec_B.P_Return_Type.P_Canonical_Part;

               begin
                  --  First check if the return type of subprogram A is the
                  --  the derived type. If so, the return type of subprogram
                  --  B must be the base type. Otherwise, there is no
                  --  overwrite.

                  if Return_Type_A = Derived_Type.P_Canonical_Part then
                     if Return_Type_B /= Base_Type.P_Canonical_Part then
                        return False;
                     else
                        return Subp_A_Params = Subp_B_Params;
                     end if;

                  --  Otherwise check if the first type of subprogram A is the
                  --  derived type. If so, the first type of subprogram B must
                  --  be the base type. Otherwise, there is no overwrite.

                  else
                     if Subp_B_Params.Is_Empty or else
                       Subp_B_Params.First_Element.Type_Definition_Hash /=
                         Hash (Base_Type.P_Canonical_Part.As_Ada_Node)
                     then
                        return False;
                     else
                        if not Subp_A_Params.Is_Empty then
                           Subp_A_Params.Delete_First;
                        end if;

                        if not Subp_B_Params.Is_Empty then
                           Subp_B_Params.Delete_First;
                        end if;

                        return Subp_A_Params = Subp_B_Params;
                     end if;
                  end if;
               end;
         end case;
      end Check_Subp_Overriding_By_Rename_Conflict;

      Subprogram_Spec : Subp_Spec := No_Subp_Spec;
      First_Type      : Type_Decl := No_Type_Decl;
      Base_Type       : Base_Type_Decl := No_Base_Type_Decl;

      use type Ada_Node_Kind_Type;

   begin
      if Self.Canonical_Definition.P_Basic_Decl.Kind = Ada_Subp_Decl then
         Subprogram_Spec :=
           Self.Canonical_Definition.P_Basic_Decl.As_Subp_Decl.F_Subp_Spec;
      else
         return No_Rename_Problem;
      end if;

      --  Is Subp_Decl a primitive?

      First_Type :=
        Subprogram_Spec.P_Primitive_Subp_First_Type
          (Imprecise_Fallback => False).As_Type_Decl;

      if First_Type = No_Type_Decl
        or else First_Type.Kind /= Ada_Type_Decl
      then
         return No_Rename_Problem;
      end if;

      --  Is First_Type a derived type?

      Base_Type := First_Type.P_Base_Type;

      if Base_Type = No_Base_Type_Decl
        or else Base_Type.Kind /= Ada_Type_Decl
      then
         return No_Rename_Problem;
      end if;

      --  Does Base_Type's list of all primitives include one that is named
      --  Self.New_Name?

      declare
         Primitives_List : constant Basic_Decl_Array :=
           Base_Type.As_Type_Decl.P_Get_Primitives (Only_Inherited => False);
      begin
         Look_For_Possible_Conflict :
         for Primitive of Primitives_List loop
            if Primitive.P_Defining_Name.F_Name.Text =
              To_Text (Self.New_Name)
            then
               if Check_Subp_Overriding_By_Rename_Conflict
                 (First_Type,
                  Base_Type.As_Type_Decl,
                  Subprogram_Spec,
                  Primitive.P_Canonical_Part.As_Subp_Decl.F_Subp_Spec)
               then
                  return Overriding_Subprogram'
                    (Canonical_Definition => Self.Canonical_Definition,
                     New_Name             => Self.New_Name,
                     Conflicting_Id       =>
                       Primitive.P_Canonical_Part.P_Defining_Name.F_Name);
               end if;
            end if;
         end loop Look_For_Possible_Conflict;
         return No_Rename_Problem;
      end;

   end Find;

   ----------
   -- Find --
   ----------

   overriding
   function Find (Self : Subtype_Indication_Collision_Finder)
                  return Rename_Problem'Class is
   begin
      for Reference of Self.References loop
         if Reference.Parent.Kind = Ada_Subtype_Indication
           and then Reference.Parent.Parent.Kind = Ada_Param_Spec
         then
            for Definition of Reference.Parent.Parent.As_Param_Spec.F_Ids loop
               if Definition.F_Name.Text = To_Text (Self.New_Name) then
                  return Name_Collision'
                    (Canonical_Definition => Self.Canonical_Definition,
                     New_Name             => Self.New_Name,
                     Conflicting_Id       =>
                       Definition.As_Defining_Name.P_Canonical_Part.F_Name);
               end if;
            end loop;
         end if;
      end loop;

      return No_Rename_Problem;
   end Find;

   ----------
   -- Find --
   ----------

   overriding
   function Find
     (Self : Name_Hiding_Finder)
      return Rename_Problem'Class
   is
      Canonical_Decl : constant Basic_Decl :=
        Self.Canonical_Definition.P_Basic_Decl;

      --  If we are renaming a subprogram, it only hides another subprogram
      --  that is type conformant.

      Is_Subp : constant Boolean :=
        Is_Subprogram (Canonical_Decl)
        or else Canonical_Decl.Kind in Ada_Generic_Subp_Instantiation_Range;

      Canonical_Subp_Spec : constant Base_Subp_Spec :=
        (if Is_Subp then Get_Subp_Spec (Canonical_Decl)
         else No_Base_Subp_Spec);

      Possible_Problem : Hiding_Name;
      Found_Problem    : Boolean := False;

      Visible_Declarative_Parts   : constant Declarative_Part_Vector :=
        Get_CU_Visible_Declarative_Parts
          (Node       => Canonical_Decl,
           Skip_First => True);
      Use_Units_Public_Parts : constant Declarative_Part_Vector :=
        Get_Use_Units_Public_Parts (Self.Canonical_Definition);

      procedure Check_Declarative_Part
        (Decl_Part : Declarative_Part'Class);
      --  Checks if Decl_Part contains any declaration that can be hidden by
      --  Canonical_Decl. If so, Possible_Problem is filled with the
      --  appropriate information and Found_Problem is set to True.

      procedure Check_Declarative_Part
        (Decl_Part : Declarative_Part'Class) is
      begin
         if Is_Subp then
            Assert (not Canonical_Subp_Spec.Is_Null);

            for Decl of Decl_Part.F_Decls loop
               --  Conflicts can only exist with subprograms and not with other
               --  kind of declarations.

               if Decl.Kind in Ada_Basic_Decl
                 and then (Is_Subprogram (Decl.As_Basic_Decl)
                           or else Decl.Kind in
                             Ada_Generic_Subp_Instantiation_Range)
               then
                  if Check_Subp_Rename_Conflict
                    (Subp_A   => Canonical_Decl,
                     New_Name => Self.New_Name,
                     Subp_B   => Decl.As_Basic_Decl)
                  then
                     Possible_Problem :=
                       (Canonical_Definition => Self.Canonical_Definition,
                        New_Name             => Self.New_Name,
                        Conflicting_Id       =>
                          Decl.As_Basic_Decl.P_Canonical_Part.
                            P_Defining_Name.F_Name);
                     Found_Problem := True;
                     return;
                  end if;
               end if;
            end loop;

         else
            for Decl of Decl_Part.F_Decls loop
               --  Conflicts can exists with any kind of declaration except
               --  subprograms

               if Decl.Kind in Ada_Basic_Decl
                 and then not (Is_Subprogram (Decl.As_Basic_Decl)
                               or else Decl.Kind in
                                 Ada_Generic_Subp_Instantiation_Range)
               then
                  for Definition of Decl.As_Basic_Decl.P_Defining_Names loop
                     if Check_Rename_Conflict (Self.New_Name, Definition) then
                        Possible_Problem :=
                          (Canonical_Definition => Self.Canonical_Definition,
                           New_Name             => Self.New_Name,
                           Conflicting_Id       => Definition.F_Name);
                        Found_Problem := True;
                        return;
                     end if;
                  end loop;
               end if;
            end loop;
         end if;
      end Check_Declarative_Part;

   begin
      for Decl_Part of Visible_Declarative_Parts loop
         Check_Declarative_Part (Decl_Part);
         exit when Found_Problem;
      end loop;

      if Found_Problem then
         return Possible_Problem;
      end if;

      for Decl_Part of Use_Units_Public_Parts loop
         Check_Declarative_Part (Decl_Part);
         exit when Found_Problem;
      end loop;

      if Found_Problem then
         return Possible_Problem;
      end if;

      return No_Rename_Problem;
   end Find;

   ----------
   -- Find --
   ----------

   overriding
   function Find (Self : Name_Hidden_Finder) return Rename_Problem'Class
   is
      Canonical_Decl : constant Basic_Decl :=
        Self.Canonical_Definition.P_Basic_Decl;

      --  If we are renaming a subprogram, it only becomes hidden by another
      --  subprogram that is type conformant.

      Is_Subp : constant Boolean :=
        (Is_Subprogram (Canonical_Decl)
         or else Canonical_Decl.Kind in Ada_Generic_Subp_Instantiation_Range);

      Canonical_Subp_Spec : constant Base_Subp_Spec :=
        (if Is_Subp then Get_Subp_Spec (Canonical_Decl)
         else No_Base_Subp_Spec);

      Nested_Declarative_Parts : constant Declarative_Part_Vector :=
        Find_Nested_Scopes (Canonical_Decl);
      Own_Declarative_Part     : constant Declarative_Part_Vector :=
        (if Is_Declarative_Part_Owner (Canonical_Decl) then
            Get_Declarative_Parts (Canonical_Decl)
         else
            Declarative_Part_Vectors.Empty_Vector);

      Stop_Node : Ada_Node := No_Ada_Node;
      Dec_Visible_Declarative_Parts : constant Ada_List_Vector
        := Find_Local_Scopes (Self.Canonical_Definition.P_Basic_Decl);
      Ref_Visible_Declarative_Parts : Ada_List_Vector;

      function Check_Conflict (Definition : Defining_Name'Class)
                               return Boolean;
      --  Delegates to Check_Subp_Rename_Conflict after doing necessary
      --  convertions between node types.

      --------------------
      -- Check_Conflict --
      --------------------

      function Check_Conflict (Definition : Defining_Name'Class) return Boolean
      is
         Definition_Decl    : constant Basic_Decl :=
           Definition.P_Basic_Decl;
         Are_Both_Subps     : constant Boolean :=
           Is_Subp
           and then (Is_Subprogram (Definition_Decl)
                     or else Definition_Decl.Kind in
                       Ada_Generic_Subp_Instantiation_Range);
         Are_Both_Not_Subps : constant Boolean :=
           not Is_Subp
           and then not (Is_Subprogram (Definition_Decl)
                         or else Definition_Decl.Kind in
                           Ada_Generic_Subp_Instantiation_Range);
      begin
         if Are_Both_Subps then
            return Check_Subp_Rename_Conflict
              (Subp_A   => Canonical_Decl,
               New_Name => Self.New_Name,
               Subp_B   => Definition_Decl);

         elsif Are_Both_Not_Subps then
            return Check_Rename_Conflict
              (New_Name => Self.New_Name,
               Target   => Definition);
         end if;

         return False;
      end Check_Conflict;

   begin
      --  If we're renaming a Generic_Subp_Instantiation whose
      --  Generic_Subp_Decl does not exist, then Original_Subp_Spec will be
      --  null. In that case, there isn't enough information to check for
      --  conflicts.

      if Is_Subp and then Canonical_Subp_Spec.Is_Null then
         return No_Rename_Problem;
      end if;

      --  First: Check if there is a declaration with the same name as
      --  Self.New_Name in the nested declarative parts that have visibility of
      --  Self.Canonical_Definition.
      --  Example: a procedure Foo that declares, in a declarative part inside
      --  its Handled_Stmts, a nested procedure also called Foo.

      for Declarative_Part of Nested_Declarative_Parts loop
         for Declaration of Declarative_Part.F_Decls loop
            if Declaration.Kind in Ada_Basic_Decl then
               for Definition of
                 Declaration.As_Basic_Decl.P_Defining_Names
               loop
                  if Check_Conflict (Definition) then
                     return Hidden_Name'
                       (Canonical_Definition => Self.Canonical_Definition,
                        New_Name             => Self.New_Name,
                        Conflicting_Id       => Definition.F_Name);
                  end if;
               end loop;
            end if;
         end loop;
      end loop;

      --  Second: If Self.Canonical_Definition.P_Basic_Decl is a
      --  declarative part owner, then check if there are any declarations with
      --  the same name as Self.New_Name in its own declarative parts.
      --  Example: a procedure Foo that declares, in its own declarative part,
      --  a nested procedure also called Foo.

      for Declarative_Part of Own_Declarative_Part loop
         for Declaration of Declarative_Part.F_Decls loop
            if Declaration.Kind in Ada_Basic_Decl then
               for Definition of
                 Declaration.As_Basic_Decl.P_Defining_Names
               loop
                  if Check_Conflict (Definition) then
                     return Hidden_Name'
                       (Canonical_Definition => Self.Canonical_Definition,
                        New_Name             => Self.New_Name,
                        Conflicting_Id       => Definition.F_Name);
                  end if;
               end loop;
            end if;
         end loop;
      end loop;

      --  Third: Check if Self.Canonical_Definition references will be hidden
      --  by another definition, i.e., if they will become references of
      --  another definition.

      for Reference of Self.References loop
         if Reference.Parent.Parent.Parent.Kind /= Ada_Param_Spec then
            Find_Stop_Node :
            for Parent of Reference.Parents loop
               if Parent.Kind in
                 Ada_Basic_Decl | Ada_Declarative_Part | Ada_Handled_Stmts
               then
                  Stop_Node := Parent;
                  exit Find_Stop_Node;
               end if;
            end loop Find_Stop_Node;

            if Stop_Node /= No_Ada_Node
              and then Stop_Node.Kind = Ada_Param_Spec
            then
               Stop_Node := Stop_Node.Parent.Parent.Parent.Parent;
            end if;

            Ref_Visible_Declarative_Parts := Find_Local_Scopes (Stop_Node);

            for Declarative_Part of Ref_Visible_Declarative_Parts loop
               --  Do not look for conflicts in Self.Canonical_Part own
               --  declarative part, since this would be a name collision
               --  conflict already detected by the Name_Collision_Finder.
               if not Ada_List_Vectors.Has_Element
                 (Ada_List_Vectors.Find
                    (Dec_Visible_Declarative_Parts, Declarative_Part))
               then
                  declare
                     Conflicting_Definition : Defining_Name;

                     function Visit
                       (Node : Ada_Node'Class)
                        return Visit_Status;
                     --  Checks if Node is a conflict, and if so, sets Result
                     --  to it, stopping the iterative process.

                     -----------
                     -- Visit --
                     -----------

                     function Visit
                       (Node : Ada_Node'Class)
                        return Visit_Status is
                     begin
                        if Node.Kind in Ada_Basic_Decl then
                           --  If Self.Canonical_Definition is found, then it
                           --  can't be hidden, so stop the search.

                           if Node.As_Basic_Decl.P_Canonical_Part =
                             Self.Canonical_Definition.P_Basic_Decl
                             or else Node = Stop_Node
                           then
                              return Stop;
                           end if;

                           for Definition of
                             Node.As_Basic_Decl.P_Defining_Names
                           loop
                              if Check_Conflict (Definition) then
                                 Conflicting_Definition := Definition;
                                 return Stop;
                              end if;
                           end loop;
                        end if;

                        return
                          (if Node = Declarative_Part then Into else Over);
                     end Visit;

                  begin
                     Declarative_Part.Traverse (Visit'Access);

                     if not Conflicting_Definition.Is_Null then
                        return Hidden_Name'
                          (Canonical_Definition =>
                             Self.Canonical_Definition,
                           New_Name             => Self.New_Name,
                           Conflicting_Id       =>
                             Conflicting_Definition.F_Name);
                     end if;
                  end;
               else
                  null;
               end if;
            end loop;
         end if;
      end loop;

      return No_Rename_Problem;
   end Find;

   ----------
   -- Find --
   ----------

   overriding
   function Find
     (Self : Param_Spec_Collision_Finder)
      return Rename_Problem'Class
   is
      use type Ada_Node_Kind_Type;

      Param_Spec : Libadalang.Analysis.Param_Spec renames
        Self.Canonical_Definition.P_Basic_Decl.As_Param_Spec;
      Type_Expr : Libadalang.Analysis.Type_Expr renames
        Param_Spec.F_Type_Expr;
      Subtype_Indication : constant Libadalang.Analysis.Subtype_Indication :=
        (if Type_Expr.Kind in Ada_Subtype_Indication
         then Type_Expr.As_Subtype_Indication
         else No_Subtype_Indication);
      Param_Spec_List : Libadalang.Analysis.Param_Spec_List renames
        Self.Canonical_Definition.P_Basic_Decl.Parent.As_Param_Spec_List;

   begin
      if Self.Canonical_Definition.P_Basic_Decl.Kind = Ada_Param_Spec then
         --  Possible problem 1: Renaming a parameter to the same name as its
         --  subtype indication

         if Param_Spec.F_Type_Expr.Kind = Ada_Subtype_Indication
           and then not Subtype_Indication.Is_Null
           and then Subtype_Indication.F_Name.Kind = Ada_Identifier
           and then Subtype_Indication.F_Name.Text = To_Text (Self.New_Name)
         then
            return Name_Collision'
              (Canonical_Definition => Self.Canonical_Definition,
               New_Name             => Self.New_Name,
               Conflicting_Id        => Param_Spec.F_Type_Expr.
                 As_Subtype_Indication.F_Name.P_Referenced_Decl.
                   P_Defining_Name.F_Name);
         end if;

         --  Possible problem 2: Renaming a parameter to the same name as
         --  another parameter

         for Spec of Param_Spec_List loop
            for Spec_Definition of Spec.F_Ids loop
               if Spec_Definition.F_Name.Text = To_Text (Self.New_Name) then
                  return Name_Collision'
                    (Canonical_Definition => Self.Canonical_Definition,
                     New_Name             => Self.New_Name,
                     Conflicting_Id       =>
                       Spec_Definition.As_Defining_Name.F_Name);
               end if;
            end loop;
         end loop;
      end if;

      return No_Rename_Problem;
   end Find;

   ----------------
   -- Initialize --
   ----------------

   procedure Initialize
     (Self                 : out AST_Analyser;
      Canonical_Definition : Defining_Name;
      New_Name             : Unbounded_Text_Type;
      References           : Base_Id_Vectors.Vector;
      Units                : Analysis_Unit_Array) is
   begin
      Self.Canonical_Definition := Canonical_Definition;
      Self.New_Name             := New_Name;
      Self.Units                := Units;
      Self.References           := References;
   end Initialize;

   ----------------
   -- Initialize --
   ----------------

   procedure Initialize
     (Self                 : out Reference_Mapper;
      Canonical_Definition : Defining_Name;
      New_Name             : Unbounded_Text_Type;
      Original_References  : Unit_Slocs_Maps.Map;
      Units                : Analysis_Unit_Array)
   is
      procedure Initialize_Temporary_Buffers;
      --  For every unit of Self.Original_References initializes a
      --  Self.Temporary_Buffers with a copy of the original buffers but with
      --  the references renamed to New_Name.

      ----------------------------------
      -- Initialize_Temporary_Buffers --
      ----------------------------------

      procedure Initialize_Temporary_Buffers is
         --  Self.Original_References already has all the units that contain
         --  a reference of Canonical_Definition.

         Units_Cursor : Unit_Slocs_Maps.Cursor :=
           Self.Original_References.First;
         Current_Unit : Analysis_Unit;

      begin
         while Unit_Slocs_Maps.Has_Element (Units_Cursor) loop
            Current_Unit := Unit_Slocs_Maps.Key (Units_Cursor);
            Self.Temporary_Buffers.Insert
              (Key      => Current_Unit,
               New_Item => Null_Unbounded_String);

            declare
               Unit_File : File_Type;
               Unit_Filename : constant String :=
                 Unit_Slocs_Maps.Key (Units_Cursor).Get_Filename;
               Slocs : constant Unit_Slocs_Maps.Constant_Reference_Type :=
                 Unit_Slocs_Maps.Constant_Reference
                   (Container => Self.Original_References,
                    Position  => Units_Cursor);
               Slocs_Cursor : Slocs_Maps.Cursor := Slocs.First;
               Line_Number : Positive := 1;
               Line : Unbounded_String := Null_Unbounded_String;

            begin
               --  Open the file associated to the Current_Unit, read every
               --  line replacing all references of Canonical_Definition
               --  by the New_Name. Then update Self.Temporary_Buffers.

               Open (File => Unit_File,
                     Mode => In_File,
                     Name => Unit_Filename);

               while not End_Of_File (Unit_File) loop
                  Line := Get_Line (Unit_File);

                  if Slocs.Contains (Line_Number) then
                     declare
                        --  Cursor needs to be the last Sloc of this line so
                        --  that the start columns of the others slocs are
                        --  not affected.

                        Cursor : Slocs_Sets.Cursor :=
                          Slocs.Constant_Reference (Line_Number).Last;
                     begin
                        while Slocs_Sets.Has_Element (Cursor) loop
                           Replace_Slice
                             (Source => Line,
                              Low    => Positive
                                (Slocs_Sets.Element (Cursor).Start_Column),
                              High   => Natural
                                (Slocs_Sets.Element (Cursor).End_Column - 1),
                              By     => Image (To_Text (Self.New_Name)));
                           Slocs_Sets.Previous (Cursor);
                        end loop;
                     end;

                     Slocs_Maps.Next (Slocs_Cursor);
                  end if;

                  Append (Source   =>
                            Self.Temporary_Buffers.Reference (Current_Unit),
                          New_Item => Line);
                  Append (Source   =>
                            Self.Temporary_Buffers.Reference (Current_Unit),
                          New_Item => Ada.Characters.Latin_1.LF);
                  Line_Number := Line_Number + 1;
               end loop;

               Close (File => Unit_File);

               --  Every reference on this line was replaced.
               Assert (not Slocs_Maps.Has_Element (Slocs_Cursor));
            end;

            Unit_Slocs_Maps.Next (Units_Cursor);
         end loop;
      end Initialize_Temporary_Buffers;

   begin
      Self.Canonical_Definition      := Canonical_Definition;
      Self.Canonical_Definition_Unit := Canonical_Definition.Unit;
      Self.Canonical_Definition_Sloc := Canonical_Definition.Sloc_Range;
      Self.Units                     := Units;
      Self.Original_Name             :=
        To_Unbounded_Text (Canonical_Definition.F_Name.Text);
      Self.New_Name                  := New_Name;
      Self.Original_References       := Original_References;
      Initialize_Temporary_Buffers;
   end Initialize;

   --------------------------------
   -- Initialize_Unit_Slocs_Maps --
   --------------------------------

   procedure Initialize_Unit_Slocs_Maps
     (Unit_References      : out Unit_Slocs_Maps.Map;
      Canonical_Definition : Defining_Name;
      References           : Base_Id_Vectors.Vector)
   is
      procedure Add_Node (Node : Ada_Node'Class);
      --  Add Node to Unit_References.

      --------------
      -- Add_Node --
      --------------

      procedure Add_Node (Node : Ada_Node'Class) is
         Unit : constant Analysis_Unit := Node.Unit;
         New_Sloc : constant Source_Location_Range := Node.Sloc_Range;
         Start_Line : constant Positive := Positive (New_Sloc.Start_Line);
      begin
         Assert (New_Sloc.Start_Line = New_Sloc.End_Line);

         if Unit_References.Contains (Unit) then
            declare
               References : constant Unit_Slocs_Maps.Reference_Type :=
                 Unit_References.Reference (Unit);

            begin
               if References.Contains (Start_Line) then
                  if not
                    References.Reference (Start_Line).Contains (New_Sloc)
                  then
                     References.Reference (Start_Line).Insert (New_Sloc);
                  end if;

               else
                  declare
                     New_Set : Slocs_Sets.Set;

                  begin
                     New_Set.Insert (New_Sloc);
                     References.Insert (Start_Line, New_Set);
                  end;
               end if;
            end;

         else
            declare
               New_Set : Slocs_Sets.Set;
               New_Map : Slocs_Maps.Map;

            begin
               New_Set.Insert (New_Sloc);
               New_Map.Insert (Start_Line, New_Set);
               Unit_References.Insert (Unit, New_Map);
            end;
         end if;
      end Add_Node;
   begin
      --  P_Find_All_References does not include Canonical_Definition own
      --  reference, so add it here.
      --  If Canonical_Definition is a dotted name, this means that we're
      --  trying to rename its suffix.

      if Canonical_Definition.F_Name.Kind in Ada_Dotted_Name_Range then
         Add_Node (Canonical_Definition.F_Name.As_Dotted_Name.F_Suffix);
      else
         Add_Node (Canonical_Definition);
      end if;

      for Reference of References loop
         Add_Node (Reference);
      end loop;
   end Initialize_Unit_Slocs_Maps;

   ----------
   -- Info --
   ----------

   overriding
   function Info (Self : Hidden_Name) return String is
   begin
      return "Renaming " & Image (Self.Canonical_Definition.F_Name.Text)
        & " to " & Image (To_Text (Self.New_Name))
        & " will hide it by "
        & Self.Conflicting_Id.Image;
   end Info;

   ----------
   -- Info --
   ----------

   overriding
   function Info (Self : Hiding_Name) return String is
   begin
      return "Renaming " & Image (Self.Canonical_Definition.F_Name.Text)
        & " to " & Image (To_Text (Self.New_Name))
        & " hides "
        & Self.Conflicting_Id.Image;
   end Info;

   ----------
   -- Info --
   ----------

   overriding
   function Info (Self : Missing_Reference) return String is
   begin
      return "Renaming " & Image (Self.Canonical_Definition.F_Name.Text)
        & " to " & Image (To_Text (Self.New_Name)) & " loses reference "
        & Self.Conflicting_Id.Image;
   end Info;

   ----------
   -- Info --
   ----------

   overriding
   function Info (Self : Name_Collision) return String is
   begin
      return "Renaming " & Image (Self.Canonical_Definition.F_Name.Text)
        & " to " & Image (To_Text (Self.New_Name))
        & " creates a name collision with "
        & Self.Conflicting_Id.Image;
   end Info;

   ----------
   -- Info --
   ----------

   overriding
   function Info (Self : New_Reference) return String is
   begin
      return "Renaming " & Image (Self.Canonical_Definition.F_Name.Text)
        & " to " & Image (To_Text (Self.New_Name))
        & " creates a new reference "
        & Self.Conflicting_Id.Image;
   end Info;

   ----------
   -- Info --
   ----------

   overriding
   function Info (Self : Overriding_Subprogram) return String is
   begin
      return "Renaming " & Image (Self.Canonical_Definition.F_Name.Text)
        & " to " & Image (To_Text (Self.New_Name))
        & " will override "
        & Self.Conflicting_Id.Image;
   end Info;

   ----------------------------
   -- Parse_Original_Buffers --
   ----------------------------

   procedure Parse_Original_Buffers
     (Self : in out Reference_Mapper) is
      use Unit_Buffers;

      Units_Cursor : Cursor := Self.Temporary_Buffers.First;

   begin
      while Has_Element (Units_Cursor) loop
         Key (Units_Cursor).Reparse;
         Next (Units_Cursor);
      end loop;

      Self.Update_Canonical_Definition;
   end Parse_Original_Buffers;

   -----------------------------
   -- Parse_Temporary_Buffers --
   -----------------------------

   procedure Parse_Temporary_Buffers
     (Self : in out Reference_Mapper) is
      use Unit_Buffers;

      Units_Cursor : Cursor := Self.Temporary_Buffers.First;

   begin
      while Has_Element (Units_Cursor) loop
         Key (Units_Cursor).Reparse
           (Buffer =>
              To_String (Self.Temporary_Buffers.Reference (Units_Cursor)));
         Next (Units_Cursor);
      end loop;

      Self.Update_Canonical_Definition;
   end Parse_Temporary_Buffers;

   ---------------------------------
   -- Update_Canonical_Definition --
   ---------------------------------

   procedure Update_Canonical_Definition
     (Self : in out Reference_Mapper)
   is
      Node : constant Ada_Node := Self.Canonical_Definition_Unit.Root.Lookup
        (Source_Location'
           (Line   => Self.Canonical_Definition_Sloc.Start_Line,
            Column => Self.Canonical_Definition_Sloc.Start_Column));
      Name_Node : constant Libadalang.Analysis.Name := Get_Node_As_Name (Node);

   begin
      if Name_Node = No_Name then
         raise Program_Error;
      end if;

      Self.Canonical_Definition := Resolve_Name_Precisely (Name_Node);

      --  If the canonical definition was lost then the rename created
      --  and Self cannot continue.

      if Self.Canonical_Definition = No_Defining_Name then
         raise Program_Error;
      end if;
   end Update_Canonical_Definition;

   -------------------------
   -- Create_Safe_Renamer --
   -------------------------

   function Create_Safe_Renamer
     (Definition : Defining_Name'Class;
      New_Name   : Unbounded_Text_Type;
      Algorithm  : Problem_Finder_Algorithm_Kind)
      return Safe_Renamer is
     ((Definition.P_Canonical_Part, New_Name, Algorithm));

   --------------
   -- Refactor --
   --------------

   function Refactor
     (Self           : Safe_Renamer;
      Analysis_Units : access function return Analysis_Unit_Array)
      return Refactoring_Edits
   is
      Edits : Refactoring_Edits;

      Units : constant Analysis_Unit_Array := Analysis_Units.all;

      References : constant Base_Id_Vectors.Vector :=
        Find_All_References_For_Renaming (Self.Canonical_Definition, Units);

      function Initialize_Algorithm return Problem_Finder_Algorithm'Class;
      --  Returns an initialized Problem_Finder_Algorithm depending on
      --  Self.Algorithm.

      --------------------------
      -- Initialize_Algorithm --
      --------------------------

      function Initialize_Algorithm return Problem_Finder_Algorithm'Class
      is
         References_Map : Unit_Slocs_Maps.Map;

      begin
         case Self.Algorithm is
            when Map_References =>
               return Algorithm : Reference_Mapper
                 (Units_Length => Units'Length)
               do
                  Initialize_Unit_Slocs_Maps
                    (Unit_References      => References_Map,
                     Canonical_Definition => Self.Canonical_Definition,
                     References           => References);

                  Algorithm.Initialize
                    (Canonical_Definition => Self.Canonical_Definition,
                     New_Name             => Self.New_Name,
                     Original_References  => References_Map,
                     Units                => Units);
               end return;

            when Analyse_AST =>
               return Algorithm : AST_Analyser (Units'Length) do
                  Algorithm.Initialize
                    (Canonical_Definition => Self.Canonical_Definition,
                     New_Name             => Self.New_Name,
                     References           => References,
                     Units                => Units);
               end return;
         end case;
      end Initialize_Algorithm;

      Algorithm : Problem_Finder_Algorithm'Class := Initialize_Algorithm;

   begin
      Self.Add_References_To_Edits (References, Edits);

      --  If Self.Canonical_Definition is a top level declaration then its
      --  file name and all other file names of its references that are
      --  top level declartions need to be renamed.

      if Self.Is_Top_Level_Decl (Self.Canonical_Definition.P_Basic_Decl) then
         Self.Add_Files_Rename_To_Edits (References, Edits);
      end if;

      Edits.Diagnostics := Algorithm.Find;

      return Edits;
   end Refactor;

   -----------------------------
   -- Add_References_To_Edits --
   -----------------------------

   procedure Add_References_To_Edits
     (Self       : Safe_Renamer;
      References : Base_Id_Vectors.Vector;
      Edits      : in out Refactoring_Edits)
   is
      New_Name : constant Unbounded_String := +(+(+Self.New_Name));

   begin
      for Reference of References loop
         Safe_Insert
           (Edits     => Edits.Text_Edits,
            File_Name => Reference.Unit.Get_Filename,
            Edit      => Text_Edit'
              (Location => Reference.Sloc_Range,
               Text     => New_Name));
      end loop;
   end Add_References_To_Edits;

   -----------------------
   -- Is_Top_Level_Decl --
   -----------------------

   function Is_Top_Level_Decl
     (Self : Safe_Renamer;
      Decl : Basic_Decl'Class)
      return Boolean
   is
      Top_Level_Decl : constant Basic_Decl :=
        (if not Decl.Is_Null then Decl.P_Top_Level_Decl (Decl.Unit)
         else No_Basic_Decl);

   begin
      --  References of Self.Canonical_Definition can include
      --  Generic_Package_Internal and Generic_Subp_Internal nodes,
      --  whose parents (Generic_Package_Decl and Generic_Subp_Decl
      --  respectively) might be top level declarations.

      return not Top_Level_Decl.Is_Null
        and then (Decl = Top_Level_Decl
                  or else (Decl.Kind in
                             Ada_Generic_Package_Internal_Range
                             | Ada_Generic_Subp_Internal_Range
                           and then not Decl.Parent.Is_Null
                           and then Decl.Parent.Kind in
                             Ada_Generic_Decl
                           and then Decl.Parent.As_Basic_Decl =
                             Top_Level_Decl));
   end Is_Top_Level_Decl;

   -------------------------------
   -- Add_Files_Rename_To_Edits --
   -------------------------------

   procedure Add_Files_Rename_To_Edits
     (Self       : Safe_Renamer;
      References : Base_Id_Vectors.Vector;
      Edits      : in out Refactoring_Edits)
   is
      File_Rename : Laltools.Refactor.File_Rename;

      function New_File_Name (Reference : Base_Id) return String;
      --  Computes the new file name based on the old one, on the
      --  `Self.Canonical_Definition` text and on `Self.New_Name`.
      --  Example:
      --  `Self.Canonical_Definition.F_Name.Text`: Foo.Bar_Baz
      --  `Self.New_Name`: Qux
      --  Old filename: foo-bar_baz.ads
      --  New filename: foo-qux.ads

      -------------------
      -- New_File_Name --
      -------------------

      function New_File_Name (Reference : Base_Id) return String
      is
         Unit_Old_Filename : constant String :=
           Reference.Unit.Get_Filename;
         Directory_Name    : constant String :=
           Containing_Directory (Unit_Old_Filename);
         File_Extension    : constant String := Extension (Unit_Old_Filename);

         New_Definition_Name : Unbounded_Text_Type;

         Parent : Ada_Node;

         Parent_Dotted_Name : Dotted_Name;

         function Transform (Old_Definition_Name : String) return String;
         --  Transforms all characters to lower case and replaces all `.` by
         --  `-`.

         ---------------
         -- Transform --
         ---------------

         function Transform (Old_Definition_Name : String) return String
         is
            New_Definition_Name : String (Old_Definition_Name'Range);

         begin
            for J in Old_Definition_Name'Range loop
               if Old_Definition_Name (J) = '.' then
                  New_Definition_Name (J) := '-';
               else
                  New_Definition_Name (J) :=
                    To_Lower (Old_Definition_Name (J));
               end if;
            end loop;

            return New_Definition_Name;
         end Transform;

      begin
         if Reference.Parent.Kind in Ada_Dotted_Name then
            Parent_Dotted_Name := Reference.Parent.As_Dotted_Name;

            --  There are three cases:

            --  1) Foo.Bar - We want to rename Foo and it is the first name

            if Parent_Dotted_Name.F_Prefix = Reference then
               New_Definition_Name := Self.New_Name;

               --  Each parent of `Parent_Dotted_Name` that is an
               --  `Ada_Dotted_Name` has a suffix.

               Parent := Reference.Parent;

               while Parent.Kind in Ada_Dotted_Name_Range loop
                  Append (New_Definition_Name, ".");
                  Append
                    (New_Definition_Name,
                     +Parent.As_Dotted_Name.F_Suffix.Text);

                  Parent := Parent.Parent;
               end loop;

            --  2) Bar.Foo.Baz - We want to rename Foo and it is in the middle

            elsif Parent_Dotted_Name.F_Suffix = Reference
              and then Parent_Dotted_Name.Parent.Kind in Ada_Dotted_Name
            then
               --  `Parent_Dotted_Name` already has all the prefixes needed

               New_Definition_Name :=
                 +Parent_Dotted_Name.F_Prefix.Text & "." & Self.New_Name;
               Parent := Reference.Parent;

               --  Each parent of `Parent_Dotted_Name` that is an
               --  `Ada_Dotted_Name` has a suffix.

               Parent := Parent.Parent;

               while Parent.Kind in Ada_Dotted_Name_Range loop
                  Append (New_Definition_Name, ".");
                  Append
                    (New_Definition_Name,
                     +Parent.As_Dotted_Name.F_Suffix.Text);

                  Parent := Parent.Parent;
               end loop;

            --  3) Bar.Foo - We want to rename Foo and it is the last name

            elsif Parent_Dotted_Name.F_Suffix = Reference
              and then not (Parent_Dotted_Name.Parent.Kind in Ada_Dotted_Name)
            then
               --  `Parent_Dotted_Name` already has all the prefixes needed

               New_Definition_Name :=
                 +Parent_Dotted_Name.F_Prefix.Text & "." & Self.New_Name;

            --  4) Logic error in this algorithm.

            else
               raise Program_Error;
            end if;

            return Compose
              (Directory_Name,
               Transform (+(+New_Definition_Name)),
               File_Extension);

         else
            return Compose
              (Directory_Name,
               Transform (+(+Self.New_Name)),
               File_Extension);
         end if;
      end New_File_Name;

   begin
      for Reference of References loop
         declare
            Enclosing_Defining_Name : constant Defining_Name :=
              Reference.P_Enclosing_Defining_Name;
            Enclosing_Basic_Decl    : constant Basic_Decl :=
              (if Enclosing_Defining_Name.Is_Null then No_Basic_Decl
               else Enclosing_Defining_Name.P_Basic_Decl);

         begin
            if Self.Is_Top_Level_Decl (Enclosing_Basic_Decl) then
               File_Rename.Filepath :=
                 To_Unbounded_String (Reference.Unit.Get_Filename);
               File_Rename.New_Name :=
                 To_Unbounded_String (New_File_Name (Reference));

               if not Edits.File_Renames.Contains (File_Rename) then
                  Edits.File_Renames.Insert (File_Rename);
               end if;
            end if;
         end;
      end loop;
   end Add_Files_Rename_To_Edits;

end Laltools.Refactor.Safe_Rename;