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