]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/ada/xr_tabls.ads
[Ada] Bump copyright year
[thirdparty/gcc.git] / gcc / ada / xr_tabls.ads
CommitLineData
415dddc8
RK
1------------------------------------------------------------------------------
2-- --
3-- GNAT COMPILER COMPONENTS --
4-- --
5-- X R _ T A B L S --
6-- --
7-- S p e c --
8-- --
4b490c1e 9-- Copyright (C) 1998-2020, Free Software Foundation, Inc. --
415dddc8
RK
10-- --
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- --
b5c84c3c 13-- ware Foundation; either version 3, or (at your option) any later ver- --
415dddc8
RK
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. See the GNU General Public License --
17-- for more details. You should have received a copy of the GNU General --
b5c84c3c
RD
18-- Public License distributed with GNAT; see file COPYING3. If not, go to --
19-- http://www.gnu.org/licenses for a complete copy of the license. --
415dddc8 20-- --
fbf5a39b
AC
21-- GNAT was originally developed by the GNAT team at New York University. --
22-- Extensive contributions were provided by Ada Core Technologies Inc. --
415dddc8
RK
23-- --
24------------------------------------------------------------------------------
25
448f2610
AC
26-- We need comment here saying what this package is???
27
fbf5a39b 28with GNAT.OS_Lib;
415dddc8
RK
29
30package Xr_Tabls is
31
32 -------------------
33 -- Project files --
34 -------------------
35
36 function ALI_File_Name (Ada_File_Name : String) return String;
9de61fcb 37 -- Returns the ali file name corresponding to Ada_File_Name
fbf5a39b
AC
38
39 procedure Create_Project_File (Name : String);
40 -- Open and parse a new project file. If the file Name could not be
41 -- opened or is not a valid project file, then a project file associated
42 -- with the standard default directories is returned
415dddc8
RK
43
44 function Next_Obj_Dir return String;
45 -- Returns the next directory to visit to find related ali files
fbf5a39b 46 -- If there are no more such directories, returns a null string.
415dddc8
RK
47
48 function Current_Obj_Dir return String;
49 -- Returns the obj_dir which was returned by the last Next_Obj_Dir call
50
415dddc8
RK
51 procedure Reset_Obj_Dir;
52 -- Reset the iterator for Obj_Dir
53
54 ------------
55 -- Tables --
56 ------------
57
58 type Declaration_Reference is private;
59 Empty_Declaration : constant Declaration_Reference;
60
fbf5a39b
AC
61 type Declaration_Array is array (Natural range <>) of Declaration_Reference;
62 type Declaration_Array_Access is access Declaration_Array;
63
415dddc8
RK
64 type File_Reference is private;
65 Empty_File : constant File_Reference;
66
67 type Reference is private;
68 Empty_Reference : constant Reference;
69
fbf5a39b
AC
70 type Reference_Array is array (Natural range <>) of Reference;
71 type Reference_Array_Access is access Reference_Array;
72
73 procedure Free (Arr : in out Reference_Array_Access);
415dddc8
RK
74
75 function Add_Declaration
fbf5a39b
AC
76 (File_Ref : File_Reference;
77 Symbol : String;
78 Line : Natural;
79 Column : Natural;
80 Decl_Type : Character;
54f471f0 81 Is_Parameter : Boolean := False;
fbf5a39b
AC
82 Remove_Only : Boolean := False;
83 Symbol_Match : Boolean := True)
84 return Declaration_Reference;
9de61fcb
RD
85 -- Add a new declaration in the table and return the index to it. Decl_Type
86 -- is the type of the entity Any previous instance of this entity in the
87 -- htable is removed. If Remove_Only is True, then any previous instance is
88 -- removed, but the new entity is never inserted. Symbol_Match should be
89 -- set to False if the name of the symbol doesn't match the pattern from
90 -- the command line. In that case, the entity will not be output by
a5a809b2
AC
91 -- gnatfind. If Symbol_Match is True, the entity will only be output if
92 -- the file name itself matches. Is_Parameter should be set to True if
93 -- the entity is known to be a subprogram parameter.
415dddc8
RK
94
95 procedure Add_Parent
96 (Declaration : in out Declaration_Reference;
97 Symbol : String;
98 Line : Natural;
99 Column : Natural;
100 File_Ref : File_Reference);
101 -- The parent declaration (Symbol in file File_Ref at position Line and
102 -- Column) information is added to Declaration.
103
fbf5a39b 104 function Add_To_Xref_File
07fc65c4 105 (File_Name : String;
07fc65c4
GB
106 Visited : Boolean := True;
107 Emit_Warning : Boolean := False;
108 Gnatchop_File : String := "";
fbf5a39b
AC
109 Gnatchop_Offset : Integer := 0)
110 return File_Reference;
07fc65c4 111 -- Add a new reference to a file in the table. Ref is used to return the
fbf5a39b 112 -- index in the table where this file is stored. Visited is the value which
07fc65c4
GB
113 -- will be used in the table (if True, the file will not be returned by
114 -- Next_Unvisited_File). If Emit_Warning is True and the ali file does
115 -- not exist or does not have cross-referencing information, then a
116 -- warning will be emitted. Gnatchop_File is the name of the file that
117 -- File_Name was extracted from through a call to "gnatchop -r" (using
118 -- pragma Source_Reference). Gnatchop_Offset should be the index of the
119 -- first line of File_Name within the Gnatchop_File.
415dddc8
RK
120
121 procedure Add_Line
122 (File : File_Reference;
123 Line : Natural;
124 Column : Natural);
fbf5a39b
AC
125 -- Add a new reference in a file, which the user has provided on the
126 -- command line. This is used for an optimized matching algorithm.
415dddc8
RK
127
128 procedure Add_Reference
fbf5a39b
AC
129 (Declaration : Declaration_Reference;
130 File_Ref : File_Reference;
131 Line : Natural;
132 Column : Natural;
133 Ref_Type : Character;
134 Labels_As_Ref : Boolean);
415dddc8 135 -- Add a new reference (Ref_Type = 'r'), body (Ref_Type = 'b') or
fbf5a39b
AC
136 -- modification (Ref_Type = 'm') to an entity. If Labels_As_Ref is True,
137 -- then the references to the entity after the end statements ("end Foo")
138 -- are counted as actual references. This means that the entity will never
139 -- be reported as unreferenced (for instance in the case of gnatxref -u).
140
141 function Get_Declarations
142 (Sorted : Boolean := True)
143 return Declaration_Array_Access;
144 -- Return a sorted list of all the declarations in the application.
3354f96d 145 -- Freeing this array is the responsibility of the caller, however it
fbf5a39b
AC
146 -- shouldn't free the actual contents of the array, which are pointers
147 -- to internal data
148
149 function References_Count
150 (Decl : Declaration_Reference;
151 Get_Reads : Boolean := False;
152 Get_Writes : Boolean := False;
153 Get_Bodies : Boolean := False)
154 return Natural;
155 -- Return the number of references in Decl for the categories specified
156 -- by the Get_* parameters (read-only accesses, write accesses and bodies)
157
158 function Get_References
159 (Decl : Declaration_Reference;
160 Get_Reads : Boolean := False;
161 Get_Writes : Boolean := False;
162 Get_Bodies : Boolean := False)
163 return Reference_Array_Access;
9de61fcb
RD
164 -- Return a sorted list of all references to the entity in decl. The
165 -- parameters Get_* are used to specify what kind of references should be
166 -- merged and returned (read-only accesses, write accesses and bodies).
415dddc8
RK
167
168 function Get_Column (Decl : Declaration_Reference) return String;
169 function Get_Column (Ref : Reference) return String;
170
171 function Get_Declaration
172 (File_Ref : File_Reference;
173 Line : Natural;
174 Column : Natural)
175 return Declaration_Reference;
176 -- Returns reference to the declaration found in file File_Ref at the
177 -- given Line and Column
178
179 function Get_Parent
180 (Decl : Declaration_Reference)
fbf5a39b 181 return Declaration_Reference;
415dddc8
RK
182 -- Returns reference to Decl's parent declaration
183
184 function Get_Emit_Warning (File : File_Reference) return Boolean;
185 -- Returns the Emit_Warning field of the structure
186
187 function Get_Gnatchop_File
07fc65c4
GB
188 (File : File_Reference;
189 With_Dir : Boolean := False)
190 return String;
415dddc8 191 function Get_Gnatchop_File
07fc65c4
GB
192 (Ref : Reference;
193 With_Dir : Boolean := False)
194 return String;
415dddc8 195 function Get_Gnatchop_File
07fc65c4
GB
196 (Decl : Declaration_Reference;
197 With_Dir : Boolean := False)
198 return String;
415dddc8 199 -- Return the name of the file that File was extracted from through a
07fc65c4
GB
200 -- call to "gnatchop -r". The file name for File is returned if File
201 -- was not extracted from such a file. The directory will be given only
202 -- if With_Dir is True.
415dddc8
RK
203
204 function Get_File
205 (Decl : Declaration_Reference;
91b1417d
AC
206 With_Dir : Boolean := False) return String;
207 pragma Inline (Get_File);
415dddc8
RK
208 -- Extract column number or file name from reference
209
210 function Get_File
211 (Ref : Reference;
91b1417d 212 With_Dir : Boolean := False) return String;
415dddc8
RK
213 pragma Inline (Get_File);
214
215 function Get_File
216 (File : File_Reference;
217 With_Dir : Boolean := False;
91b1417d 218 Strip : Natural := 0) return String;
9de61fcb
RD
219 -- Returns the file name (and its directory if With_Dir is True or the user
220 -- has used the -f switch on the command line. If Strip is not 0, then the
221 -- last Strip-th "-..." substrings are removed first. For instance, with
222 -- Strip=2, a file name "parent-child1-child2-child3.ali" would be returned
223 -- as "parent-child1.ali". This is used when looking for the ALI file to
224 -- use for a package, since for separates with have to use the parent's
225 -- ALI. The null string is returned if there is no such parent unit.
91b1417d
AC
226 --
227 -- Note that this version of Get_File is not inlined
07fc65c4
GB
228
229 function Get_File_Ref (Ref : Reference) return File_Reference;
230 function Get_Line (Decl : Declaration_Reference) return String;
231 function Get_Line (Ref : Reference) return String;
232 function Get_Symbol (Decl : Declaration_Reference) return String;
233 function Get_Type (Decl : Declaration_Reference) return Character;
fbf5a39b
AC
234 function Is_Parameter (Decl : Declaration_Reference) return Boolean;
235 -- Functions that return the contents of a declaration
415dddc8 236
07fc65c4 237 function Get_Source_Line (Ref : Reference) return String;
415dddc8
RK
238 function Get_Source_Line (Decl : Declaration_Reference) return String;
239 -- Return the source line associated with the reference
240
241 procedure Grep_Source_Files;
9de61fcb
RD
242 -- Parse all the source files which have at least one reference, and grep
243 -- the appropriate source lines so that we'll be able to display them. This
244 -- function should be called once all the .ali files have been parsed, and
245 -- only if the appropriate user switch
fbf5a39b
AC
246 -- has been used (gnatfind -s).
247 --
9de61fcb
RD
248 -- Note: To save memory, the strings for the source lines are shared. Thus
249 -- it is no longer possible to free the references, or we would free the
250 -- same chunk multiple times. It doesn't matter, though, since this is only
251 -- called once, prior to exiting gnatfind.
415dddc8
RK
252
253 function Longest_File_Name return Natural;
254 -- Returns the longest file name found
255
256 function Match (Decl : Declaration_Reference) return Boolean;
257 -- Return True if the declaration matches
258
259 function Match
260 (File : File_Reference;
261 Line : Natural;
262 Column : Natural)
263 return Boolean;
264 -- Returns True if File:Line:Column was given on the command line
265 -- by the user
266
415dddc8 267 function Next_Unvisited_File return File_Reference;
9de61fcb
RD
268 -- Returns the next unvisited library file in the list If there is no more
269 -- unvisited file, return Empty_File. Two calls to this subprogram will
270 -- return different files.
415dddc8
RK
271
272 procedure Set_Default_Match (Value : Boolean);
273 -- Set the default value for match in declarations.
274 -- This is used so that if no file was provided in the
275 -- command line, then every file match
276
fbf5a39b 277 procedure Reset_Directory (File : File_Reference);
9de61fcb 278 -- Reset the cached directory for file. Next time Get_File is called, the
3354f96d 279 -- directory will be recomputed.
415dddc8 280
fbf5a39b 281 procedure Set_Unvisited (File_Ref : File_Reference);
9de61fcb 282 -- Set File_Ref as unvisited. So Next_Unvisited_File will return it
415dddc8 283
fbf5a39b
AC
284 procedure Read_File
285 (File_Name : String;
286 Contents : out GNAT.OS_Lib.String_Access);
3354f96d 287 -- Reads File_Name into the newly allocated string Contents. Types.EOF
9de61fcb
RD
288 -- character will be added to the returned Contents to simplify parsing.
289 -- Name_Error is raised if the file was not found. End_Error is raised if
290 -- the file could not be read correctly. For most systems correct reading
7a5b62b0 291 -- means that the number of bytes read is equal to the file size.
fbf5a39b 292
415dddc8
RK
293private
294 type Project_File (Src_Dir_Length, Obj_Dir_Length : Natural) is record
1804faa4 295 Src_Dir_Index : Integer;
415dddc8
RK
296 Obj_Dir_Index : Integer;
297 Last_Obj_Dir_Start : Natural;
1804faa4
AC
298 Src_Dir : String (1 .. Src_Dir_Length);
299 Obj_Dir : String (1 .. Obj_Dir_Length);
415dddc8
RK
300 end record;
301
302 type Project_File_Ptr is access all Project_File;
303 -- This is actually a list of all the directories to be searched,
304 -- either for source files or for library files
305
415dddc8
RK
306 type Ref_In_File;
307 type Ref_In_File_Ptr is access all Ref_In_File;
308
309 type Ref_In_File is record
310 Line : Natural;
311 Column : Natural;
312 Next : Ref_In_File_Ptr := null;
313 end record;
314
315 type File_Record;
316 type File_Reference is access all File_Record;
317
318 Empty_File : constant File_Reference := null;
fbf5a39b 319 type Cst_String_Access is access constant String;
415dddc8 320
fbf5a39b
AC
321 procedure Free (Str : in out Cst_String_Access);
322
323 type File_Record is record
324 File : Cst_String_Access;
325 Dir : GNAT.OS_Lib.String_Access;
07fc65c4
GB
326 Lines : Ref_In_File_Ptr := null;
327 Visited : Boolean := False;
328 Emit_Warning : Boolean := False;
fbf5a39b 329 Gnatchop_File : GNAT.OS_Lib.String_Access := null;
07fc65c4
GB
330 Gnatchop_Offset : Integer := 0;
331 Next : File_Reference := null;
415dddc8
RK
332 end record;
333 -- Holds a reference to a source file, that was referenced in at least one
07fc65c4
GB
334 -- ALI file. Gnatchop_File will contain the name of the file that File was
335 -- extracted From. Gnatchop_Offset contains the index of the first line of
336 -- File within Gnatchop_File. These two fields are used to properly support
415dddc8 337 -- gnatchop files and pragma Source_Reference.
fbf5a39b
AC
338 --
339 -- Lines is used for files that were given on the command line, to
340 -- memorize the lines and columns that the user specified.
415dddc8 341
415dddc8
RK
342 type Reference_Record;
343 type Reference is access all Reference_Record;
344
345 Empty_Reference : constant Reference := null;
346
347 type Reference_Record is record
348 File : File_Reference;
349 Line : Natural;
350 Column : Natural;
fbf5a39b 351 Source_Line : Cst_String_Access;
415dddc8
RK
352 Next : Reference := null;
353 end record;
354 -- File is a reference to the Ada source file
355 -- Source_Line is the Line as it appears in the source file. This
fbf5a39b
AC
356 -- field is only used when the switch is set on the command line of
357 -- gnatfind.
415dddc8
RK
358
359 type Declaration_Record;
360 type Declaration_Reference is access all Declaration_Record;
361
362 Empty_Declaration : constant Declaration_Reference := null;
363
364 type Declaration_Record (Symbol_Length : Natural) is record
fbf5a39b 365 Key : Cst_String_Access;
fbf5a39b
AC
366 Decl : Reference;
367 Is_Parameter : Boolean := False; -- True if entity is subprog param
368 Decl_Type : Character;
369 Body_Ref : Reference := null;
370 Ref_Ref : Reference := null;
371 Modif_Ref : Reference := null;
372 Match : Boolean := False;
373 Par_Symbol : Declaration_Reference := null;
374 Next : Declaration_Reference := null;
1804faa4 375 Symbol : String (1 .. Symbol_Length);
415dddc8 376 end record;
fbf5a39b
AC
377 -- The lists of referenced (Body_Ref, Ref_Ref and Modif_Ref) are
378 -- kept unsorted until the results needs to be printed. This saves
379 -- lots of time while the internal tables are created.
415dddc8 380
415dddc8
RK
381 pragma Inline (Get_Column);
382 pragma Inline (Get_Emit_Warning);
415dddc8
RK
383 pragma Inline (Get_File_Ref);
384 pragma Inline (Get_Line);
385 pragma Inline (Get_Symbol);
386 pragma Inline (Get_Type);
387 pragma Inline (Longest_File_Name);
415dddc8 388end Xr_Tabls;