FSF GCC merge 02/23/03
[official-gcc.git] / gcc / ada / lib-list.adb
blob803c13f0309ffb580edb3adf8ab5cf3c0ab2d1f1
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- L I B . L I S T --
6 -- --
7 -- B o d y --
8 -- --
9 -- --
10 -- Copyright (C) 1992-1999 Free Software Foundation, Inc. --
11 -- --
12 -- GNAT is free software; you can redistribute it and/or modify it under --
13 -- terms of the GNU General Public License as published by the Free Soft- --
14 -- ware Foundation; either version 2, or (at your option) any later ver- --
15 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
16 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
17 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
18 -- for more details. You should have received a copy of the GNU General --
19 -- Public License distributed with GNAT; see file COPYING. If not, write --
20 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
21 -- MA 02111-1307, USA. --
22 -- --
23 -- As a special exception, if other files instantiate generics from this --
24 -- unit, or you link this unit with other files to produce an executable, --
25 -- this unit does not by itself cause the resulting executable to be --
26 -- covered by the GNU General Public License. This exception does not --
27 -- however invalidate any other reasons why the executable file might be --
28 -- covered by the GNU Public License. --
29 -- --
30 -- GNAT was originally developed by the GNAT team at New York University. --
31 -- Extensive contributions were provided by Ada Core Technologies Inc. --
32 -- --
33 ------------------------------------------------------------------------------
35 with Output; use Output;
37 separate (Lib)
38 procedure List (File_Names_Only : Boolean := False) is
40 Num_Units : constant Nat := Int (Units.Last) - Int (Units.First) + 1;
41 -- Number of units in file table
43 Sorted_Units : Unit_Ref_Table (1 .. Num_Units);
44 -- Table of unit numbers that we will sort
46 Unit_Node : Node_Id;
47 -- Compilation unit node for current unit
49 Unit_Hed : constant String := "Unit name ";
50 Unit_Und : constant String := "--------- ";
51 Unit_Bln : constant String := " ";
52 File_Hed : constant String := "File name ";
53 File_Und : constant String := "--------- ";
54 File_Bln : constant String := " ";
55 Time_Hed : constant String := "Time stamp";
56 Time_Und : constant String := "----------";
58 Unit_Length : constant Natural := Unit_Hed'Length;
59 File_Length : constant Natural := File_Hed'Length;
61 begin
62 -- First step is to make a sorted table of units
64 for J in 1 .. Num_Units loop
65 Sorted_Units (J) := Unit_Number_Type (Int (Units.First) + J - 1);
66 end loop;
68 Sort (Sorted_Units);
70 -- Now we can generate the unit table listing
72 Write_Eol;
74 if not File_Names_Only then
75 Write_Str (Unit_Hed);
76 Write_Str (File_Hed);
77 Write_Str (Time_Hed);
78 Write_Eol;
80 Write_Str (Unit_Und);
81 Write_Str (File_Und);
82 Write_Str (Time_Und);
83 Write_Eol;
84 Write_Eol;
85 end if;
87 for R in Sorted_Units'Range loop
88 Unit_Node := Cunit (Sorted_Units (R));
90 if File_Names_Only then
91 if not Is_Internal_File_Name
92 (File_Name (Source_Index (Sorted_Units (R))))
93 then
94 Write_Name (Full_File_Name (Source_Index (Sorted_Units (R))));
95 Write_Eol;
96 end if;
98 else
99 Write_Unit_Name (Unit_Name (Sorted_Units (R)));
101 if Name_Len > (Unit_Length - 1) then
102 Write_Eol;
103 Write_Str (Unit_Bln);
104 else
105 for J in Name_Len + 1 .. Unit_Length loop
106 Write_Char (' ');
107 end loop;
108 end if;
110 Write_Name (Full_File_Name (Source_Index (Sorted_Units (R))));
112 if Name_Len > (File_Length - 1) then
113 Write_Eol;
114 Write_Str (Unit_Bln);
115 Write_Str (File_Bln);
116 else
117 for J in Name_Len + 1 .. File_Length loop
118 Write_Char (' ');
119 end loop;
120 end if;
122 Write_Str (String (Time_Stamp (Source_Index (Sorted_Units (R)))));
123 Write_Eol;
124 end if;
125 end loop;
127 Write_Eol;
128 end List;