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