1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2016, 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
,
94 No_Elab_Code_All
=> False,
97 Error_Location
=> No_Location
,
99 SPARK_Mode_Pragma
=> Empty
);
100 end Add_Preprocessing_Dependency
;
102 ------------------------------
103 -- Ensure_System_Dependency --
104 ------------------------------
106 procedure Ensure_System_Dependency
is
107 System_Uname
: Unit_Name_Type
;
108 -- Unit name for system spec if needed for dummy entry
110 System_Fname
: File_Name_Type
;
111 -- File name for system spec if needed for dummy entry
114 -- Nothing to do if we already compiled System
116 for Unum
in Units
.First
.. Last_Unit
loop
117 if Units
.Table
(Unum
).Source_Index
= System_Source_File_Index
then
122 -- If no entry for system.ads in the units table, then add a entry
123 -- to the units table for system.ads, which will be referenced when
124 -- the ali file is generated. We need this because every unit depends
125 -- on system as a result of Targparm scanning the system.ads file to
126 -- determine the target dependent parameters for the compilation.
129 Name_Buffer
(1 .. 6) := "system";
130 System_Uname
:= Name_To_Unit_Name
(Name_Enter
);
131 System_Fname
:= File_Name
(System_Source_File_Index
);
133 Units
.Increment_Last
;
134 Units
.Table
(Units
.Last
) := (
135 Unit_File_Name
=> System_Fname
,
136 Unit_Name
=> System_Uname
,
137 Expected_Unit
=> System_Uname
,
138 Source_Index
=> System_Source_File_Index
,
140 Cunit_Entity
=> Empty
,
142 Dynamic_Elab
=> False,
144 Generate_Code
=> False,
147 Ident_String
=> Empty
,
152 No_Elab_Code_All
=> False,
155 Error_Location
=> No_Location
,
157 SPARK_Mode_Pragma
=> Empty
);
159 -- Parse system.ads so that the checksum is set right. Style checks are
160 -- not applied. The Ekind is set to ensure that this reference is always
161 -- present in the ali file.
164 Save_Mindex
: constant Nat
:= Multiple_Unit_Index
;
165 Save_Style
: constant Boolean := Style_Check
;
167 Multiple_Unit_Index
:= 0;
168 Style_Check
:= False;
169 Initialize_Scanner
(Units
.Last
, System_Source_File_Index
);
170 Discard_List
(Par
(Configuration_Pragmas
=> False));
171 Set_Ekind
(Cunit_Entity
(Units
.Last
), E_Package
);
172 Set_Scope
(Cunit_Entity
(Units
.Last
), Standard_Standard
);
173 Style_Check
:= Save_Style
;
174 Multiple_Unit_Index
:= Save_Mindex
;
176 end Ensure_System_Dependency
;
182 procedure Write_ALI
(Object
: Boolean) is
188 Last_Unit
: constant Unit_Number_Type
:= Units
.Last
;
189 -- Record unit number of last unit. We capture this in case we
190 -- have to add a dummy entry to the unit table for package System.
192 With_Flags
: array (Units
.First
.. Last_Unit
) of Boolean;
193 -- Array of flags to show which units are with'ed
195 Elab_Flags
: array (Units
.First
.. Last_Unit
) of Boolean;
196 -- Array of flags to show which units have pragma Elaborate set
198 Elab_All_Flags
: array (Units
.First
.. Last_Unit
) of Boolean;
199 -- Array of flags to show which units have pragma Elaborate All set
201 Elab_Des_Flags
: array (Units
.First
.. Last_Unit
) of Boolean;
202 -- Array of flags to show which units have Elaborate_Desirable set
204 Elab_All_Des_Flags
: array (Units
.First
.. Last_Unit
) of Boolean;
205 -- Array of flags to show which units have Elaborate_All_Desirable set
207 type Yes_No
is (Unknown
, Yes
, No
);
208 Implicit_With
: array (Units
.First
.. Last_Unit
) of Yes_No
;
209 -- Indicates if an implicit with has been given for the unit. Yes if
210 -- certainly present, no if certainly absent, unkonwn if not known.
212 Sdep_Table
: Unit_Ref_Table
(1 .. Pos
(Last_Unit
- Units
.First
+ 2));
213 -- Sorted table of source dependencies. One extra entry in case we
214 -- have to add a dummy entry for System.
217 -- Number of active entries in Sdep_Table
219 flag_compare_debug
: Int
;
220 pragma Import
(C
, flag_compare_debug
);
221 -- Import from toplev.c
223 -----------------------
224 -- Local Subprograms --
225 -----------------------
227 procedure Collect_Withs
(Cunit
: Node_Id
);
228 -- Collect with lines for entries in the context clause of the
229 -- given compilation unit, Cunit.
231 procedure Update_Tables_From_ALI_File
;
232 -- Given an up to date ALI file (see Up_To_Date_ALI_file_Exists
233 -- function), update tables from the ALI information, including
234 -- specifically the Compilation_Switches table.
236 function Up_To_Date_ALI_File_Exists
return Boolean;
237 -- If there exists an ALI file that is up to date, then this function
238 -- initializes the tables in the ALI spec to contain information on
239 -- this file (using Scan_ALI) and returns True. If no file exists,
240 -- or the file is not up to date, then False is returned.
242 procedure Write_Unit_Information
(Unit_Num
: Unit_Number_Type
);
243 -- Write out the library information for one unit for which code is
244 -- generated (includes unit line and with lines).
246 procedure Write_With_Lines
;
247 -- Write out with lines collected by calls to Collect_Withs
253 procedure Collect_Withs
(Cunit
: Node_Id
) is
255 Unum
: Unit_Number_Type
;
258 Item
:= First
(Context_Items
(Cunit
));
259 while Present
(Item
) loop
261 -- Process with clause
263 -- Ada 2005 (AI-50217): limited with_clauses do not create
264 -- dependencies, but must be recorded as components of the
265 -- partition, in case there is no regular with_clause for
266 -- the unit anywhere else.
268 if Nkind
(Item
) = N_With_Clause
then
269 Unum
:= Get_Cunit_Unit_Number
(Library_Unit
(Item
));
270 With_Flags
(Unum
) := True;
272 if not Limited_Present
(Item
) then
273 if Elaborate_Present
(Item
) then
274 Elab_Flags
(Unum
) := True;
277 if Elaborate_All_Present
(Item
) then
278 Elab_All_Flags
(Unum
) := True;
281 if Elaborate_All_Desirable
(Item
) then
282 Elab_All_Des_Flags
(Unum
) := True;
285 if Elaborate_Desirable
(Item
) then
286 Elab_Des_Flags
(Unum
) := True;
290 Set_From_Limited_With
(Cunit_Entity
(Unum
));
293 if Implicit_With
(Unum
) /= Yes
then
294 if Implicit_With_From_Instantiation
(Item
) then
295 Implicit_With
(Unum
) := Yes
;
297 Implicit_With
(Unum
) := No
;
306 --------------------------------
307 -- Up_To_Date_ALI_File_Exists --
308 --------------------------------
310 function Up_To_Date_ALI_File_Exists
return Boolean is
311 Name
: File_Name_Type
;
312 Text
: Text_Buffer_Ptr
;
314 Sind
: Source_File_Index
;
317 Opt
.Check_Object_Consistency
:= True;
318 Read_Library_Info
(Name
, Text
);
320 -- Return if we could not find an ALI file
326 -- Return if ALI file has bad format
330 if Scan_ALI
(Name
, Text
, False, Err
=> True) = No_ALI_Id
then
334 -- If we have an OK ALI file, check if it is up to date
335 -- Note that we assume that the ALI read has all the entries
336 -- we have in our table, plus some additional ones (that can
337 -- come from expansion).
339 Id
:= First_Sdep_Entry
;
340 for J
in 1 .. Num_Sdep
loop
341 Sind
:= Units
.Table
(Sdep_Table
(J
)).Source_Index
;
343 while Sdep
.Table
(Id
).Sfile
/= File_Name
(Sind
) loop
344 if Id
= Sdep
.Last
then
351 if Sdep
.Table
(Id
).Stamp
/= Time_Stamp
(Sind
) then
357 end Up_To_Date_ALI_File_Exists
;
359 ---------------------------------
360 -- Update_Tables_From_ALI_File --
361 ---------------------------------
363 procedure Update_Tables_From_ALI_File
is
365 -- Build Compilation_Switches table
367 Compilation_Switches
.Init
;
369 for J
in First_Arg_Entry
.. Args
.Last
loop
370 Compilation_Switches
.Increment_Last
;
371 Compilation_Switches
.Table
(Compilation_Switches
.Last
) :=
374 end Update_Tables_From_ALI_File
;
376 ----------------------------
377 -- Write_Unit_Information --
378 ----------------------------
380 procedure Write_Unit_Information
(Unit_Num
: Unit_Number_Type
) is
381 Unode
: constant Node_Id
:= Cunit
(Unit_Num
);
382 Ukind
: constant Node_Kind
:= Nkind
(Unit
(Unode
));
383 Uent
: constant Entity_Id
:= Cunit_Entity
(Unit_Num
);
387 Write_Info_Initiate
('U');
388 Write_Info_Char
(' ');
389 Write_Info_Name
(Unit_Name
(Unit_Num
));
391 Write_Info_Name
(Unit_File_Name
(Unit_Num
));
394 Write_Info_Str
(Version_Get
(Unit_Num
));
396 -- Add BD parameter if Elaborate_Body pragma desirable
398 if Ekind
(Uent
) = E_Package
399 and then Elaborate_Body_Desirable
(Uent
)
401 Write_Info_Str
(" BD");
404 -- Add BN parameter if body needed for SAL
406 if (Is_Subprogram
(Uent
)
407 or else Ekind
(Uent
) = E_Package
408 or else Is_Generic_Unit
(Uent
))
409 and then Body_Needed_For_SAL
(Uent
)
411 Write_Info_Str
(" BN");
414 if Dynamic_Elab
(Unit_Num
) then
415 Write_Info_Str
(" DE");
418 -- Set the Elaborate_Body indication if either an explicit pragma
419 -- was present, or if this is an instantiation.
421 if Has_Pragma_Elaborate_Body
(Uent
)
422 or else (Ukind
= N_Package_Declaration
423 and then Is_Generic_Instance
(Uent
)
424 and then Present
(Corresponding_Body
(Unit
(Unode
))))
426 Write_Info_Str
(" EB");
429 -- Now see if we should tell the binder that an elaboration entity
430 -- is present, which must be set to true during elaboration.
431 -- We generate the indication if the following condition is met:
433 -- If this is a spec ...
435 if (Is_Subprogram
(Uent
)
436 or else Ekind
(Uent
) = E_Package
437 or else Is_Generic_Unit
(Uent
))
439 -- and an elaboration entity was declared ...
441 and then Present
(Elaboration_Entity
(Uent
))
443 -- and either the elaboration flag is required ...
445 and then (Elaboration_Entity_Required
(Uent
)
447 -- or this unit has elaboration code ...
449 or else not Has_No_Elaboration_Code
(Unode
)
451 -- or this unit has a separate body and this
452 -- body has elaboration code.
455 (Ekind
(Uent
) = E_Package
456 and then Present
(Body_Entity
(Uent
))
458 not Has_No_Elaboration_Code
459 (Parent
(Declaration_Node
(Body_Entity
(Uent
))))))
461 Write_Info_Str
(" EE");
464 if Has_No_Elaboration_Code
(Unode
) then
465 Write_Info_Str
(" NE");
468 Write_Info_Str
(" O");
469 Write_Info_Char
(OA_Setting
(Unit_Num
));
471 if Ekind_In
(Uent
, E_Package
, E_Package_Body
)
472 and then Present
(Finalizer
(Uent
))
474 Write_Info_Str
(" PF");
477 if Is_Preelaborated
(Uent
) then
478 Write_Info_Str
(" PR");
481 if Is_Pure
(Uent
) then
482 Write_Info_Str
(" PU");
485 if Has_RACW
(Unit_Num
) then
486 Write_Info_Str
(" RA");
489 if Is_Remote_Call_Interface
(Uent
) then
490 Write_Info_Str
(" RC");
493 if Is_Remote_Types
(Uent
) then
494 Write_Info_Str
(" RT");
497 if Serious_Errors_Detected
/= 0 then
498 Write_Info_Str
(" SE");
501 if Is_Shared_Passive
(Uent
) then
502 Write_Info_Str
(" SP");
505 if Ukind
= N_Subprogram_Declaration
506 or else Ukind
= N_Subprogram_Body
508 Write_Info_Str
(" SU");
510 elsif Ukind
= N_Package_Declaration
512 Ukind
= N_Package_Body
514 -- If this is a wrapper package for a subprogram instantiation,
515 -- the user view is the subprogram. Note that in this case the
516 -- ali file contains both the spec and body of the instance.
518 if Is_Wrapper_Package
(Uent
) then
519 Write_Info_Str
(" SU");
521 Write_Info_Str
(" PK");
524 elsif Ukind
= N_Generic_Package_Declaration
then
525 Write_Info_Str
(" PK");
529 if Ukind
in N_Generic_Declaration
531 (Present
(Library_Unit
(Unode
))
533 Nkind
(Unit
(Library_Unit
(Unode
))) in N_Generic_Declaration
)
535 Write_Info_Str
(" GE");
538 if not Is_Internal_File_Name
(Unit_File_Name
(Unit_Num
), True) then
539 case Identifier_Casing
(Source_Index
(Unit_Num
)) is
540 when All_Lower_Case
=> Write_Info_Str
(" IL");
541 when All_Upper_Case
=> Write_Info_Str
(" IU");
545 case Keyword_Casing
(Source_Index
(Unit_Num
)) is
546 when Mixed_Case
=> Write_Info_Str
(" KM");
547 when All_Upper_Case
=> Write_Info_Str
(" KU");
552 if Initialize_Scalars
or else Invalid_Value_Used
then
553 Write_Info_Str
(" IS");
558 -- Generate with lines, first those that are directly with'ed
560 for J
in With_Flags
'Range loop
561 With_Flags
(J
) := False;
562 Elab_Flags
(J
) := False;
563 Elab_All_Flags
(J
) := False;
564 Elab_Des_Flags
(J
) := False;
565 Elab_All_Des_Flags
(J
) := False;
566 Implicit_With
(J
) := Unknown
;
569 Collect_Withs
(Unode
);
571 -- For a body, we must also check for any subunits which belong to
572 -- it and which have context clauses of their own, since these
573 -- with'ed units are part of its own elaboration dependencies.
575 if Nkind
(Unit
(Unode
)) in N_Unit_Body
then
576 for S
in Units
.First
.. Last_Unit
loop
578 -- We are only interested in subunits. For preproc. data and
579 -- def. files, Cunit is Empty, so we need to test that first.
581 if Cunit
(S
) /= Empty
582 and then Nkind
(Unit
(Cunit
(S
))) = N_Subunit
584 Pnode
:= Library_Unit
(Cunit
(S
));
586 -- In gnatc mode, the errors in the subunits will not have
587 -- been recorded, but the analysis of the subunit may have
588 -- failed. There is no information to add to ALI file in
595 -- Find ultimate parent of the subunit
597 while Nkind
(Unit
(Pnode
)) = N_Subunit
loop
598 Pnode
:= Library_Unit
(Pnode
);
601 -- See if it belongs to current unit, and if so, include
604 if Pnode
= Unode
then
605 Collect_Withs
(Cunit
(S
));
613 -- Generate the linker option lines
615 for J
in 1 .. Linker_Option_Lines
.Last
loop
617 -- Pragma Linker_Options is not allowed in predefined generic
618 -- units. This is because they won't be read, due to the fact that
619 -- with lines for generic units lack the file name and lib name
620 -- parameters (see Lib_Writ spec for an explanation).
622 if Is_Generic_Unit
(Cunit_Entity
(Main_Unit
))
624 Is_Predefined_File_Name
(Unit_File_Name
(Current_Sem_Unit
))
625 and then Linker_Option_Lines
.Table
(J
).Unit
= Unit_Num
629 ("linker options not allowed in predefined generic unit");
630 raise Unrecoverable_Error
;
633 -- Output one linker option line
636 S
: Linker_Option_Entry
renames Linker_Option_Lines
.Table
(J
);
638 if S
.Unit
= Unit_Num
then
639 Write_Info_Initiate
('L');
640 Write_Info_Char
(' ');
641 Write_Info_Slit
(S
.Option
);
649 for J
in 1 .. Notes
.Last
loop
651 N
: constant Node_Id
:= Notes
.Table
(J
);
652 L
: constant Source_Ptr
:= Sloc
(N
);
653 U
: constant Unit_Number_Type
:=
654 Unit
(Get_Source_File_Index
(L
));
657 Note_Unit
: Unit_Number_Type
;
658 -- The unit in whose U section this note must be emitted:
659 -- notes for subunits are emitted along with the main unit;
660 -- all other notes are emitted as part of the enclosing
664 if U
/= No_Unit
and then Nkind
(Unit
(Cunit
(U
))) = N_Subunit
666 Note_Unit
:= Main_Unit
;
671 if Note_Unit
= Unit_Num
then
672 Write_Info_Initiate
('N');
673 Write_Info_Char
(' ');
675 case Chars
(Pragma_Identifier
(N
)) is
676 when Name_Annotate
=>
684 when Name_Subtitle
=>
691 Write_Info_Int
(Int
(Get_Logical_Line_Number
(L
)));
692 Write_Info_Char
(':');
693 Write_Info_Int
(Int
(Get_Column_Number
(L
)));
695 -- Indicate source file of annotation if different from
696 -- compilation unit source file (case of annotation coming
699 if Get_Source_File_Index
(L
) /= Source_Index
(Unit_Num
) then
700 Write_Info_Char
(':');
701 Write_Info_Name
(File_Name
(Get_Source_File_Index
(L
)));
708 A
:= First
(Pragma_Argument_Associations
(N
));
709 while Present
(A
) loop
710 Write_Info_Char
(' ');
712 if Chars
(A
) /= No_Name
then
713 Write_Info_Name
(Chars
(A
));
714 Write_Info_Char
(':');
718 Expr
: constant Node_Id
:= Expression
(A
);
721 if Nkind
(Expr
) = N_Identifier
then
722 Write_Info_Name
(Chars
(Expr
));
724 elsif Nkind
(Expr
) = N_Integer_Literal
725 and then Is_OK_Static_Expression
(Expr
)
727 Write_Info_Uint
(Intval
(Expr
));
729 elsif Nkind
(Expr
) = N_String_Literal
730 and then Is_OK_Static_Expression
(Expr
)
732 Write_Info_Slit
(Strval
(Expr
));
735 Write_Info_Str
("<expr>");
747 end Write_Unit_Information
;
749 ----------------------
750 -- Write_With_Lines --
751 ----------------------
753 procedure Write_With_Lines
is
754 Pname
: constant Unit_Name_Type
:=
755 Get_Parent_Spec_Name
(Unit_Name
(Main_Unit
));
756 Body_Fname
: File_Name_Type
;
759 Fname
: File_Name_Type
;
760 Num_Withs
: Int
:= 0;
761 Unum
: Unit_Number_Type
;
762 Uname
: Unit_Name_Type
;
763 With_Table
: Unit_Ref_Table
(1 .. Pos
(Last_Unit
- Units
.First
+ 1));
765 procedure Write_With_File_Names
766 (Nam
: in out File_Name_Type
;
768 -- Write source file name Nam and ALI file name for unit index Idx.
769 -- Possibly change Nam to lowercase (generating a new file name).
771 --------------------------
772 -- Write_With_File_Name --
773 --------------------------
775 procedure Write_With_File_Names
776 (Nam
: in out File_Name_Type
;
780 if not File_Names_Case_Sensitive
then
781 Get_Name_String
(Nam
);
782 To_Lower
(Name_Buffer
(1 .. Name_Len
));
786 Write_Info_Name
(Nam
);
788 Write_Info_Name
(Lib_File_Name
(Nam
, Idx
));
789 end Write_With_File_Names
;
791 -- Start of processing for Write_With_Lines
794 -- Loop to build the with table. A with on the main unit itself
795 -- is ignored (AARM 10.2(14a)). Such a with-clause can occur if
796 -- the main unit is a subprogram with no spec, and a subunit of
797 -- it unnecessarily withs the parent.
799 for J
in Units
.First
+ 1 .. Last_Unit
loop
801 -- Add element to with table if it is with'ed or if it is the
802 -- parent spec of the main unit (case of main unit is a child
803 -- unit). The latter with is not needed for semantic purposes,
804 -- but is required by the binder for elaboration purposes. For
805 -- preprocessing data and definition files, there is no Unit_Name,
806 -- check for that first.
808 if Unit_Name
(J
) /= No_Unit_Name
809 and then (With_Flags
(J
) or else Unit_Name
(J
) = Pname
)
811 Num_Withs
:= Num_Withs
+ 1;
812 With_Table
(Num_Withs
) := J
;
816 -- Sort and output the table
818 Sort
(With_Table
(1 .. Num_Withs
));
820 for J
in 1 .. Num_Withs
loop
821 Unum
:= With_Table
(J
);
823 -- Do not generate a with line for an ignored Ghost unit because
824 -- the unit does not have an ALI file.
826 if Is_Ignored_Ghost_Entity
(Cunit_Entity
(Unum
)) then
830 Cunit
:= Units
.Table
(Unum
).Cunit
;
831 Uname
:= Units
.Table
(Unum
).Unit_Name
;
832 Fname
:= Units
.Table
(Unum
).Unit_File_Name
;
834 if Implicit_With
(Unum
) = Yes
then
835 Write_Info_Initiate
('Z');
837 elsif Ekind
(Cunit_Entity
(Unum
)) = E_Package
838 and then From_Limited_With
(Cunit_Entity
(Unum
))
840 Write_Info_Initiate
('Y');
843 Write_Info_Initiate
('W');
846 Write_Info_Char
(' ');
847 Write_Info_Name
(Uname
);
849 -- Now we need to figure out the names of the files that contain
850 -- the with'ed unit. These will usually be the files for the body,
851 -- except in the case of a package that has no body. Note that we
852 -- have a specific exemption here for predefined library generics
853 -- (see comments for Generic_May_Lack_ALI). We do not generate
854 -- dependency upon the ALI file for such units. Older compilers
855 -- used to not support generating code (and ALI) for generics, and
856 -- we want to avoid having different processing (namely, different
857 -- lists of files to be compiled) for different stages of the
860 if not ((Nkind
(Unit
(Cunit
)) in N_Generic_Declaration
862 Nkind
(Unit
(Cunit
)) in N_Generic_Renaming_Declaration
)
863 and then Generic_May_Lack_ALI
(Fname
))
865 -- In SPARK mode, always generate the dependencies on ALI
866 -- files, which are required to compute frame conditions
869 or else GNATprove_Mode
873 if Is_Spec_Name
(Uname
) then
876 (Get_Body_Name
(Uname
),
877 Subunit
=> False, May_Fail
=> True);
881 (Get_Body_Name
(Uname
));
883 if Body_Fname
= No_File
then
884 Body_Fname
:= Get_File_Name
(Uname
, Subunit
=> False);
885 Body_Index
:= Get_Unit_Index
(Uname
);
889 Body_Fname
:= Get_File_Name
(Uname
, Subunit
=> False);
890 Body_Index
:= Get_Unit_Index
(Uname
);
893 -- A package is considered to have a body if it requires
894 -- a body or if a body is present in Ada 83 mode.
896 if Body_Required
(Cunit
)
897 or else (Ada_Version
= Ada_83
898 and then Full_Source_Name
(Body_Fname
) /= No_File
)
900 Write_With_File_Names
(Body_Fname
, Body_Index
);
902 Write_With_File_Names
(Fname
, Munit_Index
(Unum
));
905 if Ekind
(Cunit_Entity
(Unum
)) = E_Package
906 and then From_Limited_With
(Cunit_Entity
(Unum
))
910 if Elab_Flags
(Unum
) then
911 Write_Info_Str
(" E");
914 if Elab_All_Flags
(Unum
) then
915 Write_Info_Str
(" EA");
918 if Elab_Des_Flags
(Unum
) then
919 Write_Info_Str
(" ED");
922 if Elab_All_Des_Flags
(Unum
) then
923 Write_Info_Str
(" AD");
934 -- Finally generate the special lines for cases of Restriction_Set
935 -- with No_Dependence and no restriction present.
938 Unam
: Unit_Name_Type
;
941 for J
in Restriction_Set_Dependences
.First
..
942 Restriction_Set_Dependences
.Last
944 Unam
:= Restriction_Set_Dependences
.Table
(J
);
946 -- Don't need an entry if already in the unit table
948 for U
in 0 .. Last_Unit
loop
949 if Unit_Name
(U
) = Unam
then
950 goto Next_Restriction_Set
;
954 -- Otherwise generate the entry
956 Write_Info_Initiate
('W');
957 Write_Info_Char
(' ');
958 Write_Info_Name
(Unam
);
961 <<Next_Restriction_Set
>>
965 end Write_With_Lines
;
967 -- Start of processing for Write_ALI
970 -- We never write an ALI file if the original operating mode was
971 -- syntax-only (-gnats switch used in compiler invocation line)
973 if Original_Operating_Mode
= Check_Syntax
974 or flag_compare_debug
/= 0
979 -- Generation of ALI files may be disabled, e.g. for formal verification
982 if Disable_ALI_File
then
986 -- Build sorted source dependency table. We do this right away, because
987 -- it is referenced by Up_To_Date_ALI_File_Exists.
989 for Unum
in Units
.First
.. Last_Unit
loop
990 if Cunit_Entity
(Unum
) = Empty
991 or else not From_Limited_With
(Cunit_Entity
(Unum
))
993 Num_Sdep
:= Num_Sdep
+ 1;
994 Sdep_Table
(Num_Sdep
) := Unum
;
998 -- Sort the table so that the D lines are in order
1000 Lib
.Sort
(Sdep_Table
(1 .. Num_Sdep
));
1002 -- If we are not generating code, and there is an up to date ALI file
1003 -- file accessible, read it, and acquire the compilation arguments from
1004 -- this file. In GNATprove mode, always generate the ALI file, which
1005 -- contains a special section for formal verification.
1007 if Operating_Mode
/= Generate_Code
and then not GNATprove_Mode
then
1008 if Up_To_Date_ALI_File_Exists
then
1009 Update_Tables_From_ALI_File
;
1014 -- Otherwise acquire compilation arguments and prepare to write out a
1017 Create_Output_Library_Info
;
1019 -- Output version line
1021 Write_Info_Initiate
('V');
1022 Write_Info_Str
(" """);
1023 Write_Info_Str
(Verbose_Library_Version
);
1024 Write_Info_Char
('"');
1028 -- Output main program line if this is acceptable main program
1030 Output_Main_Program_Line
: declare
1031 U
: Node_Id
:= Unit
(Units
.Table
(Main_Unit
).Cunit
);
1034 procedure M_Parameters
;
1035 -- Output parameters for main program line
1041 procedure M_Parameters
is
1043 if Main_Priority
(Main_Unit
) /= Default_Main_Priority
then
1044 Write_Info_Char
(' ');
1045 Write_Info_Nat
(Main_Priority
(Main_Unit
));
1048 if Opt
.Time_Slice_Set
then
1049 Write_Info_Str
(" T=");
1050 Write_Info_Nat
(Opt
.Time_Slice_Value
);
1053 if Main_CPU
(Main_Unit
) /= Default_Main_CPU
then
1054 Write_Info_Str
(" C=");
1055 Write_Info_Nat
(Main_CPU
(Main_Unit
));
1058 Write_Info_Str
(" W=");
1060 (WC_Encoding_Letters
(Wide_Character_Encoding_Method
));
1065 -- Start of processing for Output_Main_Program_Line
1068 if Nkind
(U
) = N_Subprogram_Body
1070 (Nkind
(U
) = N_Package_Body
1072 Nkind
(Original_Node
(U
)) in N_Subprogram_Instantiation
)
1074 -- If the unit is a subprogram instance, the entity for the
1075 -- subprogram is the alias of the visible entity, which is the
1076 -- related instance of the wrapper package. We retrieve the
1077 -- subprogram declaration of the desired entity.
1079 if Nkind
(U
) = N_Package_Body
then
1080 U
:= Parent
(Parent
(
1081 Alias
(Related_Instance
(Defining_Unit_Name
1082 (Specification
(Unit
(Library_Unit
(Parent
(U
)))))))));
1085 S
:= Specification
(U
);
1087 -- A generic subprogram is never a main program
1089 if Nkind
(U
) = N_Subprogram_Body
1090 and then Present
(Corresponding_Spec
(U
))
1092 Ekind_In
(Corresponding_Spec
(U
), E_Generic_Procedure
,
1097 elsif No
(Parameter_Specifications
(S
)) then
1098 if Nkind
(S
) = N_Procedure_Specification
then
1099 Write_Info_Initiate
('M');
1100 Write_Info_Str
(" P");
1105 Nam
: Node_Id
:= Defining_Unit_Name
(S
);
1108 -- If it is a child unit, get its simple name
1110 if Nkind
(Nam
) = N_Defining_Program_Unit_Name
then
1111 Nam
:= Defining_Identifier
(Nam
);
1114 if Is_Integer_Type
(Etype
(Nam
)) then
1115 Write_Info_Initiate
('M');
1116 Write_Info_Str
(" F");
1123 end Output_Main_Program_Line
;
1125 -- Write command argument ('A') lines
1127 for A
in 1 .. Compilation_Switches
.Last
loop
1128 Write_Info_Initiate
('A');
1129 Write_Info_Char
(' ');
1130 Write_Info_Str
(Compilation_Switches
.Table
(A
).all);
1131 Write_Info_Terminate
;
1134 -- Output parameters ('P') line
1136 Write_Info_Initiate
('P');
1138 if Compilation_Errors
then
1139 Write_Info_Str
(" CE");
1142 if Opt
.Detect_Blocking
then
1143 Write_Info_Str
(" DB");
1147 and then not Is_Predefined_File_Name
(Unit_File_Name
(Main_Unit
))
1149 if Locking_Policy
/= ' ' then
1150 Write_Info_Str
(" L");
1151 Write_Info_Char
(Locking_Policy
);
1154 if Queuing_Policy
/= ' ' then
1155 Write_Info_Str
(" Q");
1156 Write_Info_Char
(Queuing_Policy
);
1159 if Task_Dispatching_Policy
/= ' ' then
1160 Write_Info_Str
(" T");
1161 Write_Info_Char
(Task_Dispatching_Policy
);
1162 Write_Info_Char
(' ');
1166 if GNATprove_Mode
then
1167 Write_Info_Str
(" GP");
1170 if Partition_Elaboration_Policy
/= ' ' then
1171 Write_Info_Str
(" E");
1172 Write_Info_Char
(Partition_Elaboration_Policy
);
1176 Write_Info_Str
(" NO");
1179 if No_Run_Time_Mode
then
1180 Write_Info_Str
(" NR");
1183 if Normalize_Scalars
then
1184 Write_Info_Str
(" NS");
1187 if Default_SSO_Config
/= ' ' then
1188 Write_Info_Str
(" O");
1189 Write_Info_Char
(Default_SSO_Config
);
1192 if Sec_Stack_Used
then
1193 Write_Info_Str
(" SS");
1196 if Unreserve_All_Interrupts
then
1197 Write_Info_Str
(" UA");
1200 if Front_End_Exceptions
then
1201 Write_Info_Str
(" FX");
1204 if ZCX_Exceptions
then
1205 Write_Info_Str
(" ZX");
1210 -- Before outputting the restrictions line, update the setting of
1211 -- the No_Elaboration_Code flag. Violations of this restriction
1212 -- cannot be detected until after the backend has been called since
1213 -- it is the backend that sets this flag. We have to check all units
1214 -- for which we have generated code
1216 for Unit
in Units
.First
.. Last_Unit
loop
1217 if Units
.Table
(Unit
).Generate_Code
or else Unit
= Main_Unit
then
1218 if not Has_No_Elaboration_Code
(Cunit
(Unit
)) then
1219 Main_Restrictions
.Violated
(No_Elaboration_Code
) := True;
1224 -- Positional case (only if debug flag -gnatd.R is set)
1226 if Debug_Flag_Dot_RR
then
1228 -- Output first restrictions line
1230 Write_Info_Initiate
('R');
1231 Write_Info_Char
(' ');
1233 -- First the information for the boolean restrictions
1235 for R
in All_Boolean_Restrictions
loop
1236 if Main_Restrictions
.Set
(R
)
1237 and then not Restriction_Warnings
(R
)
1239 Write_Info_Char
('r');
1240 elsif Main_Restrictions
.Violated
(R
) then
1241 Write_Info_Char
('v');
1243 Write_Info_Char
('n');
1247 -- And now the information for the parameter restrictions
1249 for RP
in All_Parameter_Restrictions
loop
1250 if Main_Restrictions
.Set
(RP
)
1251 and then not Restriction_Warnings
(RP
)
1253 Write_Info_Char
('r');
1254 Write_Info_Nat
(Nat
(Main_Restrictions
.Value
(RP
)));
1256 Write_Info_Char
('n');
1259 if not Main_Restrictions
.Violated
(RP
)
1260 or else RP
not in Checked_Parameter_Restrictions
1262 Write_Info_Char
('n');
1264 Write_Info_Char
('v');
1265 Write_Info_Nat
(Nat
(Main_Restrictions
.Count
(RP
)));
1267 if Main_Restrictions
.Unknown
(RP
) then
1268 Write_Info_Char
('+');
1275 -- Named case (if debug flag -gnatd.R is not set)
1282 -- Write RN header line with preceding blank line
1285 Write_Info_Initiate
('R');
1286 Write_Info_Char
('N');
1289 -- First the lines for the boolean restrictions
1291 for R
in All_Boolean_Restrictions
loop
1292 if Main_Restrictions
.Set
(R
)
1293 and then not Restriction_Warnings
(R
)
1296 elsif Main_Restrictions
.Violated
(R
) then
1302 Write_Info_Initiate
('R');
1303 Write_Info_Char
(C
);
1304 Write_Info_Char
(' ');
1305 Write_Info_Str
(All_Boolean_Restrictions
'Image (R
));
1313 -- And now the lines for the parameter restrictions
1315 for RP
in All_Parameter_Restrictions
loop
1316 if Main_Restrictions
.Set
(RP
)
1317 and then not Restriction_Warnings
(RP
)
1319 Write_Info_Initiate
('R');
1320 Write_Info_Str
("R ");
1321 Write_Info_Str
(All_Parameter_Restrictions
'Image (RP
));
1322 Write_Info_Char
('=');
1323 Write_Info_Nat
(Nat
(Main_Restrictions
.Value
(RP
)));
1327 if not Main_Restrictions
.Violated
(RP
)
1328 or else RP
not in Checked_Parameter_Restrictions
1332 Write_Info_Initiate
('R');
1333 Write_Info_Str
("V ");
1334 Write_Info_Str
(All_Parameter_Restrictions
'Image (RP
));
1335 Write_Info_Char
('=');
1336 Write_Info_Nat
(Nat
(Main_Restrictions
.Count
(RP
)));
1338 if Main_Restrictions
.Unknown
(RP
) then
1339 Write_Info_Char
('+');
1347 -- Output R lines for No_Dependence entries
1349 for J
in No_Dependences
.First
.. No_Dependences
.Last
loop
1350 if In_Extended_Main_Source_Unit
(No_Dependences
.Table
(J
).Unit
)
1351 and then not No_Dependences
.Table
(J
).Warn
1353 Write_Info_Initiate
('R');
1354 Write_Info_Char
(' ');
1355 Write_Unit_Name
(No_Dependences
.Table
(J
).Unit
);
1360 -- Output interrupt state lines
1362 for J
in Interrupt_States
.First
.. Interrupt_States
.Last
loop
1363 Write_Info_Initiate
('I');
1364 Write_Info_Char
(' ');
1365 Write_Info_Nat
(Interrupt_States
.Table
(J
).Interrupt_Number
);
1366 Write_Info_Char
(' ');
1367 Write_Info_Char
(Interrupt_States
.Table
(J
).Interrupt_State
);
1368 Write_Info_Char
(' ');
1370 (Nat
(Get_Logical_Line_Number
1371 (Interrupt_States
.Table
(J
).Pragma_Loc
)));
1375 -- Output priority specific dispatching lines
1377 for J
in Specific_Dispatching
.First
.. Specific_Dispatching
.Last
loop
1378 Write_Info_Initiate
('S');
1379 Write_Info_Char
(' ');
1380 Write_Info_Char
(Specific_Dispatching
.Table
(J
).Dispatching_Policy
);
1381 Write_Info_Char
(' ');
1382 Write_Info_Nat
(Specific_Dispatching
.Table
(J
).First_Priority
);
1383 Write_Info_Char
(' ');
1384 Write_Info_Nat
(Specific_Dispatching
.Table
(J
).Last_Priority
);
1385 Write_Info_Char
(' ');
1387 (Nat
(Get_Logical_Line_Number
1388 (Specific_Dispatching
.Table
(J
).Pragma_Loc
)));
1392 -- Loop through file table to output information for all units for which
1393 -- we have generated code, as marked by the Generate_Code flag.
1395 for Unit
in Units
.First
.. Last_Unit
loop
1396 if Units
.Table
(Unit
).Generate_Code
1397 or else Unit
= Main_Unit
1399 Write_Info_EOL
; -- blank line
1400 Write_Unit_Information
(Unit
);
1404 Write_Info_EOL
; -- blank line
1406 -- Output external version reference lines
1408 for J
in 1 .. Version_Ref
.Last
loop
1409 Write_Info_Initiate
('E');
1410 Write_Info_Char
(' ');
1412 for K
in 1 .. String_Length
(Version_Ref
.Table
(J
)) loop
1413 Write_Info_Char_Code
(Get_String_Char
(Version_Ref
.Table
(J
), K
));
1419 -- Prepare to output the source dependency lines
1422 Unum
: Unit_Number_Type
;
1423 -- Number of unit being output
1425 Sind
: Source_File_Index
;
1426 -- Index of corresponding source file
1428 Fname
: File_Name_Type
;
1431 for J
in 1 .. Num_Sdep
loop
1432 Unum
:= Sdep_Table
(J
);
1433 Units
.Table
(Unum
).Dependency_Num
:= J
;
1434 Sind
:= Units
.Table
(Unum
).Source_Index
;
1436 -- The dependency table also contains units that appear in the
1437 -- context of a unit loaded through a limited_with clause. These
1438 -- units are never analyzed, and thus the main unit does not
1439 -- really have a dependency on them. Subunits are always compiled
1440 -- in the context of the parent, and their file table entries are
1441 -- not properly decorated, they are recognized syntactically.
1443 if Present
(Cunit_Entity
(Unum
))
1444 and then Ekind
(Cunit_Entity
(Unum
)) = E_Void
1445 and then Nkind
(Unit
(Cunit
(Unum
))) /= N_Subunit
1450 Write_Info_Initiate
('D');
1451 Write_Info_Char
(' ');
1453 -- Normal case of a unit entry with a source index
1455 if Sind
/= No_Source_File
then
1456 Fname
:= File_Name
(Sind
);
1458 -- Ensure that on platforms where the file names are not case
1459 -- sensitive, the recorded file name is in lower case.
1461 if not File_Names_Case_Sensitive
then
1462 Get_Name_String
(Fname
);
1463 To_Lower
(Name_Buffer
(1 .. Name_Len
));
1467 Write_Info_Name_May_Be_Quoted
(Fname
);
1468 Write_Info_Tab
(25);
1469 Write_Info_Str
(String (Time_Stamp
(Sind
)));
1470 Write_Info_Char
(' ');
1471 Write_Info_Str
(Get_Hex_String
(Source_Checksum
(Sind
)));
1473 -- If the dependency comes from a limited_with clause, record
1474 -- limited_checksum. This is disabled until full checksum
1475 -- changes are checked.
1477 -- if Present (Cunit_Entity (Unum))
1478 -- and then From_Limited_With (Cunit_Entity (Unum))
1480 -- Write_Info_Char (' ');
1481 -- Write_Info_Char ('Y');
1482 -- Write_Info_Str (Get_Hex_String (Limited_Chk_Sum (Sind)));
1485 -- If subunit, add unit name, omitting the %b at the end
1487 if Present
(Cunit
(Unum
)) then
1488 Get_Decoded_Name_String
(Unit_Name
(Unum
));
1489 Write_Info_Char
(' ');
1491 if Nkind
(Unit
(Cunit
(Unum
))) = N_Subunit
then
1492 Write_Info_Str
(Name_Buffer
(1 .. Name_Len
- 2));
1494 Write_Info_Str
(Name_Buffer
(1 .. Name_Len
));
1498 -- If Source_Reference pragma used, output information
1500 if Num_SRef_Pragmas
(Sind
) > 0 then
1501 Write_Info_Char
(' ');
1503 if Num_SRef_Pragmas
(Sind
) = 1 then
1504 Write_Info_Nat
(Int
(First_Mapped_Line
(Sind
)));
1509 Write_Info_Char
(':');
1510 Write_Info_Name
(Reference_Name
(Sind
));
1513 -- Case where there is no source index (happens for missing
1514 -- files). In this case we write a dummy time stamp.
1517 Write_Info_Name
(Unit_File_Name
(Unum
));
1518 Write_Info_Tab
(25);
1519 Write_Info_Str
(String (Dummy_Time_Stamp
));
1520 Write_Info_Char
(' ');
1521 Write_Info_Str
(Get_Hex_String
(0));
1531 -- Output cross-references
1533 if Opt
.Xref_Active
then
1537 -- Output SCO information if present
1539 if Generate_SCO
then
1540 SCO_Record_Filtered
;
1544 -- Output SPARK cross-reference information if needed
1546 if Opt
.Xref_Active
and then GNATprove_Mode
then
1547 SPARK_Specific
.Collect_SPARK_Xrefs
(Sdep_Table
=> Sdep_Table
,
1548 Num_Sdep
=> Num_Sdep
);
1549 SPARK_Specific
.Output_SPARK_Xrefs
;
1552 -- Output final blank line and we are done. This final blank line is
1553 -- probably junk, but we don't feel like making an incompatible change.
1555 Write_Info_Terminate
;
1556 Close_Output_Library_Info
;
1559 ---------------------
1560 -- Write_Unit_Name --
1561 ---------------------
1563 procedure Write_Unit_Name
(N
: Node_Id
) is
1565 if Nkind
(N
) = N_Identifier
then
1566 Write_Info_Name
(Chars
(N
));
1569 pragma Assert
(Nkind
(N
) = N_Selected_Component
);
1570 Write_Unit_Name
(Prefix
(N
));
1571 Write_Info_Char
('.');
1572 Write_Unit_Name
(Selector_Name
(N
));
1574 end Write_Unit_Name
;