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