1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2005 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, 51 Franklin Street, Fifth Floor, --
20 -- Boston, MA 02110-1301, USA. --
22 -- GNAT was originally developed by the GNAT team at New York University. --
23 -- Extensive contributions were provided by Ada Core Technologies Inc. --
25 ------------------------------------------------------------------------------
27 with Butil
; use Butil
;
28 with Debug
; use Debug
;
29 with Fname
; use Fname
;
30 with Namet
; use Namet
;
32 with Osint
; use Osint
;
33 with Output
; use Output
;
38 -- Make control characters visible
40 -- The following variable records which characters currently are
41 -- used as line type markers in the ALI file. This is used in
42 -- Scan_ALI to detect (or skip) invalid lines.
44 Known_ALI_Lines
: constant array (Character range 'A' .. 'Z') of Boolean :=
45 ('V' => True, -- version
46 'M' => True, -- main program
47 'A' => True, -- argument
48 'P' => True, -- program
49 'R' => True, -- restriction
50 'I' => True, -- interrupt
53 'L' => True, -- linker option
54 'E' => True, -- external
55 'D' => True, -- dependency
63 procedure Initialize_ALI
is
65 -- When (re)initializing ALI data structures the ALI user expects to
66 -- get a fresh set of data structures. Thus we first need to erase the
67 -- marks put in the name table by the previous set of ALI routine calls.
68 -- These two loops are empty and harmless the first time in.
70 for J
in ALIs
.First
.. ALIs
.Last
loop
71 Set_Name_Table_Info
(ALIs
.Table
(J
).Afile
, 0);
74 for J
in Units
.First
.. Units
.Last
loop
75 Set_Name_Table_Info
(Units
.Table
(J
).Uname
, 0);
78 -- Free argument table strings
80 for J
in Args
.First
.. Args
.Last
loop
81 Free
(Args
.Table
(J
));
84 -- Initialize all tables
97 -- Add dummy zero'th item in Linker_Options for the sort function
99 Linker_Options
.Increment_Last
;
101 -- Initialize global variables recording cumulative options in all
102 -- ALI files that are read for a given processing run in gnatbind.
104 Dynamic_Elaboration_Checks_Specified
:= False;
105 Float_Format_Specified
:= ' ';
106 Locking_Policy_Specified
:= ' ';
107 No_Normalize_Scalars_Specified
:= False;
108 No_Object_Specified
:= False;
109 Normalize_Scalars_Specified
:= False;
110 Queuing_Policy_Specified
:= ' ';
111 Static_Elaboration_Model_Used
:= False;
112 Task_Dispatching_Policy_Specified
:= ' ';
113 Unreserve_All_Interrupts_Specified
:= False;
114 Zero_Cost_Exceptions_Specified
:= False;
126 Read_Xref
: Boolean := False;
127 Read_Lines
: String := "";
128 Ignore_Lines
: String := "X";
129 Ignore_Errors
: Boolean := False) return ALI_Id
131 P
: Text_Ptr
:= T
'First;
132 Line
: Logical_Line_Number
:= 1;
138 Ignore
: array (Character range 'A' .. 'Z') of Boolean;
139 -- Ignore (X) is set to True if lines starting with X are to
140 -- be ignored by Scan_ALI and skipped, and False if the lines
141 -- are to be read and processed.
143 Restrictions_Initial
: Rident
.Restrictions_Info
;
144 pragma Warnings
(Off
, Restrictions_Initial
);
145 -- This variable, which should really be a constant (but that's not
146 -- allowed by the language) is used only for initialization, and the
147 -- reason we are declaring it is to get the default initialization
148 -- set for the object.
150 Bad_ALI_Format
: exception;
151 -- Exception raised by Fatal_Error if Err is True
153 function At_Eol
return Boolean;
154 -- Test if at end of line
156 function At_End_Of_Field
return Boolean;
157 -- Test if at end of line, or if at blank or horizontal tab
159 procedure Check_At_End_Of_Field
;
160 -- Check if we are at end of field, fatal error if not
162 procedure Checkc
(C
: Character);
163 -- Check next character is C. If so bump past it, if not fatal error
165 procedure Check_Unknown_Line
;
166 -- If Ignore_Errors mode, then checks C to make sure that it is not
167 -- an unknown ALI line type characters, and if so, skips lines
168 -- until the first character of the line is one of these characters,
169 -- at which point it does a Getc to put that character in C. The
170 -- call has no effect if C is already an appropriate character.
171 -- If not in Ignore_Errors mode, a fatal error is signalled if the
172 -- line is unknown. Note that if C is an EOL on entry, the line is
173 -- skipped (it is assumed that blank lines are never significant).
174 -- If C is EOF on entry, the call has no effect (it is assumed that
175 -- the caller will properly handle this case).
177 procedure Fatal_Error
;
178 -- Generate fatal error message for badly formatted ALI file if
179 -- Err is false, or raise Bad_ALI_Format if Err is True.
181 procedure Fatal_Error_Ignore
;
182 pragma Inline
(Fatal_Error_Ignore
);
183 -- In Ignore_Errors mode, has no effect, otherwise same as Fatal_Error
185 function Getc
return Character;
186 -- Get next character, bumping P past the character obtained
189 (Lower
: Boolean := False;
190 Ignore_Spaces
: Boolean := False) return Name_Id
;
191 -- Skip blanks, then scan out a name (name is left in Name_Buffer with
192 -- length in Name_Len, as well as being returned in Name_Id form).
193 -- If Lower is set to True then the Name_Buffer will be converted to
194 -- all lower case, for systems where file names are not case sensitive.
195 -- This ensures that gnatbind works correctly regardless of the case
196 -- of the file name on all systems. The name is terminated by a either
197 -- white space (when Ignore_Spaces is False) or a typeref bracket or
198 -- an equal sign except for the special case of an operator name
199 -- starting with a double quite which is terminated by another double
202 function Get_Nat
return Nat
;
203 -- Skip blanks, then scan out an unsigned integer value in Nat range
205 function Get_Stamp
return Time_Stamp_Type
;
206 -- Skip blanks, then scan out a time stamp
208 function Nextc
return Character;
209 -- Return current character without modifying pointer P
212 -- Skip past spaces, then skip past end of line (fatal error if not
213 -- at end of line). Also skips past any following blank lines.
216 -- Skip rest of current line and any following blank lines
218 procedure Skip_Space
;
219 -- Skip past white space (blanks or horizontal tab)
222 -- Skip past next character, does not affect value in C. This call
223 -- is like calling Getc and ignoring the returned result.
225 ---------------------
226 -- At_End_Of_Field --
227 ---------------------
229 function At_End_Of_Field
return Boolean is
238 function At_Eol
return Boolean is
240 return Nextc
= EOF
or else Nextc
= CR
or else Nextc
= LF
;
243 ---------------------------
244 -- Check_At_End_Of_Field --
245 ---------------------------
247 procedure Check_At_End_Of_Field
is
249 if not At_End_Of_Field
then
250 if Ignore_Errors
then
251 while Nextc
> ' ' loop
258 end Check_At_End_Of_Field
;
264 procedure Checkc
(C
: Character) is
268 elsif Ignore_Errors
then
275 ------------------------
276 -- Check_Unknown_Line --
277 ------------------------
279 procedure Check_Unknown_Line
is
281 while C
not in 'A' .. 'Z'
282 or else not Known_ALI_Lines
(C
)
284 if C
= CR
or else C
= LF
then
291 elsif Ignore_Errors
then
299 end Check_Unknown_Line
;
305 procedure Fatal_Error
is
310 procedure Wchar
(C
: Character);
311 -- Write a single character, replacing horizontal tab by spaces
313 procedure Wchar
(C
: Character) is
318 exit when Col
mod 8 = 0;
327 -- Start of processing for Fatal_Error
331 raise Bad_ALI_Format
;
335 Write_Str
("fatal error: file ");
337 Write_Str
(" is incorrectly formatted");
340 ("make sure you are using consistent versions of gcc/gnatbind");
343 -- Find start of line
348 and then T
(Ptr1
- 1) /= CR
349 and then T
(Ptr1
- 1) /= LF
354 Write_Int
(Int
(Line
));
369 and then T
(Ptr2
) /= CR
370 and then T
(Ptr2
) /= LF
382 if T
(Ptr1
) = HT
then
394 Exit_Program
(E_Fatal
);
397 ------------------------
398 -- Fatal_Error_Ignore --
399 ------------------------
401 procedure Fatal_Error_Ignore
is
403 if not Ignore_Errors
then
406 end Fatal_Error_Ignore
;
413 (Lower
: Boolean := False;
414 Ignore_Spaces
: Boolean := False) return Name_Id
421 if Ignore_Errors
then
429 Name_Len
:= Name_Len
+ 1;
430 Name_Buffer
(Name_Len
) := Getc
;
432 exit when At_End_Of_Field
and not Ignore_Spaces
;
434 if Name_Buffer
(1) = '"' then
435 exit when Name_Len
> 1 and then Name_Buffer
(Name_Len
) = '"';
438 exit when (At_End_Of_Field
and not Ignore_Spaces
)
439 or else Nextc
= '(' or else Nextc
= ')'
440 or else Nextc
= '{' or else Nextc
= '}'
441 or else Nextc
= '<' or else Nextc
= '>'
442 or else Nextc
= '[' or else Nextc
= ']'
447 -- Convert file name to all lower case if file names are not case
448 -- sensitive. This ensures that we handle names in the canonical
449 -- lower case format, regardless of the actual case.
451 if Lower
and not File_Names_Case_Sensitive
then
452 Canonical_Case_File_Name
(Name_Buffer
(1 .. Name_Len
));
462 function Get_Nat
return Nat
is
470 V
:= V
* 10 + (Character'Pos (Getc
) - Character'Pos ('0'));
471 exit when At_End_Of_Field
;
472 exit when Nextc
< '0' or Nextc
> '9';
482 function Get_Stamp
return Time_Stamp_Type
is
490 if Ignore_Errors
then
491 return Dummy_Time_Stamp
;
497 -- Following reads old style time stamp missing first two digits
499 if Nextc
in '7' .. '9' then
504 -- Normal case of full year in time stamp
510 for J
in Start
.. T
'Last loop
521 function Getc
return Character is
535 function Nextc
return Character is
544 procedure Skip_Eol
is
549 if Ignore_Errors
then
550 while not At_Eol
loop
558 -- Loop to skip past blank lines (first time through skips this EOL)
560 while Nextc
< ' ' and then Nextc
/= EOF
loop
573 procedure Skip_Line
is
575 while not At_Eol
loop
586 procedure Skip_Space
is
588 while Nextc
= ' ' or else Nextc
= HT
loop
604 -- Start of processing for Scan_ALI
607 First_Sdep_Entry
:= Sdep
.Last
+ 1;
609 -- Acquire lines to be ignored
612 Ignore
:= ('U' |
'W' |
'D' |
'X' => False, others => True);
614 -- Read_Lines parameter given
616 elsif Read_Lines
/= "" then
617 Ignore
:= ('U' => False, others => True);
619 for J
in Read_Lines
'Range loop
620 Ignore
(Read_Lines
(J
)) := False;
623 -- Process Ignore_Lines parameter
626 Ignore
:= (others => False);
628 for J
in Ignore_Lines
'Range loop
629 pragma Assert
(Ignore_Lines
(J
) /= 'U');
630 Ignore
(Ignore_Lines
(J
)) := True;
634 -- Setup ALI Table entry with appropriate defaults
638 Set_Name_Table_Info
(F
, Int
(Id
));
642 Compile_Errors
=> False,
643 First_Interrupt_State
=> Interrupt_States
.Last
+ 1,
644 First_Sdep
=> No_Sdep_Id
,
645 First_Unit
=> No_Unit_Id
,
647 Last_Interrupt_State
=> Interrupt_States
.Last
,
648 Last_Sdep
=> No_Sdep_Id
,
649 Last_Unit
=> No_Unit_Id
,
650 Locking_Policy
=> ' ',
652 Main_Program
=> None
,
654 Normalize_Scalars
=> False,
655 Ofile_Full_Name
=> Full_Object_File_Name
,
656 Queuing_Policy
=> ' ',
657 Restrictions
=> Restrictions_Initial
,
658 SAL_Interface
=> False,
660 Task_Dispatching_Policy
=> ' ',
661 Time_Slice_Value
=> -1,
663 Unit_Exception_Table
=> False,
664 Ver
=> (others => ' '),
666 Zero_Cost_Exceptions
=> False);
668 -- Now we acquire the input lines from the ALI file. Note that the
669 -- convention in the following code is that as we enter each section,
670 -- C is set to contain the first character of the following line.
675 -- Acquire library version
679 -- The V line missing really indicates trouble, most likely it
680 -- means we don't have an ALI file at all, so here we give a
681 -- fatal error even if we are in Ignore_Errors mode.
685 elsif Ignore
('V') then
693 for J
in 1 .. Ver_Len_Max
loop
696 ALIs
.Table
(Id
).Ver
(J
) := C
;
697 ALIs
.Table
(Id
).Ver_Len
:= J
;
706 -- Acquire main program line if present
719 ALIs
.Table
(Id
).Main_Program
:= Func
;
721 ALIs
.Table
(Id
).Main_Program
:= Proc
;
731 ALIs
.Table
(Id
).Main_Priority
:= Get_Nat
;
739 ALIs
.Table
(Id
).Time_Slice_Value
:= Get_Nat
;
746 ALIs
.Table
(Id
).WC_Encoding
:= Getc
;
755 -- Acquire argument lines
757 First_Arg
:= Args
.Last
+ 1;
761 exit A_Loop
when C
/= 'A';
770 while not At_Eol
loop
771 Name_Len
:= Name_Len
+ 1;
772 Name_Buffer
(Name_Len
) := Getc
;
776 Args
.Table
(Args
.Last
) := new String'(Name_Buffer (1 .. Name_Len));
789 if Ignore_Errors then
809 while not At_Eol loop
818 ALIs.Table (Id).Compile_Errors := True;
824 Detect_Blocking := True;
826 -- Processing for FD/FG/FI
829 Float_Format_Specified := Getc;
830 ALIs.Table (Id).Float_Format := Float_Format_Specified;
835 Locking_Policy_Specified := Getc;
836 ALIs.Table (Id).Locking_Policy := Locking_Policy_Specified;
838 -- Processing for flags starting with N
846 ALIs.Table (Id).No_Object := True;
847 No_Object_Specified := True;
852 No_Run_Time_Mode := True;
853 Configurable_Run_Time_Mode := True;
858 ALIs.Table (Id).Normalize_Scalars := True;
859 Normalize_Scalars_Specified := True;
862 -- Invalid switch starting with N
871 Queuing_Policy_Specified := Getc;
872 ALIs.Table (Id).Queuing_Policy := Queuing_Policy_Specified;
874 -- Processing for flags starting with S
882 ALIs.Table (Id).SAL_Interface := True;
887 Opt.Sec_Stack_Used := True;
889 -- Invalid switch starting with S
898 Task_Dispatching_Policy_Specified := Getc;
899 ALIs.Table (Id).Task_Dispatching_Policy :=
900 Task_Dispatching_Policy_Specified;
902 -- Processing for switch starting with U
910 Unreserve_All_Interrupts_Specified := True;
915 ALIs.Table (Id).Unit_Exception_Table := True;
917 -- Invalid switches starting with U
929 ALIs.Table (Id).Zero_Cost_Exceptions := True;
930 Zero_Cost_Exceptions_Specified := True;
944 No_Normalize_Scalars_Specified := True;
953 -- Acquire first restrictions line
956 if Ignore_Errors then
971 -- Process restrictions line
974 Scan_Restrictions : declare
975 Save_R : constant Restrictions_Info := Cumulative_Restrictions;
976 -- Save cumulative restrictions in case we have a fatal error
978 Bad_R_Line : exception;
979 -- Signal bad restrictions line (raised on unexpected character)
985 -- Acquire information for boolean restrictions
987 for R in All_Boolean_Restrictions loop
992 ALIs.Table (Id).Restrictions.Violated (R) := True;
993 Cumulative_Restrictions.Violated (R) := True;
996 ALIs.Table (Id).Restrictions.Set (R) := True;
997 Cumulative_Restrictions.Set (R) := True;
1007 -- Acquire information for parameter restrictions
1009 for RP in All_Parameter_Restrictions loop
1011 -- Acquire restrictions pragma information
1018 ALIs.Table (Id).Restrictions.Set (RP) := True;
1021 N : constant Integer := Integer (Get_Nat);
1023 ALIs.Table (Id).Restrictions.Value (RP) := N;
1025 if Cumulative_Restrictions.Set (RP) then
1026 Cumulative_Restrictions.Value (RP) :=
1028 (Cumulative_Restrictions.Value (RP), N);
1030 Cumulative_Restrictions.Set (RP) := True;
1031 Cumulative_Restrictions.Value (RP) := N;
1039 -- Acquire restrictions violations information
1046 ALIs.Table (Id).Restrictions.Violated (RP) := True;
1047 Cumulative_Restrictions.Violated (RP) := True;
1050 N : constant Integer := Integer (Get_Nat);
1051 pragma Unsuppress (Overflow_Check);
1054 ALIs.Table (Id).Restrictions.Count (RP) := N;
1056 if RP in Checked_Max_Parameter_Restrictions then
1057 Cumulative_Restrictions.Count (RP) :=
1059 (Cumulative_Restrictions.Count (RP), N);
1061 Cumulative_Restrictions.Count (RP) :=
1062 Cumulative_Restrictions.Count (RP) + N;
1066 when Constraint_Error =>
1068 -- A constraint error comes from the addition in
1069 -- the else branch. We reset to the maximum and
1070 -- indicate that the real value is now unknown.
1072 Cumulative_Restrictions.Value (RP) := Integer'Last;
1073 Cumulative_Restrictions.Unknown (RP) := True;
1078 ALIs.Table (Id).Restrictions.Unknown (RP) := True;
1079 Cumulative_Restrictions.Unknown (RP) := True;
1089 -- Here if error during scanning of restrictions line
1094 -- In Ignore_Errors mode, undo any changes to restrictions
1095 -- from this unit, and continue on.
1097 if Ignore_Errors then
1098 Cumulative_Restrictions := Save_R;
1099 ALIs.Table (Id).Restrictions := Restrictions_Initial;
1102 -- In normal mode, this is a fatal error
1108 end Scan_Restrictions;
1111 -- Acquire additional restrictions (No_Dependence) lines if present
1115 if Ignore ('R
') then
1119 No_Deps.Append ((Id, Get_Name));
1126 -- Acquire 'I
' lines if present
1131 if Ignore ('I
') then
1137 I_State : Character;
1146 Interrupt_States.Append (
1147 (Interrupt_Id => Int_Num,
1148 Interrupt_State => I_State,
1149 IS_Pragma_Line => Line_No));
1151 ALIs.Table (Id).Last_Interrupt_State := Interrupt_States.Last;
1159 -- Loop to acquire unit entries
1163 exit U_Loop when C /= 'U
';
1165 -- Note: as per spec, we never ignore U lines
1169 Units.Increment_Last;
1171 if ALIs.Table (Id).First_Unit = No_Unit_Id then
1172 ALIs.Table (Id).First_Unit := Units.Last;
1175 Units.Table (Units.Last).Uname := Get_Name;
1176 Units.Table (Units.Last).Predefined := Is_Predefined_Unit;
1177 Units.Table (Units.Last).Internal := Is_Internal_Unit;
1178 Units.Table (Units.Last).My_ALI := Id;
1179 Units.Table (Units.Last).Sfile := Get_Name (Lower => True);
1180 Units.Table (Units.Last).Pure := False;
1181 Units.Table (Units.Last).Preelab := False;
1182 Units.Table (Units.Last).No_Elab := False;
1183 Units.Table (Units.Last).Shared_Passive := False;
1184 Units.Table (Units.Last).RCI := False;
1185 Units.Table (Units.Last).Remote_Types := False;
1186 Units.Table (Units.Last).Has_RACW := False;
1187 Units.Table (Units.Last).Init_Scalars := False;
1188 Units.Table (Units.Last).Is_Generic := False;
1189 Units.Table (Units.Last).Icasing := Mixed_Case;
1190 Units.Table (Units.Last).Kcasing := All_Lower_Case;
1191 Units.Table (Units.Last).Dynamic_Elab := False;
1192 Units.Table (Units.Last).Elaborate_Body := False;
1193 Units.Table (Units.Last).Set_Elab_Entity := False;
1194 Units.Table (Units.Last).Version := "00000000";
1195 Units.Table (Units.Last).First_With := Withs.Last + 1;
1196 Units.Table (Units.Last).First_Arg := First_Arg;
1197 Units.Table (Units.Last).Elab_Position := 0;
1198 Units.Table (Units.Last).SAL_Interface := ALIs.Table (Id).
1200 Units.Table (Units.Last).Body_Needed_For_SAL := False;
1202 if Debug_Flag_U then
1203 Write_Str (" ----> reading unit ");
1204 Write_Int (Int (Units.Last));
1206 Write_Unit_Name (Units.Table (Units.Last).Uname);
1207 Write_Str (" from file ");
1208 Write_Name (Units.Table (Units.Last).Sfile);
1212 -- Check for duplicated unit in different files
1215 Info : constant Int := Get_Name_Table_Info
1216 (Units.Table (Units.Last).Uname);
1219 and then Units.Table (Units.Last).Sfile /=
1220 Units.Table (Unit_Id (Info)).Sfile
1222 -- If Err is set then ignore duplicate unit name. This is the
1223 -- case of a call from gnatmake, where the situation can arise
1224 -- from substitution of source files. In such situations, the
1225 -- processing in gnatmake will always result in any required
1226 -- recompilations in any case, and if we consider this to be
1227 -- an error we get strange cases (for example when a generic
1228 -- instantiation is replaced by a normal package) where we
1229 -- read the old ali file, decide to recompile, and then decide
1230 -- that the old and new ali files are incompatible.
1235 -- If Err is not set, then this is a fatal error. This is
1236 -- the case of being called from the binder, where we must
1237 -- definitely diagnose this as an error.
1241 Write_Str ("error: duplicate unit name: ");
1244 Write_Str ("error: unit """);
1245 Write_Unit_Name (Units.Table (Units.Last).Uname);
1246 Write_Str (""" found in file """);
1247 Write_Name_Decoded (Units.Table (Units.Last).Sfile);
1251 Write_Str ("error
: unit
""");
1252 Write_Unit_Name (Units.Table (Unit_Id (Info)).Uname);
1253 Write_Str (""" found
in file
""");
1254 Write_Name_Decoded (Units.Table (Unit_Id (Info)).Sfile);
1258 Exit_Program (E_Fatal);
1264 (Units.Table (Units.Last).Uname, Int (Units.Last));
1266 -- Scan out possible version and other parameters
1275 if C in '0' .. '9' or else C in 'a
' .. 'f
' then
1276 Units.Table (Units.Last).Version (1) := C;
1278 for J in 2 .. 8 loop
1280 Units.Table (Units.Last).Version (J) := C;
1283 -- BN parameter (Body needed)
1289 Check_At_End_Of_Field;
1290 Units.Table (Units.Last).Body_Needed_For_SAL := True;
1295 -- DE parameter (Dynamic elaboration checks)
1301 Check_At_End_Of_Field;
1302 Units.Table (Units.Last).Dynamic_Elab := True;
1303 Dynamic_Elaboration_Checks_Specified := True;
1314 Units.Table (Units.Last).Elaborate_Body := True;
1316 Units.Table (Units.Last).Set_Elab_Entity := True;
1321 Check_At_End_Of_Field;
1323 -- GE parameter (generic)
1329 Check_At_End_Of_Field;
1330 Units.Table (Units.Last).Is_Generic := True;
1335 -- IL/IS/IU parameters
1341 Units.Table (Units.Last).Icasing := All_Lower_Case;
1343 Units.Table (Units.Last).Init_Scalars := True;
1344 Initialize_Scalars_Used := True;
1346 Units.Table (Units.Last).Icasing := All_Upper_Case;
1351 Check_At_End_Of_Field;
1359 Units.Table (Units.Last).Kcasing := Mixed_Case;
1361 Units.Table (Units.Last).Kcasing := All_Upper_Case;
1366 Check_At_End_Of_Field;
1374 Units.Table (Units.Last).No_Elab := True;
1375 Check_At_End_Of_Field;
1380 -- PR/PU/PK parameters
1386 Units.Table (Units.Last).Preelab := True;
1388 Units.Table (Units.Last).Pure := True;
1390 Units.Table (Units.Last).Unit_Kind := 'p
';
1395 Check_At_End_Of_Field;
1403 Units.Table (Units.Last).RCI := True;
1405 Units.Table (Units.Last).Remote_Types := True;
1407 Units.Table (Units.Last).Has_RACW := True;
1412 Check_At_End_Of_Field;
1418 Units.Table (Units.Last).Shared_Passive := True;
1420 Units.Table (Units.Last).Unit_Kind := 's
';
1425 Check_At_End_Of_Field;
1435 -- Check if static elaboration model used
1437 if not Units.Table (Units.Last).Dynamic_Elab
1438 and then not Units.Table (Units.Last).Internal
1440 Static_Elaboration_Model_Used := True;
1445 -- Scan out With lines for this unit
1449 exit With_Loop when C /= 'W
';
1451 if Ignore ('W
') then
1457 Withs.Increment_Last;
1458 Withs.Table (Withs.Last).Uname := Get_Name;
1459 Withs.Table (Withs.Last).Elaborate := False;
1460 Withs.Table (Withs.Last).Elaborate_All := False;
1461 Withs.Table (Withs.Last).Elab_All_Desirable := False;
1462 Withs.Table (Withs.Last).SAL_Interface := False;
1464 -- Generic case with no object file available
1467 Withs.Table (Withs.Last).Sfile := No_File;
1468 Withs.Table (Withs.Last).Afile := No_File;
1473 Withs.Table (Withs.Last).Sfile := Get_Name (Lower => True);
1474 Withs.Table (Withs.Last).Afile := Get_Name;
1476 -- Scan out possible E, EA, and NE parameters
1478 while not At_Eol loop
1484 if At_End_Of_Field then
1485 Withs.Table (Withs.Last).Elaborate := True;
1487 elsif Nextc = 'A
' then
1489 Check_At_End_Of_Field;
1490 Withs.Table (Withs.Last).Elaborate_All := True;
1494 Check_At_End_Of_Field;
1496 -- Store ED indication unless ignore required
1498 if not Ignore_ED then
1499 Withs.Table (Withs.Last).Elab_All_Desirable :=
1513 Units.Table (Units.Last).Last_With := Withs.Last;
1514 Units.Table (Units.Last).Last_Arg := Args.Last;
1516 -- If there are linker options lines present, scan them
1520 Linker_Options_Loop : loop
1522 exit Linker_Options_Loop when C /= 'L
';
1524 if Ignore ('L
') then
1535 if C < Character'Val (16#20#)
1536 or else C > Character'Val (16#7E#)
1541 C := Character'Val (0);
1548 for J in 1 .. 2 loop
1551 if C in '0' .. '9' then
1554 Character'Pos ('0');
1556 elsif C in 'A' .. 'F' then
1559 Character'Pos ('A') +
1568 Add_Char_To_Name_Buffer (Character'Val (V));
1573 exit when Nextc /= '"';
1577 Add_Char_To_Name_Buffer (C);
1581 Add_Char_To_Name_Buffer (nul);
1586 end loop Linker_Options_Loop;
1588 -- Store the linker options entry if one was found
1590 if Name_Len /= 0 then
1591 Linker_Options.Increment_Last;
1593 Linker_Options.Table (Linker_Options.Last).Name :=
1596 Linker_Options.Table (Linker_Options.Last).Unit :=
1599 Linker_Options.Table (Linker_Options.Last).Internal_File :=
1600 Is_Internal_File_Name (F);
1602 Linker_Options.Table (Linker_Options.Last).Original_Pos :=
1603 Linker_Options.Last;
1607 -- End loop through units for one ALI file
1609 ALIs.Table (Id).Last_Unit := Units.Last;
1610 ALIs.Table (Id).Sfile := Units.Table (ALIs.Table (Id).First_Unit).Sfile;
1612 -- Set types of the units (there can be at most 2 of them)
1614 if ALIs.Table (Id).First_Unit /= ALIs.Table (Id).Last_Unit then
1615 Units.Table (ALIs.Table (Id).First_Unit).Utype := Is_Body;
1616 Units.Table (ALIs.Table (Id).Last_Unit).Utype := Is_Spec;
1619 -- Deal with body only and spec only cases, note that the reason we
1620 -- do our own checking of the name (rather than using Is_Body_Name)
1621 -- is that Uname drags in far too much compiler junk!
1623 Get_Name_String (Units.Table (Units.Last).Uname);
1625 if Name_Buffer (Name_Len) = 'b' then
1626 Units.Table (Units.Last).Utype := Is_Body_Only;
1628 Units.Table (Units.Last).Utype := Is_Spec_Only;
1632 -- Scan out external version references and put in hash table
1636 exit E_Loop when C /= 'E';
1638 if Ignore ('E') then
1654 exit when At_End_Of_Field;
1655 Add_Char_To_Name_Buffer (C);
1658 Version_Ref.Set (new String'(Name_Buffer (1 .. Name_Len)), True);
1665 -- Scan out source dependency lines for this ALI file
1667 ALIs.Table (Id).First_Sdep := Sdep.Last + 1;
1671 exit D_Loop when C /= 'D';
1673 if Ignore ('D') then
1679 Sdep.Increment_Last;
1680 Sdep.Table (Sdep.Last).Sfile := Get_Name (Lower => True);
1681 Sdep.Table (Sdep.Last).Stamp := Get_Stamp;
1682 Sdep.Table (Sdep.Last).Dummy_Entry :=
1683 (Sdep.Table (Sdep.Last).Stamp = Dummy_Time_Stamp);
1685 -- Acquire checksum value
1698 exit when At_Eol or else Ctr = 8;
1700 if Nextc in '0' .. '9' then
1702 Character'Pos (Nextc) - Character'Pos ('0');
1704 elsif Nextc in 'a' .. 'f' then
1706 Character'Pos (Nextc) - Character'Pos ('a') + 10;
1716 if Ctr = 8 and then At_End_Of_Field then
1717 Sdep.Table (Sdep.Last).Checksum := Chk;
1723 -- Acquire subunit and reference file name entries
1725 Sdep.Table (Sdep.Last).Subunit_Name := No_Name;
1726 Sdep.Table (Sdep.Last).Rfile :=
1727 Sdep.Table (Sdep.Last).Sfile;
1728 Sdep.Table (Sdep.Last).Start_Line := 1;
1733 -- Here for subunit name
1735 if Nextc not in '0' .. '9' then
1738 while not At_End_Of_Field loop
1739 Name_Len := Name_Len + 1;
1740 Name_Buffer (Name_Len) := Getc;
1743 Sdep.Table (Sdep.Last).Subunit_Name := Name_Enter;
1747 -- Here for reference file name entry
1749 if Nextc in '0' .. '9' then
1750 Sdep.Table (Sdep.Last).Start_Line := Get_Nat;
1755 while not At_End_Of_Field loop
1756 Name_Len := Name_Len + 1;
1757 Name_Buffer (Name_Len) := Getc;
1760 Sdep.Table (Sdep.Last).Rfile := Name_Enter;
1770 ALIs.Table (Id).Last_Sdep := Sdep.Last;
1772 -- We must at this stage be at an Xref line or the end of file
1784 -- If we are ignoring Xref sections we are done (we ignore all
1785 -- remaining lines since only xref related lines follow X).
1787 if Ignore ('X') and then not Debug_Flag_X then
1791 -- Loop through Xref sections
1795 exit X_Loop when C /= 'X';
1797 -- Make new entry in section table
1799 Xref_Section.Increment_Last;
1801 Read_Refs_For_One_File : declare
1802 XS : Xref_Section_Record renames
1803 Xref_Section.Table (Xref_Section.Last);
1805 Current_File_Num : Sdep_Id;
1806 -- Keeps track of the current file number (changed by nn|)
1809 XS.File_Num := Sdep_Id (Get_Nat + Nat (First_Sdep_Entry) - 1);
1810 XS.File_Name := Get_Name;
1811 XS.First_Entity := Xref_Entity.Last + 1;
1813 Current_File_Num := XS.File_Num;
1820 -- Loop through Xref entities
1822 while C /= 'X' and then C /= EOF loop
1823 Xref_Entity.Increment_Last;
1825 Read_Refs_For_One_Entity : declare
1826 XE : Xref_Entity_Record renames
1827 Xref_Entity.Table (Xref_Entity.Last);
1830 procedure Read_Instantiation_Reference;
1831 -- Acquire instantiation reference. Caller has checked
1832 -- that current character is '[' and on return the cursor
1833 -- is skipped past the corresponding closing ']'.
1835 ----------------------------------
1836 -- Read_Instantiation_Reference --
1837 ----------------------------------
1839 procedure Read_Instantiation_Reference is
1840 Local_File_Num : Sdep_Id := Current_File_Num;
1843 Xref.Increment_Last;
1846 XR : Xref_Record renames Xref.Table (Xref.Last);
1849 P := P + 1; -- skip [
1854 Sdep_Id (N + Nat (First_Sdep_Entry) - 1);
1855 Local_File_Num := XR.File_Num;
1860 XR.File_Num := Local_File_Num;
1867 -- Recursive call for next reference
1870 pragma Warnings (Off); -- kill recursion warning
1871 Read_Instantiation_Reference;
1872 pragma Warnings (On);
1875 -- Skip closing bracket after recursive call
1879 end Read_Instantiation_Reference;
1881 -- Start of processing for Read_Refs_For_One_Entity
1887 XE.Lib := (Getc = '*');
1888 XE.Entity := Get_Name;
1890 -- Handle the information about generic instantiations
1893 Skipc; -- Opening '['
1896 if Nextc /= '|' then
1897 XE.Iref_File_Num := Current_File_Num;
1901 Sdep_Id (N + Nat (First_Sdep_Entry) - 1);
1903 XE.Iref_Line := Get_Nat;
1911 XE.Iref_File_Num := No_Sdep_Id;
1915 Current_File_Num := XS.File_Num;
1917 -- Renaming reference is present
1921 XE.Rref_Line := Get_Nat;
1927 XE.Rref_Col := Get_Nat;
1929 -- No renaming reference present
1938 -- See if type reference present
1941 when '<' => XE.Tref := Tref_Derived;
1942 when '(' => XE.Tref := Tref_Access;
1943 when '{' => XE.Tref := Tref_Type;
1944 when others => XE.Tref := Tref_None;
1947 -- Case of typeref field present
1949 if XE.Tref /= Tref_None then
1950 P := P + 1; -- skip opening bracket
1952 if Nextc in 'a' .. 'z' then
1953 XE.Tref_File_Num := No_Sdep_Id;
1955 XE.Tref_Type := ' ';
1957 XE.Tref_Standard_Entity :=
1958 Get_Name (Ignore_Spaces => True);
1965 Sdep_Id (N + Nat (First_Sdep_Entry) - 1);
1970 XE.Tref_File_Num := Current_File_Num;
1974 XE.Tref_Type := Getc;
1975 XE.Tref_Col := Get_Nat;
1976 XE.Tref_Standard_Entity := No_Name;
1979 -- ??? Temporary workaround for nested generics case:
1980 -- 4i4 Directories{1|4I9[4|6[3|3]]}
1984 Nested_Brackets : Natural := 0;
1990 Nested_Brackets := Nested_Brackets + 1;
1992 Nested_Brackets := Nested_Brackets - 1;
1994 if Nested_Brackets = 0 then
2003 P := P + 1; -- skip closing bracket
2006 -- No typeref entry present
2009 XE.Tref_File_Num := No_Sdep_Id;
2011 XE.Tref_Type := ' ';
2013 XE.Tref_Standard_Entity := No_Name;
2016 XE.First_Xref := Xref.Last + 1;
2018 -- Loop through cross-references for this entity
2025 exit when Nextc /= '.';
2029 Xref.Increment_Last;
2032 XR : Xref_Record renames Xref.Table (Xref.Last);
2039 Sdep_Id (N + Nat (First_Sdep_Entry) - 1);
2040 Current_File_Num := XR.File_Num;
2044 XR.File_Num := Current_File_Num;
2050 -- Imported entities reference as in:
2051 -- 494b<c,__gnat_copy_attribs>25
2052 -- ??? Simply skipped for now
2055 while Getc /= '>' loop
2063 Read_Instantiation_Reference;
2068 -- Record last cross-reference
2070 XE.Last_Xref := Xref.Last;
2072 end Read_Refs_For_One_Entity;
2075 -- Record last entity
2077 XS.Last_Entity := Xref_Entity.Last;
2079 end Read_Refs_For_One_File;
2084 -- Here after dealing with xref sections
2086 if C /= EOF and then C /= 'X' then
2093 when Bad_ALI_Format =>
2102 function SEq (F1, F2 : String_Ptr) return Boolean is
2104 return F1.all = F2.all;
2111 function SHash (S : String_Ptr) return Vindex is
2116 for J in S.all'Range loop
2117 H := H * 2 + Character'Pos (S (J));
2120 return Vindex (Vindex'First + Vindex (H mod Vindex'Range_Length));