015-02-05 Robert Dewar <dewar@adacore.com>
[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 end if;
1168 end if;
1169
1170 -- Record warning message issued
1171
1172 if Errors.Table (Cur_Msg).Warn
1173 and then not Errors.Table (Cur_Msg).Msg_Cont
1174 then
1175 Warning_Msg := Cur_Msg;
1176 end if;
1177
1178 -- If too many warnings turn off warnings
1179
1180 if Maximum_Messages /= 0 then
1181 if Warnings_Detected = Maximum_Messages then
1182 Warning_Mode := Suppress;
1183 end if;
1184
1185 -- If too many errors abandon compilation
1186
1187 if Total_Errors_Detected = Maximum_Messages then
1188 raise Unrecoverable_Error;
1189 end if;
1190 end if;
1191 end Error_Msg_Internal;
1192
1193 -----------------
1194 -- Error_Msg_N --
1195 -----------------
1196
1197 procedure Error_Msg_N (Msg : String; N : Node_Or_Entity_Id) is
1198 begin
1199 Error_Msg_NEL (Msg, N, N, Sloc (N));
1200 end Error_Msg_N;
1201
1202 ------------------
1203 -- Error_Msg_NE --
1204 ------------------
1205
1206 procedure Error_Msg_NE
1207 (Msg : String;
1208 N : Node_Or_Entity_Id;
1209 E : Node_Or_Entity_Id)
1210 is
1211 begin
1212 Error_Msg_NEL (Msg, N, E, Sloc (N));
1213 end Error_Msg_NE;
1214
1215 -------------------
1216 -- Error_Msg_NEL --
1217 -------------------
1218
1219 procedure Error_Msg_NEL
1220 (Msg : String;
1221 N : Node_Or_Entity_Id;
1222 E : Node_Or_Entity_Id;
1223 Flag_Location : Source_Ptr)
1224 is
1225 begin
1226 if Special_Msg_Delete (Msg, N, E) then
1227 return;
1228 end if;
1229
1230 Prescan_Message (Msg);
1231
1232 -- Special handling for warning messages
1233
1234 if Is_Warning_Msg then
1235
1236 -- Suppress if no warnings set for either entity or node
1237
1238 if No_Warnings (N) or else No_Warnings (E) then
1239
1240 -- Disable any continuation messages as well
1241
1242 Last_Killed := True;
1243 return;
1244 end if;
1245
1246 -- Suppress if inside loop that is known to be null or is probably
1247 -- null (case where loop executes only if invalid values present).
1248 -- In either case warnings in the loop are likely to be junk.
1249
1250 declare
1251 P : Node_Id;
1252
1253 begin
1254 P := Parent (N);
1255 while Present (P) loop
1256 if Nkind (P) = N_Loop_Statement
1257 and then Suppress_Loop_Warnings (P)
1258 then
1259 return;
1260 end if;
1261
1262 P := Parent (P);
1263 end loop;
1264 end;
1265 end if;
1266
1267 -- Test for message to be output
1268
1269 if All_Errors_Mode
1270 or else Is_Unconditional_Msg
1271 or else Is_Warning_Msg
1272 or else OK_Node (N)
1273 or else (Msg (Msg'First) = '\' and then not Last_Killed)
1274 then
1275 Debug_Output (N);
1276 Error_Msg_Node_1 := E;
1277 Error_Msg (Msg, Flag_Location);
1278
1279 else
1280 Last_Killed := True;
1281 end if;
1282
1283 if not (Is_Warning_Msg or Is_Style_Msg) then
1284 Set_Posted (N);
1285 end if;
1286 end Error_Msg_NEL;
1287
1288 ------------------
1289 -- Error_Msg_NW --
1290 ------------------
1291
1292 procedure Error_Msg_NW
1293 (Eflag : Boolean;
1294 Msg : String;
1295 N : Node_Or_Entity_Id)
1296 is
1297 begin
1298 if Eflag
1299 and then In_Extended_Main_Source_Unit (N)
1300 and then Comes_From_Source (N)
1301 then
1302 Error_Msg_NEL (Msg, N, N, Sloc (N));
1303 end if;
1304 end Error_Msg_NW;
1305
1306 -----------------
1307 -- Error_Msg_S --
1308 -----------------
1309
1310 procedure Error_Msg_S (Msg : String) is
1311 begin
1312 Error_Msg (Msg, Scan_Ptr);
1313 end Error_Msg_S;
1314
1315 ------------------
1316 -- Error_Msg_SC --
1317 ------------------
1318
1319 procedure Error_Msg_SC (Msg : String) is
1320 begin
1321 -- If we are at end of file, post the flag after the previous token
1322
1323 if Token = Tok_EOF then
1324 Error_Msg_AP (Msg);
1325
1326 -- For all other cases the message is posted at the current token
1327 -- pointer position
1328
1329 else
1330 Error_Msg (Msg, Token_Ptr);
1331 end if;
1332 end Error_Msg_SC;
1333
1334 ------------------
1335 -- Error_Msg_SP --
1336 ------------------
1337
1338 procedure Error_Msg_SP (Msg : String) is
1339 begin
1340 -- Note: in the case where there is no previous token, Prev_Token_Ptr
1341 -- is set to Source_First, which is a reasonable position for the
1342 -- error flag in this situation
1343
1344 Error_Msg (Msg, Prev_Token_Ptr);
1345 end Error_Msg_SP;
1346
1347 --------------
1348 -- Finalize --
1349 --------------
1350
1351 procedure Finalize (Last_Call : Boolean) is
1352 Cur : Error_Msg_Id;
1353 Nxt : Error_Msg_Id;
1354 F : Error_Msg_Id;
1355
1356 procedure Delete_Warning (E : Error_Msg_Id);
1357 -- Delete a warning msg if not already deleted and adjust warning count
1358
1359 --------------------
1360 -- Delete_Warning --
1361 --------------------
1362
1363 procedure Delete_Warning (E : Error_Msg_Id) is
1364 begin
1365 if not Errors.Table (E).Deleted then
1366 Errors.Table (E).Deleted := True;
1367 Warnings_Detected := Warnings_Detected - 1;
1368
1369 if Errors.Table (E).Info then
1370 Info_Messages := Info_Messages - 1;
1371 end if;
1372
1373 if Errors.Table (E).Warn_Err then
1374 Warnings_Treated_As_Errors := Warnings_Treated_As_Errors - 1;
1375 end if;
1376 end if;
1377 end Delete_Warning;
1378
1379 -- Start of processing for Finalize
1380
1381 begin
1382 -- Set Prev pointers
1383
1384 Cur := First_Error_Msg;
1385 while Cur /= No_Error_Msg loop
1386 Nxt := Errors.Table (Cur).Next;
1387 exit when Nxt = No_Error_Msg;
1388 Errors.Table (Nxt).Prev := Cur;
1389 Cur := Nxt;
1390 end loop;
1391
1392 -- Eliminate any duplicated error messages from the list. This is
1393 -- done after the fact to avoid problems with Change_Error_Text.
1394
1395 Cur := First_Error_Msg;
1396 while Cur /= No_Error_Msg loop
1397 Nxt := Errors.Table (Cur).Next;
1398
1399 F := Nxt;
1400 while F /= No_Error_Msg
1401 and then Errors.Table (F).Sptr = Errors.Table (Cur).Sptr
1402 loop
1403 Check_Duplicate_Message (Cur, F);
1404 F := Errors.Table (F).Next;
1405 end loop;
1406
1407 Cur := Nxt;
1408 end loop;
1409
1410 -- Mark any messages suppressed by specific warnings as Deleted
1411
1412 Cur := First_Error_Msg;
1413 while Cur /= No_Error_Msg loop
1414 declare
1415 CE : Error_Msg_Object renames Errors.Table (Cur);
1416 Tag : constant String := Get_Warning_Tag (Cur);
1417
1418 begin
1419 if (CE.Warn and not CE.Deleted)
1420 and then
1421 (Warning_Specifically_Suppressed (CE.Sptr, CE.Text, Tag) /=
1422 No_String
1423 or else
1424 Warning_Specifically_Suppressed (CE.Optr, CE.Text, Tag) /=
1425 No_String)
1426 then
1427 Delete_Warning (Cur);
1428
1429 -- If this is a continuation, delete previous parts of message
1430
1431 F := Cur;
1432 while Errors.Table (F).Msg_Cont loop
1433 F := Errors.Table (F).Prev;
1434 exit when F = No_Error_Msg;
1435 Delete_Warning (F);
1436 end loop;
1437
1438 -- Delete any following continuations
1439
1440 F := Cur;
1441 loop
1442 F := Errors.Table (F).Next;
1443 exit when F = No_Error_Msg;
1444 exit when not Errors.Table (F).Msg_Cont;
1445 Delete_Warning (F);
1446 end loop;
1447 end if;
1448 end;
1449
1450 Cur := Errors.Table (Cur).Next;
1451 end loop;
1452
1453 Finalize_Called := True;
1454
1455 -- Check consistency of specific warnings (may add warnings). We only
1456 -- do this on the last call, after all possible warnings are posted.
1457
1458 if Last_Call then
1459 Validate_Specific_Warnings (Error_Msg'Access);
1460 end if;
1461 end Finalize;
1462
1463 ----------------
1464 -- First_Node --
1465 ----------------
1466
1467 function First_Node (C : Node_Id) return Node_Id is
1468 Orig : constant Node_Id := Original_Node (C);
1469 Loc : constant Source_Ptr := Sloc (Orig);
1470 Sfile : constant Source_File_Index := Get_Source_File_Index (Loc);
1471 Earliest : Node_Id;
1472 Eloc : Source_Ptr;
1473
1474 function Test_Earlier (N : Node_Id) return Traverse_Result;
1475 -- Function applied to every node in the construct
1476
1477 procedure Search_Tree_First is new Traverse_Proc (Test_Earlier);
1478 -- Create traversal procedure
1479
1480 ------------------
1481 -- Test_Earlier --
1482 ------------------
1483
1484 function Test_Earlier (N : Node_Id) return Traverse_Result is
1485 Norig : constant Node_Id := Original_Node (N);
1486 Loc : constant Source_Ptr := Sloc (Norig);
1487
1488 begin
1489 -- Check for earlier
1490
1491 if Loc < Eloc
1492
1493 -- Ignore nodes with no useful location information
1494
1495 and then Loc /= Standard_Location
1496 and then Loc /= No_Location
1497
1498 -- Ignore nodes from a different file. This ensures against cases
1499 -- of strange foreign code somehow being present. We don't want
1500 -- wild placement of messages if that happens.
1501
1502 and then Get_Source_File_Index (Loc) = Sfile
1503 then
1504 Earliest := Norig;
1505 Eloc := Loc;
1506 end if;
1507
1508 return OK_Orig;
1509 end Test_Earlier;
1510
1511 -- Start of processing for First_Node
1512
1513 begin
1514 if Nkind (Orig) in N_Subexpr then
1515 Earliest := Orig;
1516 Eloc := Loc;
1517 Search_Tree_First (Orig);
1518 return Earliest;
1519
1520 else
1521 return Orig;
1522 end if;
1523 end First_Node;
1524
1525 ----------------
1526 -- First_Sloc --
1527 ----------------
1528
1529 function First_Sloc (N : Node_Id) return Source_Ptr is
1530 SI : constant Source_File_Index := Source_Index (Get_Source_Unit (N));
1531 SF : constant Source_Ptr := Source_First (SI);
1532 F : Node_Id;
1533 S : Source_Ptr;
1534
1535 begin
1536 F := First_Node (N);
1537 S := Sloc (F);
1538
1539 -- The following circuit is a bit subtle. When we have parenthesized
1540 -- expressions, then the Sloc will not record the location of the paren,
1541 -- but we would like to post the flag on the paren. So what we do is to
1542 -- crawl up the tree from the First_Node, adjusting the Sloc value for
1543 -- any parentheses we know are present. Yes, we know this circuit is not
1544 -- 100% reliable (e.g. because we don't record all possible paren level
1545 -- values), but this is only for an error message so it is good enough.
1546
1547 Node_Loop : loop
1548 Paren_Loop : for J in 1 .. Paren_Count (F) loop
1549
1550 -- We don't look more than 12 characters behind the current
1551 -- location, and in any case not past the front of the source.
1552
1553 Search_Loop : for K in 1 .. 12 loop
1554 exit Search_Loop when S = SF;
1555
1556 if Source_Text (SI) (S - 1) = '(' then
1557 S := S - 1;
1558 exit Search_Loop;
1559
1560 elsif Source_Text (SI) (S - 1) <= ' ' then
1561 S := S - 1;
1562
1563 else
1564 exit Search_Loop;
1565 end if;
1566 end loop Search_Loop;
1567 end loop Paren_Loop;
1568
1569 exit Node_Loop when F = N;
1570 F := Parent (F);
1571 exit Node_Loop when Nkind (F) not in N_Subexpr;
1572 end loop Node_Loop;
1573
1574 return S;
1575 end First_Sloc;
1576
1577 -----------------------
1578 -- Get_Ignore_Errors --
1579 -----------------------
1580
1581 function Get_Ignore_Errors return Boolean is
1582 begin
1583 return Errors_Must_Be_Ignored;
1584 end Get_Ignore_Errors;
1585
1586 ----------------
1587 -- Initialize --
1588 ----------------
1589
1590 procedure Initialize is
1591 begin
1592 Errors.Init;
1593 First_Error_Msg := No_Error_Msg;
1594 Last_Error_Msg := No_Error_Msg;
1595 Serious_Errors_Detected := 0;
1596 Total_Errors_Detected := 0;
1597 Warnings_Treated_As_Errors := 0;
1598 Warnings_Detected := 0;
1599 Info_Messages := 0;
1600 Warnings_As_Errors_Count := 0;
1601 Cur_Msg := No_Error_Msg;
1602 List_Pragmas.Init;
1603
1604 -- Initialize warnings tables
1605
1606 Warnings.Init;
1607 Specific_Warnings.Init;
1608 end Initialize;
1609
1610 -----------------
1611 -- No_Warnings --
1612 -----------------
1613
1614 function No_Warnings (N : Node_Or_Entity_Id) return Boolean is
1615 begin
1616 if Error_Posted (N) then
1617 return True;
1618
1619 elsif Nkind (N) in N_Entity and then Has_Warnings_Off (N) then
1620 return True;
1621
1622 elsif Is_Entity_Name (N)
1623 and then Present (Entity (N))
1624 and then Has_Warnings_Off (Entity (N))
1625 then
1626 return True;
1627
1628 else
1629 return False;
1630 end if;
1631 end No_Warnings;
1632
1633 -------------
1634 -- OK_Node --
1635 -------------
1636
1637 function OK_Node (N : Node_Id) return Boolean is
1638 K : constant Node_Kind := Nkind (N);
1639
1640 begin
1641 if Error_Posted (N) then
1642 return False;
1643
1644 elsif K in N_Has_Etype
1645 and then Present (Etype (N))
1646 and then Error_Posted (Etype (N))
1647 then
1648 return False;
1649
1650 elsif (K in N_Op
1651 or else K = N_Attribute_Reference
1652 or else K = N_Character_Literal
1653 or else K = N_Expanded_Name
1654 or else K = N_Identifier
1655 or else K = N_Operator_Symbol)
1656 and then Present (Entity (N))
1657 and then Error_Posted (Entity (N))
1658 then
1659 return False;
1660 else
1661 return True;
1662 end if;
1663 end OK_Node;
1664
1665 ---------------------
1666 -- Output_Messages --
1667 ---------------------
1668
1669 procedure Output_Messages is
1670 E : Error_Msg_Id;
1671 Err_Flag : Boolean;
1672
1673 procedure Write_Error_Summary;
1674 -- Write error summary
1675
1676 procedure Write_Header (Sfile : Source_File_Index);
1677 -- Write header line (compiling or checking given file)
1678
1679 procedure Write_Max_Errors;
1680 -- Write message if max errors reached
1681
1682 -------------------------
1683 -- Write_Error_Summary --
1684 -------------------------
1685
1686 procedure Write_Error_Summary is
1687 begin
1688 -- Extra blank line if error messages or source listing were output
1689
1690 if Total_Errors_Detected + Warnings_Detected > 0 or else Full_List
1691 then
1692 Write_Eol;
1693 end if;
1694
1695 -- Message giving number of lines read and number of errors detected.
1696 -- This normally goes to Standard_Output. The exception is when brief
1697 -- mode is not set, verbose mode (or full list mode) is set, and
1698 -- there are errors. In this case we send the message to standard
1699 -- error to make sure that *something* appears on standard error
1700 -- in an error situation.
1701
1702 if Total_Errors_Detected + Warnings_Detected /= 0
1703 and then not Brief_Output
1704 and then (Verbose_Mode or Full_List)
1705 then
1706 Set_Standard_Error;
1707 end if;
1708
1709 -- Message giving total number of lines. Don't give this message if
1710 -- the Main_Source line is unknown (this happens in error situations,
1711 -- e.g. when integrated preprocessing fails).
1712
1713 if Main_Source_File /= No_Source_File then
1714 Write_Str (" ");
1715 Write_Int (Num_Source_Lines (Main_Source_File));
1716
1717 if Num_Source_Lines (Main_Source_File) = 1 then
1718 Write_Str (" line: ");
1719 else
1720 Write_Str (" lines: ");
1721 end if;
1722 end if;
1723
1724 if Total_Errors_Detected = 0 then
1725 Write_Str ("No errors");
1726
1727 elsif Total_Errors_Detected = 1 then
1728 Write_Str ("1 error");
1729
1730 else
1731 Write_Int (Total_Errors_Detected);
1732 Write_Str (" errors");
1733 end if;
1734
1735 if Warnings_Detected - Info_Messages /= 0 then
1736 Write_Str (", ");
1737 Write_Int (Warnings_Detected);
1738 Write_Str (" warning");
1739
1740 if Warnings_Detected - Info_Messages /= 1 then
1741 Write_Char ('s');
1742 end if;
1743
1744 if Warning_Mode = Treat_As_Error then
1745 Write_Str (" (treated as error");
1746
1747 if Warnings_Detected /= 1 then
1748 Write_Char ('s');
1749 end if;
1750
1751 Write_Char (')');
1752
1753 elsif Warnings_Treated_As_Errors /= 0 then
1754 Write_Str (" (");
1755 Write_Int (Warnings_Treated_As_Errors);
1756 Write_Str (" treated as errors)");
1757 end if;
1758 end if;
1759
1760 if Info_Messages /= 0 then
1761 Write_Str (", ");
1762 Write_Int (Info_Messages);
1763 Write_Str (" info message");
1764
1765 if Info_Messages > 1 then
1766 Write_Char ('s');
1767 end if;
1768 end if;
1769
1770 Write_Eol;
1771 Set_Standard_Output;
1772 end Write_Error_Summary;
1773
1774 ------------------
1775 -- Write_Header --
1776 ------------------
1777
1778 procedure Write_Header (Sfile : Source_File_Index) is
1779 begin
1780 if Verbose_Mode or Full_List then
1781 if Original_Operating_Mode = Generate_Code then
1782 Write_Str ("Compiling: ");
1783 else
1784 Write_Str ("Checking: ");
1785 end if;
1786
1787 Write_Name (Full_File_Name (Sfile));
1788
1789 if not Debug_Flag_7 then
1790 Write_Eol;
1791 Write_Str ("Source file time stamp: ");
1792 Write_Time_Stamp (Sfile);
1793 Write_Eol;
1794 Write_Str ("Compiled at: " & Compilation_Time);
1795 end if;
1796
1797 Write_Eol;
1798 end if;
1799 end Write_Header;
1800
1801 ----------------------
1802 -- Write_Max_Errors --
1803 ----------------------
1804
1805 procedure Write_Max_Errors is
1806 begin
1807 if Maximum_Messages /= 0 then
1808 if Warnings_Detected >= Maximum_Messages then
1809 Set_Standard_Error;
1810 Write_Line ("maximum number of warnings output");
1811 Write_Line ("any further warnings suppressed");
1812 Set_Standard_Output;
1813 end if;
1814
1815 -- If too many errors print message
1816
1817 if Total_Errors_Detected >= Maximum_Messages then
1818 Set_Standard_Error;
1819 Write_Line ("fatal error: maximum number of errors detected");
1820 Set_Standard_Output;
1821 end if;
1822 end if;
1823 end Write_Max_Errors;
1824
1825 -- Start of processing for Output_Messages
1826
1827 begin
1828 -- Error if Finalize has not been called
1829
1830 if not Finalize_Called then
1831 raise Program_Error;
1832 end if;
1833
1834 -- Reset current error source file if the main unit has a pragma
1835 -- Source_Reference. This ensures outputting the proper name of
1836 -- the source file in this situation.
1837
1838 if Main_Source_File = No_Source_File
1839 or else Num_SRef_Pragmas (Main_Source_File) /= 0
1840 then
1841 Current_Error_Source_File := No_Source_File;
1842 end if;
1843
1844 -- Brief Error mode
1845
1846 if Brief_Output or (not Full_List and not Verbose_Mode) then
1847 Set_Standard_Error;
1848
1849 E := First_Error_Msg;
1850 while E /= No_Error_Msg loop
1851 if not Errors.Table (E).Deleted and then not Debug_Flag_KK then
1852 if Full_Path_Name_For_Brief_Errors then
1853 Write_Name (Full_Ref_Name (Errors.Table (E).Sfile));
1854 else
1855 Write_Name (Reference_Name (Errors.Table (E).Sfile));
1856 end if;
1857
1858 Write_Char (':');
1859 Write_Int (Int (Physical_To_Logical
1860 (Errors.Table (E).Line,
1861 Errors.Table (E).Sfile)));
1862 Write_Char (':');
1863
1864 if Errors.Table (E).Col < 10 then
1865 Write_Char ('0');
1866 end if;
1867
1868 Write_Int (Int (Errors.Table (E).Col));
1869 Write_Str (": ");
1870 Output_Msg_Text (E);
1871 Write_Eol;
1872 end if;
1873
1874 E := Errors.Table (E).Next;
1875 end loop;
1876
1877 Set_Standard_Output;
1878 end if;
1879
1880 -- Full source listing case
1881
1882 if Full_List then
1883 List_Pragmas_Index := 1;
1884 List_Pragmas_Mode := True;
1885 E := First_Error_Msg;
1886
1887 -- Normal case, to stdout (copyright notice already output)
1888
1889 if Full_List_File_Name = null then
1890 if not Debug_Flag_7 then
1891 Write_Eol;
1892 end if;
1893
1894 -- Output to file
1895
1896 else
1897 Create_List_File_Access.all (Full_List_File_Name.all);
1898 Set_Special_Output (Write_List_Info_Access.all'Access);
1899
1900 -- Write copyright notice to file
1901
1902 if not Debug_Flag_7 then
1903 Write_Str ("GNAT ");
1904 Write_Str (Gnat_Version_String);
1905 Write_Eol;
1906 Write_Str ("Copyright 1992-" &
1907 Current_Year &
1908 ", Free Software Foundation, Inc.");
1909 Write_Eol;
1910 end if;
1911 end if;
1912
1913 -- First list extended main source file units with errors
1914
1915 for U in Main_Unit .. Last_Unit loop
1916 if In_Extended_Main_Source_Unit (Cunit_Entity (U))
1917
1918 -- If debug flag d.m is set, only the main source is listed
1919
1920 and then (U = Main_Unit or else not Debug_Flag_Dot_M)
1921
1922 -- If the unit of the entity does not come from source, it is
1923 -- an implicit subprogram declaration for a child subprogram.
1924 -- Do not emit errors for it, they are listed with the body.
1925
1926 and then
1927 (No (Cunit_Entity (U))
1928 or else Comes_From_Source (Cunit_Entity (U))
1929 or else not Is_Subprogram (Cunit_Entity (U)))
1930
1931 -- If the compilation unit associated with this unit does not
1932 -- come from source, it means it is an instantiation that should
1933 -- not be included in the source listing.
1934
1935 and then Comes_From_Source (Cunit (U))
1936 then
1937 declare
1938 Sfile : constant Source_File_Index := Source_Index (U);
1939
1940 begin
1941 Write_Eol;
1942
1943 -- Only write the header if Sfile is known
1944
1945 if Sfile /= No_Source_File then
1946 Write_Header (Sfile);
1947 Write_Eol;
1948 end if;
1949
1950 -- Normally, we don't want an "error messages from file"
1951 -- message when listing the entire file, so we set the
1952 -- current source file as the current error source file.
1953 -- However, the old style of doing things was to list this
1954 -- message if pragma Source_Reference is present, even for
1955 -- the main unit. Since the purpose of the -gnatd.m switch
1956 -- is to duplicate the old behavior, we skip the reset if
1957 -- this debug flag is set.
1958
1959 if not Debug_Flag_Dot_M then
1960 Current_Error_Source_File := Sfile;
1961 end if;
1962
1963 -- Only output the listing if Sfile is known, to avoid
1964 -- crashing the compiler.
1965
1966 if Sfile /= No_Source_File then
1967 for N in 1 .. Last_Source_Line (Sfile) loop
1968 while E /= No_Error_Msg
1969 and then Errors.Table (E).Deleted
1970 loop
1971 E := Errors.Table (E).Next;
1972 end loop;
1973
1974 Err_Flag :=
1975 E /= No_Error_Msg
1976 and then Errors.Table (E).Line = N
1977 and then Errors.Table (E).Sfile = Sfile;
1978
1979 Output_Source_Line (N, Sfile, Err_Flag);
1980
1981 if Err_Flag then
1982 Output_Error_Msgs (E);
1983
1984 if not Debug_Flag_2 then
1985 Write_Eol;
1986 end if;
1987 end if;
1988 end loop;
1989 end if;
1990 end;
1991 end if;
1992 end loop;
1993
1994 -- Then output errors, if any, for subsidiary units not in the
1995 -- main extended unit.
1996
1997 -- Note: if debug flag d.m set, include errors for any units other
1998 -- than the main unit in the extended source unit (e.g. spec and
1999 -- subunits for a body).
2000
2001 while E /= No_Error_Msg
2002 and then (not In_Extended_Main_Source_Unit (Errors.Table (E).Sptr)
2003 or else
2004 (Debug_Flag_Dot_M
2005 and then Get_Source_Unit
2006 (Errors.Table (E).Sptr) /= Main_Unit))
2007 loop
2008 if Errors.Table (E).Deleted then
2009 E := Errors.Table (E).Next;
2010
2011 else
2012 Write_Eol;
2013 Output_Source_Line
2014 (Errors.Table (E).Line, Errors.Table (E).Sfile, True);
2015 Output_Error_Msgs (E);
2016 end if;
2017 end loop;
2018
2019 -- If output to file, write extra copy of error summary to the
2020 -- output file, and then close it.
2021
2022 if Full_List_File_Name /= null then
2023 Write_Error_Summary;
2024 Write_Max_Errors;
2025 Close_List_File_Access.all;
2026 Cancel_Special_Output;
2027 end if;
2028 end if;
2029
2030 -- Verbose mode (error lines only with error flags). Normally this is
2031 -- ignored in full list mode, unless we are listing to a file, in which
2032 -- case we still generate -gnatv output to standard output.
2033
2034 if Verbose_Mode
2035 and then (not Full_List or else Full_List_File_Name /= null)
2036 then
2037 Write_Eol;
2038
2039 -- Output the header only when Main_Source_File is known
2040
2041 if Main_Source_File /= No_Source_File then
2042 Write_Header (Main_Source_File);
2043 end if;
2044
2045 E := First_Error_Msg;
2046
2047 -- Loop through error lines
2048
2049 while E /= No_Error_Msg loop
2050 if Errors.Table (E).Deleted then
2051 E := Errors.Table (E).Next;
2052 else
2053 Write_Eol;
2054 Output_Source_Line
2055 (Errors.Table (E).Line, Errors.Table (E).Sfile, True);
2056 Output_Error_Msgs (E);
2057 end if;
2058 end loop;
2059 end if;
2060
2061 -- Output error summary if verbose or full list mode
2062
2063 if Verbose_Mode or else Full_List then
2064 Write_Error_Summary;
2065 end if;
2066
2067 Write_Max_Errors;
2068
2069 if Warning_Mode = Treat_As_Error then
2070 Total_Errors_Detected :=
2071 Total_Errors_Detected + Warnings_Detected - Info_Messages;
2072 Warnings_Detected := Info_Messages;
2073 end if;
2074 end Output_Messages;
2075
2076 ------------------------
2077 -- Output_Source_Line --
2078 ------------------------
2079
2080 procedure Output_Source_Line
2081 (L : Physical_Line_Number;
2082 Sfile : Source_File_Index;
2083 Errs : Boolean)
2084 is
2085 S : Source_Ptr;
2086 C : Character;
2087
2088 Line_Number_Output : Boolean := False;
2089 -- Set True once line number is output
2090
2091 Empty_Line : Boolean := True;
2092 -- Set False if line includes at least one character
2093
2094 begin
2095 if Sfile /= Current_Error_Source_File then
2096 Write_Str ("==============Error messages for ");
2097
2098 case Sinput.File_Type (Sfile) is
2099 when Sinput.Src =>
2100 Write_Str ("source");
2101
2102 when Sinput.Config =>
2103 Write_Str ("configuration pragmas");
2104
2105 when Sinput.Def =>
2106 Write_Str ("symbol definition");
2107
2108 when Sinput.Preproc =>
2109 Write_Str ("preprocessing data");
2110 end case;
2111
2112 Write_Str (" file: ");
2113 Write_Name (Full_File_Name (Sfile));
2114 Write_Eol;
2115
2116 if Num_SRef_Pragmas (Sfile) > 0 then
2117 Write_Str ("--------------Line numbers from file: ");
2118 Write_Name (Full_Ref_Name (Sfile));
2119 Write_Str (" (starting at line ");
2120 Write_Int (Int (First_Mapped_Line (Sfile)));
2121 Write_Char (')');
2122 Write_Eol;
2123 end if;
2124
2125 Current_Error_Source_File := Sfile;
2126 end if;
2127
2128 if Errs or List_Pragmas_Mode then
2129 Output_Line_Number (Physical_To_Logical (L, Sfile));
2130 Line_Number_Output := True;
2131 end if;
2132
2133 S := Line_Start (L, Sfile);
2134
2135 loop
2136 C := Source_Text (Sfile) (S);
2137 exit when C = ASCII.LF or else C = ASCII.CR or else C = EOF;
2138
2139 -- Deal with matching entry in List_Pragmas table
2140
2141 if Full_List
2142 and then List_Pragmas_Index <= List_Pragmas.Last
2143 and then S = List_Pragmas.Table (List_Pragmas_Index).Ploc
2144 then
2145 case List_Pragmas.Table (List_Pragmas_Index).Ptyp is
2146 when Page =>
2147 Write_Char (C);
2148
2149 -- Ignore if on line with errors so that error flags
2150 -- get properly listed with the error line .
2151
2152 if not Errs then
2153 Write_Char (ASCII.FF);
2154 end if;
2155
2156 when List_On =>
2157 List_Pragmas_Mode := True;
2158
2159 if not Line_Number_Output then
2160 Output_Line_Number (Physical_To_Logical (L, Sfile));
2161 Line_Number_Output := True;
2162 end if;
2163
2164 Write_Char (C);
2165
2166 when List_Off =>
2167 Write_Char (C);
2168 List_Pragmas_Mode := False;
2169 end case;
2170
2171 List_Pragmas_Index := List_Pragmas_Index + 1;
2172
2173 -- Normal case (no matching entry in List_Pragmas table)
2174
2175 else
2176 if Errs or List_Pragmas_Mode then
2177 Write_Char (C);
2178 end if;
2179 end if;
2180
2181 Empty_Line := False;
2182 S := S + 1;
2183 end loop;
2184
2185 -- If we have output a source line, then add the line terminator, with
2186 -- training spaces preserved (so we output the line exactly as input).
2187
2188 if Line_Number_Output then
2189 if Empty_Line then
2190 Write_Eol;
2191 else
2192 Write_Eol_Keep_Blanks;
2193 end if;
2194 end if;
2195 end Output_Source_Line;
2196
2197 -----------------------------
2198 -- Remove_Warning_Messages --
2199 -----------------------------
2200
2201 procedure Remove_Warning_Messages (N : Node_Id) is
2202
2203 function Check_For_Warning (N : Node_Id) return Traverse_Result;
2204 -- This function checks one node for a possible warning message
2205
2206 function Check_All_Warnings is new Traverse_Func (Check_For_Warning);
2207 -- This defines the traversal operation
2208
2209 -----------------------
2210 -- Check_For_Warning --
2211 -----------------------
2212
2213 function Check_For_Warning (N : Node_Id) return Traverse_Result is
2214 Loc : constant Source_Ptr := Sloc (N);
2215 E : Error_Msg_Id;
2216
2217 function To_Be_Removed (E : Error_Msg_Id) return Boolean;
2218 -- Returns True for a message that is to be removed. Also adjusts
2219 -- warning count appropriately.
2220
2221 -------------------
2222 -- To_Be_Removed --
2223 -------------------
2224
2225 function To_Be_Removed (E : Error_Msg_Id) return Boolean is
2226 begin
2227 if E /= No_Error_Msg
2228
2229 -- Don't remove if location does not match
2230
2231 and then Errors.Table (E).Optr = Loc
2232
2233 -- Don't remove if not warning/info message. Note that we do
2234 -- not remove style messages here. They are warning messages
2235 -- but not ones we want removed in this context.
2236
2237 and then Errors.Table (E).Warn
2238
2239 -- Don't remove unconditional messages
2240
2241 and then not Errors.Table (E).Uncond
2242 then
2243 Warnings_Detected := Warnings_Detected - 1;
2244
2245 if Errors.Table (E).Info then
2246 Info_Messages := Info_Messages - 1;
2247 end if;
2248
2249 return True;
2250
2251 -- No removal required
2252
2253 else
2254 return False;
2255 end if;
2256 end To_Be_Removed;
2257
2258 -- Start of processing for Check_For_Warnings
2259
2260 begin
2261 while To_Be_Removed (First_Error_Msg) loop
2262 First_Error_Msg := Errors.Table (First_Error_Msg).Next;
2263 end loop;
2264
2265 if First_Error_Msg = No_Error_Msg then
2266 Last_Error_Msg := No_Error_Msg;
2267 end if;
2268
2269 E := First_Error_Msg;
2270 while E /= No_Error_Msg loop
2271 while To_Be_Removed (Errors.Table (E).Next) loop
2272 Errors.Table (E).Next :=
2273 Errors.Table (Errors.Table (E).Next).Next;
2274
2275 if Errors.Table (E).Next = No_Error_Msg then
2276 Last_Error_Msg := E;
2277 end if;
2278 end loop;
2279
2280 E := Errors.Table (E).Next;
2281 end loop;
2282
2283 if Nkind (N) = N_Raise_Constraint_Error
2284 and then Original_Node (N) /= N
2285 and then No (Condition (N))
2286 then
2287 -- Warnings may have been posted on subexpressions of the original
2288 -- tree. We place the original node back on the tree to remove
2289 -- those warnings, whose sloc do not match those of any node in
2290 -- the current tree. Given that we are in unreachable code, this
2291 -- modification to the tree is harmless.
2292
2293 declare
2294 Status : Traverse_Final_Result;
2295
2296 begin
2297 if Is_List_Member (N) then
2298 Set_Condition (N, Original_Node (N));
2299 Status := Check_All_Warnings (Condition (N));
2300 else
2301 Rewrite (N, Original_Node (N));
2302 Status := Check_All_Warnings (N);
2303 end if;
2304
2305 return Status;
2306 end;
2307
2308 else
2309 return OK;
2310 end if;
2311 end Check_For_Warning;
2312
2313 -- Start of processing for Remove_Warning_Messages
2314
2315 begin
2316 if Warnings_Detected /= 0 then
2317 declare
2318 Discard : Traverse_Final_Result;
2319 pragma Warnings (Off, Discard);
2320
2321 begin
2322 Discard := Check_All_Warnings (N);
2323 end;
2324 end if;
2325 end Remove_Warning_Messages;
2326
2327 procedure Remove_Warning_Messages (L : List_Id) is
2328 Stat : Node_Id;
2329 begin
2330 if Is_Non_Empty_List (L) then
2331 Stat := First (L);
2332 while Present (Stat) loop
2333 Remove_Warning_Messages (Stat);
2334 Next (Stat);
2335 end loop;
2336 end if;
2337 end Remove_Warning_Messages;
2338
2339 ----------------------
2340 -- Adjust_Name_Case --
2341 ----------------------
2342
2343 procedure Adjust_Name_Case (Loc : Source_Ptr) is
2344 begin
2345 -- We have an all lower case name from Namet, and now we want to set
2346 -- the appropriate case. If possible we copy the actual casing from
2347 -- the source. If not we use standard identifier casing.
2348
2349 declare
2350 Src_Ind : constant Source_File_Index := Get_Source_File_Index (Loc);
2351 Sbuffer : Source_Buffer_Ptr;
2352 Ref_Ptr : Integer;
2353 Src_Ptr : Source_Ptr;
2354
2355 begin
2356 Ref_Ptr := 1;
2357 Src_Ptr := Loc;
2358
2359 -- For standard locations, always use mixed case
2360
2361 if Loc <= No_Location then
2362 Set_Casing (Mixed_Case);
2363
2364 else
2365 -- Determine if the reference we are dealing with corresponds to
2366 -- text at the point of the error reference. This will often be
2367 -- the case for simple identifier references, and is the case
2368 -- where we can copy the casing from the source.
2369
2370 Sbuffer := Source_Text (Src_Ind);
2371
2372 while Ref_Ptr <= Name_Len loop
2373 exit when
2374 Fold_Lower (Sbuffer (Src_Ptr)) /=
2375 Fold_Lower (Name_Buffer (Ref_Ptr));
2376 Ref_Ptr := Ref_Ptr + 1;
2377 Src_Ptr := Src_Ptr + 1;
2378 end loop;
2379
2380 -- If we get through the loop without a mismatch, then output the
2381 -- name the way it is cased in the source program
2382
2383 if Ref_Ptr > Name_Len then
2384 Src_Ptr := Loc;
2385
2386 for J in 1 .. Name_Len loop
2387 Name_Buffer (J) := Sbuffer (Src_Ptr);
2388 Src_Ptr := Src_Ptr + 1;
2389 end loop;
2390
2391 -- Otherwise set the casing using the default identifier casing
2392
2393 else
2394 Set_Casing (Identifier_Casing (Src_Ind), Mixed_Case);
2395 end if;
2396 end if;
2397 end;
2398 end Adjust_Name_Case;
2399
2400 ---------------------------
2401 -- Set_Identifier_Casing --
2402 ---------------------------
2403
2404 procedure Set_Identifier_Casing
2405 (Identifier_Name : System.Address;
2406 File_Name : System.Address)
2407 is
2408 Ident : constant Big_String_Ptr := To_Big_String_Ptr (Identifier_Name);
2409 File : constant Big_String_Ptr := To_Big_String_Ptr (File_Name);
2410 Flen : Natural;
2411
2412 Desired_Case : Casing_Type := Mixed_Case;
2413 -- Casing required for result. Default value of Mixed_Case is used if
2414 -- for some reason we cannot find the right file name in the table.
2415
2416 begin
2417 -- Get length of file name
2418
2419 Flen := 0;
2420 while File (Flen + 1) /= ASCII.NUL loop
2421 Flen := Flen + 1;
2422 end loop;
2423
2424 -- Loop through file names to find matching one. This is a bit slow, but
2425 -- we only do it in error situations so it is not so terrible. Note that
2426 -- if the loop does not exit, then the desired case will be left set to
2427 -- Mixed_Case, this can happen if the name was not in canonical form.
2428
2429 for J in 1 .. Last_Source_File loop
2430 Get_Name_String (Full_Debug_Name (J));
2431
2432 if Name_Len = Flen
2433 and then Name_Buffer (1 .. Name_Len) = String (File (1 .. Flen))
2434 then
2435 Desired_Case := Identifier_Casing (J);
2436 exit;
2437 end if;
2438 end loop;
2439
2440 -- Copy identifier as given to Name_Buffer
2441
2442 for J in Name_Buffer'Range loop
2443 Name_Buffer (J) := Ident (J);
2444
2445 if Name_Buffer (J) = ASCII.NUL then
2446 Name_Len := J - 1;
2447 exit;
2448 end if;
2449 end loop;
2450
2451 Set_Casing (Desired_Case);
2452 end Set_Identifier_Casing;
2453
2454 -----------------------
2455 -- Set_Ignore_Errors --
2456 -----------------------
2457
2458 procedure Set_Ignore_Errors (To : Boolean) is
2459 begin
2460 Errors_Must_Be_Ignored := To;
2461 end Set_Ignore_Errors;
2462
2463 ------------------------------
2464 -- Set_Msg_Insertion_Column --
2465 ------------------------------
2466
2467 procedure Set_Msg_Insertion_Column is
2468 begin
2469 if RM_Column_Check then
2470 Set_Msg_Str (" in column ");
2471 Set_Msg_Int (Int (Error_Msg_Col) + 1);
2472 end if;
2473 end Set_Msg_Insertion_Column;
2474
2475 ----------------------------
2476 -- Set_Msg_Insertion_Node --
2477 ----------------------------
2478
2479 procedure Set_Msg_Insertion_Node is
2480 K : Node_Kind;
2481
2482 begin
2483 Suppress_Message :=
2484 Error_Msg_Node_1 = Error
2485 or else Error_Msg_Node_1 = Any_Type;
2486
2487 if Error_Msg_Node_1 = Empty then
2488 Set_Msg_Blank_Conditional;
2489 Set_Msg_Str ("<empty>");
2490
2491 elsif Error_Msg_Node_1 = Error then
2492 Set_Msg_Blank;
2493 Set_Msg_Str ("<error>");
2494
2495 elsif Error_Msg_Node_1 = Standard_Void_Type then
2496 Set_Msg_Blank;
2497 Set_Msg_Str ("procedure name");
2498
2499 elsif Nkind (Error_Msg_Node_1) in N_Entity
2500 and then Ekind (Error_Msg_Node_1) = E_Anonymous_Access_Subprogram_Type
2501 then
2502 Set_Msg_Blank;
2503 Set_Msg_Str ("access to subprogram");
2504
2505 else
2506 Set_Msg_Blank_Conditional;
2507
2508 -- Output name
2509
2510 K := Nkind (Error_Msg_Node_1);
2511
2512 -- If we have operator case, skip quotes since name of operator
2513 -- itself will supply the required quotations. An operator can be an
2514 -- applied use in an expression or an explicit operator symbol, or an
2515 -- identifier whose name indicates it is an operator.
2516
2517 if K in N_Op
2518 or else K = N_Operator_Symbol
2519 or else K = N_Defining_Operator_Symbol
2520 or else ((K = N_Identifier or else K = N_Defining_Identifier)
2521 and then Is_Operator_Name (Chars (Error_Msg_Node_1)))
2522 then
2523 Set_Msg_Node (Error_Msg_Node_1);
2524
2525 -- Normal case, not an operator, surround with quotes
2526
2527 else
2528 Set_Msg_Quote;
2529 Set_Qualification (Error_Msg_Qual_Level, Error_Msg_Node_1);
2530 Set_Msg_Node (Error_Msg_Node_1);
2531 Set_Msg_Quote;
2532 end if;
2533 end if;
2534
2535 -- The following assignment ensures that a second ampersand insertion
2536 -- character will correspond to the Error_Msg_Node_2 parameter. We
2537 -- suppress possible validity checks in case operating in -gnatVa mode,
2538 -- and Error_Msg_Node_2 is not needed and has not been set.
2539
2540 declare
2541 pragma Suppress (Range_Check);
2542 begin
2543 Error_Msg_Node_1 := Error_Msg_Node_2;
2544 end;
2545 end Set_Msg_Insertion_Node;
2546
2547 --------------------------------------
2548 -- Set_Msg_Insertion_Type_Reference --
2549 --------------------------------------
2550
2551 procedure Set_Msg_Insertion_Type_Reference (Flag : Source_Ptr) is
2552 Ent : Entity_Id;
2553
2554 begin
2555 Set_Msg_Blank;
2556
2557 if Error_Msg_Node_1 = Standard_Void_Type then
2558 Set_Msg_Str ("package or procedure name");
2559 return;
2560
2561 elsif Error_Msg_Node_1 = Standard_Exception_Type then
2562 Set_Msg_Str ("exception name");
2563 return;
2564
2565 elsif Error_Msg_Node_1 = Any_Access
2566 or else Error_Msg_Node_1 = Any_Array
2567 or else Error_Msg_Node_1 = Any_Boolean
2568 or else Error_Msg_Node_1 = Any_Character
2569 or else Error_Msg_Node_1 = Any_Composite
2570 or else Error_Msg_Node_1 = Any_Discrete
2571 or else Error_Msg_Node_1 = Any_Fixed
2572 or else Error_Msg_Node_1 = Any_Integer
2573 or else Error_Msg_Node_1 = Any_Modular
2574 or else Error_Msg_Node_1 = Any_Numeric
2575 or else Error_Msg_Node_1 = Any_Real
2576 or else Error_Msg_Node_1 = Any_Scalar
2577 or else Error_Msg_Node_1 = Any_String
2578 then
2579 Get_Unqualified_Decoded_Name_String (Chars (Error_Msg_Node_1));
2580 Set_Msg_Name_Buffer;
2581 return;
2582
2583 elsif Error_Msg_Node_1 = Universal_Real then
2584 Set_Msg_Str ("type universal real");
2585 return;
2586
2587 elsif Error_Msg_Node_1 = Universal_Integer then
2588 Set_Msg_Str ("type universal integer");
2589 return;
2590
2591 elsif Error_Msg_Node_1 = Universal_Fixed then
2592 Set_Msg_Str ("type universal fixed");
2593 return;
2594 end if;
2595
2596 -- Special case of anonymous array
2597
2598 if Nkind (Error_Msg_Node_1) in N_Entity
2599 and then Is_Array_Type (Error_Msg_Node_1)
2600 and then Present (Related_Array_Object (Error_Msg_Node_1))
2601 then
2602 Set_Msg_Str ("type of ");
2603 Set_Msg_Node (Related_Array_Object (Error_Msg_Node_1));
2604 Set_Msg_Str (" declared");
2605 Set_Msg_Insertion_Line_Number
2606 (Sloc (Related_Array_Object (Error_Msg_Node_1)), Flag);
2607 return;
2608 end if;
2609
2610 -- If we fall through, it is not a special case, so first output
2611 -- the name of the type, preceded by private for a private type
2612
2613 if Is_Private_Type (Error_Msg_Node_1) then
2614 Set_Msg_Str ("private type ");
2615 else
2616 Set_Msg_Str ("type ");
2617 end if;
2618
2619 Ent := Error_Msg_Node_1;
2620
2621 if Is_Internal_Name (Chars (Ent)) then
2622 Unwind_Internal_Type (Ent);
2623 end if;
2624
2625 -- Types in Standard are displayed as "Standard.name"
2626
2627 if Sloc (Ent) <= Standard_Location then
2628 Set_Msg_Quote;
2629 Set_Msg_Str ("Standard.");
2630 Set_Msg_Node (Ent);
2631 Add_Class;
2632 Set_Msg_Quote;
2633
2634 -- Types in other language defined units are displayed as
2635 -- "package-name.type-name"
2636
2637 elsif
2638 Is_Predefined_File_Name (Unit_File_Name (Get_Source_Unit (Ent)))
2639 then
2640 Get_Unqualified_Decoded_Name_String
2641 (Unit_Name (Get_Source_Unit (Ent)));
2642 Name_Len := Name_Len - 2;
2643 Set_Msg_Blank_Conditional;
2644 Set_Msg_Quote;
2645 Set_Casing (Mixed_Case);
2646 Set_Msg_Name_Buffer;
2647 Set_Msg_Char ('.');
2648 Set_Casing (Mixed_Case);
2649 Set_Msg_Node (Ent);
2650 Add_Class;
2651 Set_Msg_Quote;
2652
2653 -- All other types display as "type name" defined at line xxx
2654 -- possibly qualified if qualification is requested.
2655
2656 else
2657 Set_Msg_Quote;
2658 Set_Qualification (Error_Msg_Qual_Level, Ent);
2659 Set_Msg_Node (Ent);
2660 Add_Class;
2661
2662 -- If we did not print a name (e.g. in the case of an anonymous
2663 -- subprogram type), there is no name to print, so remove quotes.
2664
2665 if Buffer_Ends_With ('"') then
2666 Buffer_Remove ('"');
2667 else
2668 Set_Msg_Quote;
2669 end if;
2670 end if;
2671
2672 -- If the original type did not come from a predefined file, add the
2673 -- location where the type was defined.
2674
2675 if Sloc (Error_Msg_Node_1) > Standard_Location
2676 and then
2677 not Is_Predefined_File_Name
2678 (Unit_File_Name (Get_Source_Unit (Error_Msg_Node_1)))
2679 then
2680 Set_Msg_Str (" defined");
2681 Set_Msg_Insertion_Line_Number (Sloc (Error_Msg_Node_1), Flag);
2682
2683 -- If it did come from a predefined file, deal with the case where
2684 -- this was a file with a generic instantiation from elsewhere.
2685
2686 else
2687 if Sloc (Error_Msg_Node_1) > Standard_Location then
2688 declare
2689 Iloc : constant Source_Ptr :=
2690 Instantiation_Location (Sloc (Error_Msg_Node_1));
2691
2692 begin
2693 if Iloc /= No_Location
2694 and then not Suppress_Instance_Location
2695 then
2696 Set_Msg_Str (" from instance");
2697 Set_Msg_Insertion_Line_Number (Iloc, Flag);
2698 end if;
2699 end;
2700 end if;
2701 end if;
2702 end Set_Msg_Insertion_Type_Reference;
2703
2704 ---------------------------------
2705 -- Set_Msg_Insertion_Unit_Name --
2706 ---------------------------------
2707
2708 procedure Set_Msg_Insertion_Unit_Name (Suffix : Boolean := True) is
2709 begin
2710 if Error_Msg_Unit_1 = No_Unit_Name then
2711 null;
2712
2713 elsif Error_Msg_Unit_1 = Error_Unit_Name then
2714 Set_Msg_Blank;
2715 Set_Msg_Str ("<error>");
2716
2717 else
2718 Get_Unit_Name_String (Error_Msg_Unit_1, Suffix);
2719 Set_Msg_Blank;
2720 Set_Msg_Quote;
2721 Set_Msg_Name_Buffer;
2722 Set_Msg_Quote;
2723 end if;
2724
2725 -- The following assignment ensures that a second percent insertion
2726 -- character will correspond to the Error_Msg_Unit_2 parameter. We
2727 -- suppress possible validity checks in case operating in -gnatVa mode,
2728 -- and Error_Msg_Unit_2 is not needed and has not been set.
2729
2730 declare
2731 pragma Suppress (Range_Check);
2732 begin
2733 Error_Msg_Unit_1 := Error_Msg_Unit_2;
2734 end;
2735 end Set_Msg_Insertion_Unit_Name;
2736
2737 ------------------
2738 -- Set_Msg_Node --
2739 ------------------
2740
2741 procedure Set_Msg_Node (Node : Node_Id) is
2742 Loc : Source_Ptr;
2743 Ent : Entity_Id;
2744 Nam : Name_Id;
2745
2746 begin
2747 case Nkind (Node) is
2748 when N_Designator =>
2749 Set_Msg_Node (Name (Node));
2750 Set_Msg_Char ('.');
2751 Set_Msg_Node (Identifier (Node));
2752 return;
2753
2754 when N_Defining_Program_Unit_Name =>
2755 Set_Msg_Node (Name (Node));
2756 Set_Msg_Char ('.');
2757 Set_Msg_Node (Defining_Identifier (Node));
2758 return;
2759
2760 when N_Selected_Component | N_Expanded_Name =>
2761 Set_Msg_Node (Prefix (Node));
2762 Set_Msg_Char ('.');
2763 Set_Msg_Node (Selector_Name (Node));
2764 return;
2765
2766 when others =>
2767 null;
2768 end case;
2769
2770 -- The only remaining possibilities are identifiers, defining
2771 -- identifiers, pragmas, and pragma argument associations.
2772
2773 if Nkind (Node) = N_Pragma then
2774 Nam := Pragma_Name (Node);
2775 Loc := Sloc (Node);
2776
2777 -- The other cases have Chars fields, and we want to test for possible
2778 -- internal names, which generally represent something gone wrong. An
2779 -- exception is the case of internal type names, where we try to find a
2780 -- reasonable external representation for the external name
2781
2782 elsif Is_Internal_Name (Chars (Node))
2783 and then
2784 ((Is_Entity_Name (Node)
2785 and then Present (Entity (Node))
2786 and then Is_Type (Entity (Node)))
2787 or else
2788 (Nkind (Node) = N_Defining_Identifier and then Is_Type (Node)))
2789 then
2790 if Nkind (Node) = N_Identifier then
2791 Ent := Entity (Node);
2792 else
2793 Ent := Node;
2794 end if;
2795
2796 Loc := Sloc (Ent);
2797
2798 -- If the type is the designated type of an access_to_subprogram,
2799 -- then there is no name to provide in the call.
2800
2801 if Ekind (Ent) = E_Subprogram_Type then
2802 return;
2803
2804 -- Otherwise, we will be able to find some kind of name to output
2805
2806 else
2807 Unwind_Internal_Type (Ent);
2808 Nam := Chars (Ent);
2809 end if;
2810
2811 -- If not internal name, just use name in Chars field
2812
2813 else
2814 Nam := Chars (Node);
2815 Loc := Sloc (Node);
2816 end if;
2817
2818 -- At this stage, the name to output is in Nam
2819
2820 Get_Unqualified_Decoded_Name_String (Nam);
2821
2822 -- Remove trailing upper case letters from the name (useful for
2823 -- dealing with some cases of internal names).
2824
2825 while Name_Len > 1 and then Name_Buffer (Name_Len) in 'A' .. 'Z' loop
2826 Name_Len := Name_Len - 1;
2827 end loop;
2828
2829 -- If we have any of the names from standard that start with the
2830 -- characters "any " (e.g. Any_Type), then kill the message since
2831 -- almost certainly it is a junk cascaded message.
2832
2833 if Name_Len > 4
2834 and then Name_Buffer (1 .. 4) = "any "
2835 then
2836 Kill_Message := True;
2837 end if;
2838
2839 -- Remaining step is to adjust casing and possibly add 'Class
2840
2841 Adjust_Name_Case (Loc);
2842 Set_Msg_Name_Buffer;
2843 Add_Class;
2844 end Set_Msg_Node;
2845
2846 ------------------
2847 -- Set_Msg_Text --
2848 ------------------
2849
2850 procedure Set_Msg_Text (Text : String; Flag : Source_Ptr) is
2851 C : Character; -- Current character
2852 P : Natural; -- Current index;
2853
2854 procedure Skip_Msg_Insertion_Warning (C : Character);
2855 -- Deal with ? ?? ?x? ?X? ?*? ?$? insertion sequences (and the same
2856 -- sequences using < instead of ?). The caller has already bumped
2857 -- the pointer past the initial ? or < and C is set to this initial
2858 -- character (? or <). This procedure skips past the rest of the
2859 -- sequence. We do not need to set Msg_Insertion_Char, since this
2860 -- was already done during the message prescan.
2861
2862 --------------------------------
2863 -- Skip_Msg_Insertion_Warning --
2864 --------------------------------
2865
2866 procedure Skip_Msg_Insertion_Warning (C : Character) is
2867 begin
2868 if P <= Text'Last and then Text (P) = C then
2869 P := P + 1;
2870
2871 elsif P + 1 <= Text'Last
2872 and then (Text (P) in 'a' .. 'z'
2873 or else
2874 Text (P) in 'A' .. 'Z'
2875 or else
2876 Text (P) = '*'
2877 or else
2878 Text (P) = '$')
2879 and then Text (P + 1) = C
2880 then
2881 P := P + 2;
2882 end if;
2883 end Skip_Msg_Insertion_Warning;
2884
2885 -- Start of processing for Set_Msg_Text
2886
2887 begin
2888 Manual_Quote_Mode := False;
2889 Msglen := 0;
2890 Flag_Source := Get_Source_File_Index (Flag);
2891
2892 -- Skip info: at start, we have recorded this in Is_Info_Msg, and this
2893 -- will be used (Info field in error message object) to put back the
2894 -- string when it is printed. We need to do this, or we get confused
2895 -- with instantiation continuations.
2896
2897 if Text'Length > 6
2898 and then Text (Text'First .. Text'First + 5) = "info: "
2899 then
2900 P := Text'First + 6;
2901 else
2902 P := Text'First;
2903 end if;
2904
2905 -- Loop through characters of message
2906
2907 while P <= Text'Last loop
2908 C := Text (P);
2909 P := P + 1;
2910
2911 -- Check for insertion character or sequence
2912
2913 case C is
2914 when '%' =>
2915 if P <= Text'Last and then Text (P) = '%' then
2916 P := P + 1;
2917 Set_Msg_Insertion_Name_Literal;
2918 else
2919 Set_Msg_Insertion_Name;
2920 end if;
2921
2922 when '$' =>
2923 if P <= Text'Last and then Text (P) = '$' then
2924 P := P + 1;
2925 Set_Msg_Insertion_Unit_Name (Suffix => False);
2926 else
2927 Set_Msg_Insertion_Unit_Name;
2928 end if;
2929
2930 when '{' =>
2931 Set_Msg_Insertion_File_Name;
2932
2933 when '}' =>
2934 Set_Msg_Insertion_Type_Reference (Flag);
2935
2936 when '*' =>
2937 Set_Msg_Insertion_Reserved_Name;
2938
2939 when '&' =>
2940 Set_Msg_Insertion_Node;
2941
2942 when '#' =>
2943 Set_Msg_Insertion_Line_Number (Error_Msg_Sloc, Flag);
2944
2945 when '\' =>
2946 Continuation := True;
2947
2948 if Text (P) = '\' then
2949 Continuation_New_Line := True;
2950 P := P + 1;
2951 end if;
2952
2953 when '@' =>
2954 Set_Msg_Insertion_Column;
2955
2956 when '>' =>
2957 Set_Msg_Insertion_Run_Time_Name;
2958
2959 when '^' =>
2960 Set_Msg_Insertion_Uint;
2961
2962 when '`' =>
2963 Manual_Quote_Mode := not Manual_Quote_Mode;
2964 Set_Msg_Char ('"');
2965
2966 when '!' =>
2967 null; -- already dealt with
2968
2969 when '?' =>
2970 Skip_Msg_Insertion_Warning ('?');
2971
2972 when '<' =>
2973 Skip_Msg_Insertion_Warning ('<');
2974
2975 when '|' =>
2976 null; -- already dealt with
2977
2978 when ''' =>
2979 Set_Msg_Char (Text (P));
2980 P := P + 1;
2981
2982 when '~' =>
2983 Set_Msg_Str (Error_Msg_String (1 .. Error_Msg_Strlen));
2984
2985 -- Upper case letter
2986
2987 when 'A' .. 'Z' =>
2988
2989 -- Start of reserved word if two or more
2990
2991 if P <= Text'Last and then Text (P) in 'A' .. 'Z' then
2992 P := P - 1;
2993 Set_Msg_Insertion_Reserved_Word (Text, P);
2994
2995 -- Single upper case letter is just inserted
2996
2997 else
2998 Set_Msg_Char (C);
2999 end if;
3000
3001 -- '[' (will be/would have been raised at run time)
3002
3003 when '[' =>
3004 if Is_Warning_Msg then
3005 Set_Msg_Str ("will be raised at run time");
3006 else
3007 Set_Msg_Str ("would have been raised at run time");
3008 end if;
3009
3010 -- ']' (may be/might have been raised at run time)
3011
3012 when ']' =>
3013 if Is_Warning_Msg then
3014 Set_Msg_Str ("may be raised at run time");
3015 else
3016 Set_Msg_Str ("might have been raised at run time");
3017 end if;
3018
3019 -- Normal character with no special treatment
3020
3021 when others =>
3022 Set_Msg_Char (C);
3023 end case;
3024 end loop;
3025 end Set_Msg_Text;
3026
3027 ----------------
3028 -- Set_Posted --
3029 ----------------
3030
3031 procedure Set_Posted (N : Node_Id) is
3032 P : Node_Id;
3033
3034 begin
3035 if Is_Serious_Error then
3036
3037 -- We always set Error_Posted on the node itself
3038
3039 Set_Error_Posted (N);
3040
3041 -- If it is a subexpression, then set Error_Posted on parents up to
3042 -- and including the first non-subexpression construct. This helps
3043 -- avoid cascaded error messages within a single expression.
3044
3045 P := N;
3046 loop
3047 P := Parent (P);
3048 exit when No (P);
3049 Set_Error_Posted (P);
3050 exit when Nkind (P) not in N_Subexpr;
3051 end loop;
3052
3053 if Nkind_In (P, N_Pragma_Argument_Association,
3054 N_Component_Association,
3055 N_Discriminant_Association,
3056 N_Generic_Association,
3057 N_Parameter_Association)
3058 then
3059 Set_Error_Posted (Parent (P));
3060 end if;
3061
3062 -- A special check, if we just posted an error on an attribute
3063 -- definition clause, then also set the entity involved as posted.
3064 -- For example, this stops complaining about the alignment after
3065 -- complaining about the size, which is likely to be useless.
3066
3067 if Nkind (P) = N_Attribute_Definition_Clause then
3068 if Is_Entity_Name (Name (P)) then
3069 Set_Error_Posted (Entity (Name (P)));
3070 end if;
3071 end if;
3072 end if;
3073 end Set_Posted;
3074
3075 -----------------------
3076 -- Set_Qualification --
3077 -----------------------
3078
3079 procedure Set_Qualification (N : Nat; E : Entity_Id) is
3080 begin
3081 if N /= 0 and then Scope (E) /= Standard_Standard then
3082 Set_Qualification (N - 1, Scope (E));
3083 Set_Msg_Node (Scope (E));
3084 Set_Msg_Char ('.');
3085 end if;
3086 end Set_Qualification;
3087
3088 ------------------------
3089 -- Special_Msg_Delete --
3090 ------------------------
3091
3092 -- Is it really right to have all this specialized knowledge in errout?
3093
3094 function Special_Msg_Delete
3095 (Msg : String;
3096 N : Node_Or_Entity_Id;
3097 E : Node_Or_Entity_Id) return Boolean
3098 is
3099 begin
3100 -- Never delete messages in -gnatdO mode
3101
3102 if Debug_Flag_OO then
3103 return False;
3104
3105 -- Processing for "atomic access cannot be guaranteed"
3106
3107 elsif Msg = "atomic access to & cannot be guaranteed" then
3108
3109 -- When an atomic object refers to a non-atomic type in the same
3110 -- scope, we implicitly make the type atomic. In the non-error case
3111 -- this is surely safe (and in fact prevents an error from occurring
3112 -- if the type is not atomic by default). But if the object cannot be
3113 -- made atomic, then we introduce an extra junk message by this
3114 -- manipulation, which we get rid of here.
3115
3116 -- We identify this case by the fact that it references a type for
3117 -- which Is_Atomic is set, but there is no Atomic pragma setting it.
3118
3119 if Is_Type (E)
3120 and then Is_Atomic (E)
3121 and then No (Get_Rep_Pragma (E, Name_Atomic))
3122 then
3123 return True;
3124 end if;
3125
3126 -- Processing for "Size too small" messages
3127
3128 elsif Msg = "size for& too small, minimum allowed is ^" then
3129
3130 -- Suppress "size too small" errors in CodePeer mode, since code may
3131 -- be analyzed in a different configuration than the one used for
3132 -- compilation. Even when the configurations match, this message
3133 -- may be issued on correct code, because pragma Pack is ignored
3134 -- in CodePeer mode.
3135
3136 if CodePeer_Mode then
3137 return True;
3138
3139 -- When a size is wrong for a frozen type there is no explicit size
3140 -- clause, and other errors have occurred, suppress the message,
3141 -- since it is likely that this size error is a cascaded result of
3142 -- other errors. The reason we eliminate unfrozen types is that
3143 -- messages issued before the freeze type are for sure OK.
3144
3145 elsif Is_Frozen (E)
3146 and then Serious_Errors_Detected > 0
3147 and then Nkind (N) /= N_Component_Clause
3148 and then Nkind (Parent (N)) /= N_Component_Clause
3149 and then
3150 No (Get_Attribute_Definition_Clause (E, Attribute_Size))
3151 and then
3152 No (Get_Attribute_Definition_Clause (E, Attribute_Object_Size))
3153 and then
3154 No (Get_Attribute_Definition_Clause (E, Attribute_Value_Size))
3155 then
3156 return True;
3157 end if;
3158 end if;
3159
3160 -- All special tests complete, so go ahead with message
3161
3162 return False;
3163 end Special_Msg_Delete;
3164
3165 -----------------
3166 -- SPARK_Msg_N --
3167 -----------------
3168
3169 procedure SPARK_Msg_N (Msg : String; N : Node_Or_Entity_Id) is
3170 begin
3171 if SPARK_Mode /= Off then
3172 Error_Msg_N (Msg, N);
3173 end if;
3174 end SPARK_Msg_N;
3175
3176 ------------------
3177 -- SPARK_Msg_NE --
3178 ------------------
3179
3180 procedure SPARK_Msg_NE
3181 (Msg : String;
3182 N : Node_Or_Entity_Id;
3183 E : Node_Or_Entity_Id)
3184 is
3185 begin
3186 if SPARK_Mode /= Off then
3187 Error_Msg_NE (Msg, N, E);
3188 end if;
3189 end SPARK_Msg_NE;
3190
3191 --------------------------
3192 -- Unwind_Internal_Type --
3193 --------------------------
3194
3195 procedure Unwind_Internal_Type (Ent : in out Entity_Id) is
3196 Derived : Boolean := False;
3197 Mchar : Character;
3198 Old_Ent : Entity_Id;
3199
3200 begin
3201 -- Undo placement of a quote, since we will put it back later
3202
3203 Mchar := Msg_Buffer (Msglen);
3204
3205 if Mchar = '"' then
3206 Msglen := Msglen - 1;
3207 end if;
3208
3209 -- The loop here deals with recursive types, we are trying to find a
3210 -- related entity that is not an implicit type. Note that the check with
3211 -- Old_Ent stops us from getting "stuck". Also, we don't output the
3212 -- "type derived from" message more than once in the case where we climb
3213 -- up multiple levels.
3214
3215 Find : loop
3216 Old_Ent := Ent;
3217
3218 -- Implicit access type, use directly designated type In Ada 2005,
3219 -- the designated type may be an anonymous access to subprogram, in
3220 -- which case we can only point to its definition.
3221
3222 if Is_Access_Type (Ent) then
3223 if Ekind (Ent) = E_Access_Subprogram_Type
3224 or else Ekind (Ent) = E_Anonymous_Access_Subprogram_Type
3225 or else Is_Access_Protected_Subprogram_Type (Ent)
3226 then
3227 Ent := Directly_Designated_Type (Ent);
3228
3229 if not Comes_From_Source (Ent) then
3230 if Buffer_Ends_With ("type ") then
3231 Buffer_Remove ("type ");
3232 end if;
3233 end if;
3234
3235 if Ekind (Ent) = E_Function then
3236 Set_Msg_Str ("access to function ");
3237 elsif Ekind (Ent) = E_Procedure then
3238 Set_Msg_Str ("access to procedure ");
3239 else
3240 Set_Msg_Str ("access to subprogram");
3241 end if;
3242
3243 exit Find;
3244
3245 -- Type is access to object, named or anonymous
3246
3247 else
3248 Set_Msg_Str ("access to ");
3249 Ent := Directly_Designated_Type (Ent);
3250 end if;
3251
3252 -- Classwide type
3253
3254 elsif Is_Class_Wide_Type (Ent) then
3255 Class_Flag := True;
3256 Ent := Root_Type (Ent);
3257
3258 -- Use base type if this is a subtype
3259
3260 elsif Ent /= Base_Type (Ent) then
3261 Buffer_Remove ("type ");
3262
3263 -- Avoid duplication "subtype of subtype of", and also replace
3264 -- "derived from subtype of" simply by "derived from"
3265
3266 if not Buffer_Ends_With ("subtype of ")
3267 and then not Buffer_Ends_With ("derived from ")
3268 then
3269 Set_Msg_Str ("subtype of ");
3270 end if;
3271
3272 Ent := Base_Type (Ent);
3273
3274 -- If this is a base type with a first named subtype, use the first
3275 -- named subtype instead. This is not quite accurate in all cases,
3276 -- but it makes too much noise to be accurate and add 'Base in all
3277 -- cases. Note that we only do this is the first named subtype is not
3278 -- itself an internal name. This avoids the obvious loop (subtype ->
3279 -- basetype -> subtype) which would otherwise occur).
3280
3281 else
3282 declare
3283 FST : constant Entity_Id := First_Subtype (Ent);
3284
3285 begin
3286 if not Is_Internal_Name (Chars (FST)) then
3287 Ent := FST;
3288 exit Find;
3289
3290 -- Otherwise use root type
3291
3292 else
3293 if not Derived then
3294 Buffer_Remove ("type ");
3295
3296 -- Test for "subtype of type derived from" which seems
3297 -- excessive and is replaced by "type derived from".
3298
3299 Buffer_Remove ("subtype of");
3300
3301 -- Avoid duplicated "type derived from type derived from"
3302
3303 if not Buffer_Ends_With ("type derived from ") then
3304 Set_Msg_Str ("type derived from ");
3305 end if;
3306
3307 Derived := True;
3308 end if;
3309 end if;
3310 end;
3311
3312 Ent := Etype (Ent);
3313 end if;
3314
3315 -- If we are stuck in a loop, get out and settle for the internal
3316 -- name after all. In this case we set to kill the message if it is
3317 -- not the first error message (we really try hard not to show the
3318 -- dirty laundry of the implementation to the poor user).
3319
3320 if Ent = Old_Ent then
3321 Kill_Message := True;
3322 exit Find;
3323 end if;
3324
3325 -- Get out if we finally found a non-internal name to use
3326
3327 exit Find when not Is_Internal_Name (Chars (Ent));
3328 end loop Find;
3329
3330 if Mchar = '"' then
3331 Set_Msg_Char ('"');
3332 end if;
3333 end Unwind_Internal_Type;
3334
3335 --------------------
3336 -- Warn_Insertion --
3337 --------------------
3338
3339 function Warn_Insertion return String is
3340 begin
3341 case Warning_Msg_Char is
3342 when '?' =>
3343 return "??";
3344 when 'a' .. 'z' | 'A' .. 'Z' | '*' | '$' =>
3345 return '?' & Warning_Msg_Char & '?';
3346 when ' ' =>
3347 return "?";
3348 when others =>
3349 raise Program_Error;
3350 end case;
3351 end Warn_Insertion;
3352
3353 end Errout;