1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2017, 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 ------------------------------------------------------------------------------
27 with Atree
; use Atree
;
28 with Casing
; use Casing
;
29 with Debug
; use Debug
;
30 with Einfo
; use Einfo
;
31 with Errout
; use Errout
;
32 with Fname
; use Fname
;
33 with Fname
.UF
; use Fname
.UF
;
34 with Lib
.Util
; use Lib
.Util
;
35 with Lib
.Xref
; use Lib
.Xref
;
36 with Nlists
; use Nlists
;
37 with Gnatvsn
; use Gnatvsn
;
39 with Osint
; use Osint
;
40 with Osint
.C
; use Osint
.C
;
41 with Output
; use Output
;
43 with Par_SCO
; use Par_SCO
;
44 with Restrict
; use Restrict
;
45 with Rident
; use Rident
;
46 with Stand
; use Stand
;
48 with Sem_Eval
; use Sem_Eval
;
49 with Sinfo
; use Sinfo
;
50 with Sinput
; use Sinput
;
51 with Snames
; use Snames
;
52 with Stringt
; use Stringt
;
53 with Tbuild
; use Tbuild
;
54 with Uname
; use Uname
;
56 with System
.Case_Util
; use System
.Case_Util
;
57 with System
.WCh_Con
; use System
.WCh_Con
;
59 package body Lib
.Writ
is
61 -----------------------
62 -- Local Subprograms --
63 -----------------------
65 procedure Write_Unit_Name
(N
: Node_Id
);
66 -- Used to write out the unit name for R (pragma Restriction) lines
67 -- for uses of Restriction (No_Dependence => unit-name).
69 ----------------------------------
70 -- Add_Preprocessing_Dependency --
71 ----------------------------------
73 procedure Add_Preprocessing_Dependency
(S
: Source_File_Index
) is
76 Units
.Table
(Units
.Last
) :=
77 (Unit_File_Name
=> File_Name
(S
),
78 Unit_Name
=> No_Unit_Name
,
79 Expected_Unit
=> No_Unit_Name
,
82 Cunit_Entity
=> Empty
,
84 Dynamic_Elab
=> False,
86 Generate_Code
=> False,
89 Ident_String
=> Empty
,
90 Is_Predefined_Renaming
=> False,
91 Is_Internal_Unit
=> False,
92 Is_Predefined_Unit
=> False,
98 No_Elab_Code_All
=> False,
99 Primary_Stack_Count
=> 0,
100 Sec_Stack_Count
=> 0,
103 Error_Location
=> No_Location
,
105 end Add_Preprocessing_Dependency
;
107 ------------------------------
108 -- Ensure_System_Dependency --
109 ------------------------------
111 procedure Ensure_System_Dependency
is
112 System_Uname
: Unit_Name_Type
;
113 -- Unit name for system spec if needed for dummy entry
115 System_Fname
: File_Name_Type
;
116 -- File name for system spec if needed for dummy entry
119 -- Nothing to do if we already compiled System
121 for Unum
in Units
.First
.. Last_Unit
loop
122 if Units
.Table
(Unum
).Source_Index
= System_Source_File_Index
then
127 -- If no entry for system.ads in the units table, then add a entry
128 -- to the units table for system.ads, which will be referenced when
129 -- the ali file is generated. We need this because every unit depends
130 -- on system as a result of Targparm scanning the system.ads file to
131 -- determine the target dependent parameters for the compilation.
134 Name_Buffer
(1 .. 6) := "system";
135 System_Uname
:= Name_To_Unit_Name
(Name_Enter
);
136 System_Fname
:= File_Name
(System_Source_File_Index
);
138 Units
.Increment_Last
;
139 Units
.Table
(Units
.Last
) :=
140 (Unit_File_Name
=> System_Fname
,
141 Unit_Name
=> System_Uname
,
142 Expected_Unit
=> System_Uname
,
143 Source_Index
=> System_Source_File_Index
,
145 Cunit_Entity
=> Empty
,
147 Dynamic_Elab
=> False,
149 Generate_Code
=> False,
152 Ident_String
=> Empty
,
153 Is_Predefined_Renaming
=> False,
154 Is_Internal_Unit
=> True,
155 Is_Predefined_Unit
=> True,
161 No_Elab_Code_All
=> False,
162 Primary_Stack_Count
=> 0,
163 Sec_Stack_Count
=> 0,
166 Error_Location
=> No_Location
,
169 -- Parse system.ads so that the checksum is set right. Style checks are
170 -- not applied. The Ekind is set to ensure that this reference is always
171 -- present in the ali file.
174 Save_Mindex
: constant Nat
:= Multiple_Unit_Index
;
175 Save_Style
: constant Boolean := Style_Check
;
177 Multiple_Unit_Index
:= 0;
178 Style_Check
:= False;
179 Initialize_Scanner
(Units
.Last
, System_Source_File_Index
);
180 Discard_List
(Par
(Configuration_Pragmas
=> False));
181 Set_Ekind
(Cunit_Entity
(Units
.Last
), E_Package
);
182 Set_Scope
(Cunit_Entity
(Units
.Last
), Standard_Standard
);
183 Style_Check
:= Save_Style
;
184 Multiple_Unit_Index
:= Save_Mindex
;
186 end Ensure_System_Dependency
;
192 procedure Write_ALI
(Object
: Boolean) is
198 Last_Unit
: constant Unit_Number_Type
:= Units
.Last
;
199 -- Record unit number of last unit. We capture this in case we
200 -- have to add a dummy entry to the unit table for package System.
202 With_Flags
: array (Units
.First
.. Last_Unit
) of Boolean;
203 -- Array of flags to show which units are with'ed
205 Elab_Flags
: array (Units
.First
.. Last_Unit
) of Boolean;
206 -- Array of flags to show which units have pragma Elaborate set
208 Elab_All_Flags
: array (Units
.First
.. Last_Unit
) of Boolean;
209 -- Array of flags to show which units have pragma Elaborate All set
211 Elab_Des_Flags
: array (Units
.First
.. Last_Unit
) of Boolean;
212 -- Array of flags to show which units have Elaborate_Desirable set
214 Elab_All_Des_Flags
: array (Units
.First
.. Last_Unit
) of Boolean;
215 -- Array of flags to show which units have Elaborate_All_Desirable set
217 type Yes_No
is (Unknown
, Yes
, No
);
218 Implicit_With
: array (Units
.First
.. Last_Unit
) of Yes_No
;
219 -- Indicates if an implicit with has been given for the unit. Yes if
220 -- certainly present, no if certainly absent, unkonwn if not known.
222 Sdep_Table
: Unit_Ref_Table
(1 .. Pos
(Last_Unit
- Units
.First
+ 2));
223 -- Sorted table of source dependencies. One extra entry in case we
224 -- have to add a dummy entry for System.
227 -- Number of active entries in Sdep_Table
229 flag_compare_debug
: Int
;
230 pragma Import
(C
, flag_compare_debug
);
231 -- Import from toplev.c
233 -----------------------
234 -- Local Subprograms --
235 -----------------------
237 procedure Collect_Withs
(Cunit
: Node_Id
);
238 -- Collect with lines for entries in the context clause of the
239 -- given compilation unit, Cunit.
241 procedure Update_Tables_From_ALI_File
;
242 -- Given an up to date ALI file (see Up_To_Date_ALI_file_Exists
243 -- function), update tables from the ALI information, including
244 -- specifically the Compilation_Switches table.
246 function Up_To_Date_ALI_File_Exists
return Boolean;
247 -- If there exists an ALI file that is up to date, then this function
248 -- initializes the tables in the ALI spec to contain information on
249 -- this file (using Scan_ALI) and returns True. If no file exists,
250 -- or the file is not up to date, then False is returned.
252 procedure Write_Unit_Information
(Unit_Num
: Unit_Number_Type
);
253 -- Write out the library information for one unit for which code is
254 -- generated (includes unit line and with lines).
256 procedure Write_With_Lines
;
257 -- Write out with lines collected by calls to Collect_Withs
263 procedure Collect_Withs
(Cunit
: Node_Id
) is
265 Unum
: Unit_Number_Type
;
268 Item
:= First
(Context_Items
(Cunit
));
269 while Present
(Item
) loop
271 -- Process with clause
273 -- Ada 2005 (AI-50217): limited with_clauses do not create
274 -- dependencies, but must be recorded as components of the
275 -- partition, in case there is no regular with_clause for
276 -- the unit anywhere else.
278 if Nkind
(Item
) = N_With_Clause
then
279 Unum
:= Get_Cunit_Unit_Number
(Library_Unit
(Item
));
280 With_Flags
(Unum
) := True;
282 if not Limited_Present
(Item
) then
283 if Elaborate_Present
(Item
) then
284 Elab_Flags
(Unum
) := True;
287 if Elaborate_All_Present
(Item
) then
288 Elab_All_Flags
(Unum
) := True;
291 if Elaborate_All_Desirable
(Item
) then
292 Elab_All_Des_Flags
(Unum
) := True;
295 if Elaborate_Desirable
(Item
) then
296 Elab_Des_Flags
(Unum
) := True;
300 Set_From_Limited_With
(Cunit_Entity
(Unum
));
303 if Implicit_With
(Unum
) /= Yes
then
304 if Implicit_With_From_Instantiation
(Item
) then
305 Implicit_With
(Unum
) := Yes
;
307 Implicit_With
(Unum
) := No
;
316 --------------------------------
317 -- Up_To_Date_ALI_File_Exists --
318 --------------------------------
320 function Up_To_Date_ALI_File_Exists
return Boolean is
321 Name
: File_Name_Type
;
322 Text
: Text_Buffer_Ptr
;
324 Sind
: Source_File_Index
;
327 Opt
.Check_Object_Consistency
:= True;
328 Read_Library_Info
(Name
, Text
);
330 -- Return if we could not find an ALI file
336 -- Return if ALI file has bad format
340 if Scan_ALI
(Name
, Text
, False, Err
=> True) = No_ALI_Id
then
344 -- If we have an OK ALI file, check if it is up to date
345 -- Note that we assume that the ALI read has all the entries
346 -- we have in our table, plus some additional ones (that can
347 -- come from expansion).
349 Id
:= First_Sdep_Entry
;
350 for J
in 1 .. Num_Sdep
loop
351 Sind
:= Units
.Table
(Sdep_Table
(J
)).Source_Index
;
353 while Sdep
.Table
(Id
).Sfile
/= File_Name
(Sind
) loop
354 if Id
= Sdep
.Last
then
361 if Sdep
.Table
(Id
).Stamp
/= Time_Stamp
(Sind
) then
367 end Up_To_Date_ALI_File_Exists
;
369 ---------------------------------
370 -- Update_Tables_From_ALI_File --
371 ---------------------------------
373 procedure Update_Tables_From_ALI_File
is
375 -- Build Compilation_Switches table
377 Compilation_Switches
.Init
;
379 for J
in First_Arg_Entry
.. Args
.Last
loop
380 Compilation_Switches
.Increment_Last
;
381 Compilation_Switches
.Table
(Compilation_Switches
.Last
) :=
384 end Update_Tables_From_ALI_File
;
386 ----------------------------
387 -- Write_Unit_Information --
388 ----------------------------
390 procedure Write_Unit_Information
(Unit_Num
: Unit_Number_Type
) is
391 Unode
: constant Node_Id
:= Cunit
(Unit_Num
);
392 Ukind
: constant Node_Kind
:= Nkind
(Unit
(Unode
));
393 Uent
: constant Entity_Id
:= Cunit_Entity
(Unit_Num
);
397 Write_Info_Initiate
('U');
398 Write_Info_Char
(' ');
399 Write_Info_Name
(Unit_Name
(Unit_Num
));
401 Write_Info_Name
(Unit_File_Name
(Unit_Num
));
404 Write_Info_Str
(Version_Get
(Unit_Num
));
406 -- Add BD parameter if Elaborate_Body pragma desirable
408 if Ekind
(Uent
) = E_Package
409 and then Elaborate_Body_Desirable
(Uent
)
411 Write_Info_Str
(" BD");
414 -- Add BN parameter if body needed for SAL
416 if (Is_Subprogram
(Uent
)
417 or else Ekind
(Uent
) = E_Package
418 or else Is_Generic_Unit
(Uent
))
419 and then Body_Needed_For_SAL
(Uent
)
421 Write_Info_Str
(" BN");
424 if Dynamic_Elab
(Unit_Num
) then
425 Write_Info_Str
(" DE");
428 -- Set the Elaborate_Body indication if either an explicit pragma
429 -- was present, or if this is an instantiation.
431 if Has_Pragma_Elaborate_Body
(Uent
)
432 or else (Ukind
= N_Package_Declaration
433 and then Is_Generic_Instance
(Uent
)
434 and then Present
(Corresponding_Body
(Unit
(Unode
))))
436 Write_Info_Str
(" EB");
439 -- Now see if we should tell the binder that an elaboration entity
440 -- is present, which must be set to true during elaboration.
441 -- We generate the indication if the following condition is met:
443 -- If this is a spec ...
445 if (Is_Subprogram
(Uent
)
446 or else Ekind
(Uent
) = E_Package
447 or else Is_Generic_Unit
(Uent
))
449 -- and an elaboration entity was declared ...
451 and then Present
(Elaboration_Entity
(Uent
))
453 -- and either the elaboration flag is required ...
455 and then (Elaboration_Entity_Required
(Uent
)
457 -- or this unit has elaboration code ...
459 or else not Has_No_Elaboration_Code
(Unode
)
461 -- or this unit has a separate body and this
462 -- body has elaboration code.
465 (Ekind
(Uent
) = E_Package
466 and then Present
(Body_Entity
(Uent
))
468 not Has_No_Elaboration_Code
469 (Parent
(Declaration_Node
(Body_Entity
(Uent
))))))
471 Write_Info_Str
(" EE");
474 if Has_No_Elaboration_Code
(Unode
) then
475 Write_Info_Str
(" NE");
478 Write_Info_Str
(" O");
479 Write_Info_Char
(OA_Setting
(Unit_Num
));
481 if Ekind_In
(Uent
, E_Package
, E_Package_Body
)
482 and then Present
(Finalizer
(Uent
))
484 Write_Info_Str
(" PF");
487 if Is_Preelaborated
(Uent
) then
488 Write_Info_Str
(" PR");
491 if Is_Pure
(Uent
) then
492 Write_Info_Str
(" PU");
495 if Has_RACW
(Unit_Num
) then
496 Write_Info_Str
(" RA");
499 if Is_Remote_Call_Interface
(Uent
) then
500 Write_Info_Str
(" RC");
503 if Is_Remote_Types
(Uent
) then
504 Write_Info_Str
(" RT");
507 if Serious_Errors_Detected
/= 0 then
508 Write_Info_Str
(" SE");
511 if Is_Shared_Passive
(Uent
) then
512 Write_Info_Str
(" SP");
515 if Ukind
= N_Subprogram_Declaration
516 or else Ukind
= N_Subprogram_Body
518 Write_Info_Str
(" SU");
520 elsif Ukind
= N_Package_Declaration
522 Ukind
= N_Package_Body
524 -- If this is a wrapper package for a subprogram instantiation,
525 -- the user view is the subprogram. Note that in this case the
526 -- ali file contains both the spec and body of the instance.
528 if Is_Wrapper_Package
(Uent
) then
529 Write_Info_Str
(" SU");
531 Write_Info_Str
(" PK");
534 elsif Ukind
= N_Generic_Package_Declaration
then
535 Write_Info_Str
(" PK");
539 if Ukind
in N_Generic_Declaration
541 (Present
(Library_Unit
(Unode
))
543 Nkind
(Unit
(Library_Unit
(Unode
))) in N_Generic_Declaration
)
545 Write_Info_Str
(" GE");
548 if not Is_Internal_Unit
(Unit_Num
) then
549 case Identifier_Casing
(Source_Index
(Unit_Num
)) is
550 when All_Lower_Case
=> Write_Info_Str
(" IL");
551 when All_Upper_Case
=> Write_Info_Str
(" IU");
555 case Keyword_Casing
(Source_Index
(Unit_Num
)) is
556 when Mixed_Case
=> Write_Info_Str
(" KM");
557 when All_Upper_Case
=> Write_Info_Str
(" KU");
562 if Initialize_Scalars
or else Invalid_Value_Used
then
563 Write_Info_Str
(" IS");
568 -- Generate with lines, first those that are directly with'ed
570 for J
in With_Flags
'Range loop
571 With_Flags
(J
) := False;
572 Elab_Flags
(J
) := False;
573 Elab_All_Flags
(J
) := False;
574 Elab_Des_Flags
(J
) := False;
575 Elab_All_Des_Flags
(J
) := False;
576 Implicit_With
(J
) := Unknown
;
579 Collect_Withs
(Unode
);
581 -- For a body, we must also check for any subunits which belong to
582 -- it and which have context clauses of their own, since these
583 -- with'ed units are part of its own elaboration dependencies.
585 if Nkind
(Unit
(Unode
)) in N_Unit_Body
then
586 for S
in Units
.First
.. Last_Unit
loop
588 -- We are only interested in subunits. For preproc. data and
589 -- def. files, Cunit is Empty, so we need to test that first.
591 if Cunit
(S
) /= Empty
592 and then Nkind
(Unit
(Cunit
(S
))) = N_Subunit
594 Pnode
:= Library_Unit
(Cunit
(S
));
596 -- In gnatc mode, the errors in the subunits will not have
597 -- been recorded, but the analysis of the subunit may have
598 -- failed. There is no information to add to ALI file in
605 -- Find ultimate parent of the subunit
607 while Nkind
(Unit
(Pnode
)) = N_Subunit
loop
608 Pnode
:= Library_Unit
(Pnode
);
611 -- See if it belongs to current unit, and if so, include
614 if Pnode
= Unode
then
615 Collect_Withs
(Cunit
(S
));
623 -- Generate task stack lines
625 if Primary_Stack_Count
(Unit_Num
) > 0
626 or else Sec_Stack_Count
(Unit_Num
) > 0
628 Write_Info_Initiate
('T');
629 Write_Info_Char
(' ');
630 Write_Info_Int
(Primary_Stack_Count
(Unit_Num
));
631 Write_Info_Char
(' ');
632 Write_Info_Int
(Sec_Stack_Count
(Unit_Num
));
636 -- Generate the linker option lines
638 for J
in 1 .. Linker_Option_Lines
.Last
loop
640 -- Pragma Linker_Options is not allowed in predefined generic
641 -- units. This is because they won't be read, due to the fact that
642 -- with lines for generic units lack the file name and lib name
643 -- parameters (see Lib_Writ spec for an explanation).
645 if Is_Generic_Unit
(Cunit_Entity
(Main_Unit
))
646 and then Is_Predefined_Unit
(Current_Sem_Unit
)
647 and then Linker_Option_Lines
.Table
(J
).Unit
= Unit_Num
651 ("linker options not allowed in predefined generic unit");
652 raise Unrecoverable_Error
;
655 -- Output one linker option line
658 S
: Linker_Option_Entry
renames Linker_Option_Lines
.Table
(J
);
660 if S
.Unit
= Unit_Num
then
661 Write_Info_Initiate
('L');
662 Write_Info_Char
(' ');
663 Write_Info_Slit
(S
.Option
);
671 for J
in 1 .. Notes
.Last
loop
673 N
: constant Node_Id
:= Notes
.Table
(J
);
674 L
: constant Source_Ptr
:= Sloc
(N
);
675 U
: constant Unit_Number_Type
:=
676 Unit
(Get_Source_File_Index
(L
));
679 Note_Unit
: Unit_Number_Type
;
680 -- The unit in whose U section this note must be emitted:
681 -- notes for subunits are emitted along with the main unit;
682 -- all other notes are emitted as part of the enclosing
686 if U
/= No_Unit
and then Nkind
(Unit
(Cunit
(U
))) = N_Subunit
688 Note_Unit
:= Main_Unit
;
693 if Note_Unit
= Unit_Num
then
694 Write_Info_Initiate
('N');
695 Write_Info_Char
(' ');
697 case Pragma_Name
(N
) is
698 when Name_Annotate
=>
706 when Name_Subtitle
=>
713 Write_Info_Int
(Int
(Get_Logical_Line_Number
(L
)));
714 Write_Info_Char
(':');
715 Write_Info_Int
(Int
(Get_Column_Number
(L
)));
717 -- Indicate source file of annotation if different from
718 -- compilation unit source file (case of annotation coming
721 if Get_Source_File_Index
(L
) /= Source_Index
(Unit_Num
) then
722 Write_Info_Char
(':');
723 Write_Info_Name
(File_Name
(Get_Source_File_Index
(L
)));
730 A
:= First
(Pragma_Argument_Associations
(N
));
731 while Present
(A
) loop
732 Write_Info_Char
(' ');
734 if Chars
(A
) /= No_Name
then
735 Write_Info_Name
(Chars
(A
));
736 Write_Info_Char
(':');
740 Expr
: constant Node_Id
:= Expression
(A
);
743 if Nkind
(Expr
) = N_Identifier
then
744 Write_Info_Name
(Chars
(Expr
));
746 elsif Nkind
(Expr
) = N_Integer_Literal
747 and then Is_OK_Static_Expression
(Expr
)
749 Write_Info_Uint
(Intval
(Expr
));
751 elsif Nkind
(Expr
) = N_String_Literal
752 and then Is_OK_Static_Expression
(Expr
)
754 Write_Info_Slit
(Strval
(Expr
));
757 Write_Info_Str
("<expr>");
769 end Write_Unit_Information
;
771 ----------------------
772 -- Write_With_Lines --
773 ----------------------
775 procedure Write_With_Lines
is
776 Pname
: constant Unit_Name_Type
:=
777 Get_Parent_Spec_Name
(Unit_Name
(Main_Unit
));
778 Body_Fname
: File_Name_Type
;
781 Fname
: File_Name_Type
;
782 Num_Withs
: Int
:= 0;
783 Unum
: Unit_Number_Type
;
784 Uname
: Unit_Name_Type
;
785 With_Table
: Unit_Ref_Table
(1 .. Pos
(Last_Unit
- Units
.First
+ 1));
787 procedure Write_With_File_Names
788 (Nam
: in out File_Name_Type
;
790 -- Write source file name Nam and ALI file name for unit index Idx.
791 -- Possibly change Nam to lowercase (generating a new file name).
793 --------------------------
794 -- Write_With_File_Name --
795 --------------------------
797 procedure Write_With_File_Names
798 (Nam
: in out File_Name_Type
;
802 if not File_Names_Case_Sensitive
then
803 Get_Name_String
(Nam
);
804 To_Lower
(Name_Buffer
(1 .. Name_Len
));
808 Write_Info_Name
(Nam
);
810 Write_Info_Name
(Lib_File_Name
(Nam
, Idx
));
811 end Write_With_File_Names
;
813 -- Start of processing for Write_With_Lines
816 -- Loop to build the with table. A with on the main unit itself
817 -- is ignored (AARM 10.2(14a)). Such a with-clause can occur if
818 -- the main unit is a subprogram with no spec, and a subunit of
819 -- it unnecessarily withs the parent.
821 for J
in Units
.First
+ 1 .. Last_Unit
loop
823 -- Add element to with table if it is with'ed or if it is the
824 -- parent spec of the main unit (case of main unit is a child
825 -- unit). The latter with is not needed for semantic purposes,
826 -- but is required by the binder for elaboration purposes. For
827 -- preprocessing data and definition files, there is no Unit_Name,
828 -- check for that first.
830 if Unit_Name
(J
) /= No_Unit_Name
831 and then (With_Flags
(J
) or else Unit_Name
(J
) = Pname
)
833 Num_Withs
:= Num_Withs
+ 1;
834 With_Table
(Num_Withs
) := J
;
838 -- Sort and output the table
840 Sort
(With_Table
(1 .. Num_Withs
));
842 for J
in 1 .. Num_Withs
loop
843 Unum
:= With_Table
(J
);
845 -- Do not generate a with line for an ignored Ghost unit because
846 -- the unit does not have an ALI file.
848 if Is_Ignored_Ghost_Entity
(Cunit_Entity
(Unum
)) then
852 Cunit
:= Units
.Table
(Unum
).Cunit
;
853 Uname
:= Units
.Table
(Unum
).Unit_Name
;
854 Fname
:= Units
.Table
(Unum
).Unit_File_Name
;
856 if Implicit_With
(Unum
) = Yes
then
857 Write_Info_Initiate
('Z');
859 elsif Ekind
(Cunit_Entity
(Unum
)) = E_Package
860 and then From_Limited_With
(Cunit_Entity
(Unum
))
862 Write_Info_Initiate
('Y');
865 Write_Info_Initiate
('W');
868 Write_Info_Char
(' ');
869 Write_Info_Name
(Uname
);
871 -- Now we need to figure out the names of the files that contain
872 -- the with'ed unit. These will usually be the files for the body,
873 -- except in the case of a package that has no body. Note that we
874 -- have a specific exemption here for predefined library generics
875 -- (see comments for Generic_May_Lack_ALI). We do not generate
876 -- dependency upon the ALI file for such units. Older compilers
877 -- used to not support generating code (and ALI) for generics, and
878 -- we want to avoid having different processing (namely, different
879 -- lists of files to be compiled) for different stages of the
882 if not ((Nkind
(Unit
(Cunit
)) in N_Generic_Declaration
884 Nkind
(Unit
(Cunit
)) in N_Generic_Renaming_Declaration
)
885 and then Generic_May_Lack_ALI
(Unum
))
887 -- In SPARK mode, always generate the dependencies on ALI
888 -- files, which are required to compute frame conditions
891 or else GNATprove_Mode
895 if Is_Spec_Name
(Uname
) then
898 (Get_Body_Name
(Uname
),
899 Subunit
=> False, May_Fail
=> True);
903 (Get_Body_Name
(Uname
));
905 if Body_Fname
= No_File
then
906 Body_Fname
:= Get_File_Name
(Uname
, Subunit
=> False);
907 Body_Index
:= Get_Unit_Index
(Uname
);
911 Body_Fname
:= Get_File_Name
(Uname
, Subunit
=> False);
912 Body_Index
:= Get_Unit_Index
(Uname
);
915 -- A package is considered to have a body if it requires
916 -- a body or if a body is present in Ada 83 mode.
918 if Body_Required
(Cunit
)
919 or else (Ada_Version
= Ada_83
920 and then Full_Source_Name
(Body_Fname
) /= No_File
)
922 Write_With_File_Names
(Body_Fname
, Body_Index
);
924 Write_With_File_Names
(Fname
, Munit_Index
(Unum
));
927 if Ekind
(Cunit_Entity
(Unum
)) = E_Package
928 and then From_Limited_With
(Cunit_Entity
(Unum
))
932 if Elab_Flags
(Unum
) then
933 Write_Info_Str
(" E");
936 if Elab_All_Flags
(Unum
) then
937 Write_Info_Str
(" EA");
940 if Elab_Des_Flags
(Unum
) then
941 Write_Info_Str
(" ED");
944 if Elab_All_Des_Flags
(Unum
) then
945 Write_Info_Str
(" AD");
956 -- Finally generate the special lines for cases of Restriction_Set
957 -- with No_Dependence and no restriction present.
960 Unam
: Unit_Name_Type
;
963 for J
in Restriction_Set_Dependences
.First
..
964 Restriction_Set_Dependences
.Last
966 Unam
:= Restriction_Set_Dependences
.Table
(J
);
968 -- Don't need an entry if already in the unit table
970 for U
in 0 .. Last_Unit
loop
971 if Unit_Name
(U
) = Unam
then
972 goto Next_Restriction_Set
;
976 -- Otherwise generate the entry
978 Write_Info_Initiate
('W');
979 Write_Info_Char
(' ');
980 Write_Info_Name
(Unam
);
983 <<Next_Restriction_Set
>>
987 end Write_With_Lines
;
989 -- Start of processing for Write_ALI
992 -- We never write an ALI file if the original operating mode was
993 -- syntax-only (-gnats switch used in compiler invocation line)
995 if Original_Operating_Mode
= Check_Syntax
996 or flag_compare_debug
/= 0
1001 -- Generation of ALI files may be disabled, e.g. for formal verification
1004 if Disable_ALI_File
then
1008 -- Build sorted source dependency table. We do this right away, because
1009 -- it is referenced by Up_To_Date_ALI_File_Exists.
1011 for Unum
in Units
.First
.. Last_Unit
loop
1012 if Cunit_Entity
(Unum
) = Empty
1013 or else not From_Limited_With
(Cunit_Entity
(Unum
))
1015 -- Units that are not analyzed need not appear in the dependency
1016 -- list. These units are either units appearing in limited_with
1017 -- clauses of other units, or units loaded for inlining that end
1018 -- up not inlined by a later decision of the inlining code, to
1019 -- prevent circularities. We want to exclude these files from the
1020 -- list of dependencies, so that the dependency number of other
1021 -- is correctly set, as that number is used by cross-reference
1022 -- tools to relate entity information to the unit in which they
1025 if Present
(Cunit_Entity
(Unum
))
1026 and then Ekind
(Cunit_Entity
(Unum
)) = E_Void
1027 and then Nkind
(Unit
(Cunit
(Unum
))) /= N_Subunit
1028 and then Serious_Errors_Detected
= 0
1033 Num_Sdep
:= Num_Sdep
+ 1;
1034 Sdep_Table
(Num_Sdep
) := Unum
;
1039 -- Sort the table so that the D lines are in order
1041 Lib
.Sort
(Sdep_Table
(1 .. Num_Sdep
));
1043 -- If we are not generating code, and there is an up to date ALI file
1044 -- file accessible, read it, and acquire the compilation arguments from
1045 -- this file. In GNATprove mode, always generate the ALI file, which
1046 -- contains a special section for formal verification.
1048 if Operating_Mode
/= Generate_Code
and then not GNATprove_Mode
then
1049 if Up_To_Date_ALI_File_Exists
then
1050 Update_Tables_From_ALI_File
;
1055 -- Otherwise acquire compilation arguments and prepare to write out a
1058 Create_Output_Library_Info
;
1060 -- Output version line
1062 Write_Info_Initiate
('V');
1063 Write_Info_Str
(" """);
1064 Write_Info_Str
(Verbose_Library_Version
);
1065 Write_Info_Char
('"');
1069 -- Output main program line if this is acceptable main program
1071 Output_Main_Program_Line
: declare
1072 U
: Node_Id
:= Unit
(Units
.Table
(Main_Unit
).Cunit
);
1075 procedure M_Parameters
;
1076 -- Output parameters for main program line
1082 procedure M_Parameters
is
1084 if Main_Priority
(Main_Unit
) /= Default_Main_Priority
then
1085 Write_Info_Char
(' ');
1086 Write_Info_Nat
(Main_Priority
(Main_Unit
));
1089 if Opt
.Time_Slice_Set
then
1090 Write_Info_Str
(" T=");
1091 Write_Info_Nat
(Opt
.Time_Slice_Value
);
1094 if Main_CPU
(Main_Unit
) /= Default_Main_CPU
then
1095 Write_Info_Str
(" C=");
1096 Write_Info_Nat
(Main_CPU
(Main_Unit
));
1099 Write_Info_Str
(" W=");
1101 (WC_Encoding_Letters
(Wide_Character_Encoding_Method
));
1106 -- Start of processing for Output_Main_Program_Line
1109 if Nkind
(U
) = N_Subprogram_Body
1111 (Nkind
(U
) = N_Package_Body
1113 Nkind
(Original_Node
(U
)) in N_Subprogram_Instantiation
)
1115 -- If the unit is a subprogram instance, the entity for the
1116 -- subprogram is the alias of the visible entity, which is the
1117 -- related instance of the wrapper package. We retrieve the
1118 -- subprogram declaration of the desired entity.
1120 if Nkind
(U
) = N_Package_Body
then
1121 U
:= Parent
(Parent
(
1122 Alias
(Related_Instance
(Defining_Unit_Name
1123 (Specification
(Unit
(Library_Unit
(Parent
(U
)))))))));
1126 S
:= Specification
(U
);
1128 -- A generic subprogram is never a main program
1130 if Nkind
(U
) = N_Subprogram_Body
1131 and then Present
(Corresponding_Spec
(U
))
1133 Ekind_In
(Corresponding_Spec
(U
), E_Generic_Procedure
,
1138 elsif No
(Parameter_Specifications
(S
)) then
1139 if Nkind
(S
) = N_Procedure_Specification
then
1140 Write_Info_Initiate
('M');
1141 Write_Info_Str
(" P");
1146 Nam
: Node_Id
:= Defining_Unit_Name
(S
);
1149 -- If it is a child unit, get its simple name
1151 if Nkind
(Nam
) = N_Defining_Program_Unit_Name
then
1152 Nam
:= Defining_Identifier
(Nam
);
1155 if Is_Integer_Type
(Etype
(Nam
)) then
1156 Write_Info_Initiate
('M');
1157 Write_Info_Str
(" F");
1164 end Output_Main_Program_Line
;
1166 -- Write command argument ('A') lines
1168 for A
in 1 .. Compilation_Switches
.Last
loop
1169 Write_Info_Initiate
('A');
1170 Write_Info_Char
(' ');
1171 Write_Info_Str
(Compilation_Switches
.Table
(A
).all);
1172 Write_Info_Terminate
;
1175 -- Output parameters ('P') line
1177 Write_Info_Initiate
('P');
1179 if Compilation_Errors
then
1180 Write_Info_Str
(" CE");
1183 if Opt
.Detect_Blocking
then
1184 Write_Info_Str
(" DB");
1187 if Tasking_Used
and then not Is_Predefined_Unit
(Main_Unit
) then
1188 if Locking_Policy
/= ' ' then
1189 Write_Info_Str
(" L");
1190 Write_Info_Char
(Locking_Policy
);
1193 if Queuing_Policy
/= ' ' then
1194 Write_Info_Str
(" Q");
1195 Write_Info_Char
(Queuing_Policy
);
1198 if Task_Dispatching_Policy
/= ' ' then
1199 Write_Info_Str
(" T");
1200 Write_Info_Char
(Task_Dispatching_Policy
);
1201 Write_Info_Char
(' ');
1205 if GNATprove_Mode
then
1206 Write_Info_Str
(" GP");
1209 if Partition_Elaboration_Policy
/= ' ' then
1210 Write_Info_Str
(" E");
1211 Write_Info_Char
(Partition_Elaboration_Policy
);
1214 if No_Component_Reordering_Config
then
1215 Write_Info_Str
(" NC");
1219 Write_Info_Str
(" NO");
1222 if No_Run_Time_Mode
then
1223 Write_Info_Str
(" NR");
1226 if Normalize_Scalars
then
1227 Write_Info_Str
(" NS");
1230 if Default_SSO_Config
/= ' ' then
1231 Write_Info_Str
(" O");
1232 Write_Info_Char
(Default_SSO_Config
);
1235 if Sec_Stack_Used
then
1236 Write_Info_Str
(" SS");
1239 if Unreserve_All_Interrupts
then
1240 Write_Info_Str
(" UA");
1243 if Front_End_Exceptions
then
1244 Write_Info_Str
(" FX");
1247 if ZCX_Exceptions
then
1248 Write_Info_Str
(" ZX");
1253 -- Before outputting the restrictions line, update the setting of
1254 -- the No_Elaboration_Code flag. Violations of this restriction
1255 -- cannot be detected until after the backend has been called since
1256 -- it is the backend that sets this flag. We have to check all units
1257 -- for which we have generated code
1259 for Unit
in Units
.First
.. Last_Unit
loop
1260 if Units
.Table
(Unit
).Generate_Code
or else Unit
= Main_Unit
then
1261 if not Has_No_Elaboration_Code
(Cunit
(Unit
)) then
1262 Main_Restrictions
.Violated
(No_Elaboration_Code
) := True;
1267 -- Positional case (only if debug flag -gnatd.R is set)
1269 if Debug_Flag_Dot_RR
then
1271 -- Output first restrictions line
1273 Write_Info_Initiate
('R');
1274 Write_Info_Char
(' ');
1276 -- First the information for the boolean restrictions
1278 for R
in All_Boolean_Restrictions
loop
1279 if Main_Restrictions
.Set
(R
)
1280 and then not Restriction_Warnings
(R
)
1282 Write_Info_Char
('r');
1283 elsif Main_Restrictions
.Violated
(R
) then
1284 Write_Info_Char
('v');
1286 Write_Info_Char
('n');
1290 -- And now the information for the parameter restrictions
1292 for RP
in All_Parameter_Restrictions
loop
1293 if Main_Restrictions
.Set
(RP
)
1294 and then not Restriction_Warnings
(RP
)
1296 Write_Info_Char
('r');
1297 Write_Info_Nat
(Nat
(Main_Restrictions
.Value
(RP
)));
1299 Write_Info_Char
('n');
1302 if not Main_Restrictions
.Violated
(RP
)
1303 or else RP
not in Checked_Parameter_Restrictions
1305 Write_Info_Char
('n');
1307 Write_Info_Char
('v');
1308 Write_Info_Nat
(Nat
(Main_Restrictions
.Count
(RP
)));
1310 if Main_Restrictions
.Unknown
(RP
) then
1311 Write_Info_Char
('+');
1318 -- Named case (if debug flag -gnatd.R is not set)
1325 -- Write RN header line with preceding blank line
1328 Write_Info_Initiate
('R');
1329 Write_Info_Char
('N');
1332 -- First the lines for the boolean restrictions
1334 for R
in All_Boolean_Restrictions
loop
1335 if Main_Restrictions
.Set
(R
)
1336 and then not Restriction_Warnings
(R
)
1339 elsif Main_Restrictions
.Violated
(R
) then
1345 Write_Info_Initiate
('R');
1346 Write_Info_Char
(C
);
1347 Write_Info_Char
(' ');
1348 Write_Info_Str
(All_Boolean_Restrictions
'Image (R
));
1356 -- And now the lines for the parameter restrictions
1358 for RP
in All_Parameter_Restrictions
loop
1359 if Main_Restrictions
.Set
(RP
)
1360 and then not Restriction_Warnings
(RP
)
1362 Write_Info_Initiate
('R');
1363 Write_Info_Str
("R ");
1364 Write_Info_Str
(All_Parameter_Restrictions
'Image (RP
));
1365 Write_Info_Char
('=');
1366 Write_Info_Nat
(Nat
(Main_Restrictions
.Value
(RP
)));
1370 if not Main_Restrictions
.Violated
(RP
)
1371 or else RP
not in Checked_Parameter_Restrictions
1375 Write_Info_Initiate
('R');
1376 Write_Info_Str
("V ");
1377 Write_Info_Str
(All_Parameter_Restrictions
'Image (RP
));
1378 Write_Info_Char
('=');
1379 Write_Info_Nat
(Nat
(Main_Restrictions
.Count
(RP
)));
1381 if Main_Restrictions
.Unknown
(RP
) then
1382 Write_Info_Char
('+');
1390 -- Output R lines for No_Dependence entries
1392 for J
in No_Dependences
.First
.. No_Dependences
.Last
loop
1393 if In_Extended_Main_Source_Unit
(No_Dependences
.Table
(J
).Unit
)
1394 and then not No_Dependences
.Table
(J
).Warn
1396 Write_Info_Initiate
('R');
1397 Write_Info_Char
(' ');
1398 Write_Unit_Name
(No_Dependences
.Table
(J
).Unit
);
1403 -- Output interrupt state lines
1405 for J
in Interrupt_States
.First
.. Interrupt_States
.Last
loop
1406 Write_Info_Initiate
('I');
1407 Write_Info_Char
(' ');
1408 Write_Info_Nat
(Interrupt_States
.Table
(J
).Interrupt_Number
);
1409 Write_Info_Char
(' ');
1410 Write_Info_Char
(Interrupt_States
.Table
(J
).Interrupt_State
);
1411 Write_Info_Char
(' ');
1413 (Nat
(Get_Logical_Line_Number
1414 (Interrupt_States
.Table
(J
).Pragma_Loc
)));
1418 -- Output priority specific dispatching lines
1420 for J
in Specific_Dispatching
.First
.. Specific_Dispatching
.Last
loop
1421 Write_Info_Initiate
('S');
1422 Write_Info_Char
(' ');
1423 Write_Info_Char
(Specific_Dispatching
.Table
(J
).Dispatching_Policy
);
1424 Write_Info_Char
(' ');
1425 Write_Info_Nat
(Specific_Dispatching
.Table
(J
).First_Priority
);
1426 Write_Info_Char
(' ');
1427 Write_Info_Nat
(Specific_Dispatching
.Table
(J
).Last_Priority
);
1428 Write_Info_Char
(' ');
1430 (Nat
(Get_Logical_Line_Number
1431 (Specific_Dispatching
.Table
(J
).Pragma_Loc
)));
1435 -- Loop through file table to output information for all units for which
1436 -- we have generated code, as marked by the Generate_Code flag.
1438 for Unit
in Units
.First
.. Last_Unit
loop
1439 if Units
.Table
(Unit
).Generate_Code
1440 or else Unit
= Main_Unit
1442 Write_Info_EOL
; -- blank line
1443 Write_Unit_Information
(Unit
);
1447 Write_Info_EOL
; -- blank line
1449 -- Output external version reference lines
1451 for J
in 1 .. Version_Ref
.Last
loop
1452 Write_Info_Initiate
('E');
1453 Write_Info_Char
(' ');
1455 for K
in 1 .. String_Length
(Version_Ref
.Table
(J
)) loop
1456 Write_Info_Char_Code
(Get_String_Char
(Version_Ref
.Table
(J
), K
));
1462 -- Prepare to output the source dependency lines
1465 Unum
: Unit_Number_Type
;
1466 -- Number of unit being output
1468 Sind
: Source_File_Index
;
1469 -- Index of corresponding source file
1471 Fname
: File_Name_Type
;
1474 for J
in 1 .. Num_Sdep
loop
1475 Unum
:= Sdep_Table
(J
);
1476 Units
.Table
(Unum
).Dependency_Num
:= J
;
1477 Sind
:= Units
.Table
(Unum
).Source_Index
;
1479 Write_Info_Initiate
('D');
1480 Write_Info_Char
(' ');
1482 -- Normal case of a unit entry with a source index
1484 if Sind
> No_Source_File
then
1485 Fname
:= File_Name
(Sind
);
1487 -- Ensure that on platforms where the file names are not case
1488 -- sensitive, the recorded file name is in lower case.
1490 if not File_Names_Case_Sensitive
then
1491 Get_Name_String
(Fname
);
1492 To_Lower
(Name_Buffer
(1 .. Name_Len
));
1496 Write_Info_Name_May_Be_Quoted
(Fname
);
1497 Write_Info_Tab
(25);
1498 Write_Info_Str
(String (Time_Stamp
(Sind
)));
1499 Write_Info_Char
(' ');
1500 Write_Info_Str
(Get_Hex_String
(Source_Checksum
(Sind
)));
1502 -- If the dependency comes from a limited_with clause, record
1503 -- limited_checksum. This is disabled until full checksum
1504 -- changes are checked.
1506 -- if Present (Cunit_Entity (Unum))
1507 -- and then From_Limited_With (Cunit_Entity (Unum))
1509 -- Write_Info_Char (' ');
1510 -- Write_Info_Char ('Y');
1511 -- Write_Info_Str (Get_Hex_String (Limited_Chk_Sum (Sind)));
1514 -- If subunit, add unit name, omitting the %b at the end
1516 if Present
(Cunit
(Unum
)) then
1517 Get_Decoded_Name_String
(Unit_Name
(Unum
));
1518 Write_Info_Char
(' ');
1520 if Nkind
(Unit
(Cunit
(Unum
))) = N_Subunit
then
1521 Write_Info_Str
(Name_Buffer
(1 .. Name_Len
- 2));
1523 Write_Info_Str
(Name_Buffer
(1 .. Name_Len
));
1527 -- If Source_Reference pragma used, output information
1529 if Num_SRef_Pragmas
(Sind
) > 0 then
1530 Write_Info_Char
(' ');
1532 if Num_SRef_Pragmas
(Sind
) = 1 then
1533 Write_Info_Nat
(Int
(First_Mapped_Line
(Sind
)));
1538 Write_Info_Char
(':');
1539 Write_Info_Name
(Reference_Name
(Sind
));
1542 -- Case where there is no source index (happens for missing
1543 -- files). In this case we write a dummy time stamp.
1546 Write_Info_Name
(Unit_File_Name
(Unum
));
1547 Write_Info_Tab
(25);
1548 Write_Info_Str
(String (Dummy_Time_Stamp
));
1549 Write_Info_Char
(' ');
1550 Write_Info_Str
(Get_Hex_String
(0));
1557 -- Output cross-references
1559 if Opt
.Xref_Active
then
1563 -- Output SCO information if present
1565 if Generate_SCO
then
1566 SCO_Record_Filtered
;
1570 -- Output final blank line and we are done. This final blank line is
1571 -- probably junk, but we don't feel like making an incompatible change.
1573 Write_Info_Terminate
;
1574 Close_Output_Library_Info
;
1577 ---------------------
1578 -- Write_Unit_Name --
1579 ---------------------
1581 procedure Write_Unit_Name
(N
: Node_Id
) is
1583 if Nkind
(N
) = N_Identifier
then
1584 Write_Info_Name
(Chars
(N
));
1587 pragma Assert
(Nkind
(N
) = N_Selected_Component
);
1588 Write_Unit_Name
(Prefix
(N
));
1589 Write_Info_Char
('.');
1590 Write_Unit_Name
(Selector_Name
(N
));
1592 end Write_Unit_Name
;