1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
10 -- Copyright (C) 1992-1999 Free Software Foundation, Inc. --
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. --
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. --
30 -- GNAT was originally developed by the GNAT team at New York University. --
31 -- It is now maintained by Ada Core Technologies Inc (http://www.gnat.com). --
33 ------------------------------------------------------------------------------
35 with Output
; use Output
;
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
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;
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);
70 -- Now we can generate the unit table listing
74 if not File_Names_Only
then
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
))))
94 Write_Name
(Full_File_Name
(Source_Index
(Sorted_Units
(R
))));
99 Write_Unit_Name
(Unit_Name
(Sorted_Units
(R
)));
101 if Name_Len
> (Unit_Length
- 1) then
103 Write_Str
(Unit_Bln
);
105 for J
in Name_Len
+ 1 .. Unit_Length
loop
110 Write_Name
(Full_File_Name
(Source_Index
(Sorted_Units
(R
))));
112 if Name_Len
> (File_Length
- 1) then
114 Write_Str
(Unit_Bln
);
115 Write_Str
(File_Bln
);
117 for J
in Name_Len
+ 1 .. File_Length
loop
122 Write_Str
(String (Time_Stamp
(Source_Index
(Sorted_Units
(R
)))));