[Ada] Update output of verbose error summary
[official-gcc.git] / gcc / ada / errout.adb
blob8c60a3f93596816499ee9fa2abd3ceebfae36fa9
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- E R R O U T --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-2020, 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 -- Warning: Error messages can be generated during Gigi processing by direct
27 -- calls to error message routines, so it is essential that the processing
28 -- in this body be consistent with the requirements for the Gigi processing
29 -- environment, and that in particular, no disallowed table expansion is
30 -- allowed to occur.
32 with Atree; use Atree;
33 with Casing; use Casing;
34 with Csets; use Csets;
35 with Debug; use Debug;
36 with Einfo; use Einfo;
37 with Erroutc; use Erroutc;
38 with Gnatvsn; use Gnatvsn;
39 with Lib; use Lib;
40 with Opt; use Opt;
41 with Nlists; use Nlists;
42 with Output; use Output;
43 with Scans; use Scans;
44 with Sem_Aux; use Sem_Aux;
45 with Sinput; use Sinput;
46 with Sinfo; use Sinfo;
47 with Snames; use Snames;
48 with Stand; use Stand;
49 with Stylesw; use Stylesw;
50 with Uname; use Uname;
52 package body Errout is
54 Errors_Must_Be_Ignored : Boolean := False;
55 -- Set to True by procedure Set_Ignore_Errors (True), when calls to error
56 -- message procedures should be ignored (when parsing irrelevant text in
57 -- sources being preprocessed).
59 Finalize_Called : Boolean := False;
60 -- Set True if the Finalize routine has been called
62 Record_Compilation_Errors : Boolean := False;
63 -- Record that a compilation error was witnessed during a given phase of
64 -- analysis for gnat2why. This is needed as Warning_Mode is modified twice
65 -- in gnat2why, hence Erroutc.Compilation_Errors can only return a suitable
66 -- value for each phase of analysis separately. This is updated at each
67 -- call to Compilation_Errors.
69 Warn_On_Instance : Boolean;
70 -- Flag set true for warning message to be posted on instance
72 ------------------------------------
73 -- Table of Non-Instance Messages --
74 ------------------------------------
76 -- This table contains an entry for every error message processed by the
77 -- Error_Msg routine that is not posted on generic (or inlined) instance.
78 -- As explained in further detail in the Error_Msg procedure body, this
79 -- table is used to avoid posting redundant messages on instances.
81 type NIM_Record is record
82 Msg : String_Ptr;
83 Loc : Source_Ptr;
84 end record;
85 -- Type used to store text and location of one message
87 package Non_Instance_Msgs is new Table.Table (
88 Table_Component_Type => NIM_Record,
89 Table_Index_Type => Int,
90 Table_Low_Bound => 1,
91 Table_Initial => 100,
92 Table_Increment => 100,
93 Table_Name => "Non_Instance_Msgs");
95 -----------------------
96 -- Local Subprograms --
97 -----------------------
99 procedure Error_Msg_Internal
100 (Msg : String;
101 Sptr : Source_Ptr;
102 Optr : Source_Ptr;
103 Msg_Cont : Boolean;
104 Node : Node_Id);
105 -- This is the low level routine used to post messages after dealing with
106 -- the issue of messages placed on instantiations (which get broken up
107 -- into separate calls in Error_Msg). Sptr is the location on which the
108 -- flag will be placed in the output. In the case where the flag is on
109 -- the template, this points directly to the template, not to one of the
110 -- instantiation copies of the template. Optr is the original location
111 -- used to flag the error, and this may indeed point to an instantiation
112 -- copy. So typically we can see Optr pointing to the template location
113 -- in an instantiation copy when Sptr points to the source location of
114 -- the actual instantiation (i.e the line with the new). Msg_Cont is
115 -- set true if this is a continuation message. Node is the relevant
116 -- Node_Id for this message, to be used to compute the enclosing entity if
117 -- Opt.Include_Subprogram_In_Messages is set.
119 function No_Warnings (N : Node_Or_Entity_Id) return Boolean;
120 -- Determines if warnings should be suppressed for the given node
122 function OK_Node (N : Node_Id) return Boolean;
123 -- Determines if a node is an OK node to place an error message on (return
124 -- True) or if the error message should be suppressed (return False). A
125 -- message is suppressed if the node already has an error posted on it,
126 -- or if it refers to an Etype that has an error posted on it, or if
127 -- it references an Entity that has an error posted on it.
129 procedure Output_Source_Line
130 (L : Physical_Line_Number;
131 Sfile : Source_File_Index;
132 Errs : Boolean);
133 -- Outputs text of source line L, in file S, together with preceding line
134 -- number, as described above for Output_Line_Number. The Errs parameter
135 -- indicates if there are errors attached to the line, which forces
136 -- listing on, even in the presence of pragma List (Off).
138 procedure Set_Msg_Insertion_Column;
139 -- Handle column number insertion (@ insertion character)
141 procedure Set_Msg_Insertion_Node;
142 -- Handle node (name from node) insertion (& insertion character)
144 procedure Set_Msg_Insertion_Type_Reference (Flag : Source_Ptr);
145 -- Handle type reference (right brace insertion character). Flag is the
146 -- location of the flag, which is provided for the internal call to
147 -- Set_Msg_Insertion_Line_Number,
149 procedure Set_Msg_Insertion_Unit_Name (Suffix : Boolean := True);
150 -- Handle unit name insertion ($ insertion character). Depending on Boolean
151 -- parameter Suffix, (spec) or (body) is appended after the unit name.
153 procedure Set_Msg_Node (Node : Node_Id);
154 -- Add the sequence of characters for the name associated with the given
155 -- node to the current message. For N_Designator, N_Selected_Component,
156 -- N_Defining_Program_Unit_Name, and N_Expanded_Name, the Prefix is
157 -- included as well.
159 procedure Set_Msg_Text (Text : String; Flag : Source_Ptr);
160 -- Add a sequence of characters to the current message. The characters may
161 -- be one of the special insertion characters (see documentation in spec).
162 -- Flag is the location at which the error is to be posted, which is used
163 -- to determine whether or not the # insertion needs a file name. The
164 -- variables Msg_Buffer are set on return Msglen.
166 procedure Set_Posted (N : Node_Id);
167 -- Sets the Error_Posted flag on the given node, and all its parents that
168 -- are subexpressions and then on the parent non-subexpression construct
169 -- that contains the original expression. If that parent is a named
170 -- association, the flag is further propagated to its parent. This is done
171 -- in order to guard against cascaded errors. Note that this call has an
172 -- effect for a serious error only.
174 procedure Set_Qualification (N : Nat; E : Entity_Id);
175 -- Outputs up to N levels of qualification for the given entity. For
176 -- example, the entity A.B.C.D will output B.C. if N = 2.
178 function Special_Msg_Delete
179 (Msg : String;
180 N : Node_Or_Entity_Id;
181 E : Node_Or_Entity_Id) return Boolean;
182 -- This function is called from Error_Msg_NEL, passing the message Msg,
183 -- node N on which the error is to be posted, and the entity or node E
184 -- to be used for an & insertion in the message if any. The job of this
185 -- procedure is to test for certain cascaded messages that we would like
186 -- to suppress. If the message is to be suppressed then we return True.
187 -- If the message should be generated (the normal case) False is returned.
189 procedure Unwind_Internal_Type (Ent : in out Entity_Id);
190 -- This procedure is given an entity id for an internal type, i.e. a type
191 -- with an internal name. It unwinds the type to try to get to something
192 -- reasonably printable, generating prefixes like "subtype of", "access
193 -- to", etc along the way in the buffer. The value in Ent on return is the
194 -- final name to be printed. Hopefully this is not an internal name, but in
195 -- some internal name cases, it is an internal name, and has to be printed
196 -- anyway (although in this case the message has been killed if possible).
197 -- The global variable Class_Flag is set to True if the resulting entity
198 -- should have 'Class appended to its name (see Add_Class procedure), and
199 -- is otherwise unchanged.
201 function Warn_Insertion return String;
202 -- This is called for warning messages only (so Warning_Msg_Char is set)
203 -- and returns a corresponding string to use at the beginning of generated
204 -- auxiliary messages, such as "in instantiation at ...".
205 -- 'a' .. 'z' returns "?x?"
206 -- 'A' .. 'Z' returns "?X?"
207 -- '*' returns "?*?"
208 -- '$' returns "?$?info: "
209 -- ' ' returns " "
210 -- No other settings are valid
212 -----------------------
213 -- Change_Error_Text --
214 -----------------------
216 procedure Change_Error_Text (Error_Id : Error_Msg_Id; New_Msg : String) is
217 Save_Next : Error_Msg_Id;
218 Err_Id : Error_Msg_Id := Error_Id;
220 begin
221 Set_Msg_Text (New_Msg, Errors.Table (Error_Id).Sptr);
222 Errors.Table (Error_Id).Text := new String'(Msg_Buffer (1 .. Msglen));
224 -- If in immediate error message mode, output modified error message now
225 -- This is just a bit tricky, because we want to output just a single
226 -- message, and the messages we modified is already linked in. We solve
227 -- this by temporarily resetting its forward pointer to empty.
229 if Debug_Flag_OO then
230 Save_Next := Errors.Table (Error_Id).Next;
231 Errors.Table (Error_Id).Next := No_Error_Msg;
232 Write_Eol;
233 Output_Source_Line
234 (Errors.Table (Error_Id).Line, Errors.Table (Error_Id).Sfile, True);
235 Output_Error_Msgs (Err_Id);
236 Errors.Table (Error_Id).Next := Save_Next;
237 end if;
238 end Change_Error_Text;
240 ------------------------
241 -- Compilation_Errors --
242 ------------------------
244 function Compilation_Errors return Boolean is
245 begin
246 if not Finalize_Called then
247 raise Program_Error;
249 -- Record that a compilation error was witnessed during a given phase of
250 -- analysis for gnat2why. This is needed as Warning_Mode is modified
251 -- twice in gnat2why, hence Erroutc.Compilation_Errors can only return a
252 -- suitable value for each phase of analysis separately.
254 else
255 Record_Compilation_Errors :=
256 Record_Compilation_Errors or else Erroutc.Compilation_Errors;
258 return Record_Compilation_Errors;
259 end if;
260 end Compilation_Errors;
262 --------------------------------------
263 -- Delete_Warning_And_Continuations --
264 --------------------------------------
266 procedure Delete_Warning_And_Continuations (Msg : Error_Msg_Id) is
267 Id : Error_Msg_Id;
269 begin
270 pragma Assert (not Errors.Table (Msg).Msg_Cont);
272 Id := Msg;
273 loop
274 declare
275 M : Error_Msg_Object renames Errors.Table (Id);
277 begin
278 if not M.Deleted then
279 M.Deleted := True;
280 Warnings_Detected := Warnings_Detected - 1;
282 if M.Info then
283 Warning_Info_Messages := Warning_Info_Messages - 1;
284 end if;
286 if M.Warn_Err then
287 Warnings_Treated_As_Errors := Warnings_Treated_As_Errors - 1;
288 end if;
289 end if;
291 Id := M.Next;
292 exit when Id = No_Error_Msg;
293 exit when not Errors.Table (Id).Msg_Cont;
294 end;
295 end loop;
296 end Delete_Warning_And_Continuations;
298 ---------------
299 -- Error_Msg --
300 ---------------
302 -- Error_Msg posts a flag at the given location, except that if the
303 -- Flag_Location points within a generic template and corresponds to an
304 -- instantiation of this generic template, then the actual message will be
305 -- posted on the generic instantiation, along with additional messages
306 -- referencing the generic declaration.
308 procedure Error_Msg (Msg : String; Flag_Location : Source_Ptr) is
309 begin
310 Error_Msg (Msg, Flag_Location, Current_Node);
311 end Error_Msg;
313 procedure Error_Msg
314 (Msg : String;
315 Flag_Location : Source_Ptr;
316 Is_Compile_Time_Pragma : Boolean)
318 Save_Is_Compile_Time_Msg : constant Boolean := Is_Compile_Time_Msg;
319 begin
320 Is_Compile_Time_Msg := Is_Compile_Time_Pragma;
321 Error_Msg (Msg, Flag_Location, Current_Node);
322 Is_Compile_Time_Msg := Save_Is_Compile_Time_Msg;
323 end Error_Msg;
325 procedure Error_Msg
326 (Msg : String;
327 Flag_Location : Source_Ptr;
328 N : Node_Id)
330 Sindex : Source_File_Index;
331 -- Source index for flag location
333 Orig_Loc : Source_Ptr;
334 -- Original location of Flag_Location (i.e. location in original
335 -- template in instantiation case, otherwise unchanged).
337 begin
338 -- Return if all errors are to be ignored
340 if Errors_Must_Be_Ignored then
341 return;
342 end if;
344 -- If we already have messages, and we are trying to place a message at
345 -- No_Location, then just ignore the attempt since we assume that what
346 -- is happening is some cascaded junk. Note that this is safe in the
347 -- sense that proceeding will surely bomb. We will also bomb if the flag
348 -- location is No_Location and we don't have any messages so far, but
349 -- that is a real bug and a legitimate bomb, so we go ahead.
351 if Flag_Location = No_Location
352 and then Total_Errors_Detected > 0
353 then
354 return;
355 end if;
357 -- Start of processing for new message
359 Sindex := Get_Source_File_Index (Flag_Location);
360 Prescan_Message (Msg);
361 Orig_Loc := Original_Location (Flag_Location);
363 -- If the current location is in an instantiation, the issue arises of
364 -- whether to post the message on the template or the instantiation.
366 -- The way we decide is to see if we have posted the same message on
367 -- the template when we compiled the template (the template is always
368 -- compiled before any instantiations). For this purpose, we use a
369 -- separate table of messages. The reason we do this is twofold:
371 -- First, the messages can get changed by various processing
372 -- including the insertion of tokens etc, making it hard to
373 -- do the comparison.
375 -- Second, we will suppress a warning on a template if it is not in
376 -- the current extended source unit. That's reasonable and means we
377 -- don't want the warning on the instantiation here either, but it
378 -- does mean that the main error table would not in any case include
379 -- the message.
381 if Flag_Location = Orig_Loc then
382 Non_Instance_Msgs.Append ((new String'(Msg), Flag_Location));
383 Warn_On_Instance := False;
385 -- Here we have an instance message
387 else
388 -- Delete if debug flag off, and this message duplicates a message
389 -- already posted on the corresponding template
391 if not Debug_Flag_GG then
392 for J in Non_Instance_Msgs.First .. Non_Instance_Msgs.Last loop
393 if Msg = Non_Instance_Msgs.Table (J).Msg.all
394 and then Non_Instance_Msgs.Table (J).Loc = Orig_Loc
395 then
396 return;
397 end if;
398 end loop;
399 end if;
401 -- No duplicate, so error/warning will be posted on instance
403 Warn_On_Instance := Is_Warning_Msg;
404 end if;
406 -- Ignore warning message that is suppressed for this location. Note
407 -- that style checks are not considered warning messages for this
408 -- purpose.
410 if Is_Warning_Msg and then Warnings_Suppressed (Orig_Loc) /= No_String
411 then
412 return;
414 -- For style messages, check too many messages so far
416 elsif Is_Style_Msg
417 and then Maximum_Messages /= 0
418 and then Warnings_Detected >= Maximum_Messages
419 then
420 return;
421 end if;
423 -- The idea at this stage is that we have two kinds of messages
425 -- First, we have those messages that are to be placed as requested at
426 -- Flag_Location. This includes messages that have nothing to do with
427 -- generics, and also messages placed on generic templates that reflect
428 -- an error in the template itself. For such messages we simply call
429 -- Error_Msg_Internal to place the message in the requested location.
431 if Instantiation (Sindex) = No_Location then
432 Error_Msg_Internal (Msg, Flag_Location, Flag_Location, False, N);
433 return;
434 end if;
436 -- If we are trying to flag an error in an instantiation, we may have
437 -- a generic contract violation. What we generate in this case is:
439 -- instantiation error at ...
440 -- original error message
442 -- or
444 -- warning: in instantiation at ...
445 -- warning: original warning message
447 -- or
449 -- info: in instantiation at ...
450 -- info: original info message
452 -- All these messages are posted at the location of the top level
453 -- instantiation. If there are nested instantiations, then the
454 -- instantiation error message can be repeated, pointing to each
455 -- of the relevant instantiations.
457 -- Note: the instantiation mechanism is also shared for inlining of
458 -- subprogram bodies when front end inlining is done. In this case the
459 -- messages have the form:
461 -- in inlined body at ...
462 -- original error message
464 -- or
466 -- warning: in inlined body at ...
467 -- warning: original warning message
469 -- or
471 -- info: in inlined body at ...
472 -- info: original info message
474 -- OK, here we have an instantiation error, and we need to generate the
475 -- error on the instantiation, rather than on the template.
477 declare
478 Actual_Error_Loc : Source_Ptr;
479 -- Location of outer level instantiation in instantiation case, or
480 -- just a copy of Flag_Location in the normal case. This is the
481 -- location where all error messages will actually be posted.
483 Save_Error_Msg_Sloc : constant Source_Ptr := Error_Msg_Sloc;
484 -- Save possible location set for caller's message. We need to use
485 -- Error_Msg_Sloc for the location of the instantiation error but we
486 -- have to preserve a possible original value.
488 X : Source_File_Index;
490 Msg_Cont_Status : Boolean;
491 -- Used to label continuation lines in instantiation case with
492 -- proper Msg_Cont status.
494 begin
495 -- Loop to find highest level instantiation, where all error
496 -- messages will be placed.
498 X := Sindex;
499 loop
500 Actual_Error_Loc := Instantiation (X);
501 X := Get_Source_File_Index (Actual_Error_Loc);
502 exit when Instantiation (X) = No_Location;
503 end loop;
505 -- Since we are generating the messages at the instantiation point in
506 -- any case, we do not want the references to the bad lines in the
507 -- instance to be annotated with the location of the instantiation.
509 Suppress_Instance_Location := True;
510 Msg_Cont_Status := False;
512 -- Loop to generate instantiation messages
514 Error_Msg_Sloc := Flag_Location;
515 X := Get_Source_File_Index (Flag_Location);
516 while Instantiation (X) /= No_Location loop
518 -- Suppress instantiation message on continuation lines
520 if Msg (Msg'First) /= '\' then
522 -- Case of inlined body
524 if Inlined_Body (X) then
525 if Is_Info_Msg then
526 Error_Msg_Internal
527 (Msg => "info: in inlined body #",
528 Sptr => Actual_Error_Loc,
529 Optr => Flag_Location,
530 Msg_Cont => Msg_Cont_Status,
531 Node => N);
533 elsif Is_Warning_Msg then
534 Error_Msg_Internal
535 (Msg => Warn_Insertion & "in inlined body #",
536 Sptr => Actual_Error_Loc,
537 Optr => Flag_Location,
538 Msg_Cont => Msg_Cont_Status,
539 Node => N);
541 elsif Is_Style_Msg then
542 Error_Msg_Internal
543 (Msg => "style: in inlined body #",
544 Sptr => Actual_Error_Loc,
545 Optr => Flag_Location,
546 Msg_Cont => Msg_Cont_Status,
547 Node => N);
549 else
550 Error_Msg_Internal
551 (Msg => "error in inlined body #",
552 Sptr => Actual_Error_Loc,
553 Optr => Flag_Location,
554 Msg_Cont => Msg_Cont_Status,
555 Node => N);
556 end if;
558 -- Case of generic instantiation
560 else
561 if Is_Info_Msg then
562 Error_Msg_Internal
563 (Msg => "info: in instantiation #",
564 Sptr => Actual_Error_Loc,
565 Optr => Flag_Location,
566 Msg_Cont => Msg_Cont_Status,
567 Node => N);
569 elsif Is_Warning_Msg then
570 Error_Msg_Internal
571 (Msg => Warn_Insertion & "in instantiation #",
572 Sptr => Actual_Error_Loc,
573 Optr => Flag_Location,
574 Msg_Cont => Msg_Cont_Status,
575 Node => N);
577 elsif Is_Style_Msg then
578 Error_Msg_Internal
579 (Msg => "style: in instantiation #",
580 Sptr => Actual_Error_Loc,
581 Optr => Flag_Location,
582 Msg_Cont => Msg_Cont_Status,
583 Node => N);
585 else
586 Error_Msg_Internal
587 (Msg => "instantiation error #",
588 Sptr => Actual_Error_Loc,
589 Optr => Flag_Location,
590 Msg_Cont => Msg_Cont_Status,
591 Node => N);
592 end if;
593 end if;
594 end if;
596 Error_Msg_Sloc := Instantiation (X);
597 X := Get_Source_File_Index (Error_Msg_Sloc);
598 Msg_Cont_Status := True;
599 end loop;
601 Suppress_Instance_Location := False;
602 Error_Msg_Sloc := Save_Error_Msg_Sloc;
604 -- Here we output the original message on the outer instantiation
606 Error_Msg_Internal
607 (Msg => Msg,
608 Sptr => Actual_Error_Loc,
609 Optr => Flag_Location,
610 Msg_Cont => Msg_Cont_Status,
611 Node => N);
612 end;
613 end Error_Msg;
615 --------------------------------
616 -- Error_Msg_Ada_2012_Feature --
617 --------------------------------
619 procedure Error_Msg_Ada_2012_Feature (Feature : String; Loc : Source_Ptr) is
620 begin
621 if Ada_Version < Ada_2012 then
622 Error_Msg (Feature & " is an Ada 2012 feature", Loc);
624 if No (Ada_Version_Pragma) then
625 Error_Msg ("\unit must be compiled with -gnat2012 switch", Loc);
626 else
627 Error_Msg_Sloc := Sloc (Ada_Version_Pragma);
628 Error_Msg ("\incompatible with Ada version set#", Loc);
629 end if;
630 end if;
631 end Error_Msg_Ada_2012_Feature;
633 ------------------
634 -- Error_Msg_AP --
635 ------------------
637 procedure Error_Msg_AP (Msg : String) is
638 S1 : Source_Ptr;
639 C : Character;
641 begin
642 -- If we had saved the Scan_Ptr value after scanning the previous
643 -- token, then we would have exactly the right place for putting
644 -- the flag immediately at hand. However, that would add at least
645 -- two instructions to a Scan call *just* to service the possibility
646 -- of an Error_Msg_AP call. So instead we reconstruct that value.
648 -- We have two possibilities, start with Prev_Token_Ptr and skip over
649 -- the current token, which is made harder by the possibility that this
650 -- token may be in error, or start with Token_Ptr and work backwards.
651 -- We used to take the second approach, but it's hard because of
652 -- comments, and harder still because things that look like comments
653 -- can appear inside strings. So now we take the first approach.
655 -- Note: in the case where there is no previous token, Prev_Token_Ptr
656 -- is set to Source_First, which is a reasonable position for the
657 -- error flag in this situation.
659 S1 := Prev_Token_Ptr;
660 C := Source (S1);
662 -- If the previous token is a string literal, we need a special approach
663 -- since there may be white space inside the literal and we don't want
664 -- to stop on that white space.
666 -- Note: since this is an error recovery issue anyway, it is not worth
667 -- worrying about special UTF_32 line terminator characters here.
669 if Prev_Token = Tok_String_Literal then
670 loop
671 S1 := S1 + 1;
673 if Source (S1) = C then
674 S1 := S1 + 1;
675 exit when Source (S1) /= C;
676 elsif Source (S1) in Line_Terminator then
677 exit;
678 end if;
679 end loop;
681 -- Character literal also needs special handling
683 elsif Prev_Token = Tok_Char_Literal then
684 S1 := S1 + 3;
686 -- Otherwise we search forward for the end of the current token, marked
687 -- by a line terminator, white space, a comment symbol or if we bump
688 -- into the following token (i.e. the current token).
690 -- Again, it is not worth worrying about UTF_32 special line terminator
691 -- characters in this context, since this is only for error recovery.
693 else
694 while Source (S1) not in Line_Terminator
695 and then Source (S1) /= ' '
696 and then Source (S1) /= ASCII.HT
697 and then (Source (S1) /= '-' or else Source (S1 + 1) /= '-')
698 and then S1 /= Token_Ptr
699 loop
700 S1 := S1 + 1;
701 end loop;
702 end if;
704 -- S1 is now set to the location for the flag
706 Error_Msg (Msg, S1);
707 end Error_Msg_AP;
709 ------------------
710 -- Error_Msg_BC --
711 ------------------
713 procedure Error_Msg_BC (Msg : String) is
714 begin
715 -- If we are at end of file, post the flag after the previous token
717 if Token = Tok_EOF then
718 Error_Msg_AP (Msg);
720 -- If we are at start of file, post the flag at the current token
722 elsif Token_Ptr = Source_First (Current_Source_File) then
723 Error_Msg_SC (Msg);
725 -- If the character before the current token is a space or a horizontal
726 -- tab, then we place the flag on this character (in the case of a tab
727 -- we would really like to place it in the "last" character of the tab
728 -- space, but that it too much trouble to worry about).
730 elsif Source (Token_Ptr - 1) = ' '
731 or else Source (Token_Ptr - 1) = ASCII.HT
732 then
733 Error_Msg (Msg, Token_Ptr - 1);
735 -- If there is no space or tab before the current token, then there is
736 -- no room to place the flag before the token, so we place it on the
737 -- token instead (this happens for example at the start of a line).
739 else
740 Error_Msg (Msg, Token_Ptr);
741 end if;
742 end Error_Msg_BC;
744 -------------------
745 -- Error_Msg_CRT --
746 -------------------
748 procedure Error_Msg_CRT (Feature : String; N : Node_Id) is
749 CNRT : constant String := " not allowed in no run time mode";
750 CCRT : constant String := " not supported by configuration>";
752 S : String (1 .. Feature'Length + 1 + CCRT'Length);
753 L : Natural;
755 begin
756 S (1) := '|';
757 S (2 .. Feature'Length + 1) := Feature;
758 L := Feature'Length + 2;
760 if No_Run_Time_Mode then
761 S (L .. L + CNRT'Length - 1) := CNRT;
762 L := L + CNRT'Length - 1;
764 else pragma Assert (Configurable_Run_Time_Mode);
765 S (L .. L + CCRT'Length - 1) := CCRT;
766 L := L + CCRT'Length - 1;
767 end if;
769 Error_Msg_N (S (1 .. L), N);
770 Configurable_Run_Time_Violations := Configurable_Run_Time_Violations + 1;
771 end Error_Msg_CRT;
773 ------------------
774 -- Error_Msg_PT --
775 ------------------
777 procedure Error_Msg_PT (E : Entity_Id; Iface_Prim : Entity_Id) is
778 begin
779 Error_Msg_N
780 ("illegal overriding of subprogram inherited from interface", E);
782 Error_Msg_Sloc := Sloc (Iface_Prim);
784 if Ekind (E) = E_Function then
785 Error_Msg_N
786 ("\first formal of & declared # must be of mode `IN` "
787 & "or access-to-constant", E);
788 else
789 Error_Msg_N
790 ("\first formal of & declared # must be of mode `OUT`, `IN OUT` "
791 & "or access-to-variable", E);
792 end if;
793 end Error_Msg_PT;
795 -----------------
796 -- Error_Msg_F --
797 -----------------
799 procedure Error_Msg_F (Msg : String; N : Node_Id) is
800 begin
801 Error_Msg_NEL (Msg, N, N, Sloc (First_Node (N)));
802 end Error_Msg_F;
804 ------------------
805 -- Error_Msg_FE --
806 ------------------
808 procedure Error_Msg_FE
809 (Msg : String;
810 N : Node_Id;
811 E : Node_Or_Entity_Id)
813 begin
814 Error_Msg_NEL (Msg, N, E, Sloc (First_Node (N)));
815 end Error_Msg_FE;
817 ------------------------
818 -- Error_Msg_Internal --
819 ------------------------
821 procedure Error_Msg_Internal
822 (Msg : String;
823 Sptr : Source_Ptr;
824 Optr : Source_Ptr;
825 Msg_Cont : Boolean;
826 Node : Node_Id)
828 Next_Msg : Error_Msg_Id;
829 -- Pointer to next message at insertion point
831 Prev_Msg : Error_Msg_Id;
832 -- Pointer to previous message at insertion point
834 Temp_Msg : Error_Msg_Id;
836 Warn_Err : Boolean;
837 -- Set if warning to be treated as error
839 procedure Handle_Serious_Error;
840 -- Internal procedure to do all error message handling for a serious
841 -- error message, other than bumping the error counts and arranging
842 -- for the message to be output.
844 --------------------------
845 -- Handle_Serious_Error --
846 --------------------------
848 procedure Handle_Serious_Error is
849 begin
850 -- Turn off code generation if not done already
852 if Operating_Mode = Generate_Code then
853 Operating_Mode := Check_Semantics;
854 Expander_Active := False;
855 end if;
857 -- Set the fatal error flag in the unit table unless we are in
858 -- Try_Semantics mode (in which case we set ignored mode if not
859 -- currently set. This stops the semantics from being performed
860 -- if we find a serious error. This is skipped if we are currently
861 -- dealing with the configuration pragma file.
863 if Current_Source_Unit /= No_Unit then
864 declare
865 U : constant Unit_Number_Type := Get_Source_Unit (Sptr);
866 begin
867 if Try_Semantics then
868 if Fatal_Error (U) = None then
869 Set_Fatal_Error (U, Error_Ignored);
870 end if;
871 else
872 Set_Fatal_Error (U, Error_Detected);
873 end if;
874 end;
875 end if;
877 -- Disable warnings on unused use clauses and the like. Otherwise, an
878 -- error might hide a reference to an entity in a used package, so
879 -- after fixing the error, the use clause no longer looks like it was
880 -- unused.
882 Check_Unreferenced := False;
883 Check_Unreferenced_Formals := False;
884 end Handle_Serious_Error;
886 -- Start of processing for Error_Msg_Internal
888 begin
889 if Raise_Exception_On_Error /= 0 then
890 raise Error_Msg_Exception;
891 end if;
893 Continuation := Msg_Cont;
894 Continuation_New_Line := False;
895 Suppress_Message := False;
896 Kill_Message := False;
897 Set_Msg_Text (Msg, Sptr);
899 -- Kill continuation if parent message killed
901 if Continuation and Last_Killed then
902 return;
903 end if;
905 -- Return without doing anything if message is suppressed
907 if Suppress_Message
908 and then not All_Errors_Mode
909 and then not Is_Warning_Msg
910 and then not Is_Unconditional_Msg
911 then
912 if not Continuation then
913 Last_Killed := True;
914 end if;
916 return;
917 end if;
919 -- Return without doing anything if message is killed and this is not
920 -- the first error message. The philosophy is that if we get a weird
921 -- error message and we already have had a message, then we hope the
922 -- weird message is a junk cascaded message
924 if Kill_Message
925 and then not All_Errors_Mode
926 and then Total_Errors_Detected /= 0
927 then
928 if not Continuation then
929 Last_Killed := True;
930 end if;
932 return;
933 end if;
935 -- Special check for warning message to see if it should be output
937 if Is_Warning_Msg then
939 -- Immediate return if warning message and warnings are suppressed
941 if Warnings_Suppressed (Optr) /= No_String
942 or else
943 Warnings_Suppressed (Sptr) /= No_String
944 then
945 Cur_Msg := No_Error_Msg;
946 return;
947 end if;
949 -- If the flag location is in the main extended source unit then for
950 -- sure we want the warning since it definitely belongs
952 if In_Extended_Main_Source_Unit (Sptr) then
953 null;
955 -- If the main unit has not been read yet. the warning must be on
956 -- a configuration file: gnat.adc or user-defined. This means we
957 -- are not parsing the main unit yet, so skip following checks.
959 elsif No (Cunit (Main_Unit)) then
960 null;
962 -- If the flag location is not in the main extended source unit, then
963 -- we want to eliminate the warning, unless it is in the extended
964 -- main code unit and we want warnings on the instance.
966 elsif In_Extended_Main_Code_Unit (Sptr) and then Warn_On_Instance then
967 null;
969 -- Keep warning if debug flag G set
971 elsif Debug_Flag_GG then
972 null;
974 -- Keep warning if message text contains !!
976 elsif Has_Double_Exclam then
977 null;
979 -- Here is where we delete a warning from a with'ed unit
981 else
982 Cur_Msg := No_Error_Msg;
984 if not Continuation then
985 Last_Killed := True;
986 end if;
988 return;
989 end if;
990 end if;
992 -- If message is to be ignored in special ignore message mode, this is
993 -- where we do this special processing, bypassing message output.
995 if Ignore_Errors_Enable > 0 then
996 if Is_Serious_Error then
997 Handle_Serious_Error;
998 end if;
1000 return;
1001 end if;
1003 -- If error message line length set, and this is a continuation message
1004 -- then all we do is to append the text to the text of the last message
1005 -- with a comma space separator (eliminating a possible (style) or
1006 -- info prefix).
1008 if Error_Msg_Line_Length /= 0 and then Continuation then
1009 Cur_Msg := Errors.Last;
1011 declare
1012 Oldm : String_Ptr := Errors.Table (Cur_Msg).Text;
1013 Newm : String (1 .. Oldm'Last + 2 + Msglen);
1014 Newl : Natural;
1015 M : Natural;
1017 begin
1018 -- First copy old message to new one and free it
1020 Newm (Oldm'Range) := Oldm.all;
1021 Newl := Oldm'Length;
1022 Free (Oldm);
1024 -- Remove (style) or info: at start of message
1026 if Msglen > 8 and then Msg_Buffer (1 .. 8) = "(style) " then
1027 M := 9;
1029 elsif Msglen > 6 and then Msg_Buffer (1 .. 6) = "info: " then
1030 M := 7;
1032 else
1033 M := 1;
1034 end if;
1036 -- Now deal with separation between messages. Normally this is
1037 -- simply comma space, but there are some special cases.
1039 -- If continuation new line, then put actual NL character in msg
1041 if Continuation_New_Line then
1042 Newl := Newl + 1;
1043 Newm (Newl) := ASCII.LF;
1045 -- If continuation message is enclosed in parentheses, then
1046 -- special treatment (don't need a comma, and we want to combine
1047 -- successive parenthetical remarks into a single one with
1048 -- separating commas).
1050 elsif Msg_Buffer (M) = '(' and then Msg_Buffer (Msglen) = ')' then
1052 -- Case where existing message ends in right paren, remove
1053 -- and separate parenthetical remarks with a comma.
1055 if Newm (Newl) = ')' then
1056 Newm (Newl) := ',';
1057 Msg_Buffer (M) := ' ';
1059 -- Case where we are adding new parenthetical comment
1061 else
1062 Newl := Newl + 1;
1063 Newm (Newl) := ' ';
1064 end if;
1066 -- Case where continuation not in parens and no new line
1068 else
1069 Newm (Newl + 1 .. Newl + 2) := ", ";
1070 Newl := Newl + 2;
1071 end if;
1073 -- Append new message
1075 Newm (Newl + 1 .. Newl + Msglen - M + 1) :=
1076 Msg_Buffer (M .. Msglen);
1077 Newl := Newl + Msglen - M + 1;
1078 Errors.Table (Cur_Msg).Text := new String'(Newm (1 .. Newl));
1080 -- Update warning msg flag and message doc char if needed
1082 if Is_Warning_Msg then
1083 if not Errors.Table (Cur_Msg).Warn then
1084 Errors.Table (Cur_Msg).Warn := True;
1085 Errors.Table (Cur_Msg).Warn_Chr := Warning_Msg_Char;
1087 elsif Warning_Msg_Char /= ' ' then
1088 Errors.Table (Cur_Msg).Warn_Chr := Warning_Msg_Char;
1089 end if;
1090 end if;
1091 end;
1093 return;
1094 end if;
1096 -- Here we build a new error object
1098 Errors.Append
1099 ((Text => new String'(Msg_Buffer (1 .. Msglen)),
1100 Next => No_Error_Msg,
1101 Prev => No_Error_Msg,
1102 Sptr => Sptr,
1103 Optr => Optr,
1104 Sfile => Get_Source_File_Index (Sptr),
1105 Line => Get_Physical_Line_Number (Sptr),
1106 Col => Get_Column_Number (Sptr),
1107 Compile_Time_Pragma => Is_Compile_Time_Msg,
1108 Warn => Is_Warning_Msg,
1109 Info => Is_Info_Msg,
1110 Check => Is_Check_Msg,
1111 Warn_Err => False, -- reset below
1112 Warn_Chr => Warning_Msg_Char,
1113 Style => Is_Style_Msg,
1114 Serious => Is_Serious_Error,
1115 Uncond => Is_Unconditional_Msg,
1116 Msg_Cont => Continuation,
1117 Deleted => False,
1118 Node => Node));
1119 Cur_Msg := Errors.Last;
1121 -- Test if warning to be treated as error
1123 Warn_Err :=
1124 (Is_Warning_Msg or Is_Style_Msg)
1125 and then (Warning_Treated_As_Error (Msg_Buffer (1 .. Msglen))
1126 or else
1127 Warning_Treated_As_Error (Get_Warning_Tag (Cur_Msg)));
1129 -- Propagate Warn_Err to this message and preceding continuations
1131 for J in reverse 1 .. Errors.Last loop
1132 Errors.Table (J).Warn_Err := Warn_Err;
1133 exit when not Errors.Table (J).Msg_Cont;
1134 end loop;
1136 -- If immediate errors mode set, output error message now. Also output
1137 -- now if the -d1 debug flag is set (so node number message comes out
1138 -- just before actual error message)
1140 if Debug_Flag_OO or else Debug_Flag_1 then
1141 Write_Eol;
1142 Output_Source_Line
1143 (Errors.Table (Cur_Msg).Line, Errors.Table (Cur_Msg).Sfile, True);
1144 Temp_Msg := Cur_Msg;
1145 Output_Error_Msgs (Temp_Msg);
1147 -- If not in immediate errors mode, then we insert the message in the
1148 -- error chain for later output by Finalize. The messages are sorted
1149 -- first by unit (main unit comes first), and within a unit by source
1150 -- location (earlier flag location first in the chain).
1152 else
1153 -- First a quick check, does this belong at the very end of the chain
1154 -- of error messages. This saves a lot of time in the normal case if
1155 -- there are lots of messages.
1157 if Last_Error_Msg /= No_Error_Msg
1158 and then Errors.Table (Cur_Msg).Sfile =
1159 Errors.Table (Last_Error_Msg).Sfile
1160 and then (Sptr > Errors.Table (Last_Error_Msg).Sptr
1161 or else
1162 (Sptr = Errors.Table (Last_Error_Msg).Sptr
1163 and then
1164 Optr > Errors.Table (Last_Error_Msg).Optr))
1165 then
1166 Prev_Msg := Last_Error_Msg;
1167 Next_Msg := No_Error_Msg;
1169 -- Otherwise do a full sequential search for the insertion point
1171 else
1172 Prev_Msg := No_Error_Msg;
1173 Next_Msg := First_Error_Msg;
1174 while Next_Msg /= No_Error_Msg loop
1175 exit when
1176 Errors.Table (Cur_Msg).Sfile < Errors.Table (Next_Msg).Sfile;
1178 if Errors.Table (Cur_Msg).Sfile = Errors.Table (Next_Msg).Sfile
1179 then
1180 exit when Sptr < Errors.Table (Next_Msg).Sptr
1181 or else (Sptr = Errors.Table (Next_Msg).Sptr
1182 and then Optr < Errors.Table (Next_Msg).Optr);
1183 end if;
1185 Prev_Msg := Next_Msg;
1186 Next_Msg := Errors.Table (Next_Msg).Next;
1187 end loop;
1188 end if;
1190 -- Now we insert the new message in the error chain.
1192 -- The possible insertion point for the new message is after Prev_Msg
1193 -- and before Next_Msg. However, this is where we do a special check
1194 -- for redundant parsing messages, defined as messages posted on the
1195 -- same line. The idea here is that probably such messages are junk
1196 -- from the parser recovering. In full errors mode, we don't do this
1197 -- deletion, but otherwise such messages are discarded at this stage.
1199 if Prev_Msg /= No_Error_Msg
1200 and then Errors.Table (Prev_Msg).Line =
1201 Errors.Table (Cur_Msg).Line
1202 and then Errors.Table (Prev_Msg).Sfile =
1203 Errors.Table (Cur_Msg).Sfile
1204 and then Compiler_State = Parsing
1205 and then not All_Errors_Mode
1206 then
1207 -- Don't delete unconditional messages and at this stage, don't
1208 -- delete continuation lines; we attempted to delete those earlier
1209 -- if the parent message was deleted.
1211 if not Errors.Table (Cur_Msg).Uncond
1212 and then not Continuation
1213 then
1214 -- Don't delete if prev msg is warning and new msg is an error.
1215 -- This is because we don't want a real error masked by a
1216 -- warning. In all other cases (that is parse errors for the
1217 -- same line that are not unconditional) we do delete the
1218 -- message. This helps to avoid junk extra messages from
1219 -- cascaded parsing errors
1221 if not (Errors.Table (Prev_Msg).Warn
1222 or else
1223 Errors.Table (Prev_Msg).Style)
1224 or else
1225 (Errors.Table (Cur_Msg).Warn
1226 or else
1227 Errors.Table (Cur_Msg).Style)
1228 then
1229 -- All tests passed, delete the message by simply returning
1230 -- without any further processing.
1232 pragma Assert (not Continuation);
1234 Last_Killed := True;
1235 return;
1236 end if;
1237 end if;
1238 end if;
1240 -- Come here if message is to be inserted in the error chain
1242 if not Continuation then
1243 Last_Killed := False;
1244 end if;
1246 if Prev_Msg = No_Error_Msg then
1247 First_Error_Msg := Cur_Msg;
1248 else
1249 Errors.Table (Prev_Msg).Next := Cur_Msg;
1250 end if;
1252 Errors.Table (Cur_Msg).Next := Next_Msg;
1254 if Next_Msg = No_Error_Msg then
1255 Last_Error_Msg := Cur_Msg;
1256 end if;
1257 end if;
1259 -- Bump appropriate statistics counts
1261 if Errors.Table (Cur_Msg).Info then
1263 -- Could be (usually is) both "info" and "warning"
1265 if Errors.Table (Cur_Msg).Warn then
1266 Warning_Info_Messages := Warning_Info_Messages + 1;
1267 Warnings_Detected := Warnings_Detected + 1;
1268 else
1269 Report_Info_Messages := Report_Info_Messages + 1;
1270 end if;
1272 elsif Errors.Table (Cur_Msg).Warn
1273 or else Errors.Table (Cur_Msg).Style
1274 then
1275 Warnings_Detected := Warnings_Detected + 1;
1277 elsif Errors.Table (Cur_Msg).Check then
1278 Check_Messages := Check_Messages + 1;
1280 else
1281 Total_Errors_Detected := Total_Errors_Detected + 1;
1283 if Errors.Table (Cur_Msg).Serious then
1284 Serious_Errors_Detected := Serious_Errors_Detected + 1;
1285 Handle_Serious_Error;
1287 -- If not serious error, set Fatal_Error to indicate ignored error
1289 else
1290 declare
1291 U : constant Unit_Number_Type := Get_Source_Unit (Sptr);
1292 begin
1293 if Fatal_Error (U) = None then
1294 Set_Fatal_Error (U, Error_Ignored);
1295 end if;
1296 end;
1297 end if;
1298 end if;
1300 -- Record warning message issued
1302 if Errors.Table (Cur_Msg).Warn
1303 and then not Errors.Table (Cur_Msg).Msg_Cont
1304 then
1305 Warning_Msg := Cur_Msg;
1306 end if;
1308 -- If too many warnings turn off warnings
1310 if Maximum_Messages /= 0 then
1311 if Warnings_Detected = Maximum_Messages then
1312 Warning_Mode := Suppress;
1313 end if;
1315 -- If too many errors abandon compilation
1317 if Total_Errors_Detected = Maximum_Messages then
1318 raise Unrecoverable_Error;
1319 end if;
1320 end if;
1321 end Error_Msg_Internal;
1323 -----------------
1324 -- Error_Msg_N --
1325 -----------------
1327 procedure Error_Msg_N (Msg : String; N : Node_Or_Entity_Id) is
1328 begin
1329 Error_Msg_NEL (Msg, N, N, Sloc (N));
1330 end Error_Msg_N;
1332 ------------------
1333 -- Error_Msg_NE --
1334 ------------------
1336 procedure Error_Msg_NE
1337 (Msg : String;
1338 N : Node_Or_Entity_Id;
1339 E : Node_Or_Entity_Id)
1341 begin
1342 Error_Msg_NEL (Msg, N, E, Sloc (N));
1343 end Error_Msg_NE;
1345 -------------------
1346 -- Error_Msg_NEL --
1347 -------------------
1349 procedure Error_Msg_NEL
1350 (Msg : String;
1351 N : Node_Or_Entity_Id;
1352 E : Node_Or_Entity_Id;
1353 Flag_Location : Source_Ptr)
1355 begin
1356 if Special_Msg_Delete (Msg, N, E) then
1357 return;
1358 end if;
1360 Prescan_Message (Msg);
1362 -- Special handling for warning messages
1364 if Is_Warning_Msg then
1366 -- Suppress if no warnings set for either entity or node
1368 if No_Warnings (N) or else No_Warnings (E) then
1370 -- Disable any continuation messages as well
1372 Last_Killed := True;
1373 return;
1374 end if;
1376 -- Suppress if inside loop that is known to be null or is probably
1377 -- null (case where loop executes only if invalid values present).
1378 -- In either case warnings in the loop are likely to be junk.
1380 declare
1381 P : Node_Id;
1383 begin
1384 P := Parent (N);
1385 while Present (P) loop
1386 if Nkind (P) = N_Loop_Statement
1387 and then Suppress_Loop_Warnings (P)
1388 then
1389 return;
1390 end if;
1392 P := Parent (P);
1393 end loop;
1394 end;
1395 end if;
1397 -- Test for message to be output
1399 if All_Errors_Mode
1400 or else Is_Unconditional_Msg
1401 or else Is_Warning_Msg
1402 or else OK_Node (N)
1403 or else (Msg (Msg'First) = '\' and then not Last_Killed)
1404 then
1405 Debug_Output (N);
1406 Error_Msg_Node_1 := E;
1407 Error_Msg (Msg, Flag_Location, N);
1409 else
1410 Last_Killed := True;
1411 end if;
1413 Set_Posted (N);
1414 end Error_Msg_NEL;
1416 ------------------
1417 -- Error_Msg_NW --
1418 ------------------
1420 procedure Error_Msg_NW
1421 (Eflag : Boolean;
1422 Msg : String;
1423 N : Node_Or_Entity_Id)
1425 begin
1426 if Eflag
1427 and then In_Extended_Main_Source_Unit (N)
1428 and then Comes_From_Source (N)
1429 then
1430 Error_Msg_NEL (Msg, N, N, Sloc (N));
1431 end if;
1432 end Error_Msg_NW;
1434 -----------------
1435 -- Error_Msg_S --
1436 -----------------
1438 procedure Error_Msg_S (Msg : String) is
1439 begin
1440 Error_Msg (Msg, Scan_Ptr);
1441 end Error_Msg_S;
1443 ------------------
1444 -- Error_Msg_SC --
1445 ------------------
1447 procedure Error_Msg_SC (Msg : String) is
1448 begin
1449 -- If we are at end of file, post the flag after the previous token
1451 if Token = Tok_EOF then
1452 Error_Msg_AP (Msg);
1454 -- For all other cases the message is posted at the current token
1455 -- pointer position
1457 else
1458 Error_Msg (Msg, Token_Ptr);
1459 end if;
1460 end Error_Msg_SC;
1462 ------------------
1463 -- Error_Msg_SP --
1464 ------------------
1466 procedure Error_Msg_SP (Msg : String) is
1467 begin
1468 -- Note: in the case where there is no previous token, Prev_Token_Ptr
1469 -- is set to Source_First, which is a reasonable position for the
1470 -- error flag in this situation
1472 Error_Msg (Msg, Prev_Token_Ptr);
1473 end Error_Msg_SP;
1475 --------------
1476 -- Finalize --
1477 --------------
1479 procedure Finalize (Last_Call : Boolean) is
1480 Cur : Error_Msg_Id;
1481 Nxt : Error_Msg_Id;
1482 F : Error_Msg_Id;
1484 procedure Delete_Warning (E : Error_Msg_Id);
1485 -- Delete a warning msg if not already deleted and adjust warning count
1487 --------------------
1488 -- Delete_Warning --
1489 --------------------
1491 procedure Delete_Warning (E : Error_Msg_Id) is
1492 begin
1493 if not Errors.Table (E).Deleted then
1494 Errors.Table (E).Deleted := True;
1495 Warnings_Detected := Warnings_Detected - 1;
1497 if Errors.Table (E).Info then
1498 Warning_Info_Messages := Warning_Info_Messages - 1;
1499 end if;
1500 end if;
1501 end Delete_Warning;
1503 -- Start of processing for Finalize
1505 begin
1506 -- Set Prev pointers
1508 Cur := First_Error_Msg;
1509 while Cur /= No_Error_Msg loop
1510 Nxt := Errors.Table (Cur).Next;
1511 exit when Nxt = No_Error_Msg;
1512 Errors.Table (Nxt).Prev := Cur;
1513 Cur := Nxt;
1514 end loop;
1516 -- Eliminate any duplicated error messages from the list. This is
1517 -- done after the fact to avoid problems with Change_Error_Text.
1519 Cur := First_Error_Msg;
1520 while Cur /= No_Error_Msg loop
1521 Nxt := Errors.Table (Cur).Next;
1523 F := Nxt;
1524 while F /= No_Error_Msg
1525 and then Errors.Table (F).Sptr = Errors.Table (Cur).Sptr
1526 loop
1527 Check_Duplicate_Message (Cur, F);
1528 F := Errors.Table (F).Next;
1529 end loop;
1531 Cur := Nxt;
1532 end loop;
1534 -- Mark any messages suppressed by specific warnings as Deleted
1536 Cur := First_Error_Msg;
1537 while Cur /= No_Error_Msg loop
1538 declare
1539 CE : Error_Msg_Object renames Errors.Table (Cur);
1540 Tag : constant String := Get_Warning_Tag (Cur);
1542 begin
1543 if (CE.Warn and not CE.Deleted)
1544 and then
1545 (Warning_Specifically_Suppressed (CE.Sptr, CE.Text, Tag) /=
1546 No_String
1547 or else
1548 Warning_Specifically_Suppressed (CE.Optr, CE.Text, Tag) /=
1549 No_String)
1550 then
1551 Delete_Warning (Cur);
1553 -- If this is a continuation, delete previous parts of message
1555 F := Cur;
1556 while Errors.Table (F).Msg_Cont loop
1557 F := Errors.Table (F).Prev;
1558 exit when F = No_Error_Msg;
1559 Delete_Warning (F);
1560 end loop;
1562 -- Delete any following continuations
1564 F := Cur;
1565 loop
1566 F := Errors.Table (F).Next;
1567 exit when F = No_Error_Msg;
1568 exit when not Errors.Table (F).Msg_Cont;
1569 Delete_Warning (F);
1570 end loop;
1571 end if;
1572 end;
1574 Cur := Errors.Table (Cur).Next;
1575 end loop;
1577 Finalize_Called := True;
1579 -- Check consistency of specific warnings (may add warnings). We only
1580 -- do this on the last call, after all possible warnings are posted.
1582 if Last_Call then
1583 Validate_Specific_Warnings (Error_Msg'Access);
1584 end if;
1585 end Finalize;
1587 ----------------
1588 -- First_Node --
1589 ----------------
1591 function First_Node (C : Node_Id) return Node_Id is
1592 Orig : constant Node_Id := Original_Node (C);
1593 Loc : constant Source_Ptr := Sloc (Orig);
1594 Sfile : constant Source_File_Index := Get_Source_File_Index (Loc);
1595 Earliest : Node_Id;
1596 Eloc : Source_Ptr;
1598 function Test_Earlier (N : Node_Id) return Traverse_Result;
1599 -- Function applied to every node in the construct
1601 procedure Search_Tree_First is new Traverse_Proc (Test_Earlier);
1602 -- Create traversal procedure
1604 ------------------
1605 -- Test_Earlier --
1606 ------------------
1608 function Test_Earlier (N : Node_Id) return Traverse_Result is
1609 Norig : constant Node_Id := Original_Node (N);
1610 Loc : constant Source_Ptr := Sloc (Norig);
1612 begin
1613 -- Check for earlier
1615 if Loc < Eloc
1617 -- Ignore nodes with no useful location information
1619 and then Loc /= Standard_Location
1620 and then Loc /= No_Location
1622 -- Ignore nodes from a different file. This ensures against cases
1623 -- of strange foreign code somehow being present. We don't want
1624 -- wild placement of messages if that happens.
1626 and then Get_Source_File_Index (Loc) = Sfile
1627 then
1628 Earliest := Norig;
1629 Eloc := Loc;
1630 end if;
1632 return OK_Orig;
1633 end Test_Earlier;
1635 -- Start of processing for First_Node
1637 begin
1638 if Nkind (Orig) in N_Subexpr then
1639 Earliest := Orig;
1640 Eloc := Loc;
1641 Search_Tree_First (Orig);
1642 return Earliest;
1644 else
1645 return Orig;
1646 end if;
1647 end First_Node;
1649 ----------------
1650 -- First_Sloc --
1651 ----------------
1653 function First_Sloc (N : Node_Id) return Source_Ptr is
1654 SI : constant Source_File_Index := Source_Index (Get_Source_Unit (N));
1655 SF : constant Source_Ptr := Source_First (SI);
1656 F : Node_Id;
1657 S : Source_Ptr;
1659 begin
1660 F := First_Node (N);
1661 S := Sloc (F);
1663 -- The following circuit is a bit subtle. When we have parenthesized
1664 -- expressions, then the Sloc will not record the location of the paren,
1665 -- but we would like to post the flag on the paren. So what we do is to
1666 -- crawl up the tree from the First_Node, adjusting the Sloc value for
1667 -- any parentheses we know are present. Yes, we know this circuit is not
1668 -- 100% reliable (e.g. because we don't record all possible paren level
1669 -- values), but this is only for an error message so it is good enough.
1671 Node_Loop : loop
1672 Paren_Loop : for J in 1 .. Paren_Count (F) loop
1674 -- We don't look more than 12 characters behind the current
1675 -- location, and in any case not past the front of the source.
1677 Search_Loop : for K in 1 .. 12 loop
1678 exit Search_Loop when S = SF;
1680 if Source_Text (SI) (S - 1) = '(' then
1681 S := S - 1;
1682 exit Search_Loop;
1684 elsif Source_Text (SI) (S - 1) <= ' ' then
1685 S := S - 1;
1687 else
1688 exit Search_Loop;
1689 end if;
1690 end loop Search_Loop;
1691 end loop Paren_Loop;
1693 exit Node_Loop when F = N;
1694 F := Parent (F);
1695 exit Node_Loop when Nkind (F) not in N_Subexpr;
1696 end loop Node_Loop;
1698 return S;
1699 end First_Sloc;
1701 -----------------------
1702 -- Get_Ignore_Errors --
1703 -----------------------
1705 function Get_Ignore_Errors return Boolean is
1706 begin
1707 return Errors_Must_Be_Ignored;
1708 end Get_Ignore_Errors;
1710 ----------------
1711 -- Initialize --
1712 ----------------
1714 procedure Initialize is
1715 begin
1716 Errors.Init;
1717 First_Error_Msg := No_Error_Msg;
1718 Last_Error_Msg := No_Error_Msg;
1719 Serious_Errors_Detected := 0;
1720 Total_Errors_Detected := 0;
1721 Cur_Msg := No_Error_Msg;
1722 List_Pragmas.Init;
1724 -- Reset counts for warnings
1726 Reset_Warnings;
1728 -- Initialize warnings tables
1730 Warnings.Init;
1731 Specific_Warnings.Init;
1732 end Initialize;
1734 -------------------------------
1735 -- Is_Size_Too_Small_Message --
1736 -------------------------------
1738 function Is_Size_Too_Small_Message (S : String) return Boolean is
1739 Size_For : constant String := "size for";
1740 pragma Assert (Size_Too_Small_Message (1 .. Size_For'Last) = Size_For);
1741 -- Assert that Size_Too_Small_Message starts with Size_For
1742 begin
1743 return S'Length >= Size_For'Length
1744 and then S (S'First .. S'First + Size_For'Length - 1) = Size_For;
1745 -- True if S starts with Size_For
1746 end Is_Size_Too_Small_Message;
1748 -----------------
1749 -- No_Warnings --
1750 -----------------
1752 function No_Warnings (N : Node_Or_Entity_Id) return Boolean is
1753 begin
1754 if Error_Posted (N) then
1755 return True;
1757 elsif Nkind (N) in N_Entity and then Has_Warnings_Off (N) then
1758 return True;
1760 elsif Is_Entity_Name (N)
1761 and then Present (Entity (N))
1762 and then Has_Warnings_Off (Entity (N))
1763 then
1764 return True;
1766 else
1767 return False;
1768 end if;
1769 end No_Warnings;
1771 -------------
1772 -- OK_Node --
1773 -------------
1775 function OK_Node (N : Node_Id) return Boolean is
1776 K : constant Node_Kind := Nkind (N);
1778 begin
1779 if Error_Posted (N) then
1780 return False;
1782 elsif K in N_Has_Etype
1783 and then Present (Etype (N))
1784 and then Error_Posted (Etype (N))
1785 then
1786 return False;
1788 elsif (K in N_Op
1789 or else K = N_Attribute_Reference
1790 or else K = N_Character_Literal
1791 or else K = N_Expanded_Name
1792 or else K = N_Identifier
1793 or else K = N_Operator_Symbol)
1794 and then Present (Entity (N))
1795 and then Error_Posted (Entity (N))
1796 then
1797 return False;
1798 else
1799 return True;
1800 end if;
1801 end OK_Node;
1803 ---------------------
1804 -- Output_Messages --
1805 ---------------------
1807 procedure Output_Messages is
1808 E : Error_Msg_Id;
1809 Err_Flag : Boolean;
1811 procedure Write_Error_Summary;
1812 -- Write error summary
1814 procedure Write_Header (Sfile : Source_File_Index);
1815 -- Write header line (compiling or checking given file)
1817 procedure Write_Max_Errors;
1818 -- Write message if max errors reached
1820 -------------------------
1821 -- Write_Error_Summary --
1822 -------------------------
1824 procedure Write_Error_Summary is
1825 begin
1826 -- Extra blank line if error messages or source listing were output
1828 if Total_Errors_Detected + Warnings_Detected > 0 or else Full_List
1829 then
1830 Write_Eol;
1831 end if;
1833 -- Message giving number of lines read and number of errors detected.
1834 -- This normally goes to Standard_Output. The exception is when brief
1835 -- mode is not set, verbose mode (or full list mode) is set, and
1836 -- there are errors. In this case we send the message to standard
1837 -- error to make sure that *something* appears on standard error
1838 -- in an error situation.
1840 if Total_Errors_Detected + Warnings_Detected /= 0
1841 and then not Brief_Output
1842 and then (Verbose_Mode or Full_List)
1843 then
1844 Set_Standard_Error;
1845 end if;
1847 -- Message giving total number of lines. Don't give this message if
1848 -- the Main_Source line is unknown (this happens in error situations,
1849 -- e.g. when integrated preprocessing fails).
1851 if Main_Source_File > No_Source_File then
1852 Write_Str (" ");
1853 Write_Int (Num_Source_Lines (Main_Source_File));
1855 if Num_Source_Lines (Main_Source_File) = 1 then
1856 Write_Str (" line: ");
1857 else
1858 Write_Str (" lines: ");
1859 end if;
1860 end if;
1862 if Total_Errors_Detected = 0 then
1863 Write_Str ("No errors");
1865 elsif Total_Errors_Detected = 1 then
1866 Write_Str ("1 error");
1868 else
1869 Write_Int (Total_Errors_Detected);
1870 Write_Str (" errors");
1871 end if;
1873 -- We now need to output warnings. When using -gnatwe, all warnings
1874 -- should be treated as errors, except for warnings originating from
1875 -- the use of the Compile_Time_Warning pragma. Another situation
1876 -- where a warning might be treated as an error is when the source
1877 -- code contains a Warning_As_Error pragma.
1878 -- When warnings are treated as errors, we still log them as
1879 -- warnings, but we add a message denoting how many of these warnings
1880 -- are also errors.
1882 declare
1883 Warnings_Count : constant Int :=
1884 Warnings_Detected - Warning_Info_Messages;
1886 Compile_Time_Warnings : Int;
1887 -- Number of warnings that come from a Compile_Time_Warning
1888 -- pragma.
1890 Non_Compile_Time_Warnings : Int;
1891 -- Number of warnings that do not come from a Compile_Time_Warning
1892 -- pragmas.
1894 begin
1895 if Warnings_Count > 0 then
1896 Write_Str (", ");
1897 Write_Int (Warnings_Count);
1898 Write_Str (" warning");
1900 if Warnings_Count > 1 then
1901 Write_Char ('s');
1902 end if;
1904 Compile_Time_Warnings := Count_Compile_Time_Pragma_Warnings;
1905 Non_Compile_Time_Warnings :=
1906 Warnings_Count - Compile_Time_Warnings;
1908 if Warning_Mode = Treat_As_Error
1909 and then Non_Compile_Time_Warnings > 0
1910 then
1911 Write_Str (" (");
1913 if Compile_Time_Warnings > 0 then
1914 Write_Int (Non_Compile_Time_Warnings);
1915 Write_Str (" ");
1916 end if;
1918 Write_Str ("treated as error");
1920 if Non_Compile_Time_Warnings > 1 then
1921 Write_Char ('s');
1922 end if;
1924 Write_Char (')');
1926 elsif Warnings_Treated_As_Errors > 0 then
1927 Write_Str (" (");
1929 if Warnings_Treated_As_Errors /= Warnings_Count then
1930 Write_Int (Warnings_Treated_As_Errors);
1931 Write_Str (" ");
1932 end if;
1934 Write_Str ("treated as error");
1936 if Warnings_Treated_As_Errors > 1 then
1937 Write_Str ("s");
1938 end if;
1940 Write_Str (")");
1941 end if;
1942 end if;
1943 end;
1945 if Warning_Info_Messages + Report_Info_Messages /= 0 then
1946 Write_Str (", ");
1947 Write_Int (Warning_Info_Messages + Report_Info_Messages);
1948 Write_Str (" info message");
1950 if Warning_Info_Messages + Report_Info_Messages > 1 then
1951 Write_Char ('s');
1952 end if;
1953 end if;
1955 Write_Eol;
1956 Set_Standard_Output;
1957 end Write_Error_Summary;
1959 ------------------
1960 -- Write_Header --
1961 ------------------
1963 procedure Write_Header (Sfile : Source_File_Index) is
1964 begin
1965 if Verbose_Mode or Full_List then
1966 if Original_Operating_Mode = Generate_Code then
1967 Write_Str ("Compiling: ");
1968 else
1969 Write_Str ("Checking: ");
1970 end if;
1972 Write_Name (Full_File_Name (Sfile));
1974 if not Debug_Flag_7 then
1975 Write_Eol;
1976 Write_Str ("Source file time stamp: ");
1977 Write_Time_Stamp (Sfile);
1978 Write_Eol;
1979 Write_Str ("Compiled at: " & Compilation_Time);
1980 end if;
1982 Write_Eol;
1983 end if;
1984 end Write_Header;
1986 ----------------------
1987 -- Write_Max_Errors --
1988 ----------------------
1990 procedure Write_Max_Errors is
1991 begin
1992 if Maximum_Messages /= 0 then
1993 if Warnings_Detected >= Maximum_Messages then
1994 Set_Standard_Error;
1995 Write_Line ("maximum number of warnings output");
1996 Write_Line ("any further warnings suppressed");
1997 Set_Standard_Output;
1998 end if;
2000 -- If too many errors print message
2002 if Total_Errors_Detected >= Maximum_Messages then
2003 Set_Standard_Error;
2004 Write_Line ("fatal error: maximum number of errors detected");
2005 Set_Standard_Output;
2006 end if;
2007 end if;
2008 end Write_Max_Errors;
2010 -- Start of processing for Output_Messages
2012 begin
2013 -- Error if Finalize has not been called
2015 if not Finalize_Called then
2016 raise Program_Error;
2017 end if;
2019 -- Reset current error source file if the main unit has a pragma
2020 -- Source_Reference. This ensures outputting the proper name of
2021 -- the source file in this situation.
2023 if Main_Source_File <= No_Source_File
2024 or else Num_SRef_Pragmas (Main_Source_File) /= 0
2025 then
2026 Current_Error_Source_File := No_Source_File;
2027 end if;
2029 -- Brief Error mode
2031 if Brief_Output or (not Full_List and not Verbose_Mode) then
2032 Set_Standard_Error;
2034 E := First_Error_Msg;
2035 while E /= No_Error_Msg loop
2036 if not Errors.Table (E).Deleted and then not Debug_Flag_KK then
2037 if Full_Path_Name_For_Brief_Errors then
2038 Write_Name (Full_Ref_Name (Errors.Table (E).Sfile));
2039 else
2040 Write_Name (Reference_Name (Errors.Table (E).Sfile));
2041 end if;
2043 Write_Char (':');
2044 Write_Int (Int (Physical_To_Logical
2045 (Errors.Table (E).Line,
2046 Errors.Table (E).Sfile)));
2047 Write_Char (':');
2049 if Errors.Table (E).Col < 10 then
2050 Write_Char ('0');
2051 end if;
2053 Write_Int (Int (Errors.Table (E).Col));
2054 Write_Str (": ");
2055 Output_Msg_Text (E);
2056 Write_Eol;
2057 end if;
2059 E := Errors.Table (E).Next;
2060 end loop;
2062 Set_Standard_Output;
2063 end if;
2065 -- Full source listing case
2067 if Full_List then
2068 List_Pragmas_Index := 1;
2069 List_Pragmas_Mode := True;
2070 E := First_Error_Msg;
2072 -- Normal case, to stdout (copyright notice already output)
2074 if Full_List_File_Name = null then
2075 if not Debug_Flag_7 then
2076 Write_Eol;
2077 end if;
2079 -- Output to file
2081 else
2082 Create_List_File_Access.all (Full_List_File_Name.all);
2083 Set_Special_Output (Write_List_Info_Access.all'Access);
2085 -- Write copyright notice to file
2087 if not Debug_Flag_7 then
2088 Write_Str ("GNAT ");
2089 Write_Str (Gnat_Version_String);
2090 Write_Eol;
2091 Write_Str ("Copyright 1992-" &
2092 Current_Year &
2093 ", Free Software Foundation, Inc.");
2094 Write_Eol;
2095 end if;
2096 end if;
2098 -- First list extended main source file units with errors
2100 for U in Main_Unit .. Last_Unit loop
2101 if In_Extended_Main_Source_Unit (Cunit_Entity (U))
2103 -- If debug flag d.m is set, only the main source is listed
2105 and then (U = Main_Unit or else not Debug_Flag_Dot_M)
2107 -- If the unit of the entity does not come from source, it is
2108 -- an implicit subprogram declaration for a child subprogram.
2109 -- Do not emit errors for it, they are listed with the body.
2111 and then
2112 (No (Cunit_Entity (U))
2113 or else Comes_From_Source (Cunit_Entity (U))
2114 or else not Is_Subprogram (Cunit_Entity (U)))
2116 -- If the compilation unit associated with this unit does not
2117 -- come from source, it means it is an instantiation that should
2118 -- not be included in the source listing.
2120 and then Comes_From_Source (Cunit (U))
2121 then
2122 declare
2123 Sfile : constant Source_File_Index := Source_Index (U);
2125 begin
2126 Write_Eol;
2128 -- Only write the header if Sfile is known
2130 if Sfile > No_Source_File then
2131 Write_Header (Sfile);
2132 Write_Eol;
2133 end if;
2135 -- Normally, we don't want an "error messages from file"
2136 -- message when listing the entire file, so we set the
2137 -- current source file as the current error source file.
2138 -- However, the old style of doing things was to list this
2139 -- message if pragma Source_Reference is present, even for
2140 -- the main unit. Since the purpose of the -gnatd.m switch
2141 -- is to duplicate the old behavior, we skip the reset if
2142 -- this debug flag is set.
2144 if not Debug_Flag_Dot_M then
2145 Current_Error_Source_File := Sfile;
2146 end if;
2148 -- Only output the listing if Sfile is known, to avoid
2149 -- crashing the compiler.
2151 if Sfile > No_Source_File then
2152 for N in 1 .. Last_Source_Line (Sfile) loop
2153 while E /= No_Error_Msg
2154 and then Errors.Table (E).Deleted
2155 loop
2156 E := Errors.Table (E).Next;
2157 end loop;
2159 Err_Flag :=
2160 E /= No_Error_Msg
2161 and then Errors.Table (E).Line = N
2162 and then Errors.Table (E).Sfile = Sfile;
2164 Output_Source_Line (N, Sfile, Err_Flag);
2166 if Err_Flag then
2167 Output_Error_Msgs (E);
2169 if not Debug_Flag_2 then
2170 Write_Eol;
2171 end if;
2172 end if;
2173 end loop;
2174 end if;
2175 end;
2176 end if;
2177 end loop;
2179 -- Then output errors, if any, for subsidiary units not in the
2180 -- main extended unit.
2182 -- Note: if debug flag d.m set, include errors for any units other
2183 -- than the main unit in the extended source unit (e.g. spec and
2184 -- subunits for a body).
2186 while E /= No_Error_Msg
2187 and then (not In_Extended_Main_Source_Unit (Errors.Table (E).Sptr)
2188 or else
2189 (Debug_Flag_Dot_M
2190 and then Get_Source_Unit
2191 (Errors.Table (E).Sptr) /= Main_Unit))
2192 loop
2193 if Errors.Table (E).Deleted then
2194 E := Errors.Table (E).Next;
2196 else
2197 Write_Eol;
2198 Output_Source_Line
2199 (Errors.Table (E).Line, Errors.Table (E).Sfile, True);
2200 Output_Error_Msgs (E);
2201 end if;
2202 end loop;
2204 -- If output to file, write extra copy of error summary to the
2205 -- output file, and then close it.
2207 if Full_List_File_Name /= null then
2208 Write_Error_Summary;
2209 Write_Max_Errors;
2210 Close_List_File_Access.all;
2211 Cancel_Special_Output;
2212 end if;
2213 end if;
2215 -- Verbose mode (error lines only with error flags). Normally this is
2216 -- ignored in full list mode, unless we are listing to a file, in which
2217 -- case we still generate -gnatv output to standard output.
2219 if Verbose_Mode
2220 and then (not Full_List or else Full_List_File_Name /= null)
2221 then
2222 Write_Eol;
2224 -- Output the header only when Main_Source_File is known
2226 if Main_Source_File > No_Source_File then
2227 Write_Header (Main_Source_File);
2228 end if;
2230 E := First_Error_Msg;
2232 -- Loop through error lines
2234 while E /= No_Error_Msg loop
2235 if Errors.Table (E).Deleted then
2236 E := Errors.Table (E).Next;
2237 else
2238 Write_Eol;
2239 Output_Source_Line
2240 (Errors.Table (E).Line, Errors.Table (E).Sfile, True);
2241 Output_Error_Msgs (E);
2242 end if;
2243 end loop;
2244 end if;
2246 -- Output error summary if verbose or full list mode
2248 if Verbose_Mode or else Full_List then
2249 Write_Error_Summary;
2250 end if;
2252 Write_Max_Errors;
2254 -- Even though Warning_Info_Messages are a subclass of warnings, they
2255 -- must not be treated as errors when -gnatwe is in effect.
2257 if Warning_Mode = Treat_As_Error then
2258 declare
2259 Compile_Time_Pragma_Warnings : constant Int :=
2260 Count_Compile_Time_Pragma_Warnings;
2261 begin
2262 Total_Errors_Detected := Total_Errors_Detected + Warnings_Detected
2263 - Warning_Info_Messages - Compile_Time_Pragma_Warnings;
2264 Warnings_Detected :=
2265 Warning_Info_Messages + Compile_Time_Pragma_Warnings;
2266 end;
2267 end if;
2268 end Output_Messages;
2270 ------------------------
2271 -- Output_Source_Line --
2272 ------------------------
2274 procedure Output_Source_Line
2275 (L : Physical_Line_Number;
2276 Sfile : Source_File_Index;
2277 Errs : Boolean)
2279 S : Source_Ptr;
2280 C : Character;
2282 Line_Number_Output : Boolean := False;
2283 -- Set True once line number is output
2285 Empty_Line : Boolean := True;
2286 -- Set False if line includes at least one character
2288 begin
2289 if Sfile /= Current_Error_Source_File then
2290 Write_Str ("==============Error messages for ");
2292 case Sinput.File_Type (Sfile) is
2293 when Sinput.Src =>
2294 Write_Str ("source");
2296 when Sinput.Config =>
2297 Write_Str ("configuration pragmas");
2299 when Sinput.Def =>
2300 Write_Str ("symbol definition");
2302 when Sinput.Preproc =>
2303 Write_Str ("preprocessing data");
2304 end case;
2306 Write_Str (" file: ");
2307 Write_Name (Full_File_Name (Sfile));
2308 Write_Eol;
2310 if Num_SRef_Pragmas (Sfile) > 0 then
2311 Write_Str ("--------------Line numbers from file: ");
2312 Write_Name (Full_Ref_Name (Sfile));
2313 Write_Str (" (starting at line ");
2314 Write_Int (Int (First_Mapped_Line (Sfile)));
2315 Write_Char (')');
2316 Write_Eol;
2317 end if;
2319 Current_Error_Source_File := Sfile;
2320 end if;
2322 if Errs or List_Pragmas_Mode then
2323 Output_Line_Number (Physical_To_Logical (L, Sfile));
2324 Line_Number_Output := True;
2325 end if;
2327 S := Line_Start (L, Sfile);
2329 loop
2330 C := Source_Text (Sfile) (S);
2331 exit when C = ASCII.LF or else C = ASCII.CR or else C = EOF;
2333 -- Deal with matching entry in List_Pragmas table
2335 if Full_List
2336 and then List_Pragmas_Index <= List_Pragmas.Last
2337 and then S = List_Pragmas.Table (List_Pragmas_Index).Ploc
2338 then
2339 case List_Pragmas.Table (List_Pragmas_Index).Ptyp is
2340 when Page =>
2341 Write_Char (C);
2343 -- Ignore if on line with errors so that error flags
2344 -- get properly listed with the error line .
2346 if not Errs then
2347 Write_Char (ASCII.FF);
2348 end if;
2350 when List_On =>
2351 List_Pragmas_Mode := True;
2353 if not Line_Number_Output then
2354 Output_Line_Number (Physical_To_Logical (L, Sfile));
2355 Line_Number_Output := True;
2356 end if;
2358 Write_Char (C);
2360 when List_Off =>
2361 Write_Char (C);
2362 List_Pragmas_Mode := False;
2363 end case;
2365 List_Pragmas_Index := List_Pragmas_Index + 1;
2367 -- Normal case (no matching entry in List_Pragmas table)
2369 else
2370 if Errs or List_Pragmas_Mode then
2371 Write_Char (C);
2372 end if;
2373 end if;
2375 Empty_Line := False;
2376 S := S + 1;
2377 end loop;
2379 -- If we have output a source line, then add the line terminator, with
2380 -- training spaces preserved (so we output the line exactly as input).
2382 if Line_Number_Output then
2383 if Empty_Line then
2384 Write_Eol;
2385 else
2386 Write_Eol_Keep_Blanks;
2387 end if;
2388 end if;
2389 end Output_Source_Line;
2391 -----------------------------
2392 -- Remove_Warning_Messages --
2393 -----------------------------
2395 procedure Remove_Warning_Messages (N : Node_Id) is
2397 function Check_For_Warning (N : Node_Id) return Traverse_Result;
2398 -- This function checks one node for a possible warning message
2400 function Check_All_Warnings is new Traverse_Func (Check_For_Warning);
2401 -- This defines the traversal operation
2403 -----------------------
2404 -- Check_For_Warning --
2405 -----------------------
2407 function Check_For_Warning (N : Node_Id) return Traverse_Result is
2408 Loc : constant Source_Ptr := Sloc (N);
2409 E : Error_Msg_Id;
2411 function To_Be_Removed (E : Error_Msg_Id) return Boolean;
2412 -- Returns True for a message that is to be removed. Also adjusts
2413 -- warning count appropriately.
2415 -------------------
2416 -- To_Be_Removed --
2417 -------------------
2419 function To_Be_Removed (E : Error_Msg_Id) return Boolean is
2420 begin
2421 if E /= No_Error_Msg
2423 -- Don't remove if location does not match
2425 and then Errors.Table (E).Optr = Loc
2427 -- Don't remove if not warning/info message. Note that we do
2428 -- not remove style messages here. They are warning messages
2429 -- but not ones we want removed in this context.
2431 and then Errors.Table (E).Warn
2433 -- Don't remove unconditional messages
2435 and then not Errors.Table (E).Uncond
2436 then
2437 Warnings_Detected := Warnings_Detected - 1;
2439 if Errors.Table (E).Info then
2440 Warning_Info_Messages := Warning_Info_Messages - 1;
2441 end if;
2443 return True;
2445 -- No removal required
2447 else
2448 return False;
2449 end if;
2450 end To_Be_Removed;
2452 -- Start of processing for Check_For_Warnings
2454 begin
2455 while To_Be_Removed (First_Error_Msg) loop
2456 First_Error_Msg := Errors.Table (First_Error_Msg).Next;
2457 end loop;
2459 if First_Error_Msg = No_Error_Msg then
2460 Last_Error_Msg := No_Error_Msg;
2461 end if;
2463 E := First_Error_Msg;
2464 while E /= No_Error_Msg loop
2465 while To_Be_Removed (Errors.Table (E).Next) loop
2466 Errors.Table (E).Next :=
2467 Errors.Table (Errors.Table (E).Next).Next;
2469 if Errors.Table (E).Next = No_Error_Msg then
2470 Last_Error_Msg := E;
2471 end if;
2472 end loop;
2474 E := Errors.Table (E).Next;
2475 end loop;
2477 if Nkind (N) = N_Raise_Constraint_Error
2478 and then Is_Rewrite_Substitution (N)
2479 and then No (Condition (N))
2480 then
2481 -- Warnings may have been posted on subexpressions of the original
2482 -- tree. We place the original node back on the tree to remove
2483 -- those warnings, whose sloc do not match those of any node in
2484 -- the current tree. Given that we are in unreachable code, this
2485 -- modification to the tree is harmless.
2487 declare
2488 Status : Traverse_Final_Result;
2490 begin
2491 if Is_List_Member (N) then
2492 Set_Condition (N, Original_Node (N));
2493 Status := Check_All_Warnings (Condition (N));
2494 else
2495 Rewrite (N, Original_Node (N));
2496 Status := Check_All_Warnings (N);
2497 end if;
2499 return Status;
2500 end;
2502 else
2503 return OK;
2504 end if;
2505 end Check_For_Warning;
2507 -- Start of processing for Remove_Warning_Messages
2509 begin
2510 if Warnings_Detected /= 0 then
2511 declare
2512 Discard : Traverse_Final_Result;
2513 pragma Warnings (Off, Discard);
2515 begin
2516 Discard := Check_All_Warnings (N);
2517 end;
2518 end if;
2519 end Remove_Warning_Messages;
2521 procedure Remove_Warning_Messages (L : List_Id) is
2522 Stat : Node_Id;
2523 begin
2524 if Is_Non_Empty_List (L) then
2525 Stat := First (L);
2526 while Present (Stat) loop
2527 Remove_Warning_Messages (Stat);
2528 Next (Stat);
2529 end loop;
2530 end if;
2531 end Remove_Warning_Messages;
2533 --------------------
2534 -- Reset_Warnings --
2535 --------------------
2537 procedure Reset_Warnings is
2538 begin
2539 Warnings_Treated_As_Errors := 0;
2540 Warnings_Detected := 0;
2541 Warning_Info_Messages := 0;
2542 Warnings_As_Errors_Count := 0;
2543 end Reset_Warnings;
2545 ----------------------
2546 -- Adjust_Name_Case --
2547 ----------------------
2549 procedure Adjust_Name_Case
2550 (Buf : in out Bounded_String;
2551 Loc : Source_Ptr)
2553 begin
2554 -- We have an all lower case name from Namet, and now we want to set
2555 -- the appropriate case. If possible we copy the actual casing from
2556 -- the source. If not we use standard identifier casing.
2558 declare
2559 Src_Ind : constant Source_File_Index := Get_Source_File_Index (Loc);
2560 Sbuffer : Source_Buffer_Ptr;
2561 Ref_Ptr : Integer;
2562 Src_Ptr : Source_Ptr;
2564 begin
2565 Ref_Ptr := 1;
2566 Src_Ptr := Loc;
2568 -- For standard locations, always use mixed case
2570 if Loc <= No_Location then
2571 Set_Casing (Mixed_Case);
2573 else
2574 -- Determine if the reference we are dealing with corresponds to
2575 -- text at the point of the error reference. This will often be
2576 -- the case for simple identifier references, and is the case
2577 -- where we can copy the casing from the source.
2579 Sbuffer := Source_Text (Src_Ind);
2581 while Ref_Ptr <= Buf.Length loop
2582 exit when
2583 Fold_Lower (Sbuffer (Src_Ptr)) /=
2584 Fold_Lower (Buf.Chars (Ref_Ptr));
2585 Ref_Ptr := Ref_Ptr + 1;
2586 Src_Ptr := Src_Ptr + 1;
2587 end loop;
2589 -- If we get through the loop without a mismatch, then output the
2590 -- name the way it is cased in the source program
2592 if Ref_Ptr > Buf.Length then
2593 Src_Ptr := Loc;
2595 for J in 1 .. Buf.Length loop
2596 Buf.Chars (J) := Sbuffer (Src_Ptr);
2597 Src_Ptr := Src_Ptr + 1;
2598 end loop;
2600 -- Otherwise set the casing using the default identifier casing
2602 else
2603 Set_Casing (Buf, Identifier_Casing (Src_Ind));
2604 end if;
2605 end if;
2606 end;
2607 end Adjust_Name_Case;
2609 procedure Adjust_Name_Case (Loc : Source_Ptr) is
2610 begin
2611 Adjust_Name_Case (Global_Name_Buffer, Loc);
2612 end Adjust_Name_Case;
2614 ---------------------------
2615 -- Set_Identifier_Casing --
2616 ---------------------------
2618 procedure Set_Identifier_Casing
2619 (Identifier_Name : System.Address;
2620 File_Name : System.Address)
2622 Ident : constant Big_String_Ptr := To_Big_String_Ptr (Identifier_Name);
2623 File : constant Big_String_Ptr := To_Big_String_Ptr (File_Name);
2624 Flen : Natural;
2626 Desired_Case : Casing_Type := Mixed_Case;
2627 -- Casing required for result. Default value of Mixed_Case is used if
2628 -- for some reason we cannot find the right file name in the table.
2630 begin
2631 -- Get length of file name
2633 Flen := 0;
2634 while File (Flen + 1) /= ASCII.NUL loop
2635 Flen := Flen + 1;
2636 end loop;
2638 -- Loop through file names to find matching one. This is a bit slow, but
2639 -- we only do it in error situations so it is not so terrible. Note that
2640 -- if the loop does not exit, then the desired case will be left set to
2641 -- Mixed_Case, this can happen if the name was not in canonical form.
2643 for J in 1 .. Last_Source_File loop
2644 Get_Name_String (Full_Debug_Name (J));
2646 if Name_Len = Flen
2647 and then Name_Buffer (1 .. Name_Len) = String (File (1 .. Flen))
2648 then
2649 Desired_Case := Identifier_Casing (J);
2650 exit;
2651 end if;
2652 end loop;
2654 -- Copy identifier as given to Name_Buffer
2656 for J in Name_Buffer'Range loop
2657 Name_Buffer (J) := Ident (J);
2659 if Name_Buffer (J) = ASCII.NUL then
2660 Name_Len := J - 1;
2661 exit;
2662 end if;
2663 end loop;
2665 Set_Casing (Desired_Case);
2666 end Set_Identifier_Casing;
2668 -----------------------
2669 -- Set_Ignore_Errors --
2670 -----------------------
2672 procedure Set_Ignore_Errors (To : Boolean) is
2673 begin
2674 Errors_Must_Be_Ignored := To;
2675 end Set_Ignore_Errors;
2677 ------------------------------
2678 -- Set_Msg_Insertion_Column --
2679 ------------------------------
2681 procedure Set_Msg_Insertion_Column is
2682 begin
2683 if RM_Column_Check then
2684 Set_Msg_Str (" in column ");
2685 Set_Msg_Int (Int (Error_Msg_Col) + 1);
2686 end if;
2687 end Set_Msg_Insertion_Column;
2689 ----------------------------
2690 -- Set_Msg_Insertion_Node --
2691 ----------------------------
2693 procedure Set_Msg_Insertion_Node is
2694 K : Node_Kind;
2696 begin
2697 Suppress_Message :=
2698 Error_Msg_Node_1 = Error
2699 or else Error_Msg_Node_1 = Any_Type;
2701 if Error_Msg_Node_1 = Empty then
2702 Set_Msg_Blank_Conditional;
2703 Set_Msg_Str ("<empty>");
2705 elsif Error_Msg_Node_1 = Error then
2706 Set_Msg_Blank;
2707 Set_Msg_Str ("<error>");
2709 elsif Error_Msg_Node_1 = Standard_Void_Type then
2710 Set_Msg_Blank;
2711 Set_Msg_Str ("procedure name");
2713 elsif Nkind (Error_Msg_Node_1) in N_Entity
2714 and then Ekind (Error_Msg_Node_1) = E_Anonymous_Access_Subprogram_Type
2715 then
2716 Set_Msg_Blank;
2717 Set_Msg_Str ("access to subprogram");
2719 else
2720 Set_Msg_Blank_Conditional;
2722 -- Output name
2724 K := Nkind (Error_Msg_Node_1);
2726 -- If we have operator case, skip quotes since name of operator
2727 -- itself will supply the required quotations. An operator can be an
2728 -- applied use in an expression or an explicit operator symbol, or an
2729 -- identifier whose name indicates it is an operator.
2731 if K in N_Op
2732 or else K = N_Operator_Symbol
2733 or else K = N_Defining_Operator_Symbol
2734 or else ((K = N_Identifier or else K = N_Defining_Identifier)
2735 and then Is_Operator_Name (Chars (Error_Msg_Node_1)))
2736 then
2737 Set_Msg_Node (Error_Msg_Node_1);
2739 -- Normal case, not an operator, surround with quotes
2741 else
2742 Set_Msg_Quote;
2743 Set_Qualification (Error_Msg_Qual_Level, Error_Msg_Node_1);
2744 Set_Msg_Node (Error_Msg_Node_1);
2745 Set_Msg_Quote;
2746 end if;
2747 end if;
2749 -- The following assignment ensures that a second ampersand insertion
2750 -- character will correspond to the Error_Msg_Node_2 parameter. We
2751 -- suppress possible validity checks in case operating in -gnatVa mode,
2752 -- and Error_Msg_Node_2 is not needed and has not been set.
2754 declare
2755 pragma Suppress (Range_Check);
2756 begin
2757 Error_Msg_Node_1 := Error_Msg_Node_2;
2758 end;
2759 end Set_Msg_Insertion_Node;
2761 --------------------------------------
2762 -- Set_Msg_Insertion_Type_Reference --
2763 --------------------------------------
2765 procedure Set_Msg_Insertion_Type_Reference (Flag : Source_Ptr) is
2766 Ent : Entity_Id;
2768 begin
2769 Set_Msg_Blank;
2771 if Error_Msg_Node_1 = Standard_Void_Type then
2772 Set_Msg_Str ("package or procedure name");
2773 return;
2775 elsif Error_Msg_Node_1 = Standard_Exception_Type then
2776 Set_Msg_Str ("exception name");
2777 return;
2779 elsif Error_Msg_Node_1 = Any_Access
2780 or else Error_Msg_Node_1 = Any_Array
2781 or else Error_Msg_Node_1 = Any_Boolean
2782 or else Error_Msg_Node_1 = Any_Character
2783 or else Error_Msg_Node_1 = Any_Composite
2784 or else Error_Msg_Node_1 = Any_Discrete
2785 or else Error_Msg_Node_1 = Any_Fixed
2786 or else Error_Msg_Node_1 = Any_Integer
2787 or else Error_Msg_Node_1 = Any_Modular
2788 or else Error_Msg_Node_1 = Any_Numeric
2789 or else Error_Msg_Node_1 = Any_Real
2790 or else Error_Msg_Node_1 = Any_Scalar
2791 or else Error_Msg_Node_1 = Any_String
2792 then
2793 Get_Unqualified_Decoded_Name_String (Chars (Error_Msg_Node_1));
2794 Set_Msg_Name_Buffer;
2795 return;
2797 elsif Error_Msg_Node_1 = Universal_Real then
2798 Set_Msg_Str ("type universal real");
2799 return;
2801 elsif Error_Msg_Node_1 = Universal_Integer then
2802 Set_Msg_Str ("type universal integer");
2803 return;
2805 elsif Error_Msg_Node_1 = Universal_Fixed then
2806 Set_Msg_Str ("type universal fixed");
2807 return;
2808 end if;
2810 -- Special case of anonymous array
2812 if Nkind (Error_Msg_Node_1) in N_Entity
2813 and then Is_Array_Type (Error_Msg_Node_1)
2814 and then Present (Related_Array_Object (Error_Msg_Node_1))
2815 then
2816 Set_Msg_Str ("type of ");
2817 Set_Msg_Node (Related_Array_Object (Error_Msg_Node_1));
2818 Set_Msg_Str (" declared");
2819 Set_Msg_Insertion_Line_Number
2820 (Sloc (Related_Array_Object (Error_Msg_Node_1)), Flag);
2821 return;
2822 end if;
2824 -- If we fall through, it is not a special case, so first output
2825 -- the name of the type, preceded by private for a private type
2827 if Is_Private_Type (Error_Msg_Node_1) then
2828 Set_Msg_Str ("private type ");
2829 else
2830 Set_Msg_Str ("type ");
2831 end if;
2833 Ent := Error_Msg_Node_1;
2835 if Is_Internal_Name (Chars (Ent)) then
2836 Unwind_Internal_Type (Ent);
2837 end if;
2839 -- Types in Standard are displayed as "Standard.name"
2841 if Sloc (Ent) <= Standard_Location then
2842 Set_Msg_Quote;
2843 Set_Msg_Str ("Standard.");
2844 Set_Msg_Node (Ent);
2845 Add_Class;
2846 Set_Msg_Quote;
2848 -- Types in other language defined units are displayed as
2849 -- "package-name.type-name"
2851 elsif Is_Predefined_Unit (Get_Source_Unit (Ent)) then
2852 Get_Unqualified_Decoded_Name_String
2853 (Unit_Name (Get_Source_Unit (Ent)));
2854 Name_Len := Name_Len - 2;
2855 Set_Msg_Blank_Conditional;
2856 Set_Msg_Quote;
2857 Set_Casing (Mixed_Case);
2858 Set_Msg_Name_Buffer;
2859 Set_Msg_Char ('.');
2860 Set_Casing (Mixed_Case);
2861 Set_Msg_Node (Ent);
2862 Add_Class;
2863 Set_Msg_Quote;
2865 -- All other types display as "type name" defined at line xxx
2866 -- possibly qualified if qualification is requested.
2868 else
2869 Set_Msg_Quote;
2870 Set_Qualification (Error_Msg_Qual_Level, Ent);
2871 Set_Msg_Node (Ent);
2872 Add_Class;
2874 -- If we did not print a name (e.g. in the case of an anonymous
2875 -- subprogram type), there is no name to print, so remove quotes.
2877 if Buffer_Ends_With ('"') then
2878 Buffer_Remove ('"');
2879 else
2880 Set_Msg_Quote;
2881 end if;
2882 end if;
2884 -- If the original type did not come from a predefined file, add the
2885 -- location where the type was defined.
2887 if Sloc (Error_Msg_Node_1) > Standard_Location
2888 and then
2889 not Is_Predefined_Unit (Get_Source_Unit (Error_Msg_Node_1))
2890 then
2891 Get_Name_String (Unit_File_Name (Get_Source_Unit (Error_Msg_Node_1)));
2892 Set_Msg_Str (" defined");
2893 Set_Msg_Insertion_Line_Number (Sloc (Error_Msg_Node_1), Flag);
2895 -- If it did come from a predefined file, deal with the case where
2896 -- this was a file with a generic instantiation from elsewhere.
2898 else
2899 if Sloc (Error_Msg_Node_1) > Standard_Location then
2900 declare
2901 Iloc : constant Source_Ptr :=
2902 Instantiation_Location (Sloc (Error_Msg_Node_1));
2904 begin
2905 if Iloc /= No_Location
2906 and then not Suppress_Instance_Location
2907 then
2908 Set_Msg_Str (" from instance");
2909 Set_Msg_Insertion_Line_Number (Iloc, Flag);
2910 end if;
2911 end;
2912 end if;
2913 end if;
2914 end Set_Msg_Insertion_Type_Reference;
2916 ---------------------------------
2917 -- Set_Msg_Insertion_Unit_Name --
2918 ---------------------------------
2920 procedure Set_Msg_Insertion_Unit_Name (Suffix : Boolean := True) is
2921 begin
2922 if Error_Msg_Unit_1 = No_Unit_Name then
2923 null;
2925 elsif Error_Msg_Unit_1 = Error_Unit_Name then
2926 Set_Msg_Blank;
2927 Set_Msg_Str ("<error>");
2929 else
2930 Get_Unit_Name_String (Error_Msg_Unit_1, Suffix);
2931 Set_Msg_Blank;
2932 Set_Msg_Quote;
2933 Set_Msg_Name_Buffer;
2934 Set_Msg_Quote;
2935 end if;
2937 -- The following assignment ensures that a second percent insertion
2938 -- character will correspond to the Error_Msg_Unit_2 parameter. We
2939 -- suppress possible validity checks in case operating in -gnatVa mode,
2940 -- and Error_Msg_Unit_2 is not needed and has not been set.
2942 declare
2943 pragma Suppress (Range_Check);
2944 begin
2945 Error_Msg_Unit_1 := Error_Msg_Unit_2;
2946 end;
2947 end Set_Msg_Insertion_Unit_Name;
2949 ------------------
2950 -- Set_Msg_Node --
2951 ------------------
2953 procedure Set_Msg_Node (Node : Node_Id) is
2954 Loc : Source_Ptr;
2955 Ent : Entity_Id;
2956 Nam : Name_Id;
2958 begin
2959 case Nkind (Node) is
2960 when N_Designator =>
2961 Set_Msg_Node (Name (Node));
2962 Set_Msg_Char ('.');
2963 Set_Msg_Node (Identifier (Node));
2964 return;
2966 when N_Defining_Program_Unit_Name =>
2967 Set_Msg_Node (Name (Node));
2968 Set_Msg_Char ('.');
2969 Set_Msg_Node (Defining_Identifier (Node));
2970 return;
2972 when N_Expanded_Name
2973 | N_Selected_Component
2975 Set_Msg_Node (Prefix (Node));
2976 Set_Msg_Char ('.');
2977 Set_Msg_Node (Selector_Name (Node));
2978 return;
2980 when others =>
2981 null;
2982 end case;
2984 -- The only remaining possibilities are identifiers, defining
2985 -- identifiers, pragmas, and pragma argument associations.
2987 if Nkind (Node) = N_Pragma then
2988 Nam := Pragma_Name (Node);
2989 Loc := Sloc (Node);
2991 -- The other cases have Chars fields
2993 -- First deal with internal names, which generally represent something
2994 -- gone wrong. First attempt: if this is a rewritten node that rewrites
2995 -- something with a Chars field that is not an internal name, use that.
2997 elsif Is_Internal_Name (Chars (Node))
2998 and then Nkind (Original_Node (Node)) in N_Has_Chars
2999 and then not Is_Internal_Name (Chars (Original_Node (Node)))
3000 then
3001 Nam := Chars (Original_Node (Node));
3002 Loc := Sloc (Original_Node (Node));
3004 -- Another shot for internal names, in the case of internal type names,
3005 -- we try to find a reasonable representation for the external name.
3007 elsif Is_Internal_Name (Chars (Node))
3008 and then
3009 ((Is_Entity_Name (Node)
3010 and then Present (Entity (Node))
3011 and then Is_Type (Entity (Node)))
3012 or else
3013 (Nkind (Node) = N_Defining_Identifier and then Is_Type (Node)))
3014 then
3015 if Nkind (Node) = N_Identifier then
3016 Ent := Entity (Node);
3017 else
3018 Ent := Node;
3019 end if;
3021 Loc := Sloc (Ent);
3023 -- If the type is the designated type of an access_to_subprogram,
3024 -- then there is no name to provide in the call.
3026 if Ekind (Ent) = E_Subprogram_Type then
3027 return;
3029 -- Otherwise, we will be able to find some kind of name to output
3031 else
3032 Unwind_Internal_Type (Ent);
3033 Nam := Chars (Ent);
3034 end if;
3036 -- If not internal name, or if we could not find a reasonable possible
3037 -- substitution for the internal name, just use name in Chars field.
3039 else
3040 Nam := Chars (Node);
3041 Loc := Sloc (Node);
3042 end if;
3044 -- At this stage, the name to output is in Nam
3046 Get_Unqualified_Decoded_Name_String (Nam);
3048 -- Remove trailing upper case letters from the name (useful for
3049 -- dealing with some cases of internal names).
3051 while Name_Len > 1 and then Name_Buffer (Name_Len) in 'A' .. 'Z' loop
3052 Name_Len := Name_Len - 1;
3053 end loop;
3055 -- If we have any of the names from standard that start with the
3056 -- characters "any " (e.g. Any_Type), then kill the message since
3057 -- almost certainly it is a junk cascaded message.
3059 if Name_Len > 4
3060 and then Name_Buffer (1 .. 4) = "any "
3061 then
3062 Kill_Message := True;
3063 end if;
3065 -- If we still have an internal name, kill the message (will only
3066 -- work if we already had errors!)
3068 if Is_Internal_Name then
3069 Kill_Message := True;
3070 end if;
3071 -- Remaining step is to adjust casing and possibly add 'Class
3073 Adjust_Name_Case (Global_Name_Buffer, Loc);
3074 Set_Msg_Name_Buffer;
3075 Add_Class;
3076 end Set_Msg_Node;
3078 ------------------
3079 -- Set_Msg_Text --
3080 ------------------
3082 procedure Set_Msg_Text (Text : String; Flag : Source_Ptr) is
3083 C : Character; -- Current character
3084 P : Natural; -- Current index;
3086 procedure Skip_Msg_Insertion_Warning (C : Character);
3087 -- Deal with ? ?? ?x? ?X? ?*? ?$? insertion sequences (and the same
3088 -- sequences using < instead of ?). The caller has already bumped
3089 -- the pointer past the initial ? or < and C is set to this initial
3090 -- character (? or <). This procedure skips past the rest of the
3091 -- sequence. We do not need to set Msg_Insertion_Char, since this
3092 -- was already done during the message prescan.
3094 --------------------------------
3095 -- Skip_Msg_Insertion_Warning --
3096 --------------------------------
3098 procedure Skip_Msg_Insertion_Warning (C : Character) is
3099 begin
3100 if P <= Text'Last and then Text (P) = C then
3101 P := P + 1;
3103 elsif P + 1 <= Text'Last
3104 and then (Text (P) in 'a' .. 'z'
3105 or else
3106 Text (P) in 'A' .. 'Z'
3107 or else
3108 Text (P) = '*'
3109 or else
3110 Text (P) = '$')
3111 and then Text (P + 1) = C
3112 then
3113 P := P + 2;
3114 end if;
3115 end Skip_Msg_Insertion_Warning;
3117 -- Start of processing for Set_Msg_Text
3119 begin
3120 Manual_Quote_Mode := False;
3121 Msglen := 0;
3122 Flag_Source := Get_Source_File_Index (Flag);
3124 -- Skip info: at start, we have recorded this in Is_Info_Msg, and this
3125 -- will be used (Info field in error message object) to put back the
3126 -- string when it is printed. We need to do this, or we get confused
3127 -- with instantiation continuations.
3129 if Text'Length > 6
3130 and then Text (Text'First .. Text'First + 5) = "info: "
3131 then
3132 P := Text'First + 6;
3133 else
3134 P := Text'First;
3135 end if;
3137 -- Loop through characters of message
3139 while P <= Text'Last loop
3140 C := Text (P);
3141 P := P + 1;
3143 -- Check for insertion character or sequence
3145 case C is
3146 when '%' =>
3147 if P <= Text'Last and then Text (P) = '%' then
3148 P := P + 1;
3149 Set_Msg_Insertion_Name_Literal;
3150 else
3151 Set_Msg_Insertion_Name;
3152 end if;
3154 when '$' =>
3155 if P <= Text'Last and then Text (P) = '$' then
3156 P := P + 1;
3157 Set_Msg_Insertion_Unit_Name (Suffix => False);
3158 else
3159 Set_Msg_Insertion_Unit_Name;
3160 end if;
3162 when '{' =>
3163 Set_Msg_Insertion_File_Name;
3165 when '}' =>
3166 Set_Msg_Insertion_Type_Reference (Flag);
3168 when '*' =>
3169 Set_Msg_Insertion_Reserved_Name;
3171 when '&' =>
3172 Set_Msg_Insertion_Node;
3174 when '#' =>
3175 Set_Msg_Insertion_Line_Number (Error_Msg_Sloc, Flag);
3177 when '\' =>
3178 Continuation := True;
3180 if P <= Text'Last and then Text (P) = '\' then
3181 Continuation_New_Line := True;
3182 P := P + 1;
3183 end if;
3185 when '@' =>
3186 Set_Msg_Insertion_Column;
3188 when '>' =>
3189 Set_Msg_Insertion_Run_Time_Name;
3191 when '^' =>
3192 Set_Msg_Insertion_Uint;
3194 when '`' =>
3195 Manual_Quote_Mode := not Manual_Quote_Mode;
3196 Set_Msg_Char ('"');
3198 when '!' =>
3199 null; -- already dealt with
3201 when '?' =>
3202 Skip_Msg_Insertion_Warning ('?');
3204 when '<' =>
3205 Skip_Msg_Insertion_Warning ('<');
3207 when '|' =>
3208 null; -- already dealt with
3210 when ''' =>
3211 Set_Msg_Char (Text (P));
3212 P := P + 1;
3214 when '~' =>
3215 Set_Msg_Str (Error_Msg_String (1 .. Error_Msg_Strlen));
3217 -- Upper case letter
3219 when 'A' .. 'Z' =>
3221 -- Start of reserved word if two or more
3223 if P <= Text'Last and then Text (P) in 'A' .. 'Z' then
3224 P := P - 1;
3225 Set_Msg_Insertion_Reserved_Word (Text, P);
3227 -- Single upper case letter is just inserted
3229 else
3230 Set_Msg_Char (C);
3231 end if;
3233 -- '[' (will be/would have been raised at run time)
3235 when '[' =>
3237 -- Switch the message from a warning to an error if the flag
3238 -- -gnatwE is specified to treat run-time exception warnings
3239 -- as errors.
3241 if Is_Warning_Msg
3242 and then Warning_Mode = Treat_Run_Time_Warnings_As_Errors
3243 then
3244 Is_Warning_Msg := False;
3245 end if;
3247 if Is_Warning_Msg then
3248 Set_Msg_Str ("will be raised at run time");
3249 else
3250 Set_Msg_Str ("would have been raised at run time");
3251 end if;
3253 -- ']' (may be/might have been raised at run time)
3255 when ']' =>
3256 if Is_Warning_Msg then
3257 Set_Msg_Str ("may be raised at run time");
3258 else
3259 Set_Msg_Str ("might have been raised at run time");
3260 end if;
3262 -- Normal character with no special treatment
3264 when others =>
3265 Set_Msg_Char (C);
3266 end case;
3267 end loop;
3268 end Set_Msg_Text;
3270 ----------------
3271 -- Set_Posted --
3272 ----------------
3274 procedure Set_Posted (N : Node_Id) is
3275 P : Node_Id;
3277 begin
3278 if Is_Serious_Error then
3280 -- We always set Error_Posted on the node itself
3282 Set_Error_Posted (N);
3284 -- If it is a subexpression, then set Error_Posted on parents up to
3285 -- and including the first non-subexpression construct. This helps
3286 -- avoid cascaded error messages within a single expression.
3288 P := N;
3289 loop
3290 P := Parent (P);
3291 exit when No (P);
3292 Set_Error_Posted (P);
3293 exit when Nkind (P) not in N_Subexpr;
3294 end loop;
3296 if Nkind_In (P, N_Pragma_Argument_Association,
3297 N_Component_Association,
3298 N_Discriminant_Association,
3299 N_Generic_Association,
3300 N_Parameter_Association)
3301 then
3302 Set_Error_Posted (Parent (P));
3303 end if;
3305 -- A special check, if we just posted an error on an attribute
3306 -- definition clause, then also set the entity involved as posted.
3307 -- For example, this stops complaining about the alignment after
3308 -- complaining about the size, which is likely to be useless.
3310 if Nkind (P) = N_Attribute_Definition_Clause then
3311 if Is_Entity_Name (Name (P)) then
3312 Set_Error_Posted (Entity (Name (P)));
3313 end if;
3314 end if;
3315 end if;
3316 end Set_Posted;
3318 -----------------------
3319 -- Set_Qualification --
3320 -----------------------
3322 procedure Set_Qualification (N : Nat; E : Entity_Id) is
3323 begin
3324 if N /= 0 and then Scope (E) /= Standard_Standard then
3325 Set_Qualification (N - 1, Scope (E));
3326 Set_Msg_Node (Scope (E));
3327 Set_Msg_Char ('.');
3328 end if;
3329 end Set_Qualification;
3331 ------------------------
3332 -- Special_Msg_Delete --
3333 ------------------------
3335 -- Is it really right to have all this specialized knowledge in errout?
3337 function Special_Msg_Delete
3338 (Msg : String;
3339 N : Node_Or_Entity_Id;
3340 E : Node_Or_Entity_Id) return Boolean
3342 begin
3343 -- Never delete messages in -gnatdO mode
3345 if Debug_Flag_OO then
3346 return False;
3348 -- Processing for "Size too small" messages
3350 elsif Is_Size_Too_Small_Message (Msg) then
3352 -- Suppress "size too small" errors in CodePeer mode, since code may
3353 -- be analyzed in a different configuration than the one used for
3354 -- compilation. Even when the configurations match, this message
3355 -- may be issued on correct code, because pragma Pack is ignored
3356 -- in CodePeer mode.
3358 if CodePeer_Mode then
3359 return True;
3361 -- When a size is wrong for a frozen type there is no explicit size
3362 -- clause, and other errors have occurred, suppress the message,
3363 -- since it is likely that this size error is a cascaded result of
3364 -- other errors. The reason we eliminate unfrozen types is that
3365 -- messages issued before the freeze type are for sure OK.
3367 elsif Is_Frozen (E)
3368 and then Serious_Errors_Detected > 0
3369 and then Nkind (N) /= N_Component_Clause
3370 and then Nkind (Parent (N)) /= N_Component_Clause
3371 and then
3372 No (Get_Attribute_Definition_Clause (E, Attribute_Size))
3373 and then
3374 No (Get_Attribute_Definition_Clause (E, Attribute_Object_Size))
3375 and then
3376 No (Get_Attribute_Definition_Clause (E, Attribute_Value_Size))
3377 then
3378 return True;
3379 end if;
3380 end if;
3382 -- All special tests complete, so go ahead with message
3384 return False;
3385 end Special_Msg_Delete;
3387 -----------------
3388 -- SPARK_Msg_N --
3389 -----------------
3391 procedure SPARK_Msg_N (Msg : String; N : Node_Or_Entity_Id) is
3392 begin
3393 if SPARK_Mode /= Off then
3394 Error_Msg_N (Msg, N);
3395 end if;
3396 end SPARK_Msg_N;
3398 ------------------
3399 -- SPARK_Msg_NE --
3400 ------------------
3402 procedure SPARK_Msg_NE
3403 (Msg : String;
3404 N : Node_Or_Entity_Id;
3405 E : Node_Or_Entity_Id)
3407 begin
3408 if SPARK_Mode /= Off then
3409 Error_Msg_NE (Msg, N, E);
3410 end if;
3411 end SPARK_Msg_NE;
3413 --------------------------
3414 -- Unwind_Internal_Type --
3415 --------------------------
3417 procedure Unwind_Internal_Type (Ent : in out Entity_Id) is
3418 Derived : Boolean := False;
3419 Mchar : Character;
3420 Old_Ent : Entity_Id;
3422 begin
3423 -- Undo placement of a quote, since we will put it back later
3425 Mchar := Msg_Buffer (Msglen);
3427 if Mchar = '"' then
3428 Msglen := Msglen - 1;
3429 end if;
3431 -- The loop here deals with recursive types, we are trying to find a
3432 -- related entity that is not an implicit type. Note that the check with
3433 -- Old_Ent stops us from getting "stuck". Also, we don't output the
3434 -- "type derived from" message more than once in the case where we climb
3435 -- up multiple levels.
3437 Find : loop
3438 Old_Ent := Ent;
3440 -- Implicit access type, use directly designated type In Ada 2005,
3441 -- the designated type may be an anonymous access to subprogram, in
3442 -- which case we can only point to its definition.
3444 if Is_Access_Type (Ent) then
3445 if Ekind (Ent) = E_Access_Subprogram_Type
3446 or else Ekind (Ent) = E_Anonymous_Access_Subprogram_Type
3447 or else Is_Access_Protected_Subprogram_Type (Ent)
3448 then
3449 Ent := Directly_Designated_Type (Ent);
3451 if not Comes_From_Source (Ent) then
3452 if Buffer_Ends_With ("type ") then
3453 Buffer_Remove ("type ");
3454 end if;
3455 end if;
3457 if Ekind (Ent) = E_Function then
3458 Set_Msg_Str ("access to function ");
3459 elsif Ekind (Ent) = E_Procedure then
3460 Set_Msg_Str ("access to procedure ");
3461 else
3462 Set_Msg_Str ("access to subprogram");
3463 end if;
3465 exit Find;
3467 -- Type is access to object, named or anonymous
3469 else
3470 Set_Msg_Str ("access to ");
3471 Ent := Directly_Designated_Type (Ent);
3472 end if;
3474 -- Classwide type
3476 elsif Is_Class_Wide_Type (Ent) then
3477 Class_Flag := True;
3478 Ent := Root_Type (Ent);
3480 -- Use base type if this is a subtype
3482 elsif Ent /= Base_Type (Ent) then
3483 Buffer_Remove ("type ");
3485 -- Avoid duplication "subtype of subtype of", and also replace
3486 -- "derived from subtype of" simply by "derived from"
3488 if not Buffer_Ends_With ("subtype of ")
3489 and then not Buffer_Ends_With ("derived from ")
3490 then
3491 Set_Msg_Str ("subtype of ");
3492 end if;
3494 Ent := Base_Type (Ent);
3496 -- If this is a base type with a first named subtype, use the first
3497 -- named subtype instead. This is not quite accurate in all cases,
3498 -- but it makes too much noise to be accurate and add 'Base in all
3499 -- cases. Note that we only do this is the first named subtype is not
3500 -- itself an internal name. This avoids the obvious loop (subtype ->
3501 -- basetype -> subtype) which would otherwise occur).
3503 else
3504 declare
3505 FST : constant Entity_Id := First_Subtype (Ent);
3507 begin
3508 if not Is_Internal_Name (Chars (FST)) then
3509 Ent := FST;
3510 exit Find;
3512 -- Otherwise use root type
3514 else
3515 if not Derived then
3516 Buffer_Remove ("type ");
3518 -- Test for "subtype of type derived from" which seems
3519 -- excessive and is replaced by "type derived from".
3521 Buffer_Remove ("subtype of");
3523 -- Avoid duplicated "type derived from type derived from"
3525 if not Buffer_Ends_With ("type derived from ") then
3526 Set_Msg_Str ("type derived from ");
3527 end if;
3529 Derived := True;
3530 end if;
3531 end if;
3532 end;
3534 Ent := Etype (Ent);
3535 end if;
3537 -- If we are stuck in a loop, get out and settle for the internal
3538 -- name after all. In this case we set to kill the message if it is
3539 -- not the first error message (we really try hard not to show the
3540 -- dirty laundry of the implementation to the poor user).
3542 if Ent = Old_Ent then
3543 Kill_Message := True;
3544 exit Find;
3545 end if;
3547 -- Get out if we finally found a non-internal name to use
3549 exit Find when not Is_Internal_Name (Chars (Ent));
3550 end loop Find;
3552 if Mchar = '"' then
3553 Set_Msg_Char ('"');
3554 end if;
3555 end Unwind_Internal_Type;
3557 --------------------
3558 -- Warn_Insertion --
3559 --------------------
3561 function Warn_Insertion return String is
3562 begin
3563 case Warning_Msg_Char is
3564 when '?' =>
3565 return "??";
3567 when 'a' .. 'z' | 'A' .. 'Z' | '*' | '$' =>
3568 return '?' & Warning_Msg_Char & '?';
3570 when ' ' =>
3571 return "?";
3573 when others =>
3574 raise Program_Error;
3575 end case;
3576 end Warn_Insertion;
3578 end Errout;