1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2007, 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. 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 COPYING3. If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license. --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 ------------------------------------------------------------------------------
26 -- This package defines the internal data structures used for representation
27 -- of Ada Library Information (ALI) acquired from the ALI files generated
30 with Casing
; use Casing
;
31 with Gnatvsn
; use Gnatvsn
;
32 with Namet
; use Namet
;
33 with Rident
; use Rident
;
35 with Types
; use Types
;
37 with GNAT
.HTable
; use GNAT
.HTable
;
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 type Priority_Specific_Dispatching_Id
is range 7_000_000
.. 7_999_999
;
71 -- Id values used for Priority_Specific_Dispatching table entries
77 -- Each ALI file read generates an entry in the ALIs table
79 No_ALI_Id
: constant ALI_Id
:= ALI_Id
'First;
80 -- Special value indicating no ALI entry
82 First_ALI_Entry
: constant ALI_Id
:= No_ALI_Id
+ 1;
83 -- Id of first actual entry in table
85 type Main_Program_Type
is (None
, Proc
, Func
);
86 -- Indicator of whether unit can be used as main program
88 type ALIs_Record
is record
90 Afile
: File_Name_Type
;
93 Ofile_Full_Name
: File_Name_Type
;
94 -- Full name of object file corresponding to the ALI file
96 Sfile
: File_Name_Type
;
97 -- Name of source file that generates this ALI file (which is equal
98 -- to the name of the source file in the first unit table entry for
99 -- this ALI file, since the body if present is always first).
101 Ver
: String (1 .. Ver_Len_Max
);
102 -- Value of library version (V line in ALI file). Not set if
103 -- V lines are ignored as a result of the Ignore_Lines parameter.
106 -- Length of characters stored in Ver. Not set if V lines are
107 -- ignored as a result of the Ignore_Lines parameter.
109 SAL_Interface
: Boolean;
110 -- Set True when this is an interface to a standalone library
112 First_Unit
: Unit_Id
;
113 -- Id of first Unit table entry for this file
116 -- Id of last Unit table entry for this file
118 First_Sdep
: Sdep_Id
;
119 -- Id of first Sdep table entry for this file
122 -- Id of last Sdep table entry for this file
124 Main_Program
: Main_Program_Type
;
125 -- Indicator of whether first unit can be used as main program.
126 -- Not set if 'M' appears in Ignore_Lines.
129 -- Indicates priority value if Main_Program field indicates that
130 -- this can be a main program. A value of -1 (No_Main_Priority)
131 -- indicates that no parameter was found, or no M line was present.
132 -- Not set if 'M' appears in Ignore_Lines.
134 Time_Slice_Value
: Int
;
135 -- Indicates value of time slice parameter from T=xxx on main program
136 -- line. A value of -1 indicates that no T=xxx parameter was found,
137 -- or no M line was present.
138 -- Not set if 'M' appears in Ignore_Lines.
140 WC_Encoding
: Character;
141 -- Wide character encoding if main procedure. Otherwise not relevant.
142 -- Not set if 'M' appears in Ignore_Lines.
144 Locking_Policy
: Character;
145 -- Indicates locking policy for units in this file. Space means
146 -- tasking was not used, or that no Locking_Policy pragma was
147 -- present or that this is a language defined unit. Otherwise set
148 -- to first character (upper case) of policy name.
149 -- Not set if 'P' appears in Ignore_Lines.
151 Queuing_Policy
: Character;
152 -- Indicates queuing policy for units in this file. Space means
153 -- tasking was not used, or that no Queuing_Policy pragma was
154 -- present or that this is a language defined unit. Otherwise set
155 -- to first character (upper case) of policy name.
156 -- Not set if 'P' appears in Ignore_Lines.
158 Task_Dispatching_Policy
: Character;
159 -- Indicates task dispatching policy for units in this file. Space
160 -- means tasking was not used, or that no Task_Dispatching_Policy
161 -- pragma was present or that this is a language defined unit.
162 -- Otherwise set to first character (upper case) of policy name.
163 -- Not set if 'P' appears in Ignore_Lines.
165 Compile_Errors
: Boolean;
166 -- Set to True if compile errors for unit. Note that No_Object
167 -- will always be set as well in this case.
168 -- Not set if 'P' appears in Ignore_Lines.
170 Float_Format
: Character;
171 -- Set to float format (set to I if no float-format given).
172 -- Not set if 'P' appears in Ignore_Lines.
175 -- Set to True if no object file generated.
176 -- Not set if 'P' appears in Ignore_Lines.
178 Normalize_Scalars
: Boolean;
179 -- Set to True if file was compiled with Normalize_Scalars.
180 -- Not set if 'P' appears in Ignore_Lines.
182 Unit_Exception_Table
: Boolean;
183 -- Set to True if unit exception table pointer generated.
184 -- Not set if 'P' appears in Ignore_Lines.
186 Zero_Cost_Exceptions
: Boolean;
187 -- Set to True if file was compiled with zero cost exceptions.
188 -- Not set if 'P' appears in Ignore_Lines.
190 Restrictions
: Restrictions_Info
;
191 -- Restrictions information reconstructed from R lines
193 First_Interrupt_State
: Interrupt_State_Id
;
194 Last_Interrupt_State
: Interrupt_State_Id
'Base;
195 -- These point to the first and last entries in the interrupt
196 -- state table for this unit. If there are no entries, then
197 -- Last_Interrupt_State = First_Interrupt_State - 1 (that's
198 -- why the 'Base reference is there, it can be one less than
199 -- the lower bound of the subtype).
200 -- Not set if 'I' appears in Ignore_Lines
202 First_Specific_Dispatching
: Priority_Specific_Dispatching_Id
;
203 Last_Specific_Dispatching
: Priority_Specific_Dispatching_Id
'Base;
204 -- These point to the first and last entries in the priority specific
205 -- dispatching table for this unit. If there are no entries, then
206 -- Last_Specific_Dispatching = First_Specific_Dispatching - 1. That
207 -- is why the 'Base reference is there, it can be one less than the
208 -- lower bound of the subtype. Not set if 'S' appears in Ignore_Lines.
212 No_Main_Priority
: constant Int
:= -1;
213 -- Code for no main priority set
215 package ALIs
is new Table
.Table
(
216 Table_Component_Type
=> ALIs_Record
,
217 Table_Index_Type
=> ALI_Id
,
218 Table_Low_Bound
=> First_ALI_Entry
,
219 Table_Initial
=> 500,
220 Table_Increment
=> 200,
221 Table_Name
=> "ALIs");
227 -- Each unit within an ALI file generates an entry in the unit table
229 No_Unit_Id
: constant Unit_Id
:= Unit_Id
'First;
230 -- Special value indicating no unit table entry
232 First_Unit_Entry
: constant Unit_Id
:= No_Unit_Id
+ 1;
233 -- Id of first actual entry in table
235 type Unit_Type
is (Is_Spec
, Is_Body
, Is_Spec_Only
, Is_Body_Only
);
236 -- Indicates type of entry, if both body and spec appear in the ALI file,
237 -- then the first unit is marked Is_Body, and the second is marked Is_Spec.
238 -- If only a spec appears, then it is marked as Is_Spec_Only, and if only
239 -- a body appears, then it is marked Is_Body_Only).
241 subtype Version_String
is String (1 .. 8);
242 -- Version string, taken from unit record
244 type Unit_Record
is record
247 -- Corresponding ALI entry
249 Uname
: Unit_Name_Type
;
252 Sfile
: File_Name_Type
;
253 -- Name of source file
256 -- Indicates presence of PR parameter for a preelaborated package
259 -- Indicates presence of NE parameter for a unit that has does not
260 -- have an elaboration routine (since it has no elaboration code).
263 -- Indicates presence of PU parameter for a package having pragma Pure
265 Dynamic_Elab
: Boolean;
266 -- Set to True if the unit was compiled with dynamic elaboration checks
267 -- (i.e. either -gnatE or pragma Elaboration_Checks (RM) was used to
268 -- compile the unit).
270 Elaborate_Body
: Boolean;
271 -- Indicates presence of EB parameter for a package which has a pragma
272 -- Elaborate_Body, and also for generic package instantiations.
274 Set_Elab_Entity
: Boolean;
275 -- Indicates presence of EE parameter for a unit which has an
276 -- elaboration entity which must be set true as part of the
277 -- elaboration of the entity.
280 -- Indicates presence of RA parameter for a package that declares at
281 -- least one Remote Access to Class_Wide (RACW) object.
283 Remote_Types
: Boolean;
284 -- Indicates presence of RT parameter for a package which has a
285 -- pragma Remote_Types.
287 Shared_Passive
: Boolean;
288 -- Indicates presence of SP parameter for a package which has a pragma
292 -- Indicates presence of RC parameter for a package which has a pragma
293 -- Remote_Call_Interface.
295 Predefined
: Boolean;
296 -- Indicates if unit is language predefined (or a child of such a unit)
299 -- Indicates if unit is an internal unit (or a child of such a unit)
301 First_With
: With_Id
;
302 -- Id of first withs table entry for this file
305 -- Id of last withs table entry for this file
308 -- Id of first args table entry for this file
311 -- Id of last args table entry for this file
316 Is_Generic
: Boolean;
317 -- True for generic unit (i.e. a generic declaration, or a generic
318 -- body). False for a non-generic unit.
320 Unit_Kind
: Character;
321 -- Indicates the nature of the unit. 'p' for Packages and 's' for
324 Version
: Version_String
;
327 Icasing
: Casing_Type
;
328 -- Indicates casing of identifiers in source file for this unit. This
329 -- is used for informational output, and also for constructing the main
330 -- unit if it is being built in Ada.
332 Kcasing
: Casing_Type
;
333 -- Indicates casing of keywords in source file for this unit. This is
334 -- used for informational output, and also for constructing the main
335 -- unit if it is being built in Ada.
337 Elab_Position
: aliased Natural;
338 -- Initialized to zero. Set non-zero when a unit is chosen and
339 -- placed in the elaboration order. The value represents the
340 -- ordinal position in the elaboration order.
342 Init_Scalars
: Boolean;
343 -- Set True if IS qualifier appears in ALI file, indicating that
344 -- an Initialize_Scalars pragma applies to the unit.
346 SAL_Interface
: Boolean;
347 -- Set True when this is an interface to a standalone library
349 Body_Needed_For_SAL
: Boolean;
350 -- Indicates that the source for the body of the unit (subprogram,
351 -- package, or generic unit) must be included in a standalone library.
353 Elaborate_Body_Desirable
: Boolean;
354 -- Indicates that the front end elaboration circuitry decided that it
355 -- would be a good idea if this package had Elaborate_Body. The binder
356 -- will attempt, but does not promise, to place the elaboration call
357 -- for the body right after the call for the spec, or at least as close
358 -- together as possible.
362 package Units
is new Table
.Table
(
363 Table_Component_Type
=> Unit_Record
,
364 Table_Index_Type
=> Unit_Id
,
365 Table_Low_Bound
=> First_Unit_Entry
,
366 Table_Initial
=> 100,
367 Table_Increment
=> 200,
368 Table_Name
=> "Unit");
370 ---------------------------
371 -- Interrupt State Table --
372 ---------------------------
374 -- An entry is made in this table for each I (interrupt state) line
375 -- encountered in the input ALI file. The First/Last_Interrupt_Id
376 -- fields of the ALI file entry show the range of entries defined
377 -- within a particular ALI file.
379 type Interrupt_State_Record
is record
381 -- Id from interrupt state entry
383 Interrupt_State
: Character;
384 -- State from interrupt state entry ('u'/'r'/'s')
386 IS_Pragma_Line
: Nat
;
387 -- Line number of Interrupt_State pragma
390 package Interrupt_States
is new Table
.Table
(
391 Table_Component_Type
=> Interrupt_State_Record
,
392 Table_Index_Type
=> Interrupt_State_Id
'Base,
393 Table_Low_Bound
=> Interrupt_State_Id
'First,
394 Table_Initial
=> 100,
395 Table_Increment
=> 200,
396 Table_Name
=> "Interrupt_States");
398 -----------------------------------------
399 -- Priority Specific Dispatching Table --
400 -----------------------------------------
402 -- An entry is made in this table for each S (priority specific
403 -- dispatching) line encountered in the input ALI file. The
404 -- First/Last_Specific_Dispatching_Id fields of the ALI file
405 -- entry show the range of entries defined within a particular
408 type Specific_Dispatching_Record
is record
409 Dispatching_Policy
: Character;
410 -- First character (upper case) of the corresponding policy name
412 First_Priority
: Nat
;
413 -- Lower bound of the priority range to which the specified dispatching
417 -- Upper bound of the priority range to which the specified dispatching
420 PSD_Pragma_Line
: Nat
;
421 -- Line number of Priority_Specific_Dispatching pragma
424 package Specific_Dispatching
is new Table
.Table
(
425 Table_Component_Type
=> Specific_Dispatching_Record
,
426 Table_Index_Type
=> Priority_Specific_Dispatching_Id
'Base,
427 Table_Low_Bound
=> Priority_Specific_Dispatching_Id
'First,
428 Table_Initial
=> 100,
429 Table_Increment
=> 200,
430 Table_Name
=> "Priority_Specific_Dispatching");
436 -- These switches record status information about ali files that
437 -- have been read, for quick reference without searching tables.
439 -- Note: a switch will be left set at its default value if the line
440 -- which might otherwise set it is ignored (from Ignore_Lines).
442 Dynamic_Elaboration_Checks_Specified
: Boolean := False;
443 -- Set to False by Initialize_ALI. Set to True if Scan_ALI reads
444 -- a unit for which dynamic elaboration checking is enabled.
446 Float_Format_Specified
: Character := ' ';
447 -- Set to blank by Initialize_ALI. Set to appropriate float format
448 -- character (V or I, see Opt.Float_Format) if an an ali file that
449 -- is read contains an F line setting the floating point format.
451 Initialize_Scalars_Used
: Boolean := False;
452 -- Set True if an ali file contains the Initialize_Scalars flag
454 Locking_Policy_Specified
: Character := ' ';
455 -- Set to blank by Initialize_ALI. Set to the appropriate locking policy
456 -- character if an ali file contains a P line setting the locking policy.
458 No_Normalize_Scalars_Specified
: Boolean := False;
459 -- Set to False by Initialize_ALI. Set to True if an ali file indicates
460 -- that the file was compiled without normalize scalars.
462 No_Object_Specified
: Boolean := False;
463 -- Set to False by Initialize_ALI. Set to True if an ali file contains
464 -- the No_Object flag.
466 Normalize_Scalars_Specified
: Boolean := False;
467 -- Set to False by Initialize_ALI. Set to True if an ali file indicates
468 -- that the file was compiled in Normalize_Scalars mode.
470 Queuing_Policy_Specified
: Character := ' ';
471 -- Set to blank by Initialize_ALI. Set to the appropriate queuing policy
472 -- character if an ali file contains a P line setting the queuing policy.
474 Cumulative_Restrictions
: Restrictions_Info
:= No_Restrictions
;
475 -- This variable records the cumulative contributions of R lines in all
476 -- ali files, showing whether a restriction pragma exists anywhere, and
477 -- accumulating the aggregate knowledge of violations.
479 Static_Elaboration_Model_Used
: Boolean := False;
480 -- Set to False by Initialize_ALI. Set to True if any ALI file for a
481 -- non-internal unit compiled with the static elaboration model is
484 Task_Dispatching_Policy_Specified
: Character := ' ';
485 -- Set to blank by Initialize_ALI. Set to the appropriate task dispatching
486 -- policy character if an ali file contains a P line setting the
487 -- task dispatching policy.
489 Unreserve_All_Interrupts_Specified
: Boolean := False;
490 -- Set to False by Initialize_ALI. Set to True if an ali file is read that
491 -- has P line specifying unreserve all interrupts mode.
493 Zero_Cost_Exceptions_Specified
: Boolean := False;
494 -- Set to False by Initialize_ALI. Set to True if an ali file is read that
495 -- has a P line specifying the generation of zero cost exceptions.
501 -- Each With line (W line) in an ALI file generates a Withs table entry
503 -- Note: there will be no entries in this table if 'W' lines are ignored
505 No_With_Id
: constant With_Id
:= With_Id
'First;
506 -- Special value indicating no withs table entry
508 First_With_Entry
: constant With_Id
:= No_With_Id
+ 1;
509 -- Id of first actual entry in table
511 type With_Record
is record
513 Uname
: Unit_Name_Type
;
516 Sfile
: File_Name_Type
;
517 -- Name of source file, set to No_File in generic case
519 Afile
: File_Name_Type
;
520 -- Name of ALI file, set to No_File in generic case
523 -- Indicates presence of E parameter
525 Elaborate_All
: Boolean;
526 -- Indicates presence of EA parameter
528 Elab_All_Desirable
: Boolean;
529 -- Indicates presence of AD parameter
531 Elab_Desirable
: Boolean;
532 -- Indicates presence of ED parameter
534 SAL_Interface
: Boolean := False;
535 -- True if the Unit is an Interface of a Stand-Alone Library
539 package Withs
is new Table
.Table
(
540 Table_Component_Type
=> With_Record
,
541 Table_Index_Type
=> With_Id
,
542 Table_Low_Bound
=> First_With_Entry
,
543 Table_Initial
=> 5000,
544 Table_Increment
=> 200,
545 Table_Name
=> "Withs");
547 ---------------------
548 -- Arguments Table --
549 ---------------------
551 -- Each Arg line (A line) in an ALI file generates an Args table entry
553 -- Note: there will be no entries in this table if 'A' lines are ignored
555 No_Arg_Id
: constant Arg_Id
:= Arg_Id
'First;
556 -- Special value indicating no args table entry
558 First_Arg_Entry
: constant Arg_Id
:= No_Arg_Id
+ 1;
559 -- Id of first actual entry in table
561 package Args
is new Table
.Table
(
562 Table_Component_Type
=> String_Ptr
,
563 Table_Index_Type
=> Arg_Id
,
564 Table_Low_Bound
=> First_Arg_Entry
,
565 Table_Initial
=> 1000,
566 Table_Increment
=> 100,
567 Table_Name
=> "Args");
569 --------------------------
570 -- Linker_Options Table --
571 --------------------------
573 -- If an ALI file has one of more Linker_Options lines, then a single
574 -- entry is made in this table. If more than one Linker_Options lines
575 -- appears in a given ALI file, then the arguments are concatenated
576 -- to form the entry in this table, using a NUL character as the
577 -- separator, and a final NUL character is appended to the end.
579 -- Note: there will be no entries in this table if 'L' lines are ignored
581 type Linker_Option_Record
is record
583 -- Name entry containing concatenated list of Linker_Options
584 -- arguments separated by NUL and ended by NUL as described above.
587 -- Unit_Id for the entry
589 Internal_File
: Boolean;
590 -- Set True if the linker options are from an internal file. This is
591 -- used to insert certain standard entries after all the user entries
592 -- but before the entries from the run-time.
594 Original_Pos
: Positive;
595 -- Keep track of original position in the linker options table. This
596 -- is used to implement a stable sort when we sort the linker options
600 -- Declare the Linker_Options Table
602 -- The indexes of active entries in this table range from 1 to the
603 -- value of Linker_Options.Last. The zero'th element is for sort call.
605 package Linker_Options
is new Table
.Table
(
606 Table_Component_Type
=> Linker_Option_Record
,
607 Table_Index_Type
=> Integer,
608 Table_Low_Bound
=> 0,
609 Table_Initial
=> 200,
610 Table_Increment
=> 400,
611 Table_Name
=> "Linker_Options");
613 -------------------------------------------
614 -- External Version Reference Hash Table --
615 -------------------------------------------
617 -- This hash table keeps track of external version reference strings
618 -- as read from E lines in the ali file. The stored values do not
619 -- include the terminating quote characters.
621 -- Note: there will be no entries in this table if 'E' lines are ignored
623 type Vindex
is range 0 .. 98;
624 -- Type to define range of headers
626 function SHash
(S
: String_Ptr
) return Vindex
;
627 -- Hash function for this table
629 function SEq
(F1
, F2
: String_Ptr
) return Boolean;
630 -- Equality function for this table
632 package Version_Ref
is new Simple_HTable
(
633 Header_Num
=> Vindex
,
640 -------------------------
641 -- No_Dependency Table --
642 -------------------------
644 -- Each R line for a No_Dependency Restriction generates an entry in
645 -- this No_Dependency table.
647 type No_Dep_Record
is record
649 -- ALI File containing the entry
651 No_Dep_Unit
: Name_Id
;
652 -- Id for names table entry including entire name, including periods
655 package No_Deps
is new Table
.Table
(
656 Table_Component_Type
=> No_Dep_Record
,
657 Table_Index_Type
=> Integer,
658 Table_Low_Bound
=> 0,
659 Table_Initial
=> 200,
660 Table_Increment
=> 400,
661 Table_Name
=> "No_Deps");
663 ------------------------------------
664 -- Sdep (Source Dependency) Table --
665 ------------------------------------
667 -- Each source dependency (D line) in an ALI file generates an
668 -- entry in the Sdep table.
670 -- Note: there will be no entries in this table if 'D' lines are ignored
672 No_Sdep_Id
: constant Sdep_Id
:= Sdep_Id
'First;
673 -- Special value indicating no Sdep table entry
675 First_Sdep_Entry
: Sdep_Id
:= No_Sdep_Id
+ 1;
676 -- Id of first Sdep entry for current ali file. This is initialized to
677 -- the first Sdep entry in the table, and then incremented appropriately
678 -- as successive ALI files are scanned.
680 type Sdep_Record
is record
682 Sfile
: File_Name_Type
;
683 -- Name of source file
685 Stamp
: Time_Stamp_Type
;
686 -- Time stamp value. Note that this will be all zero characters
687 -- for the dummy entries for missing or non-dependent files.
690 -- Checksum value. Note that this will be all zero characters
691 -- for the dummy entries for missing or non-dependent files
693 Dummy_Entry
: Boolean;
694 -- Set True for dummy entries that correspond to missing files
695 -- or files where no dependency relationship exists.
697 Subunit_Name
: Name_Id
;
698 -- Name_Id for subunit name if present, else No_Name
700 Rfile
: File_Name_Type
;
701 -- Reference file name. Same as Sfile unless a Source_Reference
702 -- pragma was used, in which case it reflects the name used in
706 -- Starting line number in file. Always 1, unless a Source_Reference
707 -- pragma was used, in which case it reflects the line number value
708 -- given in the pragma.
712 package Sdep
is new Table
.Table
(
713 Table_Component_Type
=> Sdep_Record
,
714 Table_Index_Type
=> Sdep_Id
,
715 Table_Low_Bound
=> First_Sdep_Entry
,
716 Table_Initial
=> 5000,
717 Table_Increment
=> 200,
718 Table_Name
=> "Sdep");
720 ----------------------------
721 -- Use of Name Table Info --
722 ----------------------------
724 -- All unit names and file names are entered into the Names table. The
725 -- Info fields of these entries are used as follows:
727 -- Unit name Info field has Unit_Id of unit table entry
728 -- ALI file name Info field has ALI_Id of ALI table entry
729 -- Source file name Info field has Source_Id of source table entry
731 --------------------------
732 -- Cross-Reference Data --
733 --------------------------
735 -- The following table records cross-reference sections, there is one
736 -- entry for each X header line in the ALI file for an xref section.
738 -- Note: there will be no entries in this table if 'X' lines are ignored
740 type Xref_Section_Record
is record
742 -- Dependency number for file (entry in Sdep.Table)
744 File_Name
: File_Name_Type
;
748 -- First entry in Xref_Entity table
751 -- Last entry in Xref_Entity table
754 package Xref_Section
is new Table
.Table
(
755 Table_Component_Type
=> Xref_Section_Record
,
756 Table_Index_Type
=> Nat
,
757 Table_Low_Bound
=> 1,
759 Table_Increment
=> 300,
760 Table_Name
=> "Xref_Section");
762 -- The following is used to indicate whether a typeref field is present
763 -- for the entity, and if so what kind of typeref field.
766 Tref_None
, -- No typeref present
767 Tref_Access
, -- Access type typeref (points to designated type)
768 Tref_Derived
, -- Derived type typeref (points to parent type)
769 Tref_Type
); -- All other cases
771 -- The following table records entities for which xrefs are recorded
773 type Xref_Entity_Record
is record
775 -- Line number of definition
778 -- Set to the identification character for the entity. See section
779 -- "Cross-Reference Entity Identifiers" in lib-xref.ads for details.
782 -- Column number of definition
785 -- True if entity is library level entity
790 Iref_File_Num
: Sdep_Id
;
791 -- This field is set to the dependency reference for the file containing
792 -- the generic entity that this one instantiates, or to No_Sdep_Id if
793 -- the current entity is not an instantiation
796 -- This field is set to the line number in Iref_File_Num of the generic
797 -- entity that this one instantiates, or to zero if the current entity
798 -- is not an instantiation.
801 -- This field is set to the line number of a renaming reference if
802 -- one is present, or to zero if no renaming reference is present
805 -- This field is set to the column number of a renaming reference
806 -- if one is present, or to zero if no renaming reference is present.
809 -- Indicates if a typeref is present, and if so what kind. Set to
810 -- Tref_None if no typeref field is present.
812 Tref_File_Num
: Sdep_Id
;
813 -- This field is set to No_Sdep_Id if no typeref is present, or
814 -- if the typeref refers to an entity in standard. Otherwise it
815 -- it is the dependency reference for the file containing the
816 -- declaration of the typeref entity.
819 -- This field is set to zero if no typeref is present, or if the
820 -- typeref refers to an entity in standard. Otherwise it contains
821 -- the line number of the declaration of the typeref entity.
823 Tref_Type
: Character;
824 -- This field is set to blank if no typeref is present, or if the
825 -- typeref refers to an entity in standard. Otherwise it contains
826 -- the identification character for the typeref entity. See section
827 -- "Cross-Reference Entity Identifiers" in lib-xref.ads for details.
830 -- This field is set to zero if no typeref is present, or if the
831 -- typeref refers to an entity in standard. Otherwise it contains
832 -- the column number of the declaration of the parent type.
834 Tref_Standard_Entity
: Name_Id
;
835 -- This field is set to No_Name if no typeref is present or if the
836 -- typeref refers to a declared entity rather than an entity in
837 -- package Standard. If there is a typeref that references an
838 -- entity in package Standard, then this field is a Name_Id
839 -- reference for the entity name.
841 Oref_File_Num
: Sdep_Id
;
842 -- This field is set to No_Sdep_Id if the entity doesn't override any
843 -- other entity, or to the dependency reference for the overriden
848 -- These two fields are set to the line and column of the overriden
852 -- Index into Xref table of first cross-reference
855 -- Index into Xref table of last cross-reference. The value in
856 -- Last_Xref can be less than the First_Xref value to indicate
857 -- that no entries are present in the Xref Table.
860 package Xref_Entity
is new Table
.Table
(
861 Table_Component_Type
=> Xref_Entity_Record
,
862 Table_Index_Type
=> Nat
,
863 Table_Low_Bound
=> 1,
864 Table_Initial
=> 500,
865 Table_Increment
=> 300,
866 Table_Name
=> "Xref_Entity");
868 Array_Index_Reference
: constant Character := '*';
869 Interface_Reference
: constant Character := 'I';
870 -- Some special types of references. In the ALI file itself, these
871 -- are output as attributes of the entity, not as references, but
872 -- there is no provision in Xref_Entity_Record for storing multiple
875 -- The following table records actual cross-references
877 type Xref_Record
is record
879 -- Set to the file dependency number for the cross-reference. Note
880 -- that if no file entry is present explicitly, this is just a copy
881 -- of the reference for the current cross-reference section.
884 -- Line number for the reference. This is zero when referencing a
885 -- predefined entity, but in this case Name is set.
888 -- Indicates type of reference, using code used in ALI file:
892 -- c = completion of private or incomplete type
893 -- x = type extension
894 -- i = implicit reference
895 -- Array_Index_Reference = reference to the index of an array
896 -- Interface_Reference = reference to an interface implemented
898 -- See description in lib-xref.ads for further details
901 -- Column number for the reference
903 Name
: Name_Id
:= No_Name
;
904 -- This is only used when referencing a predefined entity. Currently,
905 -- this only occurs for array indexes.
907 -- Note: for instantiation references, Rtype is set to ' ', and Col is
908 -- set to zero. One or more such entries can follow any other reference.
909 -- When there is more than one such entry, this is to be read as:
910 -- e.g. ref1 ref2 ref3
911 -- ref1 is a reference to an entity that was instantied at ref2.
912 -- ref2 itself is also the result of an instantiation, that took
916 package Xref
is new Table
.Table
(
917 Table_Component_Type
=> Xref_Record
,
918 Table_Index_Type
=> Nat
,
919 Table_Low_Bound
=> 1,
920 Table_Initial
=> 2000,
921 Table_Increment
=> 300,
922 Table_Name
=> "Xref");
924 --------------------------------------
925 -- Subprograms for Reading ALI File --
926 --------------------------------------
928 procedure Initialize_ALI
;
929 -- Initialize the ALI tables. Also resets all switch values to defaults
936 Read_Xref
: Boolean := False;
937 Read_Lines
: String := "";
938 Ignore_Lines
: String := "X";
939 Ignore_Errors
: Boolean := False) return ALI_Id
;
940 -- Given the text, T, of an ALI file, F, scan and store the information
941 -- from the file, and return the Id of the resulting entry in the ALI
942 -- table. Switch settings may be modified as described above in the
943 -- switch description settings.
945 -- Ignore_ED is normally False. If set to True, it indicates that
946 -- all AD/ED (elaboration desirable) indications in the ALI file are
947 -- to be ignored. This parameter is obsolete now that the -f switch
948 -- is removed from gnatbind, and should be removed ???
950 -- Err determines the action taken on an incorrectly formatted file.
951 -- If Err is False, then an error message is output, and the program
952 -- is terminated. If Err is True, then no error message is output,
953 -- and No_ALI_Id is returned.
955 -- Ignore_Lines requests that Scan_ALI ignore any lines that start
956 -- with any given key character. The default value of X causes all
957 -- Xref lines to be ignored. The corresponding data in the ALI
958 -- tables will not be filled in in this case. It is not possible
959 -- to ignore U (unit) lines, they are always read.
961 -- Read_Lines requests that Scan_ALI process only lines that start
962 -- with one of the given characters. The corresponding data in the
963 -- ALI file for any characters not given in the list will not be
964 -- set. The default value of the null string indicates that all
965 -- lines should be read (unless Ignore_Lines is specified). U
966 -- (unit) lines are always read regardless of the value of this
969 -- Note: either Ignore_Lines or Read_Lines should be non-null.
970 -- but not both. If both are given then only the Read_Lines
971 -- value is processed, and the Ignore_Lines parameter is
974 -- Read_XREF is set True to read and acquire the cross-reference
975 -- information. If Read_XREF is set to True, then the effect is
976 -- to ignore all lines other than U, W, D and X lines and the
977 -- Ignore_Lines and Read_Lines parameters are ignored (i.e. the
978 -- use of True for Read_XREF is equivalent to specifying an
979 -- argument of "UWDX" for Read_Lines.
981 -- Ignore_Errors is normally False. If it is set True, then Scan_ALI
982 -- will do its best to scan through a file and extract all information
983 -- it can, even if there are errors. In this case Err is only set if
984 -- Scan_ALI was completely unable to process the file (e.g. it did not
985 -- look like an ALI file at all). Ignore_Errors is intended to improve
986 -- the downward compatibility of new compilers with old tools.