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