1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1991-2014, Free Software Foundation, Inc. --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING3. If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license. --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 ------------------------------------------------------------------------------
26 with Atree
; use Atree
;
27 with Err_Vars
; use Err_Vars
;
28 with Erroutc
; use Erroutc
;
29 with Namet
; use Namet
;
31 with Output
; use Output
;
32 with Scans
; use Scans
;
33 with Sinput
; use Sinput
;
34 with Stringt
; use Stringt
;
35 with Stylesw
; use Stylesw
;
37 package body Errutil
is
39 Errors_Must_Be_Ignored
: Boolean := False;
40 -- Set to True by procedure Set_Ignore_Errors (True), when calls to
41 -- error message procedures should be ignored (when parsing irrelevant
42 -- text in sources being preprocessed).
44 -----------------------
45 -- Local Subprograms --
46 -----------------------
48 procedure Error_Msg_AP
(Msg
: String);
49 -- Output a message just after the previous token
51 procedure Output_Source_Line
52 (L
: Physical_Line_Number
;
53 Sfile
: Source_File_Index
;
55 Source_Type
: String);
56 -- Outputs text of source line L, in file S, together with preceding line
57 -- number, as described above for Output_Line_Number. The Errs parameter
58 -- indicates if there are errors attached to the line, which forces
59 -- listing on, even in the presence of pragma List (Off).
61 procedure Set_Msg_Insertion_Column
;
62 -- Handle column number insertion (@ insertion character)
64 procedure Set_Msg_Text
(Text
: String; Flag
: Source_Ptr
);
65 -- Add a sequence of characters to the current message. The characters may
66 -- be one of the special insertion characters (see documentation in spec).
67 -- Flag is the location at which the error is to be posted, which is used
68 -- to determine whether or not the # insertion needs a file name. The
69 -- variables Msg_Buffer, Msglen, Is_Style_Msg, Is_Warning_Msg, and
70 -- Is_Unconditional_Msg are set on return.
76 procedure Error_Msg_AP
(Msg
: String) is
81 -- If we had saved the Scan_Ptr value after scanning the previous
82 -- token, then we would have exactly the right place for putting
83 -- the flag immediately at hand. However, that would add at least
84 -- two instructions to a Scan call *just* to service the possibility
85 -- of an Error_Msg_AP call. So instead we reconstruct that value.
87 -- We have two possibilities, start with Prev_Token_Ptr and skip over
88 -- the current token, which is made harder by the possibility that this
89 -- token may be in error, or start with Token_Ptr and work backwards.
90 -- We used to take the second approach, but it's hard because of
91 -- comments, and harder still because things that look like comments
92 -- can appear inside strings. So now we take the first approach.
94 -- Note: in the case where there is no previous token, Prev_Token_Ptr
95 -- is set to Source_First, which is a reasonable position for the
96 -- error flag in this situation.
101 -- If the previous token is a string literal, we need a special approach
102 -- since there may be white space inside the literal and we don't want
103 -- to stop on that white space.
105 -- Note that it is not worth worrying about special UTF_32 line
106 -- terminator characters in this context, since this is only about
107 -- error recovery anyway.
109 if Prev_Token
= Tok_String_Literal
then
113 if Source
(S1
) = C
then
115 exit when Source
(S1
) /= C
;
116 elsif Source
(S1
) in Line_Terminator
then
121 -- Character literal also needs special handling
123 elsif Prev_Token
= Tok_Char_Literal
then
126 -- Otherwise we search forward for the end of the current token, marked
127 -- by a line terminator, white space, a comment symbol or if we bump
128 -- into the following token (i.e. the current token)
130 -- Note that it is not worth worrying about special UTF_32 line
131 -- terminator characters in this context, since this is only about
132 -- error recovery anyway.
135 while Source
(S1
) not in Line_Terminator
136 and then Source
(S1
) /= ' '
137 and then Source
(S1
) /= ASCII
.HT
138 and then (Source
(S1
) /= '-' or else Source
(S1
+ 1) /= '-')
139 and then S1
/= Token_Ptr
145 -- S1 is now set to the location for the flag
155 procedure Error_Msg
(Msg
: String; Flag_Location
: Source_Ptr
) is
157 Next_Msg
: Error_Msg_Id
;
158 -- Pointer to next message at insertion point
160 Prev_Msg
: Error_Msg_Id
;
161 -- Pointer to previous message at insertion point
163 Sptr
: Source_Ptr
renames Flag_Location
;
164 -- Corresponds to the Sptr value in the error message object
166 Optr
: Source_Ptr
renames Flag_Location
;
167 -- Corresponds to the Optr value in the error message object. Note that
168 -- for this usage, Sptr and Optr always have the same value, since we do
169 -- not have to worry about generic instantiations.
172 if Errors_Must_Be_Ignored
then
176 if Raise_Exception_On_Error
/= 0 then
177 raise Error_Msg_Exception
;
180 Prescan_Message
(Msg
);
181 Set_Msg_Text
(Msg
, Sptr
);
183 -- Kill continuation if parent message killed
185 if Continuation
and Last_Killed
then
189 -- Return without doing anything if message is killed and this is not
190 -- the first error message. The philosophy is that if we get a weird
191 -- error message and we already have had a message, then we hope the
192 -- weird message is a junk cascaded message
194 -- Immediate return if warning message and warnings are suppressed.
195 -- Note that style messages are not warnings for this purpose.
197 if Is_Warning_Msg
and then Warnings_Suppressed
(Sptr
) /= No_String
then
198 Cur_Msg
:= No_Error_Msg
;
202 -- Otherwise build error message object for new message
206 (Text
=> new String'(Msg_Buffer (1 .. Msglen)),
207 Next => No_Error_Msg,
208 Prev => No_Error_Msg,
209 Sfile => Get_Source_File_Index (Sptr),
212 Line => Get_Physical_Line_Number (Sptr),
213 Col => Get_Column_Number (Sptr),
214 Warn => Is_Warning_Msg,
216 Check => Is_Check_Msg,
217 Warn_Err => Warning_Mode = Treat_As_Error,
218 Warn_Chr => Warning_Msg_Char,
219 Style => Is_Style_Msg,
220 Serious => Is_Serious_Error,
221 Uncond => Is_Unconditional_Msg,
222 Msg_Cont => Continuation,
225 Cur_Msg := Errors.Last;
226 Prev_Msg := No_Error_Msg;
227 Next_Msg := First_Error_Msg;
229 while Next_Msg /= No_Error_Msg loop
231 Errors.Table (Cur_Msg).Sfile < Errors.Table (Next_Msg).Sfile;
233 if Errors.Table (Cur_Msg).Sfile = Errors.Table (Next_Msg).Sfile then
234 exit when Sptr < Errors.Table (Next_Msg).Sptr;
237 Prev_Msg := Next_Msg;
238 Next_Msg := Errors.Table (Next_Msg).Next;
241 -- Now we insert the new message in the error chain. The insertion
242 -- point for the message is after Prev_Msg and before Next_Msg.
244 -- The possible insertion point for the new message is after Prev_Msg
245 -- and before Next_Msg. However, this is where we do a special check
246 -- for redundant parsing messages, defined as messages posted on the
247 -- same line. The idea here is that probably such messages are junk
248 -- from the parser recovering. In full errors mode, we don't do this
249 -- deletion, but otherwise such messages are discarded at this stage.
251 if Prev_Msg /= No_Error_Msg
252 and then Errors.Table (Prev_Msg).Line =
253 Errors.Table (Cur_Msg).Line
254 and then Errors.Table (Prev_Msg).Sfile =
255 Errors.Table (Cur_Msg).Sfile
257 -- Don't delete unconditional messages and at this stage, don't
258 -- delete continuation lines (we attempted to delete those earlier
259 -- if the parent message was deleted.
261 if not Errors.Table (Cur_Msg).Uncond
262 and then not Continuation
265 -- Don't delete if prev msg is warning and new msg is an error.
266 -- This is because we don't want a real error masked by a warning.
267 -- In all other cases (that is parse errors for the same line that
268 -- are not unconditional) we do delete the message. This helps to
269 -- avoid junk extra messages from cascaded parsing errors
271 if not (Errors.Table (Prev_Msg).Warn
273 Errors.Table (Prev_Msg).Style)
275 (Errors.Table (Cur_Msg).Warn
277 Errors.Table (Cur_Msg).Style)
279 -- All tests passed, delete the message by simply returning
280 -- without any further processing.
282 if not Continuation then
291 -- Come here if message is to be inserted in the error chain
293 if not Continuation then
294 Last_Killed := False;
297 if Prev_Msg = No_Error_Msg then
298 First_Error_Msg := Cur_Msg;
300 Errors.Table (Prev_Msg).Next := Cur_Msg;
303 Errors.Table (Cur_Msg).Next := Next_Msg;
305 -- Bump appropriate statistics count
307 if Errors.Table (Cur_Msg).Warn
309 Errors.Table (Cur_Msg).Style
311 Warnings_Detected := Warnings_Detected + 1;
313 if Errors.Table (Cur_Msg).Info then
314 Info_Messages := Info_Messages + 1;
317 elsif Errors.Table (Cur_Msg).Check then
318 Check_Messages := Check_Messages + 1;
321 Total_Errors_Detected := Total_Errors_Detected + 1;
323 if Errors.Table (Cur_Msg).Serious then
324 Serious_Errors_Detected := Serious_Errors_Detected + 1;
334 procedure Error_Msg_S (Msg : String) is
336 Error_Msg (Msg, Scan_Ptr);
343 procedure Error_Msg_SC (Msg : String) is
345 -- If we are at end of file, post the flag after the previous token
347 if Token = Tok_EOF then
350 -- For all other cases the message is posted at the current token
354 Error_Msg (Msg, Token_Ptr);
362 procedure Error_Msg_SP (Msg : String) is
364 -- Note: in the case where there is no previous token, Prev_Token_Ptr
365 -- is set to Source_First, which is a reasonable position for the
366 -- error flag in this situation
368 Error_Msg (Msg, Prev_Token_Ptr);
375 procedure Finalize (Source_Type : String := "project") is
382 -- Eliminate any duplicated error messages from the list. This is
383 -- done after the fact to avoid problems with Change_Error_Text.
385 Cur := First_Error_Msg;
386 while Cur /= No_Error_Msg loop
387 Nxt := Errors.Table (Cur).Next;
390 while F /= No_Error_Msg
391 and then Errors.Table (F).Sptr = Errors.Table (Cur).Sptr
393 Check_Duplicate_Message (Cur, F);
394 F := Errors.Table (F).Next;
402 if Brief_Output or (not Full_List and not Verbose_Mode) then
403 E := First_Error_Msg;
406 while E /= No_Error_Msg loop
407 if not Errors.Table (E).Deleted then
408 if Full_Path_Name_For_Brief_Errors then
409 Write_Name (Full_Ref_Name (Errors.Table (E).Sfile));
411 Write_Name (Reference_Name (Errors.Table (E).Sfile));
415 Write_Int (Int (Physical_To_Logical
416 (Errors.Table (E).Line,
417 Errors.Table (E).Sfile)));
420 if Errors.Table (E).Col < 10 then
424 Write_Int (Int (Errors.Table (E).Col));
430 E := Errors.Table (E).Next;
436 -- Full source listing case
439 List_Pragmas_Index := 1;
440 List_Pragmas_Mode := True;
441 E := First_Error_Msg;
444 -- First list initial main source file with its error messages
446 for N in 1 .. Last_Source_Line (Main_Source_File) loop
449 and then Errors.Table (E).Line = N
450 and then Errors.Table (E).Sfile = Main_Source_File;
452 Output_Source_Line (N, Main_Source_File, Err_Flag, Source_Type);
455 Output_Error_Msgs (E);
461 -- Then output errors, if any, for subsidiary units
463 while E /= No_Error_Msg
464 and then Errors.Table (E).Sfile /= Main_Source_File
468 (Errors.Table (E).Line,
469 Errors.Table (E).Sfile,
472 Output_Error_Msgs (E);
476 -- Verbose mode (error lines only with error flags)
479 E := First_Error_Msg;
481 -- Loop through error lines
483 while E /= No_Error_Msg loop
486 (Errors.Table (E).Line,
487 Errors.Table (E).Sfile,
490 Output_Error_Msgs (E);
494 -- Output error summary if verbose or full list mode
496 if Verbose_Mode or else Full_List then
498 -- Extra blank line if error messages or source listing were output
500 if Total_Errors_Detected + Warnings_Detected > 0
506 -- Message giving number of lines read and number of errors detected.
507 -- This normally goes to Standard_Output. The exception is when brief
508 -- mode is not set, verbose mode (or full list mode) is set, and
509 -- there are errors. In this case we send the message to standard
510 -- error to make sure that *something* appears on standard error in
511 -- an error situation.
513 -- Historical note: Formerly, only the "# errors" suffix was sent
514 -- to stderr, whereas "# lines:" appeared on stdout. This caused
515 -- some problems on now-obsolete ports, but there seems to be no
516 -- reason to revert this page since it would be incompatible.
518 if Total_Errors_Detected + Warnings_Detected /= 0
519 and then not Brief_Output
520 and then (Verbose_Mode or Full_List)
525 -- Message giving total number of lines
528 Write_Int (Num_Source_Lines (Main_Source_File));
530 if Num_Source_Lines (Main_Source_File) = 1 then
531 Write_Str (" line: ");
533 Write_Str (" lines: ");
536 if Total_Errors_Detected = 0 then
537 Write_Str ("No errors");
539 elsif Total_Errors_Detected = 1 then
540 Write_Str ("1 error");
543 Write_Int (Total_Errors_Detected);
544 Write_Str (" errors");
547 if Warnings_Detected - Info_Messages /= 0 then
549 Write_Int (Warnings_Detected - Info_Messages);
550 Write_Str (" warning");
552 if Warnings_Detected - Info_Messages /= 1 then
556 if Warning_Mode = Treat_As_Error then
557 Write_Str (" (treated as error");
559 if Warnings_Detected - Info_Messages /= 1 then
571 if Maximum_Messages /= 0 then
572 if Warnings_Detected >= Maximum_Messages then
574 Write_Line ("maximum number of warnings detected");
575 Warning_Mode := Suppress;
578 if Total_Errors_Detected >= Maximum_Messages then
580 Write_Line ("fatal error: maximum errors reached");
585 if Warning_Mode = Treat_As_Error then
586 Total_Errors_Detected :=
587 Total_Errors_Detected + Warnings_Detected - Info_Messages;
588 Warnings_Detected := Info_Messages;
591 -- Prevent displaying the same messages again in the future
593 First_Error_Msg := No_Error_Msg;
600 procedure Initialize is
603 First_Error_Msg := No_Error_Msg;
604 Last_Error_Msg := No_Error_Msg;
605 Serious_Errors_Detected := 0;
606 Total_Errors_Detected := 0;
607 Warnings_Detected := 0;
609 Cur_Msg := No_Error_Msg;
611 -- Initialize warnings table, if all warnings are suppressed, supply
612 -- an initial dummy entry covering all possible source locations.
616 if Warning_Mode = Suppress then
619 (Start => Source_Ptr'First,
620 Stop => Source_Ptr'Last,
621 Reason => Null_String_Id));
625 ------------------------
626 -- Output_Source_Line --
627 ------------------------
629 procedure Output_Source_Line
630 (L : Physical_Line_Number;
631 Sfile : Source_File_Index;
633 Source_Type : String)
638 Line_Number_Output : Boolean := False;
639 -- Set True once line number is output
642 if Sfile /= Current_Error_Source_File then
643 Write_Str ("==============Error messages for ");
644 Write_Str (Source_Type);
645 Write_Str (" file: ");
646 Write_Name (Full_File_Name (Sfile));
648 Current_Error_Source_File := Sfile;
652 Output_Line_Number (Physical_To_Logical (L, Sfile));
653 Line_Number_Output := True;
656 S := Line_Start (L, Sfile);
659 C := Source_Text (Sfile) (S);
660 exit when C = ASCII.LF or else C = ASCII.CR or else C = EOF;
669 if Line_Number_Output then
672 end Output_Source_Line;
674 -----------------------
675 -- Set_Ignore_Errors --
676 -----------------------
678 procedure Set_Ignore_Errors (To : Boolean) is
680 Errors_Must_Be_Ignored := To;
681 end Set_Ignore_Errors;
683 ------------------------------
684 -- Set_Msg_Insertion_Column --
685 ------------------------------
687 procedure Set_Msg_Insertion_Column is
689 if RM_Column_Check then
690 Set_Msg_Str (" in column ");
691 Set_Msg_Int (Int (Error_Msg_Col) + 1);
693 end Set_Msg_Insertion_Column;
699 procedure Set_Msg_Text (Text : String; Flag : Source_Ptr) is
700 C : Character; -- Current character
701 P : Natural; -- Current index;
704 Manual_Quote_Mode := False;
706 Flag_Source := Get_Source_File_Index (Flag);
709 while P <= Text'Last loop
713 -- Check for insertion character
716 if P <= Text'Last and then Text (P) = '%' then
718 Set_Msg_Insertion_Name_Literal;
720 Set_Msg_Insertion_Name;
730 Set_Msg_Insertion_File_Name;
739 Set_Msg_Insertion_Reserved_Name;
748 Set_Msg_Insertion_Line_Number (Error_Msg_Sloc, Flag);
751 Continuation := True;
754 Set_Msg_Insertion_Column;
757 Set_Msg_Insertion_Uint;
760 Manual_Quote_Mode := not Manual_Quote_Mode;
776 Set_Msg_Char (Text (P));
779 -- Upper case letter (start of reserved word if 2 or more)
781 elsif C in 'A' .. 'Z'
782 and then P <= Text'Last
783 and then Text (P) in 'A' .. 'Z'
786 Set_Msg_Insertion_Reserved_Word (Text, P);
789 Set_Msg_Str (Error_Msg_String (1 .. Error_Msg_Strlen));
791 -- Normal character with no special treatment