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