Small ChangeLog tweak.
[official-gcc.git] / gcc / ada / errutil.adb
blob498833abf41f389169aa7763107cd54bbfd56bad
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- E R R U T I L --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1991-2017, Free Software Foundation, Inc. --
10 -- --
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. --
20 -- --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
23 -- --
24 ------------------------------------------------------------------------------
26 with Atree; use Atree;
27 with Err_Vars; use Err_Vars;
28 with Erroutc; use Erroutc;
29 with Namet; use Namet;
30 with Opt; use Opt;
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;
54 Errs : Boolean;
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.
72 ------------------
73 -- Error_Msg_AP --
74 ------------------
76 procedure Error_Msg_AP (Msg : String) is
77 S1 : Source_Ptr;
78 C : Character;
80 begin
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.
98 S1 := Prev_Token_Ptr;
99 C := Source (S1);
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
110 loop
111 S1 := S1 + 1;
113 if Source (S1) = C then
114 S1 := S1 + 1;
115 exit when Source (S1) /= C;
116 elsif Source (S1) in Line_Terminator then
117 exit;
118 end if;
119 end loop;
121 -- Character literal also needs special handling
123 elsif Prev_Token = Tok_Char_Literal then
124 S1 := S1 + 3;
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.
134 else
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
140 loop
141 S1 := S1 + 1;
142 end loop;
143 end if;
145 -- S1 is now set to the location for the flag
147 Error_Msg (Msg, S1);
149 end Error_Msg_AP;
151 ---------------
152 -- Error_Msg --
153 ---------------
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.
171 begin
172 if Errors_Must_Be_Ignored then
173 return;
174 end if;
176 if Raise_Exception_On_Error /= 0 then
177 raise Error_Msg_Exception;
178 end if;
180 Prescan_Message (Msg);
181 Set_Msg_Text (Msg, Sptr);
183 -- Kill continuation if parent message killed
185 if Continuation and Last_Killed then
186 return;
187 end if;
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;
199 return;
200 end if;
202 -- Otherwise build error message object for new message
204 Errors.Append
205 (New_Val =>
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),
210 Sptr => Sptr,
211 Optr => Optr,
212 Line => Get_Physical_Line_Number (Sptr),
213 Col => Get_Column_Number (Sptr),
214 Warn => Is_Warning_Msg,
215 Info => Is_Info_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,
223 Deleted => False));
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
230 exit when
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;
235 end if;
237 Prev_Msg := Next_Msg;
238 Next_Msg := Errors.Table (Next_Msg).Next;
239 end loop;
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
256 then
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
263 then
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
272 or else
273 Errors.Table (Prev_Msg).Style)
274 or else
275 (Errors.Table (Cur_Msg).Warn
276 or else
277 Errors.Table (Cur_Msg).Style)
278 then
279 -- All tests passed, delete the message by simply returning
280 -- without any further processing.
282 if not Continuation then
283 Last_Killed := True;
284 end if;
286 return;
287 end if;
288 end if;
289 end if;
291 -- Come here if message is to be inserted in the error chain
293 if not Continuation then
294 Last_Killed := False;
295 end if;
297 if Prev_Msg = No_Error_Msg then
298 First_Error_Msg := Cur_Msg;
299 else
300 Errors.Table (Prev_Msg).Next := Cur_Msg;
301 end if;
303 Errors.Table (Cur_Msg).Next := Next_Msg;
305 -- Bump appropriate statistics counts
307 if Errors.Table (Cur_Msg).Info then
309 -- Could be (usually is) both "info" and "warning"
311 if Errors.Table (Cur_Msg).Warn then
312 Warning_Info_Messages := Warning_Info_Messages + 1;
313 Warnings_Detected := Warnings_Detected + 1;
314 else
315 Report_Info_Messages := Report_Info_Messages + 1;
316 end if;
318 elsif Errors.Table (Cur_Msg).Warn
319 or else Errors.Table (Cur_Msg).Style
320 then
321 Warnings_Detected := Warnings_Detected + 1;
323 elsif Errors.Table (Cur_Msg).Check then
324 Check_Messages := Check_Messages + 1;
326 else
327 Total_Errors_Detected := Total_Errors_Detected + 1;
329 if Errors.Table (Cur_Msg).Serious then
330 Serious_Errors_Detected := Serious_Errors_Detected + 1;
331 end if;
332 end if;
334 end Error_Msg;
336 -----------------
337 -- Error_Msg_S --
338 -----------------
340 procedure Error_Msg_S (Msg : String) is
341 begin
342 Error_Msg (Msg, Scan_Ptr);
343 end Error_Msg_S;
345 ------------------
346 -- Error_Msg_SC --
347 ------------------
349 procedure Error_Msg_SC (Msg : String) is
350 begin
351 -- If we are at end of file, post the flag after the previous token
353 if Token = Tok_EOF then
354 Error_Msg_AP (Msg);
356 -- For all other cases the message is posted at the current token
357 -- pointer position
359 else
360 Error_Msg (Msg, Token_Ptr);
361 end if;
362 end Error_Msg_SC;
364 ------------------
365 -- Error_Msg_SP --
366 ------------------
368 procedure Error_Msg_SP (Msg : String) is
369 begin
370 -- Note: in the case where there is no previous token, Prev_Token_Ptr
371 -- is set to Source_First, which is a reasonable position for the
372 -- error flag in this situation
374 Error_Msg (Msg, Prev_Token_Ptr);
375 end Error_Msg_SP;
377 --------------
378 -- Finalize --
379 --------------
381 procedure Finalize (Source_Type : String := "project") is
382 Cur : Error_Msg_Id;
383 Nxt : Error_Msg_Id;
384 E, F : Error_Msg_Id;
385 Err_Flag : Boolean;
387 begin
388 -- Eliminate any duplicated error messages from the list. This is
389 -- done after the fact to avoid problems with Change_Error_Text.
391 Cur := First_Error_Msg;
392 while Cur /= No_Error_Msg loop
393 Nxt := Errors.Table (Cur).Next;
395 F := Nxt;
396 while F /= No_Error_Msg
397 and then Errors.Table (F).Sptr = Errors.Table (Cur).Sptr
398 loop
399 Check_Duplicate_Message (Cur, F);
400 F := Errors.Table (F).Next;
401 end loop;
403 Cur := Nxt;
404 end loop;
406 -- Brief Error mode
408 if Brief_Output or (not Full_List and not Verbose_Mode) then
409 E := First_Error_Msg;
410 Set_Standard_Error;
412 while E /= No_Error_Msg loop
413 if not Errors.Table (E).Deleted then
414 if Full_Path_Name_For_Brief_Errors then
415 Write_Name (Full_Ref_Name (Errors.Table (E).Sfile));
416 else
417 Write_Name (Reference_Name (Errors.Table (E).Sfile));
418 end if;
420 Write_Char (':');
421 Write_Int (Int (Physical_To_Logical
422 (Errors.Table (E).Line,
423 Errors.Table (E).Sfile)));
424 Write_Char (':');
426 if Errors.Table (E).Col < 10 then
427 Write_Char ('0');
428 end if;
430 Write_Int (Int (Errors.Table (E).Col));
431 Write_Str (": ");
432 Output_Msg_Text (E);
433 Write_Eol;
434 end if;
436 E := Errors.Table (E).Next;
437 end loop;
439 Set_Standard_Output;
440 end if;
442 -- Full source listing case
444 if Full_List then
445 List_Pragmas_Index := 1;
446 List_Pragmas_Mode := True;
447 E := First_Error_Msg;
448 Write_Eol;
450 -- First list initial main source file with its error messages
452 for N in 1 .. Last_Source_Line (Main_Source_File) loop
453 Err_Flag :=
454 E /= No_Error_Msg
455 and then Errors.Table (E).Line = N
456 and then Errors.Table (E).Sfile = Main_Source_File;
458 Output_Source_Line (N, Main_Source_File, Err_Flag, Source_Type);
460 if Err_Flag then
461 Output_Error_Msgs (E);
463 Write_Eol;
464 end if;
465 end loop;
467 -- Then output errors, if any, for subsidiary units
469 while E /= No_Error_Msg
470 and then Errors.Table (E).Sfile /= Main_Source_File
471 loop
472 Write_Eol;
473 Output_Source_Line
474 (Errors.Table (E).Line,
475 Errors.Table (E).Sfile,
476 True,
477 Source_Type);
478 Output_Error_Msgs (E);
479 end loop;
480 end if;
482 -- Verbose mode (error lines only with error flags)
484 if Verbose_Mode then
485 E := First_Error_Msg;
487 -- Loop through error lines
489 while E /= No_Error_Msg loop
490 Write_Eol;
491 Output_Source_Line
492 (Errors.Table (E).Line,
493 Errors.Table (E).Sfile,
494 True,
495 Source_Type);
496 Output_Error_Msgs (E);
497 end loop;
498 end if;
500 -- Output error summary if verbose or full list mode
502 if Verbose_Mode or else Full_List then
504 -- Extra blank line if error messages or source listing were output
506 if Total_Errors_Detected + Warnings_Detected > 0
507 or else Full_List
508 then
509 Write_Eol;
510 end if;
512 -- Message giving number of lines read and number of errors detected.
513 -- This normally goes to Standard_Output. The exception is when brief
514 -- mode is not set, verbose mode (or full list mode) is set, and
515 -- there are errors. In this case we send the message to standard
516 -- error to make sure that *something* appears on standard error in
517 -- an error situation.
519 -- Historical note: Formerly, only the "# errors" suffix was sent
520 -- to stderr, whereas "# lines:" appeared on stdout. This caused
521 -- some problems on now-obsolete ports, but there seems to be no
522 -- reason to revert this page since it would be incompatible.
524 if Total_Errors_Detected + Warnings_Detected /= 0
525 and then not Brief_Output
526 and then (Verbose_Mode or Full_List)
527 then
528 Set_Standard_Error;
529 end if;
531 -- Message giving total number of lines
533 Write_Str (" ");
534 Write_Int (Num_Source_Lines (Main_Source_File));
536 if Num_Source_Lines (Main_Source_File) = 1 then
537 Write_Str (" line: ");
538 else
539 Write_Str (" lines: ");
540 end if;
542 if Total_Errors_Detected = 0 then
543 Write_Str ("No errors");
545 elsif Total_Errors_Detected = 1 then
546 Write_Str ("1 error");
548 else
549 Write_Int (Total_Errors_Detected);
550 Write_Str (" errors");
551 end if;
553 if Warnings_Detected - Warning_Info_Messages /= 0 then
554 Write_Str (", ");
555 Write_Int (Warnings_Detected - Warning_Info_Messages);
556 Write_Str (" warning");
558 if Warnings_Detected - Warning_Info_Messages /= 1 then
559 Write_Char ('s');
560 end if;
562 if Warning_Mode = Treat_As_Error then
563 Write_Str (" (treated as error");
565 if Warnings_Detected - Warning_Info_Messages /= 1 then
566 Write_Char ('s');
567 end if;
569 Write_Char (')');
570 end if;
571 end if;
573 Write_Eol;
574 Set_Standard_Output;
575 end if;
577 if Maximum_Messages /= 0 then
578 if Warnings_Detected >= Maximum_Messages then
579 Set_Standard_Error;
580 Write_Line ("maximum number of warnings detected");
581 Warning_Mode := Suppress;
582 end if;
584 if Total_Errors_Detected >= Maximum_Messages then
585 Set_Standard_Error;
586 Write_Line ("fatal error: maximum errors reached");
587 Set_Standard_Output;
588 end if;
589 end if;
591 -- Even though Warning_Info_Messages are a subclass of warnings, they
592 -- must not be treated as errors when -gnatwe is in effect.
594 if Warning_Mode = Treat_As_Error then
595 Total_Errors_Detected :=
596 Total_Errors_Detected + Warnings_Detected - Warning_Info_Messages;
597 Warnings_Detected := Warning_Info_Messages;
598 end if;
600 -- Prevent displaying the same messages again in the future
602 First_Error_Msg := No_Error_Msg;
603 end Finalize;
605 ----------------
606 -- Initialize --
607 ----------------
609 procedure Initialize is
610 begin
611 Errors.Init;
612 First_Error_Msg := No_Error_Msg;
613 Last_Error_Msg := No_Error_Msg;
614 Serious_Errors_Detected := 0;
615 Total_Errors_Detected := 0;
616 Warnings_Detected := 0;
617 Warning_Info_Messages := 0;
618 Report_Info_Messages := 0;
619 Cur_Msg := No_Error_Msg;
621 -- Initialize warnings table, if all warnings are suppressed, supply
622 -- an initial dummy entry covering all possible source locations.
624 Warnings.Init;
626 if Warning_Mode = Suppress then
627 Warnings.Append
628 (New_Val =>
629 (Start => Source_Ptr'First,
630 Stop => Source_Ptr'Last,
631 Reason => Null_String_Id));
632 end if;
633 end Initialize;
635 ------------------------
636 -- Output_Source_Line --
637 ------------------------
639 procedure Output_Source_Line
640 (L : Physical_Line_Number;
641 Sfile : Source_File_Index;
642 Errs : Boolean;
643 Source_Type : String)
645 S : Source_Ptr;
646 C : Character;
648 Line_Number_Output : Boolean := False;
649 -- Set True once line number is output
651 begin
652 if Sfile /= Current_Error_Source_File then
653 Write_Str ("==============Error messages for ");
654 Write_Str (Source_Type);
655 Write_Str (" file: ");
656 Write_Name (Full_File_Name (Sfile));
657 Write_Eol;
658 Current_Error_Source_File := Sfile;
659 end if;
661 if Errs then
662 Output_Line_Number (Physical_To_Logical (L, Sfile));
663 Line_Number_Output := True;
664 end if;
666 S := Line_Start (L, Sfile);
668 loop
669 C := Source_Text (Sfile) (S);
670 exit when C = ASCII.LF or else C = ASCII.CR or else C = EOF;
672 if Errs then
673 Write_Char (C);
674 end if;
676 S := S + 1;
677 end loop;
679 if Line_Number_Output then
680 Write_Eol;
681 end if;
682 end Output_Source_Line;
684 -----------------------
685 -- Set_Ignore_Errors --
686 -----------------------
688 procedure Set_Ignore_Errors (To : Boolean) is
689 begin
690 Errors_Must_Be_Ignored := To;
691 end Set_Ignore_Errors;
693 ------------------------------
694 -- Set_Msg_Insertion_Column --
695 ------------------------------
697 procedure Set_Msg_Insertion_Column is
698 begin
699 if RM_Column_Check then
700 Set_Msg_Str (" in column ");
701 Set_Msg_Int (Int (Error_Msg_Col) + 1);
702 end if;
703 end Set_Msg_Insertion_Column;
705 ------------------
706 -- Set_Msg_Text --
707 ------------------
709 procedure Set_Msg_Text (Text : String; Flag : Source_Ptr) is
710 C : Character; -- Current character
711 P : Natural; -- Current index;
713 begin
714 Manual_Quote_Mode := False;
715 Msglen := 0;
716 Flag_Source := Get_Source_File_Index (Flag);
717 P := Text'First;
719 while P <= Text'Last loop
720 C := Text (P);
721 P := P + 1;
723 -- Check for insertion character
725 if C = '%' then
726 if P <= Text'Last and then Text (P) = '%' then
727 P := P + 1;
728 Set_Msg_Insertion_Name_Literal;
729 else
730 Set_Msg_Insertion_Name;
731 end if;
733 elsif C = '$' then
735 -- '$' is ignored
737 null;
739 elsif C = '{' then
740 Set_Msg_Insertion_File_Name;
742 elsif C = '}' then
744 -- '}' is ignored
746 null;
748 elsif C = '*' then
749 Set_Msg_Insertion_Reserved_Name;
751 elsif C = '&' then
753 -- '&' is ignored
755 null;
757 elsif C = '#' then
758 Set_Msg_Insertion_Line_Number (Error_Msg_Sloc, Flag);
760 elsif C = '\' then
761 Continuation := True;
763 elsif C = '@' then
764 Set_Msg_Insertion_Column;
766 elsif C = '^' then
767 Set_Msg_Insertion_Uint;
769 elsif C = '`' then
770 Manual_Quote_Mode := not Manual_Quote_Mode;
771 Set_Msg_Char ('"');
773 elsif C = '!' then
774 null;
776 elsif C = '?' then
777 null;
779 elsif C = '<' then
780 null;
782 elsif C = '|' then
783 null;
785 elsif C = ''' then
786 Set_Msg_Char (Text (P));
787 P := P + 1;
789 -- Upper case letter (start of reserved word if 2 or more)
791 elsif C in 'A' .. 'Z'
792 and then P <= Text'Last
793 and then Text (P) in 'A' .. 'Z'
794 then
795 P := P - 1;
796 Set_Msg_Insertion_Reserved_Word (Text, P);
798 elsif C = '~' then
799 Set_Msg_Str (Error_Msg_String (1 .. Error_Msg_Strlen));
801 -- Normal character with no special treatment
803 else
804 Set_Msg_Char (C);
805 end if;
807 end loop;
808 end Set_Msg_Text;
810 end Errutil;