1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2004 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 2, 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 COPYING. If not, write --
19 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
20 -- MA 02111-1307, USA. --
22 -- As a special exception, if other files instantiate generics from this --
23 -- unit, or you link this unit with other files to produce an executable, --
24 -- this unit does not by itself cause the resulting executable to be --
25 -- covered by the GNU General Public License. This exception does not --
26 -- however invalidate any other reasons why the executable file might be --
27 -- covered by the GNU Public License. --
29 -- GNAT was originally developed by the GNAT team at New York University. --
30 -- Extensive contributions were provided by Ada Core Technologies Inc. --
32 ------------------------------------------------------------------------------
34 pragma Style_Checks
(All_Checks
);
35 -- Subprogram ordering not enforced in this unit
36 -- (because of some logical groupings).
38 with Atree
; use Atree
;
39 with Einfo
; use Einfo
;
40 with Fname
; use Fname
;
41 with Namet
; use Namet
;
42 with Namet
; use Namet
;
43 with Output
; use Output
;
44 with Sinfo
; use Sinfo
;
45 with Sinput
; use Sinput
;
46 with Stand
; use Stand
;
47 with Stringt
; use Stringt
;
48 with Tree_IO
; use Tree_IO
;
49 with Uname
; use Uname
;
53 Switch_Storing_Enabled
: Boolean := True;
54 -- Set to False by Disable_Switch_Storing
56 -----------------------
57 -- Local Subprograms --
58 -----------------------
61 Yes_Before
, -- S1 is in same extended unit as S2 and appears before it
62 Yes_Same
, -- S1 is in same extended unit as S2, Slocs are the same
63 Yes_After
, -- S1 is in same extended unit as S2, and appears after it
64 No
); -- S2 is not in same extended unit as S2
66 function Check_Same_Extended_Unit
(S1
, S2
: Source_Ptr
) return SEU_Result
;
67 -- Used by In_Same_Extended_Unit and Earlier_In_Extended_Unit. Returns
68 -- value as described above.
70 --------------------------------------------
71 -- Access Functions for Unit Table Fields --
72 --------------------------------------------
74 function Cunit
(U
: Unit_Number_Type
) return Node_Id
is
76 return Units
.Table
(U
).Cunit
;
79 function Cunit_Entity
(U
: Unit_Number_Type
) return Entity_Id
is
81 return Units
.Table
(U
).Cunit_Entity
;
84 function Dependency_Num
(U
: Unit_Number_Type
) return Nat
is
86 return Units
.Table
(U
).Dependency_Num
;
89 function Dynamic_Elab
(U
: Unit_Number_Type
) return Boolean is
91 return Units
.Table
(U
).Dynamic_Elab
;
94 function Error_Location
(U
: Unit_Number_Type
) return Source_Ptr
is
96 return Units
.Table
(U
).Error_Location
;
99 function Expected_Unit
(U
: Unit_Number_Type
) return Unit_Name_Type
is
101 return Units
.Table
(U
).Expected_Unit
;
104 function Fatal_Error
(U
: Unit_Number_Type
) return Boolean is
106 return Units
.Table
(U
).Fatal_Error
;
109 function Generate_Code
(U
: Unit_Number_Type
) return Boolean is
111 return Units
.Table
(U
).Generate_Code
;
114 function Has_RACW
(U
: Unit_Number_Type
) return Boolean is
116 return Units
.Table
(U
).Has_RACW
;
119 function Ident_String
(U
: Unit_Number_Type
) return Node_Id
is
121 return Units
.Table
(U
).Ident_String
;
124 function Loading
(U
: Unit_Number_Type
) return Boolean is
126 return Units
.Table
(U
).Loading
;
129 function Main_Priority
(U
: Unit_Number_Type
) return Int
is
131 return Units
.Table
(U
).Main_Priority
;
134 function Munit_Index
(U
: Unit_Number_Type
) return Nat
is
136 return Units
.Table
(U
).Munit_Index
;
139 function Source_Index
(U
: Unit_Number_Type
) return Source_File_Index
is
141 return Units
.Table
(U
).Source_Index
;
144 function Unit_File_Name
(U
: Unit_Number_Type
) return File_Name_Type
is
146 return Units
.Table
(U
).Unit_File_Name
;
149 function Unit_Name
(U
: Unit_Number_Type
) return Unit_Name_Type
is
151 return Units
.Table
(U
).Unit_Name
;
154 ------------------------------------------
155 -- Subprograms to Set Unit Table Fields --
156 ------------------------------------------
158 procedure Set_Cunit
(U
: Unit_Number_Type
; N
: Node_Id
) is
160 Units
.Table
(U
).Cunit
:= N
;
163 procedure Set_Cunit_Entity
(U
: Unit_Number_Type
; E
: Entity_Id
) is
165 Units
.Table
(U
).Cunit_Entity
:= E
;
166 Set_Is_Compilation_Unit
(E
);
167 end Set_Cunit_Entity
;
169 procedure Set_Dynamic_Elab
(U
: Unit_Number_Type
; B
: Boolean := True) is
171 Units
.Table
(U
).Dynamic_Elab
:= B
;
172 end Set_Dynamic_Elab
;
174 procedure Set_Error_Location
(U
: Unit_Number_Type
; W
: Source_Ptr
) is
176 Units
.Table
(U
).Error_Location
:= W
;
177 end Set_Error_Location
;
179 procedure Set_Fatal_Error
(U
: Unit_Number_Type
; B
: Boolean := True) is
181 Units
.Table
(U
).Fatal_Error
:= B
;
184 procedure Set_Generate_Code
(U
: Unit_Number_Type
; B
: Boolean := True) is
186 Units
.Table
(U
).Generate_Code
:= B
;
187 end Set_Generate_Code
;
189 procedure Set_Has_RACW
(U
: Unit_Number_Type
; B
: Boolean := True) is
191 Units
.Table
(U
).Has_RACW
:= B
;
194 procedure Set_Ident_String
(U
: Unit_Number_Type
; N
: Node_Id
) is
196 Units
.Table
(U
).Ident_String
:= N
;
197 end Set_Ident_String
;
199 procedure Set_Loading
(U
: Unit_Number_Type
; B
: Boolean := True) is
201 Units
.Table
(U
).Loading
:= B
;
204 procedure Set_Main_Priority
(U
: Unit_Number_Type
; P
: Int
) is
206 Units
.Table
(U
).Main_Priority
:= P
;
207 end Set_Main_Priority
;
209 procedure Set_Unit_Name
(U
: Unit_Number_Type
; N
: Unit_Name_Type
) is
211 Units
.Table
(U
).Unit_Name
:= N
;
214 ------------------------------
215 -- Check_Same_Extended_Unit --
216 ------------------------------
218 function Check_Same_Extended_Unit
(S1
, S2
: Source_Ptr
) return SEU_Result
is
221 Sind1
: Source_File_Index
;
222 Sind2
: Source_File_Index
;
225 Unum1
: Unit_Number_Type
;
226 Unum2
: Unit_Number_Type
;
233 if S1
= No_Location
or else S2
= No_Location
then
236 elsif S1
= Standard_Location
then
237 if S2
= Standard_Location
then
243 elsif S2
= Standard_Location
then
249 Unum1
:= Get_Code_Unit
(Sloc1
);
250 Unum2
:= Get_Code_Unit
(Sloc2
);
253 Sind1
:= Get_Source_File_Index
(Sloc1
);
254 Sind2
:= Get_Source_File_Index
(Sloc2
);
256 if Sind1
= Sind2
then
257 if Sloc1
< Sloc2
then
259 elsif Sloc1
> Sloc2
then
266 -- OK, the two nodes are in separate source elements, but this is not
267 -- decisive, because of the issue of subunits and instantiations.
269 -- First we deal with subunits, since if the subunit is in an
270 -- instantiation, we know that the parent is in the corresponding
271 -- instantiation, since that is the only way we can have a subunit
272 -- that is part of an instantiation.
274 Unit1
:= Unit
(Cunit
(Unum1
));
275 Unit2
:= Unit
(Cunit
(Unum2
));
277 if Nkind
(Unit1
) = N_Subunit
278 and then Present
(Corresponding_Stub
(Unit1
))
280 -- Both in subunits. They could have a common ancestor. If they
281 -- do, then the deeper one must have a longer unit name. Replace
282 -- the deeper one with its corresponding stub, in order to find
283 -- nearest common ancestor, if any.
285 if Nkind
(Unit2
) = N_Subunit
286 and then Present
(Corresponding_Stub
(Unit2
))
288 if Length_Of_Name
(Unit_Name
(Unum1
)) <
289 Length_Of_Name
(Unit_Name
(Unum2
))
291 Sloc2
:= Sloc
(Corresponding_Stub
(Unit2
));
292 Unum2
:= Get_Source_Unit
(Sloc2
);
296 Sloc1
:= Sloc
(Corresponding_Stub
(Unit1
));
297 Unum1
:= Get_Source_Unit
(Sloc1
);
301 -- Nod1 in subunit, Nod2 not
304 Sloc1
:= Sloc
(Corresponding_Stub
(Unit1
));
305 Unum1
:= Get_Source_Unit
(Sloc1
);
309 -- Nod2 in subunit, Nod1 not
311 elsif Nkind
(Unit2
) = N_Subunit
312 and then Present
(Corresponding_Stub
(Unit2
))
314 Sloc2
:= Sloc
(Corresponding_Stub
(Unit2
));
315 Unum2
:= Get_Source_Unit
(Sloc2
);
319 -- At this stage we know that neither is a subunit, so we deal
320 -- with instantiations, since we culd have a common ancestor
322 Inst1
:= Instantiation
(Sind1
);
323 Inst2
:= Instantiation
(Sind2
);
325 if Inst1
/= No_Location
then
327 -- Both are instantiations
329 if Inst2
/= No_Location
then
331 Depth1
:= Instantiation_Depth
(Sloc1
);
332 Depth2
:= Instantiation_Depth
(Sloc2
);
334 if Depth1
< Depth2
then
336 Unum2
:= Get_Source_Unit
(Sloc2
);
339 elsif Depth1
> Depth2
then
341 Unum1
:= Get_Source_Unit
(Sloc1
);
347 Unum1
:= Get_Source_Unit
(Sloc1
);
348 Unum2
:= Get_Source_Unit
(Sloc2
);
352 -- Only first node is in instantiation
356 Unum1
:= Get_Source_Unit
(Sloc1
);
360 -- Only second node is instantiation
362 elsif Inst2
/= No_Location
then
364 Unum2
:= Get_Source_Unit
(Sloc2
);
368 -- No instantiations involved, so we are not in the same unit
369 -- However, there is one case still to check, namely the case
370 -- where one location is in the spec, and the other in the
371 -- corresponding body (the spec location is earlier).
373 if Nkind
(Unit1
) = N_Subprogram_Body
375 Nkind
(Unit1
) = N_Package_Body
377 if Library_Unit
(Cunit
(Unum1
)) = Cunit
(Unum2
) then
381 elsif Nkind
(Unit2
) = N_Subprogram_Body
383 Nkind
(Unit2
) = N_Package_Body
385 if Library_Unit
(Cunit
(Unum2
)) = Cunit
(Unum1
) then
390 -- If that special case does not occur, then we are certain that
391 -- the two locations are really in separate units.
398 end Check_Same_Extended_Unit
;
400 -------------------------------
401 -- Compilation_Switches_Last --
402 -------------------------------
404 function Compilation_Switches_Last
return Nat
is
406 return Compilation_Switches
.Last
;
407 end Compilation_Switches_Last
;
409 procedure Disable_Switch_Storing
is
411 Switch_Storing_Enabled
:= False;
412 end Disable_Switch_Storing
;
414 ------------------------------
415 -- Earlier_In_Extended_Unit --
416 ------------------------------
418 function Earlier_In_Extended_Unit
(S1
, S2
: Source_Ptr
) return Boolean is
420 return Check_Same_Extended_Unit
(S1
, S2
) = Yes_Before
;
421 end Earlier_In_Extended_Unit
;
423 ----------------------------
424 -- Entity_Is_In_Main_Unit --
425 ----------------------------
427 function Entity_Is_In_Main_Unit
(E
: Entity_Id
) return Boolean is
433 while S
/= Standard_Standard
loop
434 if S
= Main_Unit_Entity
then
436 elsif Ekind
(S
) = E_Package
and then Is_Child_Unit
(S
) then
444 end Entity_Is_In_Main_Unit
;
446 ---------------------------------
447 -- Generic_Separately_Compiled --
448 ---------------------------------
450 function Generic_Separately_Compiled
(E
: Entity_Id
) return Boolean is
452 -- We do not generate object files for internal generics, because
453 -- the only thing they would contain is the elaboration boolean, and
454 -- we are careful to elaborate all predefined units first anyway, so
455 -- this boolean is not needed.
457 if Is_Internal_File_Name
458 (Fname
=> Unit_File_Name
(Get_Source_Unit
(E
)),
459 Renamings_Included
=> True)
463 -- All other generic units do generate object files
468 end Generic_Separately_Compiled
;
470 function Generic_Separately_Compiled
471 (Sfile
: File_Name_Type
) return Boolean
474 -- Exactly the same as previous function, but works directly on a file
477 if Is_Internal_File_Name
479 Renamings_Included
=> True)
483 -- All other generic units do generate object files
488 end Generic_Separately_Compiled
;
494 function Get_Code_Unit
(S
: Source_Ptr
) return Unit_Number_Type
is
496 -- Search table unless we have No_Location, which can happen if the
497 -- relevant location has not been set yet. Happens for example when
498 -- we obtain Sloc (Cunit (Main_Unit)) before it is set.
500 if S
/= No_Location
then
502 Source_File
: constant Source_File_Index
:=
503 Get_Source_File_Index
(Top_Level_Location
(S
));
506 for U
in Units
.First
.. Units
.Last
loop
507 if Source_Index
(U
) = Source_File
then
514 -- If S was No_Location, or was not in the table, we must be in the
515 -- main source unit (and the value has not been placed in the table yet)
520 function Get_Code_Unit
(N
: Node_Or_Entity_Id
) return Unit_Number_Type
is
522 return Get_Code_Unit
(Sloc
(N
));
525 ----------------------------
526 -- Get_Compilation_Switch --
527 ----------------------------
529 function Get_Compilation_Switch
(N
: Pos
) return String_Ptr
is
531 if N
<= Compilation_Switches
.Last
then
532 return Compilation_Switches
.Table
(N
);
537 end Get_Compilation_Switch
;
539 ----------------------------------
540 -- Get_Cunit_Entity_Unit_Number --
541 ----------------------------------
543 function Get_Cunit_Entity_Unit_Number
544 (E
: Entity_Id
) return Unit_Number_Type
547 for U
in Units
.First
.. Units
.Last
loop
548 if Cunit_Entity
(U
) = E
then
553 -- If not in the table, must be the main source unit, and we just
554 -- have not got it put into the table yet.
557 end Get_Cunit_Entity_Unit_Number
;
559 ---------------------------
560 -- Get_Cunit_Unit_Number --
561 ---------------------------
563 function Get_Cunit_Unit_Number
(N
: Node_Id
) return Unit_Number_Type
is
565 for U
in Units
.First
.. Units
.Last
loop
566 if Cunit
(U
) = N
then
571 -- If not in the table, must be the main source unit, and we just
572 -- have not got it put into the table yet.
575 end Get_Cunit_Unit_Number
;
577 ---------------------
578 -- Get_Source_Unit --
579 ---------------------
581 function Get_Source_Unit
(S
: Source_Ptr
) return Unit_Number_Type
is
583 -- Search table unless we have No_Location, which can happen if the
584 -- relevant location has not been set yet. Happens for example when
585 -- we obtain Sloc (Cunit (Main_Unit)) before it is set.
587 if S
/= No_Location
then
589 Source_File
: Source_File_Index
:=
590 Get_Source_File_Index
(Top_Level_Location
(S
));
593 Source_File
:= Get_Source_File_Index
(S
);
594 while Template
(Source_File
) /= No_Source_File
loop
595 Source_File
:= Template
(Source_File
);
598 for U
in Units
.First
.. Units
.Last
loop
599 if Source_Index
(U
) = Source_File
then
606 -- If S was No_Location, or was not in the table, we must be in the
607 -- main source unit (and the value has not got put into the table yet)
612 function Get_Source_Unit
(N
: Node_Or_Entity_Id
) return Unit_Number_Type
is
614 return Get_Source_Unit
(Sloc
(N
));
617 --------------------------------
618 -- In_Extended_Main_Code_Unit --
619 --------------------------------
621 function In_Extended_Main_Code_Unit
622 (N
: Node_Or_Entity_Id
) return Boolean
625 if Sloc
(N
) = Standard_Location
then
628 elsif Sloc
(N
) = No_Location
then
631 -- Special case Itypes to test the Sloc of the associated node. The
632 -- reason we do this is for possible calls from gigi after -gnatD
633 -- processing is complete in sprint. This processing updates the
634 -- sloc fields of all nodes in the tree, but itypes are not in the
635 -- tree so their slocs do not get updated.
637 elsif Nkind
(N
) = N_Defining_Identifier
638 and then Is_Itype
(N
)
640 return In_Extended_Main_Code_Unit
(Associated_Node_For_Itype
(N
));
642 -- Otherwise see if we are in the main unit
644 elsif Get_Code_Unit
(Sloc
(N
)) = Get_Code_Unit
(Cunit
(Main_Unit
)) then
647 -- Node may be in spec (or subunit etc) of main unit
651 In_Same_Extended_Unit
(N
, Cunit
(Main_Unit
));
653 end In_Extended_Main_Code_Unit
;
655 function In_Extended_Main_Code_Unit
(Loc
: Source_Ptr
) return Boolean is
657 if Loc
= Standard_Location
then
660 elsif Loc
= No_Location
then
663 -- Otherwise see if we are in the main unit
665 elsif Get_Code_Unit
(Loc
) = Get_Code_Unit
(Cunit
(Main_Unit
)) then
668 -- Location may be in spec (or subunit etc) of main unit
672 In_Same_Extended_Unit
(Loc
, Sloc
(Cunit
(Main_Unit
)));
674 end In_Extended_Main_Code_Unit
;
676 ----------------------------------
677 -- In_Extended_Main_Source_Unit --
678 ----------------------------------
680 function In_Extended_Main_Source_Unit
681 (N
: Node_Or_Entity_Id
) return Boolean
683 Nloc
: constant Source_Ptr
:= Sloc
(N
);
684 Mloc
: constant Source_Ptr
:= Sloc
(Cunit
(Main_Unit
));
687 -- If Mloc is not set, it means we are still parsing the main unit,
688 -- so everything so far is in the extended main source unit.
690 if Mloc
= No_Location
then
693 -- Special value cases
695 elsif Nloc
= Standard_Location
then
698 elsif Nloc
= No_Location
then
701 -- Special case Itypes to test the Sloc of the associated node. The
702 -- reason we do this is for possible calls from gigi after -gnatD
703 -- processing is complete in sprint. This processing updates the
704 -- sloc fields of all nodes in the tree, but itypes are not in the
705 -- tree so their slocs do not get updated.
707 elsif Nkind
(N
) = N_Defining_Identifier
708 and then Is_Itype
(N
)
710 return In_Extended_Main_Source_Unit
(Associated_Node_For_Itype
(N
));
712 -- Otherwise compare original locations to see if in same unit
716 In_Same_Extended_Unit
717 (Original_Location
(Nloc
), Original_Location
(Mloc
));
719 end In_Extended_Main_Source_Unit
;
721 function In_Extended_Main_Source_Unit
722 (Loc
: Source_Ptr
) return Boolean
724 Mloc
: constant Source_Ptr
:= Sloc
(Cunit
(Main_Unit
));
727 -- If Mloc is not set, it means we are still parsing the main unit,
728 -- so everything so far is in the extended main source unit.
730 if Mloc
= No_Location
then
733 -- Special value cases
735 elsif Loc
= Standard_Location
then
738 elsif Loc
= No_Location
then
741 -- Otherwise compare original locations to see if in same unit
745 In_Same_Extended_Unit
746 (Original_Location
(Loc
), Original_Location
(Mloc
));
748 end In_Extended_Main_Source_Unit
;
750 -----------------------
751 -- In_Same_Code_Unit --
752 -----------------------
754 function In_Same_Code_Unit
(N1
, N2
: Node_Or_Entity_Id
) return Boolean is
755 S1
: constant Source_Ptr
:= Sloc
(N1
);
756 S2
: constant Source_Ptr
:= Sloc
(N2
);
759 if S1
= No_Location
or else S2
= No_Location
then
762 elsif S1
= Standard_Location
then
763 return S2
= Standard_Location
;
765 elsif S2
= Standard_Location
then
769 return Get_Code_Unit
(N1
) = Get_Code_Unit
(N2
);
770 end In_Same_Code_Unit
;
772 ---------------------------
773 -- In_Same_Extended_Unit --
774 ---------------------------
776 function In_Same_Extended_Unit
777 (N1
, N2
: Node_Or_Entity_Id
) return Boolean
780 return Check_Same_Extended_Unit
(Sloc
(N1
), Sloc
(N2
)) /= No
;
781 end In_Same_Extended_Unit
;
783 function In_Same_Extended_Unit
(S1
, S2
: Source_Ptr
) return Boolean is
785 return Check_Same_Extended_Unit
(S1
, S2
) /= No
;
786 end In_Same_Extended_Unit
;
788 -------------------------
789 -- In_Same_Source_Unit --
790 -------------------------
792 function In_Same_Source_Unit
(N1
, N2
: Node_Or_Entity_Id
) return Boolean is
793 S1
: constant Source_Ptr
:= Sloc
(N1
);
794 S2
: constant Source_Ptr
:= Sloc
(N2
);
797 if S1
= No_Location
or else S2
= No_Location
then
800 elsif S1
= Standard_Location
then
801 return S2
= Standard_Location
;
803 elsif S2
= Standard_Location
then
807 return Get_Source_Unit
(N1
) = Get_Source_Unit
(N2
);
808 end In_Same_Source_Unit
;
810 -----------------------------
811 -- Increment_Serial_Number --
812 -----------------------------
814 function Increment_Serial_Number
return Nat
is
815 TSN
: Int
renames Units
.Table
(Current_Sem_Unit
).Serial_Number
;
819 end Increment_Serial_Number
;
825 procedure Initialize
is
827 Linker_Option_Lines
.Init
;
830 Unit_Exception_Table_Present
:= False;
831 Compilation_Switches
.Init
;
838 function Is_Loaded
(Uname
: Unit_Name_Type
) return Boolean is
840 for Unum
in Units
.First
.. Units
.Last
loop
841 if Uname
= Unit_Name
(Unum
) then
853 function Last_Unit
return Unit_Number_Type
is
862 procedure List
(File_Names_Only
: Boolean := False) is separate;
870 Linker_Option_Lines
.Locked
:= True;
871 Load_Stack
.Locked
:= True;
872 Units
.Locked
:= True;
873 Linker_Option_Lines
.Release
;
882 function Num_Units
return Nat
is
884 return Int
(Units
.Last
) - Int
(Main_Unit
) + 1;
891 procedure Remove_Unit
(U
: Unit_Number_Type
) is
893 if U
= Units
.Last
then
894 Units
.Decrement_Last
;
898 ----------------------------------
899 -- Replace_Linker_Option_String --
900 ----------------------------------
902 procedure Replace_Linker_Option_String
903 (S
: String_Id
; Match_String
: String)
906 if Match_String
'Length > 0 then
907 for J
in 1 .. Linker_Option_Lines
.Last
loop
908 String_To_Name_Buffer
(Linker_Option_Lines
.Table
(J
).Option
);
910 if Match_String
= Name_Buffer
(1 .. Match_String
'Length) then
911 Linker_Option_Lines
.Table
(J
).Option
:= S
;
917 Store_Linker_Option_String
(S
);
918 end Replace_Linker_Option_String
;
924 procedure Sort
(Tbl
: in out Unit_Ref_Table
) is separate;
926 ------------------------------
927 -- Store_Compilation_Switch --
928 ------------------------------
930 procedure Store_Compilation_Switch
(Switch
: String) is
932 if Switch_Storing_Enabled
then
933 Compilation_Switches
.Increment_Last
;
934 Compilation_Switches
.Table
(Compilation_Switches
.Last
) :=
937 -- Fix up --RTS flag which has been transformed by the gcc driver
940 if Switch'Last >= Switch'First + 4
941 and then Switch (Switch'First .. Switch'First + 4) = "-fRTS"
943 Compilation_Switches.Table
944 (Compilation_Switches.Last) (Switch'First + 1) := '-';
947 end Store_Compilation_Switch;
949 --------------------------------
950 -- Store_Linker_Option_String --
951 --------------------------------
953 procedure Store_Linker_Option_String (S : String_Id) is
955 Linker_Option_Lines.Increment_Last;
956 Linker_Option_Lines.Table (Linker_Option_Lines.Last) :=
957 (Option => S, Unit => Current_Sem_Unit);
958 end Store_Linker_Option_String;
960 -------------------------------
961 -- Synchronize_Serial_Number --
962 -------------------------------
964 procedure Synchronize_Serial_Number is
965 TSN : Int renames Units.Table (Current_Sem_Unit).Serial_Number;
968 end Synchronize_Serial_Number;
974 procedure Tree_Read is
981 -- Read Compilation_Switches table
984 Compilation_Switches.Set_Last (N);
988 Compilation_Switches.Table (J) := S;
996 procedure Tree_Write is
1000 -- Write Compilation_Switches table
1002 Tree_Write_Int (Compilation_Switches.Last);
1004 for J in 1 .. Compilation_Switches.Last loop
1005 Tree_Write_Str (Compilation_Switches.Table (J));
1013 function Version_Get (U : Unit_Number_Type) return Word_Hex_String is
1015 return Get_Hex_String (Units.Table (U).Version);
1018 ------------------------
1019 -- Version_Referenced --
1020 ------------------------
1022 procedure Version_Referenced (S : String_Id) is
1024 Version_Ref.Append (S);
1025 end Version_Referenced;