1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2009, Free Software Foundation, Inc. --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. --
18 -- As a special exception under Section 7 of GPL version 3, you are granted --
19 -- additional permissions described in the GCC Runtime Library Exception, --
20 -- version 3.1, as published by the Free Software Foundation. --
22 -- You should have received a copy of the GNU General Public License and --
23 -- a copy of the GCC Runtime Library Exception along with this program; --
24 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
25 -- <http://www.gnu.org/licenses/>. --
27 -- GNAT was originally developed by the GNAT team at New York University. --
28 -- Extensive contributions were provided by Ada Core Technologies Inc. --
30 ------------------------------------------------------------------------------
32 with GNAT
.Heap_Sort_G
;
35 procedure Sort
(Tbl
: in out Unit_Ref_Table
) is
37 T
: array (0 .. Integer (Tbl
'Last - Tbl
'First + 1)) of Unit_Number_Type
;
38 -- Actual sort is done on this copy of the array with 0's origin
39 -- subscripts. Location 0 is used as a temporary by the sorting algorithm.
40 -- Also the addressing of the table is more efficient with 0's origin,
41 -- even though we have to copy Tbl back and forth.
43 function Lt_Uname
(C1
, C2
: Natural) return Boolean;
44 -- Comparison routine for comparing Unames. Needed by the sorting routine
46 procedure Move_Uname
(From
: Natural; To
: Natural);
47 -- Move routine needed by the sorting routine below
49 package Sorting
is new GNAT
.Heap_Sort_G
(Move_Uname
, Lt_Uname
);
55 function Lt_Uname
(C1
, C2
: Natural) return Boolean is
57 -- Preprocessing data and definition files are not sorted, they are
58 -- at the bottom of the list. They are recognized because they are
59 -- the only ones without a Unit_Name.
61 if Units
.Table
(T
(C1
)).Unit_Name
= No_Unit_Name
then
64 elsif Units
.Table
(T
(C2
)).Unit_Name
= No_Unit_Name
then
70 (Units
.Table
(T
(C1
)).Unit_Name
, Units
.Table
(T
(C2
)).Unit_Name
);
78 procedure Move_Uname
(From
: Natural; To
: Natural) is
83 -- Start of processing for Sort
87 for I
in 1 .. T
'Last loop
88 T
(I
) := Tbl
(Int
(I
) - 1 + Tbl
'First);
91 Sorting
.Sort
(T
'Last);
93 -- Sort is complete, copy result back into place
95 for I
in 1 .. T
'Last loop
96 Tbl
(Int
(I
) - 1 + Tbl
'First) := T
(I
);