Typo in last patch.
[official-gcc.git] / gcc / ada / ali.ads
blob44f5ffa45b867ec4e3fc968745a6121c490998c1
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- A L I --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 1992-2004 Free Software Foundation, Inc. --
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- --
13 -- ware Foundation; either version 2, 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. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING. If not, write --
19 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
20 -- MA 02111-1307, USA. --
21 -- --
22 -- GNAT was originally developed by the GNAT team at New York University. --
23 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 -- --
25 ------------------------------------------------------------------------------
27 -- This package defines the internal data structures used for representation
28 -- of Ada Library Information (ALI) acquired from the ALI files generated
29 -- by the front end.
31 with Casing; use Casing;
32 with Gnatvsn; use Gnatvsn;
33 with Rident; use Rident;
34 with Table;
35 with Types; use Types;
37 with GNAT.HTable; use GNAT.HTable;
39 package ALI is
41 --------------
42 -- Id Types --
43 --------------
45 -- The various entries are stored in tables with distinct subscript
46 -- ranges. The following type definitions indicate the ranges used
47 -- for the subscripts (Id values) for the various tables.
49 type ALI_Id is range 0 .. 999_999;
50 -- Id values used for ALIs table entries
52 type Unit_Id is range 1_000_000 .. 1_999_999;
53 -- Id values used for Unit table entries
55 type With_Id is range 2_000_000 .. 2_999_999;
56 -- Id values used for Withs table entries
58 type Arg_Id is range 3_000_000 .. 3_999_999;
59 -- Id values used for argument table entries
61 type Sdep_Id is range 4_000_000 .. 4_999_999;
62 -- Id values used for Sdep table entries
64 type Source_Id is range 5_000_000 .. 5_999_999;
65 -- Id values used for Source table entries
67 type Interrupt_State_Id is range 6_000_000 .. 6_999_999;
68 -- Id values used for Interrupt_State table entries
70 --------------------
71 -- ALI File Table --
72 --------------------
74 -- Each ALI file read generates an entry in the ALIs table
76 No_ALI_Id : constant ALI_Id := ALI_Id'First;
77 -- Special value indicating no ALI entry
79 First_ALI_Entry : constant ALI_Id := No_ALI_Id + 1;
80 -- Id of first actual entry in table
82 type Main_Program_Type is (None, Proc, Func);
83 -- Indicator of whether unit can be used as main program
85 type ALIs_Record is record
87 Afile : File_Name_Type;
88 -- Name of ALI file
90 Ofile_Full_Name : Name_Id;
91 -- Full name of object file corresponding to the ALI file
93 Sfile : File_Name_Type;
94 -- Name of source file that generates this ALI file (which is equal
95 -- to the name of the source file in the first unit table entry for
96 -- this ALI file, since the body if present is always first).
98 Ver : String (1 .. Ver_Len_Max);
99 -- Value of library version (V line in ALI file). Not set if
100 -- V lines are ignored as a result of the Ignore_Lines parameter.
102 Ver_Len : Natural;
103 -- Length of characters stored in Ver. Not set if V lines are
104 -- ignored as a result of the Ignore_Lines parameter.
106 Interface : Boolean;
107 -- Set True when this is an interface to a standalone library
109 First_Unit : Unit_Id;
110 -- Id of first Unit table entry for this file
112 Last_Unit : Unit_Id;
113 -- Id of last Unit table entry for this file
115 First_Sdep : Sdep_Id;
116 -- Id of first Sdep table entry for this file
118 Last_Sdep : Sdep_Id;
119 -- Id of last Sdep table entry for this file
121 Main_Program : Main_Program_Type;
122 -- Indicator of whether first unit can be used as main program.
123 -- Not set if 'M' appears in Ignore_Lines.
125 Main_Priority : Int;
126 -- Indicates priority value if Main_Program field indicates that
127 -- this can be a main program. A value of -1 (No_Main_Priority)
128 -- indicates that no parameter was found, or no M line was present.
129 -- Not set if 'M' appears in Ignore_Lines.
131 Time_Slice_Value : Int;
132 -- Indicates value of time slice parameter from T=xxx on main program
133 -- line. A value of -1 indicates that no T=xxx parameter was found,
134 -- or no M line was present.
135 -- Not set if 'M' appears in Ignore_Lines.
137 WC_Encoding : Character;
138 -- Wide character encoding if main procedure. Otherwise not relevant.
139 -- Not set if 'M' appears in Ignore_Lines.
141 Locking_Policy : Character;
142 -- Indicates locking policy for units in this file. Space means
143 -- tasking was not used, or that no Locking_Policy pragma was
144 -- present or that this is a language defined unit. Otherwise set
145 -- to first character (upper case) of policy name.
146 -- Not set if 'P' appears in Ignore_Lines.
148 Queuing_Policy : Character;
149 -- Indicates queuing policy for units in this file. Space means
150 -- tasking was not used, or that no Queuing_Policy pragma was
151 -- present or that this is a language defined unit. Otherwise set
152 -- to first character (upper case) of policy name.
153 -- Not set if 'P' appears in Ignore_Lines.
155 Task_Dispatching_Policy : Character;
156 -- Indicates task dispatching policy for units in this file. Space
157 -- means tasking was not used, or that no Task_Dispatching_Policy
158 -- pragma was present or that this is a language defined unit.
159 -- Otherwise set to first character (upper case) of policy name.
160 -- Not set if 'P' appears in Ignore_Lines.
162 Compile_Errors : Boolean;
163 -- Set to True if compile errors for unit. Note that No_Object
164 -- will always be set as well in this case.
165 -- Not set if 'P' appears in Ignore_Lines.
167 Float_Format : Character;
168 -- Set to float format (set to I if no float-format given).
169 -- Not set if 'P' appears in Ignore_Lines.
171 No_Object : Boolean;
172 -- Set to True if no object file generated.
173 -- Not set if 'P' appears in Ignore_Lines.
175 Normalize_Scalars : Boolean;
176 -- Set to True if file was compiled with Normalize_Scalars.
177 -- Not set if 'P' appears in Ignore_Lines.
179 Unit_Exception_Table : Boolean;
180 -- Set to True if unit exception table pointer generated.
181 -- Not set if 'P' appears in Ignore_Lines.
183 Zero_Cost_Exceptions : Boolean;
184 -- Set to True if file was compiled with zero cost exceptions.
185 -- Not set if 'P' appears in Ignore_Lines.
187 Restrictions : Restrictions_Info;
188 -- Restrictions information reconstructed from R lines
190 First_Interrupt_State : Interrupt_State_Id;
191 Last_Interrupt_State : Interrupt_State_Id'Base;
192 -- These point to the first and last entries in the interrupt
193 -- state table for this unit. If there are no entries, then
194 -- Last_Interrupt_State = First_Interrupt_State - 1 (that's
195 -- why the 'Base reference is there, it can be one less than
196 -- the lower bound of the subtype).
197 -- Not set if 'I' appears in Ignore_Lines
199 end record;
201 No_Main_Priority : constant Int := -1;
202 -- Code for no main priority set
204 package ALIs is new Table.Table (
205 Table_Component_Type => ALIs_Record,
206 Table_Index_Type => ALI_Id,
207 Table_Low_Bound => First_ALI_Entry,
208 Table_Initial => 500,
209 Table_Increment => 200,
210 Table_Name => "ALIs");
212 ----------------
213 -- Unit Table --
214 ----------------
216 -- Each unit within an ALI file generates an entry in the unit table
218 No_Unit_Id : constant Unit_Id := Unit_Id'First;
219 -- Special value indicating no unit table entry
221 First_Unit_Entry : constant Unit_Id := No_Unit_Id + 1;
222 -- Id of first actual entry in table
224 type Unit_Type is (Is_Spec, Is_Body, Is_Spec_Only, Is_Body_Only);
225 -- Indicates type of entry, if both body and spec appear in the ALI file,
226 -- then the first unit is marked Is_Body, and the second is marked Is_Spec.
227 -- If only a spec appears, then it is marked as Is_Spec_Only, and if only
228 -- a body appears, then it is marked Is_Body_Only).
230 subtype Version_String is String (1 .. 8);
231 -- Version string, taken from unit record
233 type Unit_Record is record
235 My_ALI : ALI_Id;
236 -- Corresponding ALI entry
238 Uname : Unit_Name_Type;
239 -- Name of Unit
241 Sfile : File_Name_Type;
242 -- Name of source file
244 Preelab : Boolean;
245 -- Indicates presence of PR parameter for a preelaborated package
247 No_Elab : Boolean;
248 -- Indicates presence of NE parameter for a unit that has does not
249 -- have an elaboration routine (since it has no elaboration code).
251 Pure : Boolean;
252 -- Indicates presence of PU parameter for a pure package
254 Dynamic_Elab : Boolean;
255 -- Set to True if the unit was compiled with dynamic elaboration
256 -- checks (i.e. either -gnatE or pragma Elaboration_Checks (RM)
257 -- was used to compile the unit).
259 Elaborate_Body : Boolean;
260 -- Indicates presence of EB parameter for a package which has a
261 -- pragma Preelaborate_Body.
263 Set_Elab_Entity : Boolean;
264 -- Indicates presence of EE parameter for a unit which has an
265 -- elaboration entity which must be set true as part of the
266 -- elaboration of the entity.
268 Has_RACW : Boolean;
269 -- Indicates presence of RA parameter for a package that declares
270 -- at least one Remote Access to Class_Wide (RACW) object.
272 Remote_Types : Boolean;
273 -- Indicates presence of RT parameter for a package which has a
274 -- pragma Remote_Types.
276 Shared_Passive : Boolean;
277 -- Indicates presence of SP parameter for a package which has a
278 -- pragma Shared_Passive.
280 RCI : Boolean;
281 -- Indicates presence of RC parameter for a package which has a
282 -- pragma Remote_Call_Interface.
284 Predefined : Boolean;
285 -- Indicates if unit is language predefined (or a child of such a unit)
287 Internal : Boolean;
288 -- Indicates if unit is an internal unit (or a child of such a unit)
290 First_With : With_Id;
291 -- Id of first withs table entry for this file
293 Last_With : With_Id;
294 -- Id of last withs table entry for this file
296 First_Arg : Arg_Id;
297 -- Id of first args table entry for this file
299 Last_Arg : Arg_Id;
300 -- Id of last args table entry for this file
302 Utype : Unit_Type;
303 -- Type of entry
305 Is_Generic : Boolean;
306 -- True for generic unit (i.e. a generic declaration, or a generic
307 -- body). False for a non-generic unit.
309 Unit_Kind : Character;
310 -- Indicates the nature of the unit. 'p' for Packages and 's' for
311 -- subprograms.
313 Version : Version_String;
314 -- Version of unit
316 Icasing : Casing_Type;
317 -- Indicates casing of identifiers in source file for this unit. This
318 -- is used for informational output, and also for constructing the
319 -- main unit if it is being built in Ada.
321 Kcasing : Casing_Type;
322 -- Indicates casing of keyowords in source file for this unit. This
323 -- is used for informational output, and also for constructing the
324 -- main unit if it is being built in Ada.
326 Elab_Position : aliased Natural;
327 -- Initialized to zero. Set non-zero when a unit is chosen and
328 -- placed in the elaboration order. The value represents the
329 -- ordinal position in the elaboration order.
331 Init_Scalars : Boolean;
332 -- Set True if IS qualifier appears in ALI file, indicating that
333 -- an Initialize_Scalars pragma applies to the unit.
335 Interface : Boolean;
336 -- Set True when this is an interface to a standalone library
338 Body_Needed_For_SAL : Boolean;
339 -- Indicates that the source for the body of the unit (subprogram,
340 -- package, or generic unit) must be included in a standalone library.
341 end record;
343 package Units is new Table.Table (
344 Table_Component_Type => Unit_Record,
345 Table_Index_Type => Unit_Id,
346 Table_Low_Bound => First_Unit_Entry,
347 Table_Initial => 100,
348 Table_Increment => 200,
349 Table_Name => "Unit");
351 ---------------------------
352 -- Interrupt State Table --
353 ---------------------------
355 -- An entry is made in this table for each I (interrupt state) line
356 -- encountered in the input ALI file. The First/Last_Interrupt_Id
357 -- fields of the ALI file entry show the range of entries defined
358 -- within a particular ALI file.
360 type Interrupt_State_Record is record
361 Interrupt_Id : Nat;
362 -- Id from interrupt state entry
364 Interrupt_State : Character;
365 -- State from interrupt state entry ('u'/'r'/'s')
367 IS_Pragma_Line : Nat;
368 -- Line number of Interrupt_State pragma
369 end record;
371 package Interrupt_States is new Table.Table (
372 Table_Component_Type => Interrupt_State_Record,
373 Table_Index_Type => Interrupt_State_Id'Base,
374 Table_Low_Bound => Interrupt_State_Id'First,
375 Table_Initial => 100,
376 Table_Increment => 200,
377 Table_Name => "Interrupt_States");
379 --------------
380 -- Switches --
381 --------------
383 -- These switches record status information about ali files that
384 -- have been read, for quick reference without searching tables.
386 -- Note: a switch will be left set at its default value if the line
387 -- which might otherwise set it is ignored (from Ignore_Lines).
389 Dynamic_Elaboration_Checks_Specified : Boolean := False;
390 -- Set to False by Initialize_ALI. Set to True if Scan_ALI reads
391 -- a unit for which dynamic elaboration checking is enabled.
393 Float_Format_Specified : Character := ' ';
394 -- Set to blank by Initialize_ALI. Set to appropriate float format
395 -- character (V or I, see Opt.Float_Format) if an an ali file that
396 -- is read contains an F line setting the floating point format.
398 Initialize_Scalars_Used : Boolean := False;
399 -- Set True if an ali file contains the Initialize_Scalars flag
401 Locking_Policy_Specified : Character := ' ';
402 -- Set to blank by Initialize_ALI. Set to the appropriate locking policy
403 -- character if an ali file contains a P line setting the locking policy.
405 No_Normalize_Scalars_Specified : Boolean := False;
406 -- Set to False by Initialize_ALI. Set to True if an ali file indicates
407 -- that the file was compiled without normalize scalars.
409 No_Object_Specified : Boolean := False;
410 -- Set to False by Initialize_ALI. Set to True if an ali file contains
411 -- the No_Object flag.
413 Normalize_Scalars_Specified : Boolean := False;
414 -- Set to False by Initialize_ALI. Set to True if an ali file indicates
415 -- that the file was compiled in Normalize_Scalars mode.
417 Queuing_Policy_Specified : Character := ' ';
418 -- Set to blank by Initialize_ALI. Set to the appropriate queuing policy
419 -- character if an ali file contains a P line setting the queuing policy.
421 Cumulative_Restrictions : Restrictions_Info;
422 -- This variable records the cumulative contributions of R lines in all
423 -- ali files, showing whether a restriction pragma exists anywhere, and
424 -- accumulating the aggregate knowledge of violations.
426 Static_Elaboration_Model_Used : Boolean := False;
427 -- Set to False by Initialize_ALI. Set to True if any ALI file for a
428 -- non-internal unit compiled with the static elaboration model is
429 -- encountered.
431 Task_Dispatching_Policy_Specified : Character := ' ';
432 -- Set to blank by Initialize_ALI. Set to the appropriate task dispatching
433 -- policy character if an ali file contains a P line setting the
434 -- task dispatching policy.
436 Unreserve_All_Interrupts_Specified : Boolean := False;
437 -- Set to False by Initialize_ALI. Set to True if an ali file is read that
438 -- has P line specifying unreserve all interrupts mode.
440 Zero_Cost_Exceptions_Specified : Boolean := False;
441 -- Set to False by Initialize_ALI. Set to True if an ali file is read that
442 -- has a P line specifying the generation of zero cost exceptions.
444 -----------------
445 -- Withs Table --
446 -----------------
448 -- Each With line (W line) in an ALI file generates a Withs table entry
450 -- Note: there will be no entries in this table if 'W' lines are ignored
452 No_With_Id : constant With_Id := With_Id'First;
453 -- Special value indicating no withs table entry
455 First_With_Entry : constant With_Id := No_With_Id + 1;
456 -- Id of first actual entry in table
458 type With_Record is record
460 Uname : Unit_Name_Type;
461 -- Name of Unit
463 Sfile : File_Name_Type;
464 -- Name of source file, set to No_File in generic case
466 Afile : File_Name_Type;
467 -- Name of ALI file, set to No_File in generic case
469 Elaborate : Boolean;
470 -- Indicates presence of E parameter
472 Elaborate_All : Boolean;
473 -- Indicates presence of EA parameter
475 Elab_All_Desirable : Boolean;
476 -- Indicates presence of ED parameter
478 Interface : Boolean := False;
479 -- True if the Unit is an Interface of a Stand-Alone Library
481 end record;
483 package Withs is new Table.Table (
484 Table_Component_Type => With_Record,
485 Table_Index_Type => With_Id,
486 Table_Low_Bound => First_With_Entry,
487 Table_Initial => 5000,
488 Table_Increment => 200,
489 Table_Name => "Withs");
491 ---------------------
492 -- Arguments Table --
493 ---------------------
495 -- Each Arg line (A line) in an ALI file generates an Args table entry
497 -- Note: there will be no entries in this table if 'A' lines are ignored
499 No_Arg_Id : constant Arg_Id := Arg_Id'First;
500 -- Special value indicating no args table entry
502 First_Arg_Entry : constant Arg_Id := No_Arg_Id + 1;
503 -- Id of first actual entry in table
505 package Args is new Table.Table (
506 Table_Component_Type => String_Ptr,
507 Table_Index_Type => Arg_Id,
508 Table_Low_Bound => First_Arg_Entry,
509 Table_Initial => 1000,
510 Table_Increment => 100,
511 Table_Name => "Args");
513 --------------------------
514 -- Linker_Options Table --
515 --------------------------
517 -- If an ALI file has one of more Linker_Options lines, then a single
518 -- entry is made in this table. If more than one Linker_Options lines
519 -- appears in a given ALI file, then the arguments are concatenated
520 -- to form the entry in this table, using a NUL character as the
521 -- separator, and a final NUL character is appended to the end.
523 -- Note: there will be no entries in this table if 'L' lines are ignored
525 type Linker_Option_Record is record
526 Name : Name_Id;
527 -- Name entry containing concatenated list of Linker_Options
528 -- arguments separated by NUL and ended by NUL as described above.
530 Unit : Unit_Id;
531 -- Unit_Id for the entry
533 Internal_File : Boolean;
534 -- Set True if the linker options are from an internal file. This is
535 -- used to insert certain standard entries after all the user entries
536 -- but before the entries from the run-time.
538 Original_Pos : Positive;
539 -- Keep track of original position in the linker options table. This
540 -- is used to implement a stable sort when we sort the linker options
541 -- table.
542 end record;
544 -- Declare the Linker_Options Table
546 -- The indexes of active entries in this table range from 1 to the
547 -- value of Linker_Options.Last. The zero'th element is for sort call.
549 package Linker_Options is new Table.Table (
550 Table_Component_Type => Linker_Option_Record,
551 Table_Index_Type => Integer,
552 Table_Low_Bound => 0,
553 Table_Initial => 200,
554 Table_Increment => 400,
555 Table_Name => "Linker_Options");
557 -------------------------------------------
558 -- External Version Reference Hash Table --
559 -------------------------------------------
561 -- This hash table keeps track of external version reference strings
562 -- as read from E lines in the ali file. The stored values do not
563 -- include the terminating quote characters.
565 -- Note: there will be no entries in this table if 'E' lines are ignored
567 type Vindex is range 0 .. 98;
568 -- Type to define range of headers
570 function SHash (S : String_Ptr) return Vindex;
571 -- Hash function for this table
573 function SEq (F1, F2 : String_Ptr) return Boolean;
574 -- Equality function for this table
576 package Version_Ref is new Simple_HTable (
577 Header_Num => Vindex,
578 Element => Boolean,
579 No_Element => False,
580 Key => String_Ptr,
581 Hash => SHash,
582 Equal => SEq);
584 ------------------------------------
585 -- Sdep (Source Dependency) Table --
586 ------------------------------------
588 -- Each source dependency (D line) in an ALI file generates an
589 -- entry in the Sdep table.
591 -- Note: there will be no entries in this table if 'D' lines are ignored
593 No_Sdep_Id : constant Sdep_Id := Sdep_Id'First;
594 -- Special value indicating no Sdep table entry
596 First_Sdep_Entry : Sdep_Id := No_Sdep_Id + 1;
597 -- Id of first Sdep entry for current ali file. This is initialized to
598 -- the first Sdep entry in the table, and then incremented appropriately
599 -- as successive ALI files are scanned.
601 type Sdep_Record is record
603 Sfile : File_Name_Type;
604 -- Name of source file
606 Stamp : Time_Stamp_Type;
607 -- Time stamp value. Note that this will be all zero characters
608 -- for the dummy entries for missing or non-dependent files.
610 Checksum : Word;
611 -- Checksum value. Note that this will be all zero characters
612 -- for the dummy entries for missing or non-dependent files
614 Dummy_Entry : Boolean;
615 -- Set True for dummy entries that correspond to missing files
616 -- or files where no dependency relationship exists.
618 Subunit_Name : Name_Id;
619 -- Name_Id for subunit name if present, else No_Name
621 Rfile : File_Name_Type;
622 -- Reference file name. Same as Sfile unless a Source_Reference
623 -- pragma was used, in which case it reflects the name used in
624 -- the pragma.
626 Start_Line : Nat;
627 -- Starting line number in file. Always 1, unless a Source_Reference
628 -- pragma was used, in which case it reflects the line number value
629 -- given in the pragma.
631 end record;
633 package Sdep is new Table.Table (
634 Table_Component_Type => Sdep_Record,
635 Table_Index_Type => Sdep_Id,
636 Table_Low_Bound => First_Sdep_Entry,
637 Table_Initial => 5000,
638 Table_Increment => 200,
639 Table_Name => "Sdep");
641 ----------------------------
642 -- Use of Name Table Info --
643 ----------------------------
645 -- All unit names and file names are entered into the Names table. The
646 -- Info fields of these entries are used as follows:
648 -- Unit name Info field has Unit_Id of unit table entry
649 -- ALI file name Info field has ALI_Id of ALI table entry
650 -- Source file name Info field has Source_Id of source table entry
652 --------------------------
653 -- Cross-Reference Data --
654 --------------------------
656 -- The following table records cross-reference sections, there is one
657 -- entry for each X header line in the ALI file for an xref section.
659 -- Note: there will be no entries in this table if 'X' lines are ignored
661 type Xref_Section_Record is record
662 File_Num : Sdep_Id;
663 -- Dependency number for file (entry in Sdep.Table)
665 File_Name : Name_Id;
666 -- Name of file
668 First_Entity : Nat;
669 -- First entry in Xref_Entity table
671 Last_Entity : Nat;
672 -- Last entry in Xref_Entity table
673 end record;
675 package Xref_Section is new Table.Table (
676 Table_Component_Type => Xref_Section_Record,
677 Table_Index_Type => Nat,
678 Table_Low_Bound => 1,
679 Table_Initial => 50,
680 Table_Increment => 300,
681 Table_Name => "Xref_Section");
683 -- The following is used to indicate whether a typeref field is present
684 -- for the entity, and if so what kind of typeref field.
686 type Tref_Kind is (
687 Tref_None, -- No typeref present
688 Tref_Access, -- Access type typeref (points to designated type)
689 Tref_Derived, -- Derived type typeref (points to parent type)
690 Tref_Type); -- All other cases
692 -- The following table records entities for which xrefs are recorded
694 type Xref_Entity_Record is record
695 Line : Pos;
696 -- Line number of definition
698 Etype : Character;
699 -- Set to the identification character for the entity. See section
700 -- "Cross-Reference Entity Identifiers" in lib-xref.ads for details.
702 Col : Pos;
703 -- Column number of definition
705 Lib : Boolean;
706 -- True if entity is library level entity
708 Entity : Name_Id;
709 -- Name of entity
711 Rref_Line : Nat;
712 -- This field is set to the line number of a renaming reference if
713 -- one is present, or to zero if no renaming reference is present
715 Rref_Col : Nat;
716 -- This field is set to the column number of a renaming reference
717 -- if one is present, or to zero if no renaming reference is present.
719 Tref : Tref_Kind;
720 -- Indicates if a typeref is present, and if so what kind. Set to
721 -- Tref_None if no typeref field is present.
723 Tref_File_Num : Sdep_Id;
724 -- This field is set to No_Sdep_Id if no typeref is present, or
725 -- if the typeref refers to an entity in standard. Otherwise it
726 -- it is the dependency reference for the file containing the
727 -- declaration of the typeref entity.
729 Tref_Line : Nat;
730 -- This field is set to zero if no typeref is present, or if the
731 -- typeref refers to an entity in standard. Otherwise it contains
732 -- the line number of the declaration of the typeref entity.
734 Tref_Type : Character;
735 -- This field is set to blank if no typeref is present, or if the
736 -- typeref refers to an entity in standard. Otherwise it contains
737 -- the identification character for the typeref entity. See section
738 -- "Cross-Reference Entity Identifiers" in lib-xref.ads for details.
740 Tref_Col : Nat;
741 -- This field is set to zero if no typeref is present, or if the
742 -- typeref refers to an entity in standard. Otherwise it contains
743 -- the column number of the declaration of the parent type.
745 Tref_Standard_Entity : Name_Id;
746 -- This field is set to No_Name if no typeref is present or if the
747 -- typeref refers to a declared entity rather than an entity in
748 -- package Standard. If there is a typeref that references an
749 -- entity in package Standard, then this field is a Name_Id
750 -- reference for the entity name.
752 First_Xref : Nat;
753 -- Index into Xref table of first cross-reference
755 Last_Xref : Nat;
756 -- Index into Xref table of last cross-reference. The value in
757 -- Last_Xref can be less than the First_Xref value to indicate
758 -- that no entries are present in the Xref Table.
759 end record;
761 package Xref_Entity is new Table.Table (
762 Table_Component_Type => Xref_Entity_Record,
763 Table_Index_Type => Nat,
764 Table_Low_Bound => 1,
765 Table_Initial => 500,
766 Table_Increment => 300,
767 Table_Name => "Xref_Entity");
769 -- The following table records actual cross-references
771 type Xref_Record is record
772 File_Num : Sdep_Id;
773 -- Set to the file dependency number for the cross-reference. Note
774 -- that if no file entry is present explicitly, this is just a copy
775 -- of the reference for the current cross-reference section.
777 Line : Pos;
778 -- Line number for the reference
780 Rtype : Character;
781 -- Indicates type of reference, using code used in ALI file:
782 -- r = reference
783 -- m = modification
784 -- b = body entity
785 -- c = completion of private or incomplete type
786 -- x = type extension
787 -- i = implicit reference
788 -- See description in lib-xref.ads for further details
790 Col : Nat;
791 -- Column number for the reference
793 -- Note: for instantiation references, Rtype is set to ' ', and Col is
794 -- set to zero. One or more such entries can follow any other reference.
795 end record;
797 package Xref is new Table.Table (
798 Table_Component_Type => Xref_Record,
799 Table_Index_Type => Nat,
800 Table_Low_Bound => 1,
801 Table_Initial => 2000,
802 Table_Increment => 300,
803 Table_Name => "Xref");
805 --------------------------------------
806 -- Subprograms for Reading ALI File --
807 --------------------------------------
809 procedure Initialize_ALI;
810 -- Initialize the ALI tables. Also resets all switch values to defaults.
812 function Scan_ALI
813 (F : File_Name_Type;
814 T : Text_Buffer_Ptr;
815 Ignore_ED : Boolean;
816 Err : Boolean;
817 Read_Xref : Boolean := False;
818 Read_Lines : String := "";
819 Ignore_Lines : String := "X";
820 Ignore_Errors : Boolean := False) return ALI_Id;
821 -- Given the text, T, of an ALI file, F, scan and store the information
822 -- from the file, and return the Id of the resulting entry in the ALI
823 -- table. Switch settings may be modified as described above in the
824 -- switch description settings.
826 -- Ignore_ED is normally False. If set to True, it indicates that
827 -- all ED (elaboration desirable) indications in the ALI file are
828 -- to be ignored.
830 -- Err determines the action taken on an incorrectly formatted file.
831 -- If Err is False, then an error message is output, and the program
832 -- is terminated. If Err is True, then no error message is output,
833 -- and No_ALI_Id is returned.
835 -- Ignore_Lines requests that Scan_ALI ignore any lines that start
836 -- with any given key character. The default value of X causes all
837 -- Xref lines to be ignored. The corresponding data in the ALI
838 -- tables will not be filled in in this case. It is not possible
839 -- to ignore U (unit) lines, they are always read.
841 -- Read_Lines requests that Scan_ALI process only lines that start
842 -- with one of the given characters. The corresponding data in the
843 -- ALI file for any characters not given in the list will not be
844 -- set. The default value of the null string indicates that all
845 -- lines should be read (unless Ignore_Lines is specified). U
846 -- (unit) lines are always read regardless of the value of this
847 -- parameter.
849 -- Note: either Ignore_Lines or Read_Lines should be non-null.
850 -- but not both. If both are given then only the Read_Lines
851 -- value is processed, and the Ignore_Lines parameter is
852 -- not processed.
854 -- Read_XREF is set True to read and acquire the cross-reference
855 -- information. If Read_XREF is set to True, then the effect is
856 -- to ignore all lines other than U, W, D and X lines and the
857 -- Ignore_Lines and Read_Lines parameters are ignored (i.e. the
858 -- use of True for Read_XREF is equivalent to specifying an
859 -- argument of "UWDX" for Read_Lines.
861 -- Ignore_Errors is normally False. If it is set True, then Scan_ALI
862 -- will do its best to scan through a file and extract all information
863 -- it can, even if there are errors. In this case Err is only set if
864 -- Scan_ALI was completely unable to process the file (e.g. it did not
865 -- look like an ALI file at all). Ignore_Errors is intended to improve
866 -- the downward compatibility of new compilers with old tools.
868 end ALI;