1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2012, 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. --
18 -- As a special exception under Section 7 of GPL version 3, you are granted --
19 -- additional permissions described in the GCC Runtime Library Exception, --
20 -- version 3.1, as published by the Free Software Foundation. --
22 -- You should have received a copy of the GNU General Public License and --
23 -- a copy of the GCC Runtime Library Exception along with this program; --
24 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
25 -- <http://www.gnu.org/licenses/>. --
27 -- GNAT was originally developed by the GNAT team at New York University. --
28 -- Extensive contributions were provided by Ada Core Technologies Inc. --
30 ------------------------------------------------------------------------------
32 pragma Style_Checks
(All_Checks
);
33 -- Subprogram ordering not enforced in this unit
34 -- (because of some logical groupings).
36 with Atree
; use Atree
;
37 with Csets
; use Csets
;
38 with Einfo
; use Einfo
;
39 with Fname
; use Fname
;
40 with Nlists
; use Nlists
;
41 with Output
; use Output
;
42 with Sinfo
; use Sinfo
;
43 with Sinput
; use Sinput
;
44 with Stand
; use Stand
;
45 with Stringt
; use Stringt
;
46 with Tree_IO
; use Tree_IO
;
47 with Uname
; use Uname
;
48 with Widechar
; use Widechar
;
52 Switch_Storing_Enabled
: Boolean := True;
53 -- Controlled by Enable_Switch_Storing/Disable_Switch_Storing
55 -----------------------
56 -- Local Subprograms --
57 -----------------------
60 Yes_Before
, -- S1 is in same extended unit as S2 and appears before it
61 Yes_Same
, -- S1 is in same extended unit as S2, Slocs are the same
62 Yes_After
, -- S1 is in same extended unit as S2, and appears after it
63 No
); -- S2 is not in same extended unit as S2
65 function Check_Same_Extended_Unit
(S1
, S2
: Source_Ptr
) return SEU_Result
;
66 -- Used by In_Same_Extended_Unit and Earlier_In_Extended_Unit. Returns
67 -- value as described above.
69 function Get_Code_Or_Source_Unit
71 Unwind_Instances
: Boolean) return Unit_Number_Type
;
72 -- Common code for Get_Code_Unit (get unit of instantiation for location)
73 -- and Get_Source_Unit (get unit of template for location).
75 --------------------------------------------
76 -- Access Functions for Unit Table Fields --
77 --------------------------------------------
79 function Cunit
(U
: Unit_Number_Type
) return Node_Id
is
81 return Units
.Table
(U
).Cunit
;
84 function Cunit_Entity
(U
: Unit_Number_Type
) return Entity_Id
is
86 return Units
.Table
(U
).Cunit_Entity
;
89 function Dependency_Num
(U
: Unit_Number_Type
) return Nat
is
91 return Units
.Table
(U
).Dependency_Num
;
94 function Dynamic_Elab
(U
: Unit_Number_Type
) return Boolean is
96 return Units
.Table
(U
).Dynamic_Elab
;
99 function Error_Location
(U
: Unit_Number_Type
) return Source_Ptr
is
101 return Units
.Table
(U
).Error_Location
;
104 function Expected_Unit
(U
: Unit_Number_Type
) return Unit_Name_Type
is
106 return Units
.Table
(U
).Expected_Unit
;
109 function Fatal_Error
(U
: Unit_Number_Type
) return Boolean is
111 return Units
.Table
(U
).Fatal_Error
;
114 function Generate_Code
(U
: Unit_Number_Type
) return Boolean is
116 return Units
.Table
(U
).Generate_Code
;
119 function Has_Allocator
(U
: Unit_Number_Type
) return Boolean is
121 return Units
.Table
(U
).Has_Allocator
;
124 function Has_RACW
(U
: Unit_Number_Type
) return Boolean is
126 return Units
.Table
(U
).Has_RACW
;
129 function Is_Compiler_Unit
(U
: Unit_Number_Type
) return Boolean is
131 return Units
.Table
(U
).Is_Compiler_Unit
;
132 end Is_Compiler_Unit
;
134 function Ident_String
(U
: Unit_Number_Type
) return Node_Id
is
136 return Units
.Table
(U
).Ident_String
;
139 function Loading
(U
: Unit_Number_Type
) return Boolean is
141 return Units
.Table
(U
).Loading
;
144 function Main_CPU
(U
: Unit_Number_Type
) return Int
is
146 return Units
.Table
(U
).Main_CPU
;
149 function Main_Priority
(U
: Unit_Number_Type
) return Int
is
151 return Units
.Table
(U
).Main_Priority
;
154 function Munit_Index
(U
: Unit_Number_Type
) return Nat
is
156 return Units
.Table
(U
).Munit_Index
;
159 function OA_Setting
(U
: Unit_Number_Type
) return Character is
161 return Units
.Table
(U
).OA_Setting
;
164 function Source_Index
(U
: Unit_Number_Type
) return Source_File_Index
is
166 return Units
.Table
(U
).Source_Index
;
169 function Unit_File_Name
(U
: Unit_Number_Type
) return File_Name_Type
is
171 return Units
.Table
(U
).Unit_File_Name
;
174 function Unit_Name
(U
: Unit_Number_Type
) return Unit_Name_Type
is
176 return Units
.Table
(U
).Unit_Name
;
179 ------------------------------------------
180 -- Subprograms to Set Unit Table Fields --
181 ------------------------------------------
183 procedure Set_Cunit
(U
: Unit_Number_Type
; N
: Node_Id
) is
185 Units
.Table
(U
).Cunit
:= N
;
188 procedure Set_Cunit_Entity
(U
: Unit_Number_Type
; E
: Entity_Id
) is
190 Units
.Table
(U
).Cunit_Entity
:= E
;
191 Set_Is_Compilation_Unit
(E
);
192 end Set_Cunit_Entity
;
194 procedure Set_Dynamic_Elab
(U
: Unit_Number_Type
; B
: Boolean := True) is
196 Units
.Table
(U
).Dynamic_Elab
:= B
;
197 end Set_Dynamic_Elab
;
199 procedure Set_Error_Location
(U
: Unit_Number_Type
; W
: Source_Ptr
) is
201 Units
.Table
(U
).Error_Location
:= W
;
202 end Set_Error_Location
;
204 procedure Set_Fatal_Error
(U
: Unit_Number_Type
; B
: Boolean := True) is
206 Units
.Table
(U
).Fatal_Error
:= B
;
209 procedure Set_Generate_Code
(U
: Unit_Number_Type
; B
: Boolean := True) is
211 Units
.Table
(U
).Generate_Code
:= B
;
212 end Set_Generate_Code
;
214 procedure Set_Has_Allocator
(U
: Unit_Number_Type
; B
: Boolean := True) is
216 Units
.Table
(U
).Has_Allocator
:= B
;
217 end Set_Has_Allocator
;
219 procedure Set_Has_RACW
(U
: Unit_Number_Type
; B
: Boolean := True) is
221 Units
.Table
(U
).Has_RACW
:= B
;
224 procedure Set_Is_Compiler_Unit
225 (U
: Unit_Number_Type
;
229 Units
.Table
(U
).Is_Compiler_Unit
:= B
;
230 end Set_Is_Compiler_Unit
;
232 procedure Set_Ident_String
(U
: Unit_Number_Type
; N
: Node_Id
) is
234 Units
.Table
(U
).Ident_String
:= N
;
235 end Set_Ident_String
;
237 procedure Set_Loading
(U
: Unit_Number_Type
; B
: Boolean := True) is
239 Units
.Table
(U
).Loading
:= B
;
242 procedure Set_Main_CPU
(U
: Unit_Number_Type
; P
: Int
) is
244 Units
.Table
(U
).Main_CPU
:= P
;
247 procedure Set_Main_Priority
(U
: Unit_Number_Type
; P
: Int
) is
249 Units
.Table
(U
).Main_Priority
:= P
;
250 end Set_Main_Priority
;
252 procedure Set_OA_Setting
(U
: Unit_Number_Type
; C
: Character) is
254 Units
.Table
(U
).OA_Setting
:= C
;
257 procedure Set_Unit_Name
(U
: Unit_Number_Type
; N
: Unit_Name_Type
) is
259 Units
.Table
(U
).Unit_Name
:= N
;
262 ------------------------------
263 -- Check_Same_Extended_Unit --
264 ------------------------------
266 function Check_Same_Extended_Unit
(S1
, S2
: Source_Ptr
) return SEU_Result
is
269 Sind1
: Source_File_Index
;
270 Sind2
: Source_File_Index
;
273 Unum1
: Unit_Number_Type
;
274 Unum2
: Unit_Number_Type
;
281 if S1
= No_Location
or else S2
= No_Location
then
284 elsif S1
= Standard_Location
then
285 if S2
= Standard_Location
then
291 elsif S2
= Standard_Location
then
298 Unum1
:= Get_Source_Unit
(Sloc1
);
299 Unum2
:= Get_Source_Unit
(Sloc2
);
302 -- Step 1: Check whether the two locations are in the same source
305 Sind1
:= Get_Source_File_Index
(Sloc1
);
306 Sind2
:= Get_Source_File_Index
(Sloc2
);
308 if Sind1
= Sind2
then
309 if Sloc1
< Sloc2
then
311 elsif Sloc1
> Sloc2
then
318 -- Step 2: Check subunits. If a subunit is instantiated, follow the
319 -- instantiation chain rather than the stub chain.
321 Unit1
:= Unit
(Cunit
(Unum1
));
322 Unit2
:= Unit
(Cunit
(Unum2
));
323 Inst1
:= Instantiation
(Sind1
);
324 Inst2
:= Instantiation
(Sind2
);
326 if Nkind
(Unit1
) = N_Subunit
327 and then Present
(Corresponding_Stub
(Unit1
))
328 and then Inst1
= No_Location
330 if Nkind
(Unit2
) = N_Subunit
331 and then Present
(Corresponding_Stub
(Unit2
))
332 and then Inst2
= No_Location
334 -- Both locations refer to subunits which may have a common
335 -- ancestor. If they do, the deeper subunit must have a longer
336 -- unit name. Replace the deeper one with its corresponding
337 -- stub in order to find the nearest ancestor.
339 if Length_Of_Name
(Unit_Name
(Unum1
)) <
340 Length_Of_Name
(Unit_Name
(Unum2
))
342 Sloc2
:= Sloc
(Corresponding_Stub
(Unit2
));
343 Unum2
:= Get_Source_Unit
(Sloc2
);
347 Sloc1
:= Sloc
(Corresponding_Stub
(Unit1
));
348 Unum1
:= Get_Source_Unit
(Sloc1
);
352 -- Sloc1 in subunit, Sloc2 not
355 Sloc1
:= Sloc
(Corresponding_Stub
(Unit1
));
356 Unum1
:= Get_Source_Unit
(Sloc1
);
360 -- Sloc2 in subunit, Sloc1 not
362 elsif Nkind
(Unit2
) = N_Subunit
363 and then Present
(Corresponding_Stub
(Unit2
))
364 and then Inst2
= No_Location
366 Sloc2
:= Sloc
(Corresponding_Stub
(Unit2
));
367 Unum2
:= Get_Source_Unit
(Sloc2
);
371 -- Step 3: Check instances. The two locations may yield a common
374 if Inst1
/= No_Location
then
375 if Inst2
/= No_Location
then
377 -- Both locations denote instantiations
379 Depth1
:= Instantiation_Depth
(Sloc1
);
380 Depth2
:= Instantiation_Depth
(Sloc2
);
382 if Depth1
< Depth2
then
384 Unum2
:= Get_Source_Unit
(Sloc2
);
387 elsif Depth1
> Depth2
then
389 Unum1
:= Get_Source_Unit
(Sloc1
);
395 Unum1
:= Get_Source_Unit
(Sloc1
);
396 Unum2
:= Get_Source_Unit
(Sloc2
);
400 -- Sloc1 is an instantiation
404 Unum1
:= Get_Source_Unit
(Sloc1
);
408 -- Sloc2 is an instantiation
410 elsif Inst2
/= No_Location
then
412 Unum2
:= Get_Source_Unit
(Sloc2
);
416 -- Step 4: One location in the spec, the other in the corresponding
417 -- body of the same unit. The location in the spec is considered
420 if Nkind
(Unit1
) = N_Subprogram_Body
422 Nkind
(Unit1
) = N_Package_Body
424 if Library_Unit
(Cunit
(Unum1
)) = Cunit
(Unum2
) then
428 elsif Nkind
(Unit2
) = N_Subprogram_Body
430 Nkind
(Unit2
) = N_Package_Body
432 if Library_Unit
(Cunit
(Unum2
)) = Cunit
(Unum1
) then
437 -- At this point it is certain that the two locations denote two
438 -- entirely separate units.
445 end Check_Same_Extended_Unit
;
447 -------------------------------
448 -- Compilation_Switches_Last --
449 -------------------------------
451 function Compilation_Switches_Last
return Nat
is
453 return Compilation_Switches
.Last
;
454 end Compilation_Switches_Last
;
456 ---------------------------
457 -- Enable_Switch_Storing --
458 ---------------------------
460 procedure Enable_Switch_Storing
is
462 Switch_Storing_Enabled
:= True;
463 end Enable_Switch_Storing
;
465 ----------------------------
466 -- Disable_Switch_Storing --
467 ----------------------------
469 procedure Disable_Switch_Storing
is
471 Switch_Storing_Enabled
:= False;
472 end Disable_Switch_Storing
;
474 ------------------------------
475 -- Earlier_In_Extended_Unit --
476 ------------------------------
478 function Earlier_In_Extended_Unit
(S1
, S2
: Source_Ptr
) return Boolean is
480 return Check_Same_Extended_Unit
(S1
, S2
) = Yes_Before
;
481 end Earlier_In_Extended_Unit
;
483 -----------------------
484 -- Exact_Source_Name --
485 -----------------------
487 function Exact_Source_Name
(Loc
: Source_Ptr
) return String is
488 U
: constant Unit_Number_Type
:= Get_Source_Unit
(Loc
);
489 Buf
: constant Source_Buffer_Ptr
:= Source_Text
(Source_Index
(U
));
490 Orig
: constant Source_Ptr
:= Original_Location
(Loc
);
495 pragma Warnings
(Off
, WC
);
496 pragma Warnings
(Off
, Err
);
499 -- Entity is character literal
501 if Buf
(Orig
) = ''' then
502 return String (Buf
(Orig
.. Orig
+ 2));
504 -- Entity is operator symbol
506 elsif Buf
(Orig
) = '"' or else Buf
(Orig
) = '%' then
511 exit when Buf
(P
) = Buf
(Orig
);
514 return String (Buf
(Orig
.. P
));
516 -- Entity is identifier
522 if Is_Start_Of_Wide_Char
(Buf
, P
) then
523 Scan_Wide
(Buf
, P
, WC
, Err
);
524 elsif not Identifier_Char
(Buf
(P
)) then
531 -- Write out the identifier by copying the exact source characters
532 -- used in its declaration. Note that this means wide characters will
533 -- be in their original encoded form.
535 return String (Buf
(Orig
.. P
- 1));
537 end Exact_Source_Name
;
539 ----------------------------
540 -- Entity_Is_In_Main_Unit --
541 ----------------------------
543 function Entity_Is_In_Main_Unit
(E
: Entity_Id
) return Boolean is
549 while S
/= Standard_Standard
loop
550 if S
= Main_Unit_Entity
then
552 elsif Ekind
(S
) = E_Package
and then Is_Child_Unit
(S
) then
560 end Entity_Is_In_Main_Unit
;
562 --------------------------
563 -- Generic_May_Lack_ALI --
564 --------------------------
566 function Generic_May_Lack_ALI
(Sfile
: File_Name_Type
) return Boolean is
568 -- We allow internal generic units to be used without having a
569 -- corresponding ALI files to help bootstrapping with older compilers
570 -- that did not support generating ALIs for such generics. It is safe
571 -- to do so because the only thing the generated code would contain
572 -- is the elaboration boolean, and we are careful to elaborate all
573 -- predefined units first anyway.
575 return Is_Internal_File_Name
577 Renamings_Included
=> True);
578 end Generic_May_Lack_ALI
;
580 -----------------------------
581 -- Get_Code_Or_Source_Unit --
582 -----------------------------
584 function Get_Code_Or_Source_Unit
586 Unwind_Instances
: Boolean) return Unit_Number_Type
589 -- Search table unless we have No_Location, which can happen if the
590 -- relevant location has not been set yet. Happens for example when
591 -- we obtain Sloc (Cunit (Main_Unit)) before it is set.
593 if S
/= No_Location
then
595 Source_File
: Source_File_Index
;
596 Source_Unit
: Unit_Number_Type
;
599 Source_File
:= Get_Source_File_Index
(S
);
601 if Unwind_Instances
then
602 while Template
(Source_File
) /= No_Source_File
loop
603 Source_File
:= Template
(Source_File
);
607 Source_Unit
:= Unit
(Source_File
);
609 if Source_Unit
/= No_Unit
then
615 -- If S was No_Location, or was not in the table, we must be in the main
616 -- source unit (and the value has not been placed in the table yet),
617 -- or in one of the configuration pragma files.
620 end Get_Code_Or_Source_Unit
;
626 function Get_Code_Unit
(S
: Source_Ptr
) return Unit_Number_Type
is
628 return Get_Code_Or_Source_Unit
(Top_Level_Location
(S
),
629 Unwind_Instances
=> False);
632 function Get_Code_Unit
(N
: Node_Or_Entity_Id
) return Unit_Number_Type
is
634 return Get_Code_Unit
(Sloc
(N
));
637 ----------------------------
638 -- Get_Compilation_Switch --
639 ----------------------------
641 function Get_Compilation_Switch
(N
: Pos
) return String_Ptr
is
643 if N
<= Compilation_Switches
.Last
then
644 return Compilation_Switches
.Table
(N
);
649 end Get_Compilation_Switch
;
651 ----------------------------------
652 -- Get_Cunit_Entity_Unit_Number --
653 ----------------------------------
655 function Get_Cunit_Entity_Unit_Number
656 (E
: Entity_Id
) return Unit_Number_Type
659 for U
in Units
.First
.. Units
.Last
loop
660 if Cunit_Entity
(U
) = E
then
665 -- If not in the table, must be the main source unit, and we just
666 -- have not got it put into the table yet.
669 end Get_Cunit_Entity_Unit_Number
;
671 ---------------------------
672 -- Get_Cunit_Unit_Number --
673 ---------------------------
675 function Get_Cunit_Unit_Number
(N
: Node_Id
) return Unit_Number_Type
is
677 for U
in Units
.First
.. Units
.Last
loop
678 if Cunit
(U
) = N
then
683 -- If not in the table, must be a spec created for a main unit that is a
684 -- child subprogram body which we have not inserted into the table yet.
686 if N
= Library_Unit
(Cunit
(Main_Unit
)) then
689 -- If it is anything else, something is seriously wrong, and we really
690 -- don't want to proceed, even if assertions are off, so we explicitly
691 -- raise an exception in this case to terminate compilation.
696 end Get_Cunit_Unit_Number
;
698 ---------------------
699 -- Get_Source_Unit --
700 ---------------------
702 function Get_Source_Unit
(S
: Source_Ptr
) return Unit_Number_Type
is
704 return Get_Code_Or_Source_Unit
(S
, Unwind_Instances
=> True);
707 function Get_Source_Unit
(N
: Node_Or_Entity_Id
) return Unit_Number_Type
is
709 return Get_Source_Unit
(Sloc
(N
));
712 --------------------------------
713 -- In_Extended_Main_Code_Unit --
714 --------------------------------
716 function In_Extended_Main_Code_Unit
717 (N
: Node_Or_Entity_Id
) return Boolean
720 if Sloc
(N
) = Standard_Location
then
723 elsif Sloc
(N
) = No_Location
then
726 -- Special case Itypes to test the Sloc of the associated node. The
727 -- reason we do this is for possible calls from gigi after -gnatD
728 -- processing is complete in sprint. This processing updates the
729 -- sloc fields of all nodes in the tree, but itypes are not in the
730 -- tree so their slocs do not get updated.
732 elsif Nkind
(N
) = N_Defining_Identifier
733 and then Is_Itype
(N
)
735 return In_Extended_Main_Code_Unit
(Associated_Node_For_Itype
(N
));
737 -- Otherwise see if we are in the main unit
739 elsif Get_Code_Unit
(Sloc
(N
)) = Get_Code_Unit
(Cunit
(Main_Unit
)) then
742 -- Node may be in spec (or subunit etc) of main unit
746 In_Same_Extended_Unit
(N
, Cunit
(Main_Unit
));
748 end In_Extended_Main_Code_Unit
;
750 function In_Extended_Main_Code_Unit
(Loc
: Source_Ptr
) return Boolean is
752 if Loc
= Standard_Location
then
755 elsif Loc
= No_Location
then
758 -- Otherwise see if we are in the main unit
760 elsif Get_Code_Unit
(Loc
) = Get_Code_Unit
(Cunit
(Main_Unit
)) then
763 -- Location may be in spec (or subunit etc) of main unit
767 In_Same_Extended_Unit
(Loc
, Sloc
(Cunit
(Main_Unit
)));
769 end In_Extended_Main_Code_Unit
;
771 ----------------------------------
772 -- In_Extended_Main_Source_Unit --
773 ----------------------------------
775 function In_Extended_Main_Source_Unit
776 (N
: Node_Or_Entity_Id
) return Boolean
778 Nloc
: constant Source_Ptr
:= Sloc
(N
);
779 Mloc
: constant Source_Ptr
:= Sloc
(Cunit
(Main_Unit
));
782 -- If parsing, then use the global flag to indicate result
784 if Compiler_State
= Parsing
then
785 return Parsing_Main_Extended_Source
;
787 -- Special value cases
789 elsif Nloc
= Standard_Location
then
792 elsif Nloc
= No_Location
then
795 -- Special case Itypes to test the Sloc of the associated node. The
796 -- reason we do this is for possible calls from gigi after -gnatD
797 -- processing is complete in sprint. This processing updates the
798 -- sloc fields of all nodes in the tree, but itypes are not in the
799 -- tree so their slocs do not get updated.
801 elsif Nkind
(N
) = N_Defining_Identifier
802 and then Is_Itype
(N
)
804 return In_Extended_Main_Source_Unit
(Associated_Node_For_Itype
(N
));
806 -- Otherwise compare original locations to see if in same unit
810 In_Same_Extended_Unit
811 (Original_Location
(Nloc
), Original_Location
(Mloc
));
813 end In_Extended_Main_Source_Unit
;
815 function In_Extended_Main_Source_Unit
816 (Loc
: Source_Ptr
) return Boolean
818 Mloc
: constant Source_Ptr
:= Sloc
(Cunit
(Main_Unit
));
821 -- If parsing, then use the global flag to indicate result
823 if Compiler_State
= Parsing
then
824 return Parsing_Main_Extended_Source
;
826 -- Special value cases
828 elsif Loc
= Standard_Location
then
831 elsif Loc
= No_Location
then
834 -- Otherwise compare original locations to see if in same unit
838 In_Same_Extended_Unit
839 (Original_Location
(Loc
), Original_Location
(Mloc
));
841 end In_Extended_Main_Source_Unit
;
843 ------------------------
844 -- In_Predefined_Unit --
845 ------------------------
847 function In_Predefined_Unit
(N
: Node_Or_Entity_Id
) return Boolean is
849 return In_Predefined_Unit
(Sloc
(N
));
850 end In_Predefined_Unit
;
852 function In_Predefined_Unit
(S
: Source_Ptr
) return Boolean is
853 Unit
: constant Unit_Number_Type
:= Get_Source_Unit
(S
);
854 File
: constant File_Name_Type
:= Unit_File_Name
(Unit
);
856 return Is_Predefined_File_Name
(File
);
857 end In_Predefined_Unit
;
859 -----------------------
860 -- In_Same_Code_Unit --
861 -----------------------
863 function In_Same_Code_Unit
(N1
, N2
: Node_Or_Entity_Id
) return Boolean is
864 S1
: constant Source_Ptr
:= Sloc
(N1
);
865 S2
: constant Source_Ptr
:= Sloc
(N2
);
868 if S1
= No_Location
or else S2
= No_Location
then
871 elsif S1
= Standard_Location
then
872 return S2
= Standard_Location
;
874 elsif S2
= Standard_Location
then
878 return Get_Code_Unit
(N1
) = Get_Code_Unit
(N2
);
879 end In_Same_Code_Unit
;
881 ---------------------------
882 -- In_Same_Extended_Unit --
883 ---------------------------
885 function In_Same_Extended_Unit
886 (N1
, N2
: Node_Or_Entity_Id
) return Boolean
889 return Check_Same_Extended_Unit
(Sloc
(N1
), Sloc
(N2
)) /= No
;
890 end In_Same_Extended_Unit
;
892 function In_Same_Extended_Unit
(S1
, S2
: Source_Ptr
) return Boolean is
894 return Check_Same_Extended_Unit
(S1
, S2
) /= No
;
895 end In_Same_Extended_Unit
;
897 -------------------------
898 -- In_Same_Source_Unit --
899 -------------------------
901 function In_Same_Source_Unit
(N1
, N2
: Node_Or_Entity_Id
) return Boolean is
902 S1
: constant Source_Ptr
:= Sloc
(N1
);
903 S2
: constant Source_Ptr
:= Sloc
(N2
);
906 if S1
= No_Location
or else S2
= No_Location
then
909 elsif S1
= Standard_Location
then
910 return S2
= Standard_Location
;
912 elsif S2
= Standard_Location
then
916 return Get_Source_Unit
(N1
) = Get_Source_Unit
(N2
);
917 end In_Same_Source_Unit
;
919 -----------------------------
920 -- Increment_Serial_Number --
921 -----------------------------
923 function Increment_Serial_Number
return Nat
is
924 TSN
: Int
renames Units
.Table
(Current_Sem_Unit
).Serial_Number
;
928 end Increment_Serial_Number
;
934 procedure Initialize
is
936 Linker_Option_Lines
.Init
;
940 Compilation_Switches
.Init
;
947 function Is_Loaded
(Uname
: Unit_Name_Type
) return Boolean is
949 for Unum
in Units
.First
.. Units
.Last
loop
950 if Uname
= Unit_Name
(Unum
) then
962 function Last_Unit
return Unit_Number_Type
is
971 procedure List
(File_Names_Only
: Boolean := False) is separate;
979 Linker_Option_Lines
.Locked
:= True;
980 Load_Stack
.Locked
:= True;
981 Units
.Locked
:= True;
982 Linker_Option_Lines
.Release
;
991 function Num_Units
return Nat
is
993 return Int
(Units
.Last
) - Int
(Main_Unit
) + 1;
1000 procedure Remove_Unit
(U
: Unit_Number_Type
) is
1002 if U
= Units
.Last
then
1003 Units
.Decrement_Last
;
1007 ----------------------------------
1008 -- Replace_Linker_Option_String --
1009 ----------------------------------
1011 procedure Replace_Linker_Option_String
1012 (S
: String_Id
; Match_String
: String)
1015 if Match_String
'Length > 0 then
1016 for J
in 1 .. Linker_Option_Lines
.Last
loop
1017 String_To_Name_Buffer
(Linker_Option_Lines
.Table
(J
).Option
);
1019 if Match_String
= Name_Buffer
(1 .. Match_String
'Length) then
1020 Linker_Option_Lines
.Table
(J
).Option
:= S
;
1026 Store_Linker_Option_String
(S
);
1027 end Replace_Linker_Option_String
;
1033 procedure Sort
(Tbl
: in out Unit_Ref_Table
) is separate;
1035 ------------------------------
1036 -- Store_Compilation_Switch --
1037 ------------------------------
1039 procedure Store_Compilation_Switch
(Switch
: String) is
1041 if Switch_Storing_Enabled
then
1042 Compilation_Switches
.Increment_Last
;
1043 Compilation_Switches
.Table
(Compilation_Switches
.Last
) :=
1044 new String'(Switch);
1046 -- Fix up --RTS flag which has been transformed by the gcc driver
1049 if Switch'Last >= Switch'First + 4
1050 and then Switch (Switch'First .. Switch'First + 4) = "-fRTS"
1052 Compilation_Switches.Table
1053 (Compilation_Switches.Last) (Switch'First + 1) := '-';
1056 end Store_Compilation_Switch;
1058 --------------------------------
1059 -- Store_Linker_Option_String --
1060 --------------------------------
1062 procedure Store_Linker_Option_String (S : String_Id) is
1064 Linker_Option_Lines.Append ((Option => S, Unit => Current_Sem_Unit));
1065 end Store_Linker_Option_String;
1071 procedure Store_Note (N : Node_Id) is
1073 Notes.Append ((Pragma_Node => N, Unit => Current_Sem_Unit));
1076 -------------------------------
1077 -- Synchronize_Serial_Number --
1078 -------------------------------
1080 procedure Synchronize_Serial_Number is
1081 TSN : Int renames Units.Table (Current_Sem_Unit).Serial_Number;
1084 end Synchronize_Serial_Number;
1090 procedure Tree_Read is
1097 -- Read Compilation_Switches table. First release the memory occupied
1098 -- by the previously loaded switches.
1100 for J in Compilation_Switches.First .. Compilation_Switches.Last loop
1101 Free (Compilation_Switches.Table (J));
1105 Compilation_Switches.Set_Last (N);
1107 for J in 1 .. N loop
1109 Compilation_Switches.Table (J) := S;
1117 procedure Tree_Write is
1121 -- Write Compilation_Switches table
1123 Tree_Write_Int (Compilation_Switches.Last);
1125 for J in 1 .. Compilation_Switches.Last loop
1126 Tree_Write_Str (Compilation_Switches.Table (J));
1136 Linker_Option_Lines.Locked := False;
1137 Load_Stack.Locked := False;
1138 Units.Locked := False;
1145 function Version_Get (U : Unit_Number_Type) return Word_Hex_String is
1147 return Get_Hex_String (Units.Table (U).Version);
1150 ------------------------
1151 -- Version_Referenced --
1152 ------------------------
1154 procedure Version_Referenced (S : String_Id) is
1156 Version_Ref.Append (S);
1157 end Version_Referenced;
1159 ---------------------
1160 -- Write_Unit_Info --
1161 ---------------------
1163 procedure Write_Unit_Info
1164 (Unit_Num : Unit_Number_Type;
1166 Prefix : String := "";
1167 Withs : Boolean := False)
1171 Write_Unit_Name (Unit_Name (Unit_Num));
1172 Write_Str (", unit ");
1173 Write_Int (Int (Unit_Num));
1175 Write_Int (Int (Item));
1177 Write_Str (Node_Kind'Image (Nkind (Item)));
1179 if Item /= Original_Node (Item) then
1180 Write_Str (", orig = ");
1181 Write_Int (Int (Original_Node (Item)));
1183 Write_Str (Node_Kind'Image (Nkind (Original_Node (Item))));
1188 -- Skip the rest if we're not supposed to print the withs
1195 Context_Item : Node_Id;
1198 Context_Item := First (Context_Items (Cunit (Unit_Num)));
1199 while Present (Context_Item)
1200 and then (Nkind (Context_Item) /= N_With_Clause
1201 or else Limited_Present (Context_Item))
1203 Context_Item := Next (Context_Item);
1206 if Present (Context_Item) then
1208 Write_Line ("withs:");
1211 while Present (Context_Item) loop
1212 if Nkind (Context_Item) = N_With_Clause
1213 and then not Limited_Present (Context_Item)
1215 pragma Assert (Present (Library_Unit (Context_Item)));
1218 (Get_Cunit_Unit_Number (Library_Unit (Context_Item))));
1220 if Implicit_With (Context_Item) then
1221 Write_Str (" -- implicit");
1227 Context_Item := Next (Context_Item);
1231 Write_Line ("end withs");
1235 end Write_Unit_Info;