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 -- 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 Debug
; use Debug
;
28 with Binderr
; use Binderr
;
30 with Namet
; use Namet
;
32 with Output
; use Output
;
33 with Osint
; use Osint
;
34 with Scans
; use Scans
;
37 with Snames
; use Snames
;
40 package body ALI
.Util
is
42 -- Empty procedures needed to instantiate Scng. Error procedures are
43 -- empty, because we don't want to report any errors when computing
48 procedure Error_Msg
(Msg
: String; Flag_Location
: Source_Ptr
);
50 procedure Error_Msg_S
(Msg
: String);
52 procedure Error_Msg_SC
(Msg
: String);
54 procedure Error_Msg_SP
(Msg
: String);
56 -- Instantiation of Styleg, needed to instantiate Scng
58 package Style
is new Styleg
59 (Error_Msg
, Error_Msg_S
, Error_Msg_SC
, Error_Msg_SP
);
61 -- A Scanner is needed to get checksum of a source (procedure
62 -- Get_File_Checksum).
64 package Scanner
is new Scng
65 (Post_Scan
, Error_Msg
, Error_Msg_S
, Error_Msg_SC
, Error_Msg_SP
, Style
);
67 type Header_Num
is range 0 .. 1_000
;
69 function Hash
(F
: File_Name_Type
) return Header_Num
;
70 -- Function used to compute hash of ALI file name
72 package Interfaces
is new Simple_HTable
(
73 Header_Num
=> Header_Num
,
76 Key
=> File_Name_Type
,
84 function Checksums_Match
(Checksum1
, Checksum2
: Word
) return Boolean is
86 return Checksum1
= Checksum2
and then Checksum1
/= Checksum_Error
;
93 procedure Error_Msg
(Msg
: String; Flag_Location
: Source_Ptr
) is
94 pragma Warnings
(Off
, Msg
);
95 pragma Warnings
(Off
, Flag_Location
);
104 procedure Error_Msg_S
(Msg
: String) is
105 pragma Warnings
(Off
, Msg
);
114 procedure Error_Msg_SC
(Msg
: String) is
115 pragma Warnings
(Off
, Msg
);
124 procedure Error_Msg_SP
(Msg
: String) is
125 pragma Warnings
(Off
, Msg
);
130 -----------------------
131 -- Get_File_Checksum --
132 -----------------------
134 function Get_File_Checksum
(Fname
: Name_Id
) return Word
is
136 Source_Index
: Source_File_Index
;
138 Full_Name
:= Find_File
(Fname
, Osint
.Source
);
140 -- If we cannot find the file, then return an impossible checksum,
141 -- impossible becaues checksums have the high order bit zero, so
142 -- that checksums do not match.
144 if Full_Name
= No_File
then
145 return Checksum_Error
;
148 Source_Index
:= Sinput
.C
.Load_File
(Get_Name_String
(Full_Name
));
150 if Source_Index
= No_Source_File
then
151 return Checksum_Error
;
154 Scanner
.Initialize_Scanner
(Types
.No_Unit
, Source_Index
);
156 -- Make sure that the project language reserved words are not
157 -- recognized as reserved words, but as identifiers. The byte info for
158 -- those names have been set if we are in gnatmake.
160 Set_Name_Table_Byte
(Name_Project
, 0);
161 Set_Name_Table_Byte
(Name_Extends
, 0);
162 Set_Name_Table_Byte
(Name_External
, 0);
164 -- Scan the complete file to compute its checksum
168 exit when Token
= Tok_EOF
;
171 return Scans
.Checksum
;
172 end Get_File_Checksum
;
178 function Hash
(F
: File_Name_Type
) return Header_Num
is
180 return Header_Num
(Int
(F
) rem Header_Num
'Range_Length);
183 ---------------------------
184 -- Initialize_ALI_Source --
185 ---------------------------
187 procedure Initialize_ALI_Source
is
189 -- When (re)initializing ALI data structures the ALI user expects to
190 -- get a fresh set of data structures. Thus we first need to erase the
191 -- marks put in the name table by the previous set of ALI routine calls.
192 -- This loop is empty and harmless the first time in.
194 for J
in Source
.First
.. Source
.Last
loop
195 Set_Name_Table_Info
(Source
.Table
(J
).Sfile
, 0);
196 Source
.Table
(J
).Source_Found
:= False;
201 end Initialize_ALI_Source
;
207 procedure Post_Scan
is
216 procedure Read_ALI
(Id
: ALI_Id
) is
217 Afile
: File_Name_Type
;
218 Text
: Text_Buffer_Ptr
;
222 -- Process all dependent units
224 for U
in ALIs
.Table
(Id
).First_Unit
.. ALIs
.Table
(Id
).Last_Unit
loop
226 W
in Units
.Table
(U
).First_With
.. Units
.Table
(U
).Last_With
228 Afile
:= Withs
.Table
(W
).Afile
;
230 -- Only process if not a generic (Afile /= No_File) and if
231 -- file has not been processed already.
234 and then Get_Name_Table_Info
(Afile
) = 0
236 Text
:= Read_Library_Info
(Afile
);
238 -- Return with an error if source cannot be found and if this
239 -- is not a library generic (now we can, but does not have to
240 -- compile library generics)
243 if Generic_Separately_Compiled
(Withs
.Table
(W
).Sfile
) then
244 Error_Msg_Name_1
:= Afile
;
245 Error_Msg_Name_2
:= Withs
.Table
(W
).Sfile
;
246 Error_Msg
("% not found, % must be compiled");
247 Set_Name_Table_Info
(Afile
, Int
(No_Unit_Id
));
251 goto Skip_Library_Generics
;
255 -- Enter in ALIs table
261 Ignore_ED
=> Force_RM_Elaboration_Order
,
266 if ALIs
.Table
(Idread
).Compile_Errors
then
267 Error_Msg_Name_1
:= Withs
.Table
(W
).Sfile
;
268 Error_Msg
("% had errors, must be fixed, and recompiled");
269 Set_Name_Table_Info
(Afile
, Int
(No_Unit_Id
));
271 elsif ALIs
.Table
(Idread
).No_Object
then
272 Error_Msg_Name_1
:= Withs
.Table
(W
).Sfile
;
273 Error_Msg
("% must be recompiled");
274 Set_Name_Table_Info
(Afile
, Int
(No_Unit_Id
));
277 -- If the Unit is an Interface to a Stand-Alone Library,
278 -- set the Interface flag in the Withs table, so that its
279 -- dependant are not considered for elaboration order.
281 if ALIs
.Table
(Idread
).Interface
then
282 Withs
.Table
(W
).Interface
:= True;
283 Interface_Library_Unit
:= True;
285 -- Set the entry in the Interfaces hash table, so that other
286 -- units that import this unit will set the flag in their
287 -- entry in the Withs table.
289 Interfaces
.Set
(Afile
, True);
292 -- Otherwise, recurse to get new dependents
297 <<Skip_Library_Generics
>> null;
299 -- If the ALI file has already been processed and is an interface,
300 -- set the flag in the entry of the Withs table.
302 elsif Interface_Library_Unit
and then Interfaces
.Get
(Afile
) then
303 Withs
.Table
(W
).Interface
:= True;
309 ----------------------
310 -- Set_Source_Table --
311 ----------------------
313 procedure Set_Source_Table
(A
: ALI_Id
) is
316 Stamp
: Time_Stamp_Type
;
320 ALIs
.Table
(A
).First_Sdep
.. ALIs
.Table
(A
).Last_Sdep
322 F
:= Sdep
.Table
(D
).Sfile
;
326 -- If this is the first time we are seeing this source file,
327 -- then make a new entry in the source table.
329 if Get_Name_Table_Info
(F
) = 0 then
330 Source
.Increment_Last
;
332 Set_Name_Table_Info
(F
, Int
(S
));
333 Source
.Table
(S
).Sfile
:= F
;
334 Source
.Table
(S
).All_Timestamps_Match
:= True;
336 -- Initialize checksum fields
338 Source
.Table
(S
).Checksum
:= Sdep
.Table
(D
).Checksum
;
339 Source
.Table
(S
).All_Checksums_Match
:= True;
341 -- In check source files mode, try to get time stamp from file
343 if Opt
.Check_Source_Files
then
344 Stamp
:= Source_File_Stamp
(F
);
346 -- If we got the stamp, then set the stamp in the source
347 -- table entry and mark it as set from the source so that
348 -- it does not get subsequently changed.
350 if Stamp
(Stamp
'First) /= ' ' then
351 Source
.Table
(S
).Stamp
:= Stamp
;
352 Source
.Table
(S
).Source_Found
:= True;
354 -- If we could not find the file, then the stamp is set
355 -- from the dependency table entry (to be possibly reset
356 -- if we find a later stamp in subsequent processing)
359 Source
.Table
(S
).Stamp
:= Sdep
.Table
(D
).Stamp
;
360 Source
.Table
(S
).Source_Found
:= False;
362 -- In All_Sources mode, flag error of file not found
364 if Opt
.All_Sources
then
365 Error_Msg_Name_1
:= F
;
366 Error_Msg
("cannot locate %");
370 -- First time for this source file, but Check_Source_Files
371 -- is off, so simply initialize the stamp from the Sdep entry
374 Source
.Table
(S
).Source_Found
:= False;
375 Source
.Table
(S
).Stamp
:= Sdep
.Table
(D
).Stamp
;
378 -- Here if this is not the first time for this source file,
379 -- so that the source table entry is already constructed.
382 S
:= Source_Id
(Get_Name_Table_Info
(F
));
384 -- Update checksum flag
386 if not Checksums_Match
387 (Sdep
.Table
(D
).Checksum
, Source
.Table
(S
).Checksum
)
389 Source
.Table
(S
).All_Checksums_Match
:= False;
392 -- Check for time stamp mismatch
394 if Sdep
.Table
(D
).Stamp
/= Source
.Table
(S
).Stamp
then
395 Source
.Table
(S
).All_Timestamps_Match
:= False;
397 -- When we have a time stamp mismatch, we go look for the
398 -- source file even if Check_Source_Files is false, since
399 -- if we find it, then we can use it to resolve which of the
400 -- two timestamps in the ALI files is likely to be correct.
402 if not Check_Source_Files
then
403 Stamp
:= Source_File_Stamp
(F
);
405 if Stamp
(Stamp
'First) /= ' ' then
406 Source
.Table
(S
).Stamp
:= Stamp
;
407 Source
.Table
(S
).Source_Found
:= True;
411 -- If the stamp in the source table entry was set from the
412 -- source file, then we do not change it (the stamp in the
413 -- source file is always taken as the "right" one).
415 if Source
.Table
(S
).Source_Found
then
418 -- Otherwise, we have no source file available, so we guess
419 -- that the later of the two timestamps is the right one.
420 -- Note that this guess only affects which error messages
421 -- are issued later on, not correct functionality.
424 if Sdep
.Table
(D
).Stamp
> Source
.Table
(S
).Stamp
then
425 Source
.Table
(S
).Stamp
:= Sdep
.Table
(D
).Stamp
;
431 -- Set the checksum value in the source table
433 S
:= Source_Id
(Get_Name_Table_Info
(F
));
434 Source
.Table
(S
).Checksum
:= Sdep
.Table
(D
).Checksum
;
438 end Set_Source_Table
;
440 ----------------------
441 -- Set_Source_Table --
442 ----------------------
444 procedure Set_Source_Table
is
446 for A
in ALIs
.First
.. ALIs
.Last
loop
447 Set_Source_Table
(A
);
449 end Set_Source_Table
;
451 -------------------------
452 -- Time_Stamp_Mismatch --
453 -------------------------
455 function Time_Stamp_Mismatch
457 Read_Only
: Boolean := False)
458 return File_Name_Type
461 -- Source file Id for the current Sdep entry
464 for D
in ALIs
.Table
(A
).First_Sdep
.. ALIs
.Table
(A
).Last_Sdep
loop
465 Src
:= Source_Id
(Get_Name_Table_Info
(Sdep
.Table
(D
).Sfile
));
467 if Opt
.Minimal_Recompilation
468 and then Sdep
.Table
(D
).Stamp
/= Source
.Table
(Src
).Stamp
470 -- If minimal recompilation is in action, replace the stamp
471 -- of the source file in the table if checksums match.
473 -- ??? It is probably worth updating the ALI file with a new
474 -- field to avoid recomputing it each time.
477 (Get_File_Checksum
(Sdep
.Table
(D
).Sfile
),
478 Source
.Table
(Src
).Checksum
)
480 Sdep
.Table
(D
).Stamp
:= Source
.Table
(Src
).Stamp
;
485 if (not Read_Only
) or else Source
.Table
(Src
).Source_Found
then
486 if not Source
.Table
(Src
).Source_Found
487 or else Sdep
.Table
(D
).Stamp
/= Source
.Table
(Src
).Stamp
489 -- If -t debug flag set, output time stamp found/expected
491 if Source
.Table
(Src
).Source_Found
and Debug_Flag_T
then
492 Write_Str
("Source: """);
493 Get_Name_String
(Sdep
.Table
(D
).Sfile
);
494 Write_Str
(Name_Buffer
(1 .. Name_Len
));
497 Write_Str
(" time stamp expected: ");
498 Write_Line
(String (Sdep
.Table
(D
).Stamp
));
500 Write_Str
(" time stamp found: ");
501 Write_Line
(String (Source
.Table
(Src
).Stamp
));
504 -- Return the source file
506 return Source
.Table
(Src
).Sfile
;
512 end Time_Stamp_Mismatch
;