1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2020, 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 with Atree
; use Atree
;
27 with Debug
; use Debug
;
28 with Einfo
; use Einfo
;
29 with Errout
; use Errout
;
30 with Fname
; use Fname
;
31 with Fname
.UF
; use Fname
.UF
;
32 with Nlists
; use Nlists
;
33 with Nmake
; use Nmake
;
35 with Osint
; use Osint
;
36 with Osint
.C
; use Osint
.C
;
37 with Output
; use Output
;
39 with Restrict
; use Restrict
;
41 with Sinfo
; use Sinfo
;
42 with Sinput
; use Sinput
;
43 with Sinput
.L
; use Sinput
.L
;
44 with Stand
; use Stand
;
45 with Tbuild
; use Tbuild
;
46 with Uname
; use Uname
;
48 package body Lib
.Load
is
50 -----------------------
51 -- Local Subprograms --
52 -----------------------
54 function From_Limited_With_Chain
return Boolean;
55 -- Check whether a possible circular dependence includes units that
56 -- have been loaded through limited_with clauses, in which case there
57 -- is no real circularity.
59 function Spec_Is_Irrelevant
60 (Spec_Unit
: Unit_Number_Type
;
61 Body_Unit
: Unit_Number_Type
) return Boolean;
62 -- The Spec_Unit and Body_Unit parameters are the unit numbers of the
63 -- spec file that corresponds to the main unit which is a body. This
64 -- function determines if the spec file is irrelevant and will be
65 -- overridden by the body as described in RM 10.1.4(4). See description
66 -- in "Special Handling of Subprogram Bodies" for further details.
68 procedure Write_Dependency_Chain
;
69 -- This procedure is used to generate error message info lines that
70 -- trace the current dependency chain when a load error occurs.
72 ------------------------------
73 -- Change_Main_Unit_To_Spec --
74 ------------------------------
76 procedure Change_Main_Unit_To_Spec
is
77 U
: Unit_Record
renames Units
.Table
(Main_Unit
);
79 X
: Source_File_Index
;
82 -- Get name of unit body
84 Get_Name_String
(U
.Unit_File_Name
);
86 -- Note: for the following we should really generalize and consult the
87 -- file name pattern data, but for now we just deal with the common
88 -- naming cases, which is probably good enough in practice ???
90 -- Change .adb to .ads
93 and then Name_Buffer
(Name_Len
- 3 .. Name_Len
) = ".adb"
95 Name_Buffer
(Name_Len
) := 's';
97 -- Change .2.ada to .1.ada (Rational convention)
100 and then Name_Buffer
(Name_Len
- 5 .. Name_Len
) = ".2.ada"
102 Name_Buffer
(Name_Len
- 4) := '1';
104 -- Change .ada to _.ada (DEC convention)
107 and then Name_Buffer
(Name_Len
- 3 .. Name_Len
) = ".ada"
109 Name_Buffer
(Name_Len
- 3 .. Name_Len
+ 1) := "_.ada";
110 Name_Len
:= Name_Len
+ 1;
112 -- No match, don't make the change
118 -- Try loading the spec
121 X
:= Load_Source_File
(N
);
123 -- No change if we did not find the spec
125 if X
<= No_Source_File
then
129 -- Otherwise modify Main_Unit entry to point to spec
131 U
.Unit_File_Name
:= N
;
133 end Change_Main_Unit_To_Spec
;
135 -------------------------------
136 -- Create_Dummy_Package_Unit --
137 -------------------------------
139 function Create_Dummy_Package_Unit
140 (With_Node
: Node_Id
;
141 Spec_Name
: Unit_Name_Type
) return Unit_Number_Type
143 Unum
: Unit_Number_Type
;
144 Cunit_Entity
: Entity_Id
;
146 Du_Name
: Node_Or_Entity_Id
;
148 Fname
: constant File_Name_Type
:=
149 Get_File_Name
(Spec_Name
, Subunit
=> False);
150 Pre_Name
: constant Boolean :=
151 Is_Predefined_File_Name
(Fname
, Renamings_Included
=> False);
152 Ren_Name
: constant Boolean :=
153 Is_Predefined_Renaming_File_Name
(Fname
);
154 GNAT_Name
: constant Boolean :=
155 Is_GNAT_File_Name
(Fname
);
156 Save_CS
: constant Boolean := Get_Comes_From_Source_Default
;
159 -- The created dummy package unit does not come from source
161 Set_Comes_From_Source_Default
(False);
165 if Nkind
(Name
(With_Node
)) = N_Identifier
then
167 Make_Defining_Identifier
(No_Location
,
168 Chars
=> Chars
(Name
(With_Node
)));
169 Du_Name
:= Cunit_Entity
;
170 End_Lab
:= New_Occurrence_Of
(Cunit_Entity
, No_Location
);
176 Make_Defining_Identifier
(No_Location
,
177 Chars
=> Chars
(Selector_Name
(Name
(With_Node
))));
179 Make_Defining_Program_Unit_Name
(No_Location
,
180 Name
=> Copy_Separate_Tree
(Prefix
(Name
(With_Node
))),
181 Defining_Identifier
=> Cunit_Entity
);
183 Set_Is_Child_Unit
(Cunit_Entity
);
186 Make_Designator
(No_Location
,
187 Name
=> Copy_Separate_Tree
(Prefix
(Name
(With_Node
))),
188 Identifier
=> New_Occurrence_Of
(Cunit_Entity
, No_Location
));
191 Set_Scope
(Cunit_Entity
, Standard_Standard
);
194 Make_Compilation_Unit
(No_Location
,
195 Context_Items
=> Empty_List
,
197 Make_Package_Declaration
(No_Location
,
199 Make_Package_Specification
(No_Location
,
200 Defining_Unit_Name
=> Du_Name
,
201 Visible_Declarations
=> Empty_List
,
202 End_Label
=> End_Lab
)),
204 Make_Compilation_Unit_Aux
(No_Location
));
206 -- Mark the dummy package as analyzed to prevent analysis of this
207 -- (non-existent) unit in -gnatQ mode because at the moment the
208 -- structure and attributes of this dummy package does not allow
209 -- a normal analysis of this unit
211 Set_Analyzed
(Cunit
);
213 Units
.Increment_Last
;
216 Units
.Table
(Unum
) :=
218 Cunit_Entity
=> Cunit_Entity
,
220 Dynamic_Elab
=> False,
221 Error_Location
=> Sloc
(With_Node
),
222 Expected_Unit
=> Spec_Name
,
223 Fatal_Error
=> Error_Detected
,
224 Generate_Code
=> False,
227 Ident_String
=> Empty
,
229 Is_Predefined_Renaming
=> Ren_Name
,
230 Is_Predefined_Unit
=> Pre_Name
or Ren_Name
,
231 Is_Internal_Unit
=> Pre_Name
or Ren_Name
or GNAT_Name
,
235 Main_Priority
=> Default_Main_Priority
,
236 Main_CPU
=> Default_Main_CPU
,
237 Primary_Stack_Count
=> 0,
238 Sec_Stack_Count
=> 0,
240 No_Elab_Code_All
=> False,
242 Source_Index
=> No_Source_File
,
243 Unit_File_Name
=> Fname
,
244 Unit_Name
=> Spec_Name
,
248 Init_Unit_Name
(Unum
, Spec_Name
);
250 Set_Comes_From_Source_Default
(Save_CS
);
251 Set_Error_Posted
(Cunit_Entity
);
252 Set_Error_Posted
(Cunit
);
254 end Create_Dummy_Package_Unit
;
256 -----------------------------
257 -- From_Limited_With_Chain --
258 -----------------------------
260 function From_Limited_With_Chain
return Boolean is
261 Curr_Num
: constant Unit_Number_Type
:=
262 Load_Stack
.Table
(Load_Stack
.Last
).Unit_Number
;
265 -- True if the current load operation is through a limited_with clause
266 -- and we are not within a loop of regular with_clauses.
268 for U
in reverse Load_Stack
.First
.. Load_Stack
.Last
- 1 loop
269 if Load_Stack
.Table
(U
).Unit_Number
= Curr_Num
then
272 elsif Present
(Load_Stack
.Table
(U
).With_Node
)
273 and then Limited_Present
(Load_Stack
.Table
(U
).With_Node
)
280 end From_Limited_With_Chain
;
286 procedure Initialize
is
292 ------------------------
293 -- Initialize_Version --
294 ------------------------
296 procedure Initialize_Version
(U
: Unit_Number_Type
) is
298 Units
.Table
(U
).Version
:= Source_Checksum
(Source_Index
(U
));
299 end Initialize_Version
;
301 ----------------------
302 -- Load_Main_Source --
303 ----------------------
305 procedure Load_Main_Source
is
306 Fname
: constant File_Name_Type
:= Next_Main_Source
;
307 Pre_Name
: constant Boolean :=
308 Is_Predefined_File_Name
(Fname
, Renamings_Included
=> False);
309 Ren_Name
: constant Boolean :=
310 Is_Predefined_Renaming_File_Name
(Fname
);
311 GNAT_Name
: constant Boolean :=
312 Is_GNAT_File_Name
(Fname
);
316 Load_Stack
.Increment_Last
;
317 Load_Stack
.Table
(Load_Stack
.Last
) := (Main_Unit
, Empty
);
319 -- Initialize unit table entry for Main_Unit. Note that we don't know
320 -- the unit name yet, that gets filled in when the parser parses the
321 -- main unit, at which time a check is made that it matches the main
322 -- file name, and then the Unit_Name field is set. The Cunit and
323 -- Cunit_Entity fields also get filled in later by the parser.
325 Units
.Increment_Last
;
327 Units
.Table
(Main_Unit
).Unit_File_Name
:= Fname
;
329 if Fname
/= No_File
then
330 Main_Source_File
:= Load_Source_File
(Fname
);
331 Current_Error_Source_File
:= Main_Source_File
;
333 if Main_Source_File
> No_Source_File
then
334 Version
:= Source_Checksum
(Main_Source_File
);
337 -- To avoid emitting a source location (since there is no file),
338 -- we write a custom error message instead of using the machinery
343 if Main_Source_File
= No_Access_To_Source_File
then
345 ("no read access for file """ & Get_Name_String
(Fname
)
349 ("file """ & Get_Name_String
(Fname
) & """ not found");
356 Units
.Table
(Main_Unit
) :=
358 Cunit_Entity
=> Empty
,
360 Dynamic_Elab
=> False,
361 Error_Location
=> No_Location
,
362 Expected_Unit
=> No_Unit_Name
,
364 Generate_Code
=> False,
367 Ident_String
=> Empty
,
369 Is_Predefined_Renaming
=> Ren_Name
,
370 Is_Predefined_Unit
=> Pre_Name
or Ren_Name
,
371 Is_Internal_Unit
=> Pre_Name
or Ren_Name
or GNAT_Name
,
375 Main_Priority
=> Default_Main_Priority
,
376 Main_CPU
=> Default_Main_CPU
,
377 Primary_Stack_Count
=> 0,
378 Sec_Stack_Count
=> 0,
381 No_Elab_Code_All
=> False,
383 Source_Index
=> Main_Source_File
,
384 Unit_File_Name
=> Fname
,
385 Unit_Name
=> No_Unit_Name
,
389 end Load_Main_Source
;
396 (Load_Name
: Unit_Name_Type
;
398 Error_Node
: Node_Id
;
400 Corr_Body
: Unit_Number_Type
:= No_Unit
;
401 Renamings
: Boolean := False;
402 With_Node
: Node_Id
:= Empty
;
403 PMES
: Boolean := False) return Unit_Number_Type
405 Calling_Unit
: Unit_Number_Type
;
406 Uname_Actual
: Unit_Name_Type
;
407 Unum
: Unit_Number_Type
;
408 Unump
: Unit_Number_Type
;
409 Fname
: File_Name_Type
;
413 Src_Ind
: Source_File_Index
;
414 Save_PMES
: constant Boolean := Parsing_Main_Extended_Source
;
416 Save_Cunit_Restrictions
: constant Save_Cunit_Boolean_Restrictions
:=
417 Cunit_Boolean_Restrictions_Save
;
418 -- Save current restrictions for restore at end
421 Parsing_Main_Extended_Source
:= PMES
;
423 -- Initialize restrictions to config restrictions for unit to load if
424 -- it is part of the main extended source, otherwise reset them.
426 -- Note: it's a bit odd but PMES is False for subunits, which is why
427 -- we have the OR here. Should be investigated some time???
429 if PMES
or Subunit
then
430 Restore_Config_Cunit_Boolean_Restrictions
;
432 Reset_Cunit_Boolean_Restrictions
;
435 -- If renamings are allowed and we have a child unit name, then we
436 -- must first load the parent to deal with finding the real name.
437 -- Retain the with_clause that names the child, so that if it is
438 -- limited, the parent is loaded under the same condition.
440 if Renamings
and then Is_Child_Name
(Load_Name
) then
443 (Load_Name
=> Get_Parent_Spec_Name
(Load_Name
),
444 Required
=> Required
,
447 Error_Node
=> Error_Node
,
448 With_Node
=> With_Node
);
450 if Unump
= No_Unit
then
451 Parsing_Main_Extended_Source
:= Save_PMES
;
455 -- If parent is a renaming, then we use the renamed package as
456 -- the actual parent for the subsequent load operation.
458 if Nkind
(Unit
(Cunit
(Unump
))) = N_Package_Renaming_Declaration
then
461 (Load_Name
, Get_Unit_Name
(Name
(Unit
(Cunit
(Unump
)))));
463 -- If the load is for a with_clause, for visibility purposes both
464 -- the renamed entity and renaming one must be available in the
465 -- current unit: the renamed one in order to retrieve the child
466 -- unit, and the original one because it may be used as a prefix
467 -- in the body of the current unit. We add an explicit with_clause
468 -- for the original parent so that the renaming declaration is
469 -- properly loaded and analyzed.
471 if Present
(With_Node
) then
472 Insert_After
(With_Node
,
473 Make_With_Clause
(Sloc
(With_Node
),
474 Name
=> Copy_Separate_Tree
(Prefix
(Name
(With_Node
)))));
477 -- Save the renaming entity, to establish its visibility when
478 -- installing the context. The implicit with is on this entity,
479 -- not on the package it renames. This is somewhat redundant given
480 -- the with_clause just created, but it simplifies subsequent
481 -- expansion of the current with_clause. Optimizable ???
483 if Nkind
(Error_Node
) = N_With_Clause
484 and then Nkind
(Name
(Error_Node
)) = N_Selected_Component
487 Par
: Node_Id
:= Name
(Error_Node
);
490 while Nkind
(Par
) = N_Selected_Component
491 and then Chars
(Selector_Name
(Par
)) /=
492 Chars
(Cunit_Entity
(Unump
))
497 -- Case of some intermediate parent is a renaming
499 if Nkind
(Par
) = N_Selected_Component
then
500 Set_Entity
(Selector_Name
(Par
), Cunit_Entity
(Unump
));
502 -- Case where the ultimate parent is a renaming
505 Set_Entity
(Par
, Cunit_Entity
(Unump
));
510 -- If the parent is not a renaming, then get its name (this may
511 -- be different from the parent spec name obtained above because
512 -- of renamings higher up in the hierarchy).
515 Uname_Actual
:= New_Child
(Load_Name
, Unit_Name
(Unump
));
518 -- Here if unit to be loaded is not a child unit
521 Uname_Actual
:= Load_Name
;
524 Fname
:= Get_File_Name
(Uname_Actual
, Subunit
);
526 Is_Predefined_File_Name
(Fname
, Renamings_Included
=> False);
527 Ren_Name
:= Is_Predefined_Renaming_File_Name
(Fname
);
528 GNAT_Name
:= Is_GNAT_File_Name
(Fname
);
532 Write_Str
("*** Load request for unit: ");
533 Write_Unit_Name
(Load_Name
);
536 Write_Str
(" (Required = True)");
538 Write_Str
(" (Required = False)");
543 if Uname_Actual
/= Load_Name
then
544 Write_Str
("*** Actual unit loaded: ");
545 Write_Unit_Name
(Uname_Actual
);
549 -- Capture error location if it is for the main unit. The idea is to
550 -- post errors on the main unit location, not the most recent unit.
551 -- Note: Unit_Name (Main_Unit) is not set if we are parsing gnat.adc.
553 if Present
(Error_Node
)
554 and then Present
(Unit_Name
(Main_Unit
))
556 -- It seems like In_Extended_Main_Source_Unit (Error_Node) would
557 -- do the trick here, but that's wrong, it is much too early to
558 -- call this routine. We are still in the parser, and the required
559 -- semantic information is not established yet. So we base the
560 -- judgment on unit names.
562 Get_External_Unit_Name_String
(Unit_Name
(Main_Unit
));
565 Main_Unit_Name
: constant String := Name_Buffer
(1 .. Name_Len
);
568 Get_External_Unit_Name_String
569 (Unit_Name
(Get_Source_Unit
(Error_Node
)));
571 -- If the two names are identical, then for sure we are part
572 -- of the extended main unit
574 if Main_Unit_Name
= Name_Buffer
(1 .. Name_Len
) then
575 Load_Msg_Sloc
:= Sloc
(Error_Node
);
577 -- If the load is called from a with_type clause, the error
580 -- Otherwise, check for the subunit case, and if so, consider
581 -- we have a match if one name is a prefix of the other name.
584 if Nkind
(Unit
(Cunit
(Main_Unit
))) = N_Subunit
586 Nkind
(Unit
(Cunit
(Get_Source_Unit
(Error_Node
)))) =
589 Name_Len
:= Integer'Min (Name_Len
, Main_Unit_Name
'Length);
591 if Name_Buffer
(1 .. Name_Len
)
593 Main_Unit_Name
(1 .. Name_Len
)
595 Load_Msg_Sloc
:= Sloc
(Error_Node
);
602 -- If we are generating error messages, then capture calling unit
604 if Present
(Error_Node
) then
605 Calling_Unit
:= Get_Source_Unit
(Error_Node
);
607 Calling_Unit
:= No_Unit
;
610 -- See if we already have an entry for this unit
612 Unum
:= Unit_Names
.Get
(Uname_Actual
);
613 if Unum
= No_Unit
then
614 Unum
:= Units
.Last
+ 1;
617 -- Whether or not the entry was found, Unum is now the right value,
618 -- since it is one more than Units.Last (i.e. the index of the new
619 -- entry we will create) in the not found case.
621 -- A special check is necessary in the unit not found case. If the unit
622 -- is not found, but the file in which it lives has already been loaded,
623 -- then we have the problem that the file does not contain the unit that
624 -- is needed. We simply treat this as a file not found condition.
626 -- We skip this test in multiple unit per file mode since in this
627 -- case we can have multiple units from the same source file.
629 if Unum
> Units
.Last
and then Get_Unit_Index
(Uname_Actual
) = 0 then
630 for J
in Units
.First
.. Units
.Last
loop
631 if Fname
= Units
.Table
(J
).Unit_File_Name
then
633 Write_Str
(" file does not contain unit, Unit_Number = ");
634 Write_Int
(Int
(Unum
));
639 if Present
(Error_Node
) then
640 Get_Name_String
(Fname
);
642 if Is_Predefined_File_Name
(Fname
) then
643 Error_Msg_Unit_1
:= Uname_Actual
;
645 ("$$ is not a language defined unit", Load_Msg_Sloc
);
647 Error_Msg_File_1
:= Fname
;
648 Error_Msg_Unit_1
:= Uname_Actual
;
649 Error_Msg
("file{ does not contain unit$", Load_Msg_Sloc
);
652 Write_Dependency_Chain
;
664 -- If we are proceeding with load, then make load stack entry,
665 -- and indicate the kind of with_clause responsible for the load.
667 Load_Stack
.Increment_Last
;
668 Load_Stack
.Table
(Load_Stack
.Last
) := (Unum
, With_Node
);
670 -- Case of entry already in table
672 if Unum
<= Units
.Last
then
674 -- Here is where we check for a circular dependency, which is
675 -- an attempt to load a unit which is currently in the process
676 -- of being loaded. We do *not* care about a circular chain that
677 -- leads back to a body, because this kind of circular dependence
678 -- legitimately occurs (e.g. two package bodies that contain
679 -- inlined subprogram referenced by the other).
681 -- Ada 2005 (AI-50217): We also ignore limited_with clauses, because
682 -- their purpose is precisely to create legal circular structures.
685 and then (Is_Spec_Name
(Units
.Table
(Unum
).Unit_Name
)
686 or else Acts_As_Spec
(Units
.Table
(Unum
).Cunit
))
687 and then (Nkind
(Error_Node
) /= N_With_Clause
688 or else not Limited_Present
(Error_Node
))
689 and then not From_Limited_With_Chain
692 Write_Str
(" circular dependency encountered");
696 if Present
(Error_Node
) then
697 Error_Msg
("circular unit dependency", Load_Msg_Sloc
);
698 Write_Dependency_Chain
;
700 Load_Stack
.Decrement_Last
;
708 Write_Str
(" unit already in file table, Unit_Number = ");
709 Write_Int
(Int
(Unum
));
713 Load_Stack
.Decrement_Last
;
716 -- Unit is not already in table, so try to open the file
720 Write_Str
(" attempt unit load, Unit_Number = ");
721 Write_Int
(Int
(Unum
));
725 Src_Ind
:= Load_Source_File
(Fname
);
727 -- Make a partial entry in the file table, used even in the file not
728 -- found case to print the dependency chain including the last entry
730 Units
.Increment_Last
;
731 Init_Unit_Name
(Unum
, Uname_Actual
);
735 if Src_Ind
> No_Source_File
then
736 Units
.Table
(Unum
) :=
738 Cunit_Entity
=> Empty
,
740 Dynamic_Elab
=> False,
741 Error_Location
=> Sloc
(Error_Node
),
742 Expected_Unit
=> Uname_Actual
,
744 Generate_Code
=> False,
747 Ident_String
=> Empty
,
749 Is_Predefined_Renaming
=> Ren_Name
,
750 Is_Predefined_Unit
=> Pre_Name
or Ren_Name
,
751 Is_Internal_Unit
=> Pre_Name
or Ren_Name
or GNAT_Name
,
755 Main_Priority
=> Default_Main_Priority
,
756 Main_CPU
=> Default_Main_CPU
,
757 Primary_Stack_Count
=> 0,
758 Sec_Stack_Count
=> 0,
760 No_Elab_Code_All
=> False,
762 Source_Index
=> Src_Ind
,
763 Unit_File_Name
=> Fname
,
764 Unit_Name
=> Uname_Actual
,
765 Version
=> Source_Checksum
(Src_Ind
),
768 -- Parse the new unit
771 Save_Index
: constant Nat
:= Multiple_Unit_Index
;
772 Save_PMES
: constant Boolean := Parsing_Main_Extended_Source
;
775 Multiple_Unit_Index
:= Get_Unit_Index
(Uname_Actual
);
776 Units
.Table
(Unum
).Munit_Index
:= Multiple_Unit_Index
;
777 Initialize_Scanner
(Unum
, Source_Index
(Unum
));
779 if Calling_Unit
= Main_Unit
and then Subunit
then
780 Parsing_Main_Extended_Source
:= True;
783 Discard_List
(Par
(Configuration_Pragmas
=> False));
785 Parsing_Main_Extended_Source
:= Save_PMES
;
787 Multiple_Unit_Index
:= Save_Index
;
788 Set_Loading
(Unum
, False);
791 -- If spec is irrelevant, then post errors and quit
793 if Corr_Body
/= No_Unit
794 and then Spec_Is_Irrelevant
(Unum
, Corr_Body
)
796 Error_Msg_File_1
:= Unit_File_Name
(Corr_Body
);
798 ("cannot compile subprogram in file {!", Load_Msg_Sloc
);
799 Error_Msg_File_1
:= Unit_File_Name
(Unum
);
801 ("\incorrect spec in file { must be removed first!",
807 -- If loaded unit had an error, then caller inherits setting
809 if Present
(Error_Node
) then
810 case Units
.Table
(Unum
).Fatal_Error
is
812 -- Nothing to do if with'ed unit had no error
817 -- If with'ed unit had a detected fatal error, propagate it
819 when Error_Detected
=>
820 Units
.Table
(Calling_Unit
).Fatal_Error
:= Error_Detected
;
822 -- If with'ed unit had an ignored error, then propagate it
823 -- but do not overide an existring setting.
825 when Error_Ignored
=>
826 if Units
.Table
(Calling_Unit
).Fatal_Error
= None
then
827 Units
.Table
(Calling_Unit
).Fatal_Error
:=
833 -- Remove load stack entry and return the entry in the file table
835 Load_Stack
.Decrement_Last
;
837 -- All done, return unit number
841 -- Case of file not found
845 if Src_Ind
= No_Access_To_Source_File
then
846 Write_Str
(" no read access to file, load failed");
848 Write_Str
(" file was not found, load failed");
854 -- Generate message if unit required
857 Get_Name_String
(Fname
);
859 if Is_Predefined_File_Name
(Fname
) then
861 -- This is a predefined library unit which is not present
862 -- in the run time. If a predefined unit is not available
863 -- it may very likely be the case that there is also pragma
864 -- Restriction forbidding its usage. This is typically the
865 -- case when building a configurable run time, where the
866 -- usage of certain run-time units is restricted by means
867 -- of both the corresponding pragma Restriction (such as
868 -- No_Calendar), and by not including the unit. Hence, we
869 -- check whether this predefined unit is forbidden, so that
870 -- the message about the restriction violation is generated,
873 if Present
(Error_Node
) then
874 Check_Restricted_Unit
(Load_Name
, Error_Node
);
877 Error_Msg_Unit_1
:= Uname_Actual
;
879 ("$$ is not a predefined library unit", Load_Msg_Sloc
);
882 Error_Msg_File_1
:= Fname
;
884 if Src_Ind
= No_Access_To_Source_File
then
885 Error_Msg
("no read access to file{", Load_Msg_Sloc
);
887 Error_Msg
("file{ not found", Load_Msg_Sloc
);
891 Write_Dependency_Chain
;
893 -- Remove unit from stack, to avoid cascaded errors on
894 -- subsequent missing files.
896 Load_Stack
.Decrement_Last
;
899 -- If unit not required, remove load stack entry and the junk
900 -- file table entry, and return No_Unit to indicate not found,
903 Load_Stack
.Decrement_Last
;
912 -- Here to exit, with result in Unum
915 Parsing_Main_Extended_Source
:= Save_PMES
;
916 Cunit_Boolean_Restrictions_Restore
(Save_Cunit_Restrictions
);
920 --------------------------
921 -- Make_Child_Decl_Unit --
922 --------------------------
924 procedure Make_Child_Decl_Unit
(N
: Node_Id
) is
925 Unit_Decl
: constant Node_Id
:= Library_Unit
(N
);
926 Unit_Num
: constant Unit_Number_Type
:= Get_Cunit_Unit_Number
(N
);
929 Units
.Increment_Last
;
930 Units
.Table
(Units
.Last
) := Units
.Table
(Unit_Num
);
931 Units
.Table
(Units
.Last
).Cunit
:= Unit_Decl
;
932 Units
.Table
(Units
.Last
).Cunit_Entity
:=
934 (Defining_Unit_Name
(Specification
(Unit
(Unit_Decl
))));
935 Init_Unit_Name
(Units
.Last
, Get_Spec_Name
(Unit_Name
(Unit_Num
)));
937 -- The library unit created for of a child subprogram unit plays no
938 -- role in code generation and binding, so label it accordingly.
940 Units
.Table
(Units
.Last
).Generate_Code
:= False;
941 Set_Has_No_Elaboration_Code
(Unit_Decl
);
942 end Make_Child_Decl_Unit
;
944 ------------------------
945 -- Make_Instance_Unit --
946 ------------------------
948 -- If the unit is an instance, it appears as a package declaration, but
949 -- contains both declaration and body of the instance. The body becomes
950 -- the main unit of the compilation, and the declaration is inserted
951 -- at the end of the unit table. The main unit now has the name of a
952 -- body, which is constructed from the name of the original spec,
953 -- and is attached to the compilation node of the original unit. The
954 -- declaration has been attached to a new compilation unit node, and
955 -- code will have to be generated for it.
957 procedure Make_Instance_Unit
(N
: Node_Id
; In_Main
: Boolean) is
958 Sind
: constant Source_File_Index
:= Source_Index
(Main_Unit
);
961 Units
.Increment_Last
;
964 Units
.Table
(Units
.Last
) := Units
.Table
(Main_Unit
);
965 Units
.Table
(Units
.Last
).Cunit
:= Library_Unit
(N
);
966 Units
.Table
(Units
.Last
).Generate_Code
:= True;
967 Init_Unit_Name
(Units
.Last
, Unit_Name
(Main_Unit
));
969 Units
.Table
(Main_Unit
).Cunit
:= N
;
970 Units
.Table
(Main_Unit
).Version
:= Source_Checksum
(Sind
);
971 Init_Unit_Name
(Main_Unit
,
973 (Unit_Name
(Get_Cunit_Unit_Number
(Library_Unit
(N
)))));
976 -- Duplicate information from instance unit, for the body. The unit
977 -- node N has been rewritten as a body, but it was placed in the
978 -- units table when first loaded as a declaration.
980 Units
.Table
(Units
.Last
) := Units
.Table
(Get_Cunit_Unit_Number
(N
));
981 Units
.Table
(Units
.Last
).Cunit
:= Library_Unit
(N
);
983 end Make_Instance_Unit
;
985 ------------------------
986 -- Spec_Is_Irrelevant --
987 ------------------------
989 function Spec_Is_Irrelevant
990 (Spec_Unit
: Unit_Number_Type
;
991 Body_Unit
: Unit_Number_Type
) return Boolean
993 Sunit
: constant Node_Id
:= Cunit
(Spec_Unit
);
994 Bunit
: constant Node_Id
:= Cunit
(Body_Unit
);
997 -- The spec is irrelevant if the body is a subprogram body, and the spec
998 -- is other than a subprogram spec or generic subprogram spec. Note that
999 -- the names must be the same, we don't need to check that, because we
1000 -- already know that from the fact that the file names are the same.
1003 Nkind
(Unit
(Bunit
)) = N_Subprogram_Body
1004 and then Nkind
(Unit
(Sunit
)) /= N_Subprogram_Declaration
1005 and then Nkind
(Unit
(Sunit
)) /= N_Generic_Subprogram_Declaration
;
1006 end Spec_Is_Irrelevant
;
1008 --------------------
1009 -- Version_Update --
1010 --------------------
1012 procedure Version_Update
(U
: Node_Id
; From
: Node_Id
) is
1013 Unum
: constant Unit_Number_Type
:= Get_Cunit_Unit_Number
(U
);
1014 Fnum
: constant Unit_Number_Type
:= Get_Cunit_Unit_Number
(From
);
1016 if Source_Index
(Fnum
) > No_Source_File
then
1017 Units
.Table
(Unum
).Version
:=
1018 Units
.Table
(Unum
).Version
1020 Source_Checksum
(Source_Index
(Fnum
));
1024 ----------------------------
1025 -- Write_Dependency_Chain --
1026 ----------------------------
1028 procedure Write_Dependency_Chain
is
1030 -- The dependency chain is only written if it is at least two entries
1031 -- deep, otherwise it is trivial (the main unit depending on a unit
1032 -- that it obviously directly depends on).
1034 if Load_Stack
.Last
- 1 > Load_Stack
.First
then
1035 for U
in Load_Stack
.First
.. Load_Stack
.Last
- 1 loop
1037 Unit_Name
(Load_Stack
.Table
(U
).Unit_Number
);
1039 Unit_Name
(Load_Stack
.Table
(U
+ 1).Unit_Number
);
1040 Error_Msg
("$ depends on $!", Load_Msg_Sloc
);
1043 end Write_Dependency_Chain
;