PR target/58115
[official-gcc.git] / gcc / ada / errout.adb
blob2c783b2bddf220885c1aa4fa9248ec6ee73cbd0b
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-2013, 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 Hostparm; use Hostparm;
41 with Lib; use Lib;
42 with Opt; use Opt;
43 with Nlists; use Nlists;
44 with Output; use Output;
45 with Scans; use Scans;
46 with Sem_Aux; use Sem_Aux;
47 with Sinput; use Sinput;
48 with Sinfo; use Sinfo;
49 with Snames; use Snames;
50 with Stand; use Stand;
51 with Stylesw; use Stylesw;
52 with Uname; use Uname;
54 package body Errout is
56 Errors_Must_Be_Ignored : Boolean := False;
57 -- Set to True by procedure Set_Ignore_Errors (True), when calls to error
58 -- message procedures should be ignored (when parsing irrelevant text in
59 -- sources being preprocessed).
61 Finalize_Called : Boolean := False;
62 -- Set True if the Finalize routine has been called
64 Warn_On_Instance : Boolean;
65 -- Flag set true for warning message to be posted on instance
67 ------------------------------------
68 -- Table of Non-Instance Messages --
69 ------------------------------------
71 -- This table contains an entry for every error message processed by the
72 -- Error_Msg routine that is not posted on generic (or inlined) instance.
73 -- As explained in further detail in the Error_Msg procedure body, this
74 -- table is used to avoid posting redundant messages on instances.
76 type NIM_Record is record
77 Msg : String_Ptr;
78 Loc : Source_Ptr;
79 end record;
80 -- Type used to store text and location of one message
82 package Non_Instance_Msgs is new Table.Table (
83 Table_Component_Type => NIM_Record,
84 Table_Index_Type => Int,
85 Table_Low_Bound => 1,
86 Table_Initial => 100,
87 Table_Increment => 100,
88 Table_Name => "Non_Instance_Msgs");
90 -----------------------
91 -- Local Subprograms --
92 -----------------------
94 procedure Error_Msg_Internal
95 (Msg : String;
96 Sptr : Source_Ptr;
97 Optr : Source_Ptr;
98 Msg_Cont : Boolean);
99 -- This is the low level routine used to post messages after dealing with
100 -- the issue of messages placed on instantiations (which get broken up
101 -- into separate calls in Error_Msg). Sptr is the location on which the
102 -- flag will be placed in the output. In the case where the flag is on
103 -- the template, this points directly to the template, not to one of the
104 -- instantiation copies of the template. Optr is the original location
105 -- used to flag the error, and this may indeed point to an instantiation
106 -- copy. So typically we can see Optr pointing to the template location
107 -- in an instantiation copy when Sptr points to the source location of
108 -- the actual instantiation (i.e the line with the new). Msg_Cont is
109 -- set true if this is a continuation message.
111 function No_Warnings (N : Node_Or_Entity_Id) return Boolean;
112 -- Determines if warnings should be suppressed for the given node
114 function OK_Node (N : Node_Id) return Boolean;
115 -- Determines if a node is an OK node to place an error message on (return
116 -- True) or if the error message should be suppressed (return False). A
117 -- message is suppressed if the node already has an error posted on it,
118 -- or if it refers to an Etype that has an error posted on it, or if
119 -- it references an Entity that has an error posted on it.
121 procedure Output_Source_Line
122 (L : Physical_Line_Number;
123 Sfile : Source_File_Index;
124 Errs : Boolean);
125 -- Outputs text of source line L, in file S, together with preceding line
126 -- number, as described above for Output_Line_Number. The Errs parameter
127 -- indicates if there are errors attached to the line, which forces
128 -- listing on, even in the presence of pragma List (Off).
130 procedure Set_Msg_Insertion_Column;
131 -- Handle column number insertion (@ insertion character)
133 procedure Set_Msg_Insertion_Node;
134 -- Handle node (name from node) insertion (& insertion character)
136 procedure Set_Msg_Insertion_Type_Reference (Flag : Source_Ptr);
137 -- Handle type reference (right brace insertion character). Flag is the
138 -- location of the flag, which is provided for the internal call to
139 -- Set_Msg_Insertion_Line_Number,
141 procedure Set_Msg_Insertion_Unit_Name (Suffix : Boolean := True);
142 -- Handle unit name insertion ($ insertion character). Depending on Boolean
143 -- parameter Suffix, (spec) or (body) is appended after the unit name.
145 procedure Set_Msg_Node (Node : Node_Id);
146 -- Add the sequence of characters for the name associated with the given
147 -- node to the current message. For N_Designator, N_Selected_Component,
148 -- N_Defining_Program_Unit_Name, and N_Expanded_Name, the Prefix is
149 -- included as well.
151 procedure Set_Msg_Text (Text : String; Flag : Source_Ptr);
152 -- Add a sequence of characters to the current message. The characters may
153 -- be one of the special insertion characters (see documentation in spec).
154 -- Flag is the location at which the error is to be posted, which is used
155 -- to determine whether or not the # insertion needs a file name. The
156 -- variables Msg_Buffer are set on return Msglen.
158 procedure Set_Posted (N : Node_Id);
159 -- Sets the Error_Posted flag on the given node, and all its parents
160 -- that are subexpressions and then on the parent non-subexpression
161 -- construct that contains the original expression (this reduces the
162 -- number of cascaded messages). Note that this call only has an effect
163 -- for a serious error. For a non-serious error, it has no effect.
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 procedure VMS_Convert;
193 -- This procedure has no effect if called when the host is not OpenVMS. If
194 -- the host is indeed OpenVMS, then the error message stored in Msg_Buffer
195 -- is scanned for appearances of switch names which need converting to
196 -- corresponding VMS qualifier names. See Gnames/Vnames table in Errout
197 -- spec for precise definition of the conversion that is performed by this
198 -- routine in OpenVMS mode.
200 -----------------------
201 -- Change_Error_Text --
202 -----------------------
204 procedure Change_Error_Text (Error_Id : Error_Msg_Id; New_Msg : String) is
205 Save_Next : Error_Msg_Id;
206 Err_Id : Error_Msg_Id := Error_Id;
208 begin
209 Set_Msg_Text (New_Msg, Errors.Table (Error_Id).Sptr);
210 Errors.Table (Error_Id).Text := new String'(Msg_Buffer (1 .. Msglen));
212 -- If in immediate error message mode, output modified error message now
213 -- This is just a bit tricky, because we want to output just a single
214 -- message, and the messages we modified is already linked in. We solve
215 -- this by temporarily resetting its forward pointer to empty.
217 if Debug_Flag_OO then
218 Save_Next := Errors.Table (Error_Id).Next;
219 Errors.Table (Error_Id).Next := No_Error_Msg;
220 Write_Eol;
221 Output_Source_Line
222 (Errors.Table (Error_Id).Line, Errors.Table (Error_Id).Sfile, True);
223 Output_Error_Msgs (Err_Id);
224 Errors.Table (Error_Id).Next := Save_Next;
225 end if;
226 end Change_Error_Text;
228 ------------------------
229 -- Compilation_Errors --
230 ------------------------
232 function Compilation_Errors return Boolean is
233 begin
234 if not Finalize_Called then
235 raise Program_Error;
237 -- In formal verification mode, errors issued when generating Why code
238 -- are not compilation errors, and should not result in exiting with
239 -- an error status. These errors are handled in the driver of the
240 -- verification process instead.
242 elsif SPARK_Mode and not Frame_Condition_Mode then
243 return False;
245 else
246 return Erroutc.Compilation_Errors;
247 end if;
248 end Compilation_Errors;
250 ---------------
251 -- Error_Msg --
252 ---------------
254 -- Error_Msg posts a flag at the given location, except that if the
255 -- Flag_Location points within a generic template and corresponds to an
256 -- instantiation of this generic template, then the actual message will be
257 -- posted on the generic instantiation, along with additional messages
258 -- referencing the generic declaration.
260 procedure Error_Msg (Msg : String; Flag_Location : Source_Ptr) is
261 Sindex : Source_File_Index;
262 -- Source index for flag location
264 Orig_Loc : Source_Ptr;
265 -- Original location of Flag_Location (i.e. location in original
266 -- template in instantiation case, otherwise unchanged).
268 begin
269 -- It is a fatal error to issue an error message when scanning from the
270 -- internal source buffer (see Sinput for further documentation)
272 pragma Assert (Sinput.Source /= Internal_Source_Ptr);
274 -- Return if all errors are to be ignored
276 if Errors_Must_Be_Ignored then
277 return;
278 end if;
280 -- If we already have messages, and we are trying to place a message at
281 -- No_Location or in package Standard, then just ignore the attempt
282 -- since we assume that what is happening is some cascaded junk. Note
283 -- that this is safe in the sense that proceeding will surely bomb.
285 if Flag_Location < First_Source_Ptr
286 and then Total_Errors_Detected > 0
287 then
288 return;
289 end if;
291 -- Start of processing for new message
293 Sindex := Get_Source_File_Index (Flag_Location);
294 Test_Style_Warning_Serious_Unconditional_Msg (Msg);
295 Orig_Loc := Original_Location (Flag_Location);
297 -- If the current location is in an instantiation, the issue arises of
298 -- whether to post the message on the template or the instantiation.
300 -- The way we decide is to see if we have posted the same message on
301 -- the template when we compiled the template (the template is always
302 -- compiled before any instantiations). For this purpose, we use a
303 -- separate table of messages. The reason we do this is twofold:
305 -- First, the messages can get changed by various processing
306 -- including the insertion of tokens etc, making it hard to
307 -- do the comparison.
309 -- Second, we will suppress a warning on a template if it is not in
310 -- the current extended source unit. That's reasonable and means we
311 -- don't want the warning on the instantiation here either, but it
312 -- does mean that the main error table would not in any case include
313 -- the message.
315 if Flag_Location = Orig_Loc then
316 Non_Instance_Msgs.Append ((new String'(Msg), Flag_Location));
317 Warn_On_Instance := False;
319 -- Here we have an instance message
321 else
322 -- Delete if debug flag off, and this message duplicates a message
323 -- already posted on the corresponding template
325 if not Debug_Flag_GG then
326 for J in Non_Instance_Msgs.First .. Non_Instance_Msgs.Last loop
327 if Msg = Non_Instance_Msgs.Table (J).Msg.all
328 and then Non_Instance_Msgs.Table (J).Loc = Orig_Loc
329 then
330 return;
331 end if;
332 end loop;
333 end if;
335 -- No duplicate, so error/warning will be posted on instance
337 Warn_On_Instance := Is_Warning_Msg;
338 end if;
340 -- Ignore warning message that is suppressed for this location. Note
341 -- that style checks are not considered warning messages for this
342 -- purpose.
344 if Is_Warning_Msg and then Warnings_Suppressed (Orig_Loc) then
345 return;
347 -- For style messages, check too many messages so far
349 elsif Is_Style_Msg
350 and then Maximum_Messages /= 0
351 and then Warnings_Detected >= Maximum_Messages
352 then
353 return;
354 end if;
356 -- The idea at this stage is that we have two kinds of messages
358 -- First, we have those messages that are to be placed as requested at
359 -- Flag_Location. This includes messages that have nothing to do with
360 -- generics, and also messages placed on generic templates that reflect
361 -- an error in the template itself. For such messages we simply call
362 -- Error_Msg_Internal to place the message in the requested location.
364 if Instantiation (Sindex) = No_Location then
365 Error_Msg_Internal (Msg, Flag_Location, Flag_Location, False);
366 return;
367 end if;
369 -- If we are trying to flag an error in an instantiation, we may have
370 -- a generic contract violation. What we generate in this case is:
372 -- instantiation error at ...
373 -- original error message
375 -- or
377 -- warning: in instantiation at
378 -- warning: original warning message
380 -- All these messages are posted at the location of the top level
381 -- instantiation. If there are nested instantiations, then the
382 -- instantiation error message can be repeated, pointing to each
383 -- of the relevant instantiations.
385 -- Note: the instantiation mechanism is also shared for inlining of
386 -- subprogram bodies when front end inlining is done. In this case the
387 -- messages have the form:
389 -- in inlined body at ...
390 -- original error message
392 -- or
394 -- warning: in inlined body at
395 -- warning: original warning message
397 -- OK, here we have an instantiation error, and we need to generate the
398 -- error on the instantiation, rather than on the template.
400 declare
401 Actual_Error_Loc : Source_Ptr;
402 -- Location of outer level instantiation in instantiation case, or
403 -- just a copy of Flag_Location in the normal case. This is the
404 -- location where all error messages will actually be posted.
406 Save_Error_Msg_Sloc : constant Source_Ptr := Error_Msg_Sloc;
407 -- Save possible location set for caller's message. We need to use
408 -- Error_Msg_Sloc for the location of the instantiation error but we
409 -- have to preserve a possible original value.
411 X : Source_File_Index;
413 Msg_Cont_Status : Boolean;
414 -- Used to label continuation lines in instantiation case with
415 -- proper Msg_Cont status.
417 begin
418 -- Loop to find highest level instantiation, where all error
419 -- messages will be placed.
421 X := Sindex;
422 loop
423 Actual_Error_Loc := Instantiation (X);
424 X := Get_Source_File_Index (Actual_Error_Loc);
425 exit when Instantiation (X) = No_Location;
426 end loop;
428 -- Since we are generating the messages at the instantiation point in
429 -- any case, we do not want the references to the bad lines in the
430 -- instance to be annotated with the location of the instantiation.
432 Suppress_Instance_Location := True;
433 Msg_Cont_Status := False;
435 -- Loop to generate instantiation messages
437 Error_Msg_Sloc := Flag_Location;
438 X := Get_Source_File_Index (Flag_Location);
439 while Instantiation (X) /= No_Location loop
441 -- Suppress instantiation message on continuation lines
443 if Msg (Msg'First) /= '\' then
445 -- Case of inlined body
447 if Inlined_Body (X) then
448 if Is_Warning_Msg or else Is_Style_Msg then
449 Error_Msg_Internal
450 ("?in inlined body #",
451 Actual_Error_Loc, Flag_Location, Msg_Cont_Status);
452 else
453 Error_Msg_Internal
454 ("error in inlined body #",
455 Actual_Error_Loc, Flag_Location, Msg_Cont_Status);
456 end if;
458 -- Case of generic instantiation
460 else
461 if Is_Warning_Msg or else Is_Style_Msg then
462 Error_Msg_Internal
463 ("?in instantiation #",
464 Actual_Error_Loc, Flag_Location, Msg_Cont_Status);
465 else
466 Error_Msg_Internal
467 ("instantiation error #",
468 Actual_Error_Loc, Flag_Location, Msg_Cont_Status);
469 end if;
470 end if;
471 end if;
473 Error_Msg_Sloc := Instantiation (X);
474 X := Get_Source_File_Index (Error_Msg_Sloc);
475 Msg_Cont_Status := True;
476 end loop;
478 Suppress_Instance_Location := False;
479 Error_Msg_Sloc := Save_Error_Msg_Sloc;
481 -- Here we output the original message on the outer instantiation
483 Error_Msg_Internal
484 (Msg, Actual_Error_Loc, Flag_Location, Msg_Cont_Status);
485 end;
486 end Error_Msg;
488 --------------------------------
489 -- Error_Msg_Ada_2012_Feature --
490 --------------------------------
492 procedure Error_Msg_Ada_2012_Feature (Feature : String; Loc : Source_Ptr) is
493 begin
494 if Ada_Version < Ada_2012 then
495 Error_Msg (Feature & " is an Ada 2012 feature", Loc);
497 if No (Ada_Version_Pragma) then
498 Error_Msg ("\unit must be compiled with -gnat2012 switch", Loc);
499 else
500 Error_Msg_Sloc := Sloc (Ada_Version_Pragma);
501 Error_Msg ("\incompatible with Ada version set#", Loc);
502 end if;
503 end if;
504 end Error_Msg_Ada_2012_Feature;
506 ------------------
507 -- Error_Msg_AP --
508 ------------------
510 procedure Error_Msg_AP (Msg : String) is
511 S1 : Source_Ptr;
512 C : Character;
514 begin
515 -- If we had saved the Scan_Ptr value after scanning the previous
516 -- token, then we would have exactly the right place for putting
517 -- the flag immediately at hand. However, that would add at least
518 -- two instructions to a Scan call *just* to service the possibility
519 -- of an Error_Msg_AP call. So instead we reconstruct that value.
521 -- We have two possibilities, start with Prev_Token_Ptr and skip over
522 -- the current token, which is made harder by the possibility that this
523 -- token may be in error, or start with Token_Ptr and work backwards.
524 -- We used to take the second approach, but it's hard because of
525 -- comments, and harder still because things that look like comments
526 -- can appear inside strings. So now we take the first approach.
528 -- Note: in the case where there is no previous token, Prev_Token_Ptr
529 -- is set to Source_First, which is a reasonable position for the
530 -- error flag in this situation.
532 S1 := Prev_Token_Ptr;
533 C := Source (S1);
535 -- If the previous token is a string literal, we need a special approach
536 -- since there may be white space inside the literal and we don't want
537 -- to stop on that white space.
539 -- Note: since this is an error recovery issue anyway, it is not worth
540 -- worrying about special UTF_32 line terminator characters here.
542 if Prev_Token = Tok_String_Literal then
543 loop
544 S1 := S1 + 1;
546 if Source (S1) = C then
547 S1 := S1 + 1;
548 exit when Source (S1) /= C;
549 elsif Source (S1) in Line_Terminator then
550 exit;
551 end if;
552 end loop;
554 -- Character literal also needs special handling
556 elsif Prev_Token = Tok_Char_Literal then
557 S1 := S1 + 3;
559 -- Otherwise we search forward for the end of the current token, marked
560 -- by a line terminator, white space, a comment symbol or if we bump
561 -- into the following token (i.e. the current token).
563 -- Again, it is not worth worrying about UTF_32 special line terminator
564 -- characters in this context, since this is only for error recovery.
566 else
567 while Source (S1) not in Line_Terminator
568 and then Source (S1) /= ' '
569 and then Source (S1) /= ASCII.HT
570 and then (Source (S1) /= '-' or else Source (S1 + 1) /= '-')
571 and then S1 /= Token_Ptr
572 loop
573 S1 := S1 + 1;
574 end loop;
575 end if;
577 -- S1 is now set to the location for the flag
579 Error_Msg (Msg, S1);
580 end Error_Msg_AP;
582 ------------------
583 -- Error_Msg_BC --
584 ------------------
586 procedure Error_Msg_BC (Msg : String) is
587 begin
588 -- If we are at end of file, post the flag after the previous token
590 if Token = Tok_EOF then
591 Error_Msg_AP (Msg);
593 -- If we are at start of file, post the flag at the current token
595 elsif Token_Ptr = Source_First (Current_Source_File) then
596 Error_Msg_SC (Msg);
598 -- If the character before the current token is a space or a horizontal
599 -- tab, then we place the flag on this character (in the case of a tab
600 -- we would really like to place it in the "last" character of the tab
601 -- space, but that it too much trouble to worry about).
603 elsif Source (Token_Ptr - 1) = ' '
604 or else Source (Token_Ptr - 1) = ASCII.HT
605 then
606 Error_Msg (Msg, Token_Ptr - 1);
608 -- If there is no space or tab before the current token, then there is
609 -- no room to place the flag before the token, so we place it on the
610 -- token instead (this happens for example at the start of a line).
612 else
613 Error_Msg (Msg, Token_Ptr);
614 end if;
615 end Error_Msg_BC;
617 -------------------
618 -- Error_Msg_CRT --
619 -------------------
621 procedure Error_Msg_CRT (Feature : String; N : Node_Id) is
622 CNRT : constant String := " not allowed in no run time mode";
623 CCRT : constant String := " not supported by configuration>";
625 S : String (1 .. Feature'Length + 1 + CCRT'Length);
626 L : Natural;
628 begin
629 S (1) := '|';
630 S (2 .. Feature'Length + 1) := Feature;
631 L := Feature'Length + 2;
633 if No_Run_Time_Mode then
634 S (L .. L + CNRT'Length - 1) := CNRT;
635 L := L + CNRT'Length - 1;
637 else pragma Assert (Configurable_Run_Time_Mode);
638 S (L .. L + CCRT'Length - 1) := CCRT;
639 L := L + CCRT'Length - 1;
640 end if;
642 Error_Msg_N (S (1 .. L), N);
643 Configurable_Run_Time_Violations := Configurable_Run_Time_Violations + 1;
644 end Error_Msg_CRT;
646 ------------------
647 -- Error_Msg_PT --
648 ------------------
650 procedure Error_Msg_PT (Typ : Node_Id; Subp : Node_Id) is
651 begin
652 -- Error message below needs rewording (remember comma in -gnatj
653 -- mode) ???
655 Error_Msg_NE
656 ("first formal of & must be of mode `OUT`, `IN OUT` or " &
657 "access-to-variable", Typ, Subp);
658 Error_Msg_N
659 ("\in order to be overridden by protected procedure or entry " &
660 "(RM 9.4(11.9/2))", Typ);
661 end Error_Msg_PT;
663 -----------------
664 -- Error_Msg_F --
665 -----------------
667 procedure Error_Msg_F (Msg : String; N : Node_Id) is
668 begin
669 Error_Msg_NEL (Msg, N, N, Sloc (First_Node (N)));
670 end Error_Msg_F;
672 ------------------
673 -- Error_Msg_FE --
674 ------------------
676 procedure Error_Msg_FE
677 (Msg : String;
678 N : Node_Id;
679 E : Node_Or_Entity_Id)
681 begin
682 Error_Msg_NEL (Msg, N, E, Sloc (First_Node (N)));
683 end Error_Msg_FE;
685 ------------------------
686 -- Error_Msg_Internal --
687 ------------------------
689 procedure Error_Msg_Internal
690 (Msg : String;
691 Sptr : Source_Ptr;
692 Optr : Source_Ptr;
693 Msg_Cont : Boolean)
695 Next_Msg : Error_Msg_Id;
696 -- Pointer to next message at insertion point
698 Prev_Msg : Error_Msg_Id;
699 -- Pointer to previous message at insertion point
701 Temp_Msg : Error_Msg_Id;
703 procedure Handle_Serious_Error;
704 -- Internal procedure to do all error message handling for a serious
705 -- error message, other than bumping the error counts and arranging
706 -- for the message to be output.
708 --------------------------
709 -- Handle_Serious_Error --
710 --------------------------
712 procedure Handle_Serious_Error is
713 begin
714 -- Turn off code generation if not done already
716 if Operating_Mode = Generate_Code then
717 Operating_Mode := Check_Semantics;
718 Expander_Active := False;
719 end if;
721 -- Set the fatal error flag in the unit table unless we are in
722 -- Try_Semantics mode. This stops the semantics from being performed
723 -- if we find a serious error. This is skipped if we are currently
724 -- dealing with the configuration pragma file.
726 if not Try_Semantics and then Current_Source_Unit /= No_Unit then
727 Set_Fatal_Error (Get_Source_Unit (Sptr));
728 end if;
729 end Handle_Serious_Error;
731 -- Start of processing for Error_Msg_Internal
733 begin
734 if Raise_Exception_On_Error /= 0 then
735 raise Error_Msg_Exception;
736 end if;
738 Continuation := Msg_Cont;
739 Continuation_New_Line := False;
740 Suppress_Message := False;
741 Kill_Message := False;
742 Set_Msg_Text (Msg, Sptr);
744 -- Kill continuation if parent message killed
746 if Continuation and Last_Killed then
747 return;
748 end if;
750 -- Return without doing anything if message is suppressed
752 if Suppress_Message
753 and then not All_Errors_Mode
754 and then not Is_Warning_Msg
755 and then not Is_Unconditional_Msg
756 then
757 if not Continuation then
758 Last_Killed := True;
759 end if;
761 return;
762 end if;
764 -- Return without doing anything if message is killed and this is not
765 -- the first error message. The philosophy is that if we get a weird
766 -- error message and we already have had a message, then we hope the
767 -- weird message is a junk cascaded message
769 if Kill_Message
770 and then not All_Errors_Mode
771 and then Total_Errors_Detected /= 0
772 then
773 if not Continuation then
774 Last_Killed := True;
775 end if;
777 return;
778 end if;
780 -- Special check for warning message to see if it should be output
782 if Is_Warning_Msg then
784 -- Immediate return if warning message and warnings are suppressed
786 if Warnings_Suppressed (Optr) or else Warnings_Suppressed (Sptr) then
787 Cur_Msg := No_Error_Msg;
788 return;
789 end if;
791 -- If the flag location is in the main extended source unit then for
792 -- sure we want the warning since it definitely belongs
794 if In_Extended_Main_Source_Unit (Sptr) then
795 null;
797 -- If the main unit has not been read yet. the warning must be on
798 -- a configuration file: gnat.adc or user-defined. This means we
799 -- are not parsing the main unit yet, so skip following checks.
801 elsif No (Cunit (Main_Unit)) then
802 null;
804 -- If the flag location is not in the main extended source unit, then
805 -- we want to eliminate the warning, unless it is in the extended
806 -- main code unit and we want warnings on the instance.
808 elsif In_Extended_Main_Code_Unit (Sptr) and then Warn_On_Instance then
809 null;
811 -- Keep warning if debug flag G set
813 elsif Debug_Flag_GG then
814 null;
816 -- Keep warning if message text contains !!
818 elsif Has_Double_Exclam then
819 null;
821 -- Here is where we delete a warning from a with'ed unit
823 else
824 Cur_Msg := No_Error_Msg;
826 if not Continuation then
827 Last_Killed := True;
828 end if;
830 return;
831 end if;
832 end if;
834 -- If message is to be ignored in special ignore message mode, this is
835 -- where we do this special processing, bypassing message output.
837 if Ignore_Errors_Enable > 0 then
838 if Is_Serious_Error then
839 Handle_Serious_Error;
840 end if;
842 return;
843 end if;
845 -- If error message line length set, and this is a continuation message
846 -- then all we do is to append the text to the text of the last message
847 -- with a comma space separator (eliminating a possible (style) or
848 -- info prefix).
850 if Error_Msg_Line_Length /= 0 and then Continuation then
851 Cur_Msg := Errors.Last;
853 declare
854 Oldm : String_Ptr := Errors.Table (Cur_Msg).Text;
855 Newm : String (1 .. Oldm'Last + 2 + Msglen);
856 Newl : Natural;
857 M : Natural;
859 begin
860 -- First copy old message to new one and free it
862 Newm (Oldm'Range) := Oldm.all;
863 Newl := Oldm'Length;
864 Free (Oldm);
866 -- Remove (style) or info: at start of message
868 if Msglen > 8 and then Msg_Buffer (1 .. 8) = "(style) " then
869 M := 9;
871 elsif Msglen > 6 and then Msg_Buffer (1 .. 6) = "info: " then
872 M := 7;
874 else
875 M := 1;
876 end if;
878 -- Now deal with separation between messages. Normally this is
879 -- simply comma space, but there are some special cases.
881 -- If continuation new line, then put actual NL character in msg
883 if Continuation_New_Line then
884 Newl := Newl + 1;
885 Newm (Newl) := ASCII.LF;
887 -- If continuation message is enclosed in parentheses, then
888 -- special treatment (don't need a comma, and we want to combine
889 -- successive parenthetical remarks into a single one with
890 -- separating commas).
892 elsif Msg_Buffer (M) = '(' and then Msg_Buffer (Msglen) = ')' then
894 -- Case where existing message ends in right paren, remove
895 -- and separate parenthetical remarks with a comma.
897 if Newm (Newl) = ')' then
898 Newm (Newl) := ',';
899 Msg_Buffer (M) := ' ';
901 -- Case where we are adding new parenthetical comment
903 else
904 Newl := Newl + 1;
905 Newm (Newl) := ' ';
906 end if;
908 -- Case where continuation not in parens and no new line
910 else
911 Newm (Newl + 1 .. Newl + 2) := ", ";
912 Newl := Newl + 2;
913 end if;
915 -- Append new message
917 Newm (Newl + 1 .. Newl + Msglen - M + 1) :=
918 Msg_Buffer (M .. Msglen);
919 Newl := Newl + Msglen - M + 1;
920 Errors.Table (Cur_Msg).Text := new String'(Newm (1 .. Newl));
922 -- Update warning msg flag and message doc char if needed
924 if Is_Warning_Msg then
925 if not Errors.Table (Cur_Msg).Warn then
926 Errors.Table (Cur_Msg).Warn := True;
927 Errors.Table (Cur_Msg).Warn_Chr := Warning_Msg_Char;
929 elsif Warning_Msg_Char /= ' ' then
930 Errors.Table (Cur_Msg).Warn_Chr := Warning_Msg_Char;
931 end if;
932 end if;
933 end;
935 return;
936 end if;
938 -- Here we build a new error object
940 Errors.Append
941 ((Text => new String'(Msg_Buffer (1 .. Msglen)),
942 Next => No_Error_Msg,
943 Prev => No_Error_Msg,
944 Sptr => Sptr,
945 Optr => Optr,
946 Sfile => Get_Source_File_Index (Sptr),
947 Line => Get_Physical_Line_Number (Sptr),
948 Col => Get_Column_Number (Sptr),
949 Warn => Is_Warning_Msg,
950 Warn_Chr => Warning_Msg_Char,
951 Style => Is_Style_Msg,
952 Serious => Is_Serious_Error,
953 Uncond => Is_Unconditional_Msg,
954 Msg_Cont => Continuation,
955 Deleted => False));
956 Cur_Msg := Errors.Last;
958 -- If immediate errors mode set, output error message now. Also output
959 -- now if the -d1 debug flag is set (so node number message comes out
960 -- just before actual error message)
962 if Debug_Flag_OO or else Debug_Flag_1 then
963 Write_Eol;
964 Output_Source_Line
965 (Errors.Table (Cur_Msg).Line, Errors.Table (Cur_Msg).Sfile, True);
966 Temp_Msg := Cur_Msg;
967 Output_Error_Msgs (Temp_Msg);
969 -- If not in immediate errors mode, then we insert the message in the
970 -- error chain for later output by Finalize. The messages are sorted
971 -- first by unit (main unit comes first), and within a unit by source
972 -- location (earlier flag location first in the chain).
974 else
975 -- First a quick check, does this belong at the very end of the chain
976 -- of error messages. This saves a lot of time in the normal case if
977 -- there are lots of messages.
979 if Last_Error_Msg /= No_Error_Msg
980 and then Errors.Table (Cur_Msg).Sfile =
981 Errors.Table (Last_Error_Msg).Sfile
982 and then (Sptr > Errors.Table (Last_Error_Msg).Sptr
983 or else
984 (Sptr = Errors.Table (Last_Error_Msg).Sptr
985 and then
986 Optr > Errors.Table (Last_Error_Msg).Optr))
987 then
988 Prev_Msg := Last_Error_Msg;
989 Next_Msg := No_Error_Msg;
991 -- Otherwise do a full sequential search for the insertion point
993 else
994 Prev_Msg := No_Error_Msg;
995 Next_Msg := First_Error_Msg;
996 while Next_Msg /= No_Error_Msg loop
997 exit when
998 Errors.Table (Cur_Msg).Sfile < Errors.Table (Next_Msg).Sfile;
1000 if Errors.Table (Cur_Msg).Sfile =
1001 Errors.Table (Next_Msg).Sfile
1002 then
1003 exit when Sptr < Errors.Table (Next_Msg).Sptr
1004 or else
1005 (Sptr = Errors.Table (Next_Msg).Sptr
1006 and then
1007 Optr < Errors.Table (Next_Msg).Optr);
1008 end if;
1010 Prev_Msg := Next_Msg;
1011 Next_Msg := Errors.Table (Next_Msg).Next;
1012 end loop;
1013 end if;
1015 -- Now we insert the new message in the error chain. The insertion
1016 -- point for the message is after Prev_Msg and before Next_Msg.
1018 -- The possible insertion point for the new message is after Prev_Msg
1019 -- and before Next_Msg. However, this is where we do a special check
1020 -- for redundant parsing messages, defined as messages posted on the
1021 -- same line. The idea here is that probably such messages are junk
1022 -- from the parser recovering. In full errors mode, we don't do this
1023 -- deletion, but otherwise such messages are discarded at this stage.
1025 if Prev_Msg /= No_Error_Msg
1026 and then Errors.Table (Prev_Msg).Line =
1027 Errors.Table (Cur_Msg).Line
1028 and then Errors.Table (Prev_Msg).Sfile =
1029 Errors.Table (Cur_Msg).Sfile
1030 and then Compiler_State = Parsing
1031 and then not All_Errors_Mode
1032 then
1033 -- Don't delete unconditional messages and at this stage, don't
1034 -- delete continuation lines (we attempted to delete those earlier
1035 -- if the parent message was deleted.
1037 if not Errors.Table (Cur_Msg).Uncond
1038 and then not Continuation
1039 then
1040 -- Don't delete if prev msg is warning and new msg is an error.
1041 -- This is because we don't want a real error masked by a
1042 -- warning. In all other cases (that is parse errors for the
1043 -- same line that are not unconditional) we do delete the
1044 -- message. This helps to avoid junk extra messages from
1045 -- cascaded parsing errors
1047 if not (Errors.Table (Prev_Msg).Warn
1048 or else
1049 Errors.Table (Prev_Msg).Style)
1050 or else
1051 (Errors.Table (Cur_Msg).Warn
1052 or else
1053 Errors.Table (Cur_Msg).Style)
1054 then
1055 -- All tests passed, delete the message by simply returning
1056 -- without any further processing.
1058 if not Continuation then
1059 Last_Killed := True;
1060 end if;
1062 return;
1063 end if;
1064 end if;
1065 end if;
1067 -- Come here if message is to be inserted in the error chain
1069 if not Continuation then
1070 Last_Killed := False;
1071 end if;
1073 if Prev_Msg = No_Error_Msg then
1074 First_Error_Msg := Cur_Msg;
1075 else
1076 Errors.Table (Prev_Msg).Next := Cur_Msg;
1077 end if;
1079 Errors.Table (Cur_Msg).Next := Next_Msg;
1081 if Next_Msg = No_Error_Msg then
1082 Last_Error_Msg := Cur_Msg;
1083 end if;
1084 end if;
1086 -- Bump appropriate statistics count
1088 if Errors.Table (Cur_Msg).Warn or else Errors.Table (Cur_Msg).Style then
1089 Warnings_Detected := Warnings_Detected + 1;
1091 else
1092 Total_Errors_Detected := Total_Errors_Detected + 1;
1094 if Errors.Table (Cur_Msg).Serious then
1095 Serious_Errors_Detected := Serious_Errors_Detected + 1;
1096 Handle_Serious_Error;
1097 end if;
1098 end if;
1100 -- If too many warnings turn off warnings
1102 if Maximum_Messages /= 0 then
1103 if Warnings_Detected = Maximum_Messages then
1104 Warning_Mode := Suppress;
1105 end if;
1107 -- If too many errors abandon compilation
1109 if Total_Errors_Detected = Maximum_Messages then
1110 raise Unrecoverable_Error;
1111 end if;
1112 end if;
1113 end Error_Msg_Internal;
1115 -----------------
1116 -- Error_Msg_N --
1117 -----------------
1119 procedure Error_Msg_N (Msg : String; N : Node_Or_Entity_Id) is
1120 begin
1121 Error_Msg_NEL (Msg, N, N, Sloc (N));
1122 end Error_Msg_N;
1124 ------------------
1125 -- Error_Msg_NE --
1126 ------------------
1128 procedure Error_Msg_NE
1129 (Msg : String;
1130 N : Node_Or_Entity_Id;
1131 E : Node_Or_Entity_Id)
1133 begin
1134 Error_Msg_NEL (Msg, N, E, Sloc (N));
1135 end Error_Msg_NE;
1137 -------------------
1138 -- Error_Msg_NEL --
1139 -------------------
1141 procedure Error_Msg_NEL
1142 (Msg : String;
1143 N : Node_Or_Entity_Id;
1144 E : Node_Or_Entity_Id;
1145 Flag_Location : Source_Ptr)
1147 begin
1148 if Special_Msg_Delete (Msg, N, E) then
1149 return;
1150 end if;
1152 Test_Style_Warning_Serious_Unconditional_Msg (Msg);
1154 -- Special handling for warning messages
1156 if Is_Warning_Msg then
1158 -- Suppress if no warnings set for either entity or node
1160 if No_Warnings (N) or else No_Warnings (E) then
1162 -- Disable any continuation messages as well
1164 Last_Killed := True;
1165 return;
1166 end if;
1168 -- Suppress if inside loop that is known to be null or is probably
1169 -- null (case where loop executes only if invalid values present).
1170 -- In either case warnings in the loop are likely to be junk.
1172 declare
1173 P : Node_Id;
1175 begin
1176 P := Parent (N);
1177 while Present (P) loop
1178 if Nkind (P) = N_Loop_Statement
1179 and then Suppress_Loop_Warnings (P)
1180 then
1181 return;
1182 end if;
1184 P := Parent (P);
1185 end loop;
1186 end;
1187 end if;
1189 -- Test for message to be output
1191 if All_Errors_Mode
1192 or else Is_Unconditional_Msg
1193 or else Is_Warning_Msg
1194 or else OK_Node (N)
1195 or else (Msg (Msg'First) = '\' and then not Last_Killed)
1196 then
1197 Debug_Output (N);
1198 Error_Msg_Node_1 := E;
1199 Error_Msg (Msg, Flag_Location);
1201 else
1202 Last_Killed := True;
1203 end if;
1205 if not (Is_Warning_Msg or Is_Style_Msg) then
1206 Set_Posted (N);
1207 end if;
1208 end Error_Msg_NEL;
1210 ------------------
1211 -- Error_Msg_NW --
1212 ------------------
1214 procedure Error_Msg_NW
1215 (Eflag : Boolean;
1216 Msg : String;
1217 N : Node_Or_Entity_Id)
1219 begin
1220 if Eflag
1221 and then In_Extended_Main_Source_Unit (N)
1222 and then Comes_From_Source (N)
1223 then
1224 Error_Msg_NEL (Msg, N, N, Sloc (N));
1225 end if;
1226 end Error_Msg_NW;
1228 -----------------
1229 -- Error_Msg_S --
1230 -----------------
1232 procedure Error_Msg_S (Msg : String) is
1233 begin
1234 Error_Msg (Msg, Scan_Ptr);
1235 end Error_Msg_S;
1237 ------------------
1238 -- Error_Msg_SC --
1239 ------------------
1241 procedure Error_Msg_SC (Msg : String) is
1242 begin
1243 -- If we are at end of file, post the flag after the previous token
1245 if Token = Tok_EOF then
1246 Error_Msg_AP (Msg);
1248 -- For all other cases the message is posted at the current token
1249 -- pointer position
1251 else
1252 Error_Msg (Msg, Token_Ptr);
1253 end if;
1254 end Error_Msg_SC;
1256 ------------------
1257 -- Error_Msg_SP --
1258 ------------------
1260 procedure Error_Msg_SP (Msg : String) is
1261 begin
1262 -- Note: in the case where there is no previous token, Prev_Token_Ptr
1263 -- is set to Source_First, which is a reasonable position for the
1264 -- error flag in this situation
1266 Error_Msg (Msg, Prev_Token_Ptr);
1267 end Error_Msg_SP;
1269 --------------
1270 -- Finalize --
1271 --------------
1273 procedure Finalize (Last_Call : Boolean) is
1274 Cur : Error_Msg_Id;
1275 Nxt : Error_Msg_Id;
1276 F : Error_Msg_Id;
1278 procedure Delete_Warning (E : Error_Msg_Id);
1279 -- Delete a message if not already deleted and adjust warning count
1281 --------------------
1282 -- Delete_Warning --
1283 --------------------
1285 procedure Delete_Warning (E : Error_Msg_Id) is
1286 begin
1287 if not Errors.Table (E).Deleted then
1288 Errors.Table (E).Deleted := True;
1289 Warnings_Detected := Warnings_Detected - 1;
1290 end if;
1291 end Delete_Warning;
1293 -- Start of message for Finalize
1295 begin
1296 -- Set Prev pointers
1298 Cur := First_Error_Msg;
1299 while Cur /= No_Error_Msg loop
1300 Nxt := Errors.Table (Cur).Next;
1301 exit when Nxt = No_Error_Msg;
1302 Errors.Table (Nxt).Prev := Cur;
1303 Cur := Nxt;
1304 end loop;
1306 -- Eliminate any duplicated error messages from the list. This is
1307 -- done after the fact to avoid problems with Change_Error_Text.
1309 Cur := First_Error_Msg;
1310 while Cur /= No_Error_Msg loop
1311 Nxt := Errors.Table (Cur).Next;
1313 F := Nxt;
1314 while F /= No_Error_Msg
1315 and then Errors.Table (F).Sptr = Errors.Table (Cur).Sptr
1316 loop
1317 Check_Duplicate_Message (Cur, F);
1318 F := Errors.Table (F).Next;
1319 end loop;
1321 Cur := Nxt;
1322 end loop;
1324 -- Mark any messages suppressed by specific warnings as Deleted
1326 Cur := First_Error_Msg;
1327 while Cur /= No_Error_Msg loop
1328 declare
1329 CE : Error_Msg_Object renames Errors.Table (Cur);
1331 begin
1332 if (CE.Warn and not CE.Deleted)
1333 and then
1334 (Warning_Specifically_Suppressed (CE.Sptr, CE.Text)
1335 or else
1336 Warning_Specifically_Suppressed (CE.Optr, CE.Text))
1337 then
1338 Delete_Warning (Cur);
1340 -- If this is a continuation, delete previous messages
1342 F := Cur;
1343 while Errors.Table (F).Msg_Cont loop
1344 F := Errors.Table (F).Prev;
1345 Delete_Warning (F);
1346 end loop;
1348 -- Delete any following continuations
1350 F := Cur;
1351 loop
1352 F := Errors.Table (F).Next;
1353 exit when F = No_Error_Msg;
1354 exit when not Errors.Table (F).Msg_Cont;
1355 Delete_Warning (F);
1356 end loop;
1357 end if;
1358 end;
1360 Cur := Errors.Table (Cur).Next;
1361 end loop;
1363 Finalize_Called := True;
1365 -- Check consistency of specific warnings (may add warnings). We only
1366 -- do this on the last call, after all possible warnings are posted.
1368 if Last_Call then
1369 Validate_Specific_Warnings (Error_Msg'Access);
1370 end if;
1371 end Finalize;
1373 ----------------
1374 -- First_Node --
1375 ----------------
1377 function First_Node (C : Node_Id) return Node_Id is
1378 Orig : constant Node_Id := Original_Node (C);
1379 Loc : constant Source_Ptr := Sloc (Orig);
1380 Sfile : constant Source_File_Index := Get_Source_File_Index (Loc);
1381 Earliest : Node_Id;
1382 Eloc : Source_Ptr;
1384 function Test_Earlier (N : Node_Id) return Traverse_Result;
1385 -- Function applied to every node in the construct
1387 procedure Search_Tree_First is new Traverse_Proc (Test_Earlier);
1388 -- Create traversal procedure
1390 ------------------
1391 -- Test_Earlier --
1392 ------------------
1394 function Test_Earlier (N : Node_Id) return Traverse_Result is
1395 Norig : constant Node_Id := Original_Node (N);
1396 Loc : constant Source_Ptr := Sloc (Norig);
1398 begin
1399 -- Check for earlier
1401 if Loc < Eloc
1403 -- Ignore nodes with no useful location information
1405 and then Loc /= Standard_Location
1406 and then Loc /= No_Location
1408 -- Ignore nodes from a different file. This ensures against cases
1409 -- of strange foreign code somehow being present. We don't want
1410 -- wild placement of messages if that happens.
1412 and then Get_Source_File_Index (Loc) = Sfile
1413 then
1414 Earliest := Norig;
1415 Eloc := Loc;
1416 end if;
1418 return OK_Orig;
1419 end Test_Earlier;
1421 -- Start of processing for First_Node
1423 begin
1424 if Nkind (Orig) in N_Subexpr then
1425 Earliest := Orig;
1426 Eloc := Loc;
1427 Search_Tree_First (Orig);
1428 return Earliest;
1430 else
1431 return Orig;
1432 end if;
1433 end First_Node;
1435 ----------------
1436 -- First_Sloc --
1437 ----------------
1439 function First_Sloc (N : Node_Id) return Source_Ptr is
1440 SI : constant Source_File_Index := Source_Index (Get_Source_Unit (N));
1441 SF : constant Source_Ptr := Source_First (SI);
1442 F : Node_Id;
1443 S : Source_Ptr;
1445 begin
1446 F := First_Node (N);
1447 S := Sloc (F);
1449 -- The following circuit is a bit subtle. When we have parenthesized
1450 -- expressions, then the Sloc will not record the location of the paren,
1451 -- but we would like to post the flag on the paren. So what we do is to
1452 -- crawl up the tree from the First_Node, adjusting the Sloc value for
1453 -- any parentheses we know are present. Yes, we know this circuit is not
1454 -- 100% reliable (e.g. because we don't record all possible paren level
1455 -- values), but this is only for an error message so it is good enough.
1457 Node_Loop : loop
1458 Paren_Loop : for J in 1 .. Paren_Count (F) loop
1460 -- We don't look more than 12 characters behind the current
1461 -- location, and in any case not past the front of the source.
1463 Search_Loop : for K in 1 .. 12 loop
1464 exit Search_Loop when S = SF;
1466 if Source_Text (SI) (S - 1) = '(' then
1467 S := S - 1;
1468 exit Search_Loop;
1470 elsif Source_Text (SI) (S - 1) <= ' ' then
1471 S := S - 1;
1473 else
1474 exit Search_Loop;
1475 end if;
1476 end loop Search_Loop;
1477 end loop Paren_Loop;
1479 exit Node_Loop when F = N;
1480 F := Parent (F);
1481 exit Node_Loop when Nkind (F) not in N_Subexpr;
1482 end loop Node_Loop;
1484 return S;
1485 end First_Sloc;
1487 -----------------------
1488 -- Get_Ignore_Errors --
1489 -----------------------
1491 function Get_Ignore_Errors return Boolean is
1492 begin
1493 return Errors_Must_Be_Ignored;
1494 end Get_Ignore_Errors;
1496 ----------------
1497 -- Initialize --
1498 ----------------
1500 procedure Initialize is
1501 begin
1502 Errors.Init;
1503 First_Error_Msg := No_Error_Msg;
1504 Last_Error_Msg := No_Error_Msg;
1505 Serious_Errors_Detected := 0;
1506 Total_Errors_Detected := 0;
1507 Warnings_Detected := 0;
1508 Cur_Msg := No_Error_Msg;
1509 List_Pragmas.Init;
1511 -- Initialize warnings table, if all warnings are suppressed, supply an
1512 -- initial dummy entry covering all possible source locations.
1514 Warnings.Init;
1515 Specific_Warnings.Init;
1517 if Warning_Mode = Suppress then
1518 Warnings.Append
1519 ((Start => Source_Ptr'First, Stop => Source_Ptr'Last));
1520 end if;
1521 end Initialize;
1523 -----------------
1524 -- No_Warnings --
1525 -----------------
1527 function No_Warnings (N : Node_Or_Entity_Id) return Boolean is
1528 begin
1529 if Error_Posted (N) then
1530 return True;
1532 elsif Nkind (N) in N_Entity and then Has_Warnings_Off (N) then
1533 return True;
1535 elsif Is_Entity_Name (N)
1536 and then Present (Entity (N))
1537 and then Has_Warnings_Off (Entity (N))
1538 then
1539 return True;
1541 else
1542 return False;
1543 end if;
1544 end No_Warnings;
1546 -------------
1547 -- OK_Node --
1548 -------------
1550 function OK_Node (N : Node_Id) return Boolean is
1551 K : constant Node_Kind := Nkind (N);
1553 begin
1554 if Error_Posted (N) then
1555 return False;
1557 elsif K in N_Has_Etype
1558 and then Present (Etype (N))
1559 and then Error_Posted (Etype (N))
1560 then
1561 return False;
1563 elsif (K in N_Op
1564 or else K = N_Attribute_Reference
1565 or else K = N_Character_Literal
1566 or else K = N_Expanded_Name
1567 or else K = N_Identifier
1568 or else K = N_Operator_Symbol)
1569 and then Present (Entity (N))
1570 and then Error_Posted (Entity (N))
1571 then
1572 return False;
1573 else
1574 return True;
1575 end if;
1576 end OK_Node;
1578 ---------------------
1579 -- Output_Messages --
1580 ---------------------
1582 procedure Output_Messages is
1583 E : Error_Msg_Id;
1584 Err_Flag : Boolean;
1586 procedure Write_Error_Summary;
1587 -- Write error summary
1589 procedure Write_Header (Sfile : Source_File_Index);
1590 -- Write header line (compiling or checking given file)
1592 procedure Write_Max_Errors;
1593 -- Write message if max errors reached
1595 -------------------------
1596 -- Write_Error_Summary --
1597 -------------------------
1599 procedure Write_Error_Summary is
1600 begin
1601 -- Extra blank line if error messages or source listing were output
1603 if Total_Errors_Detected + Warnings_Detected > 0
1604 or else Full_List
1605 then
1606 Write_Eol;
1607 end if;
1609 -- Message giving number of lines read and number of errors detected.
1610 -- This normally goes to Standard_Output. The exception is when brief
1611 -- mode is not set, verbose mode (or full list mode) is set, and
1612 -- there are errors. In this case we send the message to standard
1613 -- error to make sure that *something* appears on standard error in
1614 -- an error situation.
1616 -- Formerly, only the "# errors" suffix was sent to stderr, whereas
1617 -- "# lines:" appeared on stdout. This caused problems on VMS when
1618 -- the stdout buffer was flushed, giving an extra line feed after
1619 -- the prefix.
1621 if Total_Errors_Detected + Warnings_Detected /= 0
1622 and then not Brief_Output
1623 and then (Verbose_Mode or Full_List)
1624 then
1625 Set_Standard_Error;
1626 end if;
1628 -- Message giving total number of lines. Don't give this message if
1629 -- the Main_Source line is unknown (this happens in error situations,
1630 -- e.g. when integrated preprocessing fails).
1632 if Main_Source_File /= No_Source_File then
1633 Write_Str (" ");
1634 Write_Int (Num_Source_Lines (Main_Source_File));
1636 if Num_Source_Lines (Main_Source_File) = 1 then
1637 Write_Str (" line: ");
1638 else
1639 Write_Str (" lines: ");
1640 end if;
1641 end if;
1643 if Total_Errors_Detected = 0 then
1644 Write_Str ("No errors");
1646 elsif Total_Errors_Detected = 1 then
1647 Write_Str ("1 error");
1649 else
1650 Write_Int (Total_Errors_Detected);
1651 Write_Str (" errors");
1652 end if;
1654 if Warnings_Detected /= 0 then
1655 Write_Str (", ");
1656 Write_Int (Warnings_Detected);
1657 Write_Str (" warning");
1659 if Warnings_Detected /= 1 then
1660 Write_Char ('s');
1661 end if;
1663 if Warning_Mode = Treat_As_Error then
1664 Write_Str (" (treated as error");
1666 if Warnings_Detected /= 1 then
1667 Write_Char ('s');
1668 end if;
1670 Write_Char (')');
1671 end if;
1672 end if;
1674 Write_Eol;
1675 Set_Standard_Output;
1676 end Write_Error_Summary;
1678 ------------------
1679 -- Write_Header --
1680 ------------------
1682 procedure Write_Header (Sfile : Source_File_Index) is
1683 begin
1684 if Verbose_Mode or Full_List then
1685 if Original_Operating_Mode = Generate_Code then
1686 Write_Str ("Compiling: ");
1687 else
1688 Write_Str ("Checking: ");
1689 end if;
1691 Write_Name (Full_File_Name (Sfile));
1693 if not Debug_Flag_7 then
1694 Write_Str (" (source file time stamp: ");
1695 Write_Time_Stamp (Sfile);
1696 Write_Char (')');
1697 end if;
1699 Write_Eol;
1700 end if;
1701 end Write_Header;
1703 ----------------------
1704 -- Write_Max_Errors --
1705 ----------------------
1707 procedure Write_Max_Errors is
1708 begin
1709 if Maximum_Messages /= 0 then
1710 if Warnings_Detected >= Maximum_Messages then
1711 Set_Standard_Error;
1712 Write_Line ("maximum number of warnings output");
1713 Write_Line ("any further warnings suppressed");
1714 Set_Standard_Output;
1715 end if;
1717 -- If too many errors print message
1719 if Total_Errors_Detected >= Maximum_Messages then
1720 Set_Standard_Error;
1721 Write_Line ("fatal error: maximum number of errors detected");
1722 Set_Standard_Output;
1723 end if;
1724 end if;
1725 end Write_Max_Errors;
1727 -- Start of processing for Output_Messages
1729 begin
1730 -- Error if Finalize has not been called
1732 if not Finalize_Called then
1733 raise Program_Error;
1734 end if;
1736 -- Reset current error source file if the main unit has a pragma
1737 -- Source_Reference. This ensures outputting the proper name of
1738 -- the source file in this situation.
1740 if Main_Source_File = No_Source_File
1741 or else Num_SRef_Pragmas (Main_Source_File) /= 0
1742 then
1743 Current_Error_Source_File := No_Source_File;
1744 end if;
1746 -- Brief Error mode
1748 if Brief_Output or (not Full_List and not Verbose_Mode) then
1749 Set_Standard_Error;
1751 E := First_Error_Msg;
1752 while E /= No_Error_Msg loop
1753 if not Errors.Table (E).Deleted and then not Debug_Flag_KK then
1754 if Full_Path_Name_For_Brief_Errors then
1755 Write_Name (Full_Ref_Name (Errors.Table (E).Sfile));
1756 else
1757 Write_Name (Reference_Name (Errors.Table (E).Sfile));
1758 end if;
1760 Write_Char (':');
1761 Write_Int (Int (Physical_To_Logical
1762 (Errors.Table (E).Line,
1763 Errors.Table (E).Sfile)));
1764 Write_Char (':');
1766 if Errors.Table (E).Col < 10 then
1767 Write_Char ('0');
1768 end if;
1770 Write_Int (Int (Errors.Table (E).Col));
1771 Write_Str (": ");
1772 Output_Msg_Text (E);
1773 Write_Eol;
1774 end if;
1776 E := Errors.Table (E).Next;
1777 end loop;
1779 Set_Standard_Output;
1780 end if;
1782 -- Full source listing case
1784 if Full_List then
1785 List_Pragmas_Index := 1;
1786 List_Pragmas_Mode := True;
1787 E := First_Error_Msg;
1789 -- Normal case, to stdout (copyright notice already output)
1791 if Full_List_File_Name = null then
1792 if not Debug_Flag_7 then
1793 Write_Eol;
1794 end if;
1796 -- Output to file
1798 else
1799 Create_List_File_Access.all (Full_List_File_Name.all);
1800 Set_Special_Output (Write_List_Info_Access.all'Access);
1802 -- Write copyright notice to file
1804 if not Debug_Flag_7 then
1805 Write_Str ("GNAT ");
1806 Write_Str (Gnat_Version_String);
1807 Write_Eol;
1808 Write_Str ("Copyright 1992-" &
1809 Current_Year &
1810 ", Free Software Foundation, Inc.");
1811 Write_Eol;
1812 end if;
1813 end if;
1815 -- First list extended main source file units with errors
1817 for U in Main_Unit .. Last_Unit loop
1818 if In_Extended_Main_Source_Unit (Cunit_Entity (U))
1820 -- If debug flag d.m is set, only the main source is listed
1822 and then (U = Main_Unit or else not Debug_Flag_Dot_M)
1824 -- If the unit of the entity does not come from source, it is
1825 -- an implicit subprogram declaration for a child subprogram.
1826 -- Do not emit errors for it, they are listed with the body.
1828 and then
1829 (No (Cunit_Entity (U))
1830 or else Comes_From_Source (Cunit_Entity (U))
1831 or else not Is_Subprogram (Cunit_Entity (U)))
1832 then
1833 declare
1834 Sfile : constant Source_File_Index := Source_Index (U);
1836 begin
1837 Write_Eol;
1839 -- Only write the header if Sfile is known
1841 if Sfile /= No_Source_File then
1842 Write_Header (Sfile);
1843 Write_Eol;
1844 end if;
1846 -- Normally, we don't want an "error messages from file"
1847 -- message when listing the entire file, so we set the
1848 -- current source file as the current error source file.
1849 -- However, the old style of doing things was to list this
1850 -- message if pragma Source_Reference is present, even for
1851 -- the main unit. Since the purpose of the -gnatd.m switch
1852 -- is to duplicate the old behavior, we skip the reset if
1853 -- this debug flag is set.
1855 if not Debug_Flag_Dot_M then
1856 Current_Error_Source_File := Sfile;
1857 end if;
1859 -- Only output the listing if Sfile is known, to avoid
1860 -- crashing the compiler.
1862 if Sfile /= No_Source_File then
1863 for N in 1 .. Last_Source_Line (Sfile) loop
1864 while E /= No_Error_Msg
1865 and then Errors.Table (E).Deleted
1866 loop
1867 E := Errors.Table (E).Next;
1868 end loop;
1870 Err_Flag :=
1871 E /= No_Error_Msg
1872 and then Errors.Table (E).Line = N
1873 and then Errors.Table (E).Sfile = Sfile;
1875 Output_Source_Line (N, Sfile, Err_Flag);
1877 if Err_Flag then
1878 Output_Error_Msgs (E);
1880 if not Debug_Flag_2 then
1881 Write_Eol;
1882 end if;
1883 end if;
1884 end loop;
1885 end if;
1886 end;
1887 end if;
1888 end loop;
1890 -- Then output errors, if any, for subsidiary units not in the
1891 -- main extended unit.
1893 -- Note: if debug flag d.m set, include errors for any units other
1894 -- than the main unit in the extended source unit (e.g. spec and
1895 -- subunits for a body).
1897 while E /= No_Error_Msg
1898 and then (not In_Extended_Main_Source_Unit (Errors.Table (E).Sptr)
1899 or else
1900 (Debug_Flag_Dot_M
1901 and then Get_Source_Unit
1902 (Errors.Table (E).Sptr) /= Main_Unit))
1903 loop
1904 if Errors.Table (E).Deleted then
1905 E := Errors.Table (E).Next;
1907 else
1908 Write_Eol;
1909 Output_Source_Line
1910 (Errors.Table (E).Line, Errors.Table (E).Sfile, True);
1911 Output_Error_Msgs (E);
1912 end if;
1913 end loop;
1915 -- If output to file, write extra copy of error summary to the
1916 -- output file, and then close it.
1918 if Full_List_File_Name /= null then
1919 Write_Error_Summary;
1920 Write_Max_Errors;
1921 Close_List_File_Access.all;
1922 Cancel_Special_Output;
1923 end if;
1924 end if;
1926 -- Verbose mode (error lines only with error flags). Normally this is
1927 -- ignored in full list mode, unless we are listing to a file, in which
1928 -- case we still generate -gnatv output to standard output.
1930 if Verbose_Mode
1931 and then (not Full_List or else Full_List_File_Name /= null)
1932 then
1933 Write_Eol;
1935 -- Output the header only when Main_Source_File is known
1937 if Main_Source_File /= No_Source_File then
1938 Write_Header (Main_Source_File);
1939 end if;
1941 E := First_Error_Msg;
1943 -- Loop through error lines
1945 while E /= No_Error_Msg loop
1946 if Errors.Table (E).Deleted then
1947 E := Errors.Table (E).Next;
1948 else
1949 Write_Eol;
1950 Output_Source_Line
1951 (Errors.Table (E).Line, Errors.Table (E).Sfile, True);
1952 Output_Error_Msgs (E);
1953 end if;
1954 end loop;
1955 end if;
1957 -- Output error summary if verbose or full list mode
1959 if Verbose_Mode or else Full_List then
1960 Write_Error_Summary;
1961 end if;
1963 Write_Max_Errors;
1965 if Warning_Mode = Treat_As_Error then
1966 Total_Errors_Detected := Total_Errors_Detected + Warnings_Detected;
1967 Warnings_Detected := 0;
1968 end if;
1969 end Output_Messages;
1971 ------------------------
1972 -- Output_Source_Line --
1973 ------------------------
1975 procedure Output_Source_Line
1976 (L : Physical_Line_Number;
1977 Sfile : Source_File_Index;
1978 Errs : Boolean)
1980 S : Source_Ptr;
1981 C : Character;
1983 Line_Number_Output : Boolean := False;
1984 -- Set True once line number is output
1986 Empty_Line : Boolean := True;
1987 -- Set False if line includes at least one character
1989 begin
1990 if Sfile /= Current_Error_Source_File then
1991 Write_Str ("==============Error messages for ");
1993 case Sinput.File_Type (Sfile) is
1994 when Sinput.Src =>
1995 Write_Str ("source");
1997 when Sinput.Config =>
1998 Write_Str ("configuration pragmas");
2000 when Sinput.Def =>
2001 Write_Str ("symbol definition");
2003 when Sinput.Preproc =>
2004 Write_Str ("preprocessing data");
2005 end case;
2007 Write_Str (" file: ");
2008 Write_Name (Full_File_Name (Sfile));
2009 Write_Eol;
2011 if Num_SRef_Pragmas (Sfile) > 0 then
2012 Write_Str ("--------------Line numbers from file: ");
2013 Write_Name (Full_Ref_Name (Sfile));
2014 Write_Str (" (starting at line ");
2015 Write_Int (Int (First_Mapped_Line (Sfile)));
2016 Write_Char (')');
2017 Write_Eol;
2018 end if;
2020 Current_Error_Source_File := Sfile;
2021 end if;
2023 if Errs or List_Pragmas_Mode then
2024 Output_Line_Number (Physical_To_Logical (L, Sfile));
2025 Line_Number_Output := True;
2026 end if;
2028 S := Line_Start (L, Sfile);
2030 loop
2031 C := Source_Text (Sfile) (S);
2032 exit when C = ASCII.LF or else C = ASCII.CR or else C = EOF;
2034 -- Deal with matching entry in List_Pragmas table
2036 if Full_List
2037 and then List_Pragmas_Index <= List_Pragmas.Last
2038 and then S = List_Pragmas.Table (List_Pragmas_Index).Ploc
2039 then
2040 case List_Pragmas.Table (List_Pragmas_Index).Ptyp is
2041 when Page =>
2042 Write_Char (C);
2044 -- Ignore if on line with errors so that error flags
2045 -- get properly listed with the error line .
2047 if not Errs then
2048 Write_Char (ASCII.FF);
2049 end if;
2051 when List_On =>
2052 List_Pragmas_Mode := True;
2054 if not Line_Number_Output then
2055 Output_Line_Number (Physical_To_Logical (L, Sfile));
2056 Line_Number_Output := True;
2057 end if;
2059 Write_Char (C);
2061 when List_Off =>
2062 Write_Char (C);
2063 List_Pragmas_Mode := False;
2064 end case;
2066 List_Pragmas_Index := List_Pragmas_Index + 1;
2068 -- Normal case (no matching entry in List_Pragmas table)
2070 else
2071 if Errs or List_Pragmas_Mode then
2072 Write_Char (C);
2073 end if;
2074 end if;
2076 Empty_Line := False;
2077 S := S + 1;
2078 end loop;
2080 -- If we have output a source line, then add the line terminator, with
2081 -- training spaces preserved (so we output the line exactly as input).
2083 if Line_Number_Output then
2084 if Empty_Line then
2085 Write_Eol;
2086 else
2087 Write_Eol_Keep_Blanks;
2088 end if;
2089 end if;
2090 end Output_Source_Line;
2092 -----------------------------
2093 -- Remove_Warning_Messages --
2094 -----------------------------
2096 procedure Remove_Warning_Messages (N : Node_Id) is
2098 function Check_For_Warning (N : Node_Id) return Traverse_Result;
2099 -- This function checks one node for a possible warning message
2101 function Check_All_Warnings is new Traverse_Func (Check_For_Warning);
2102 -- This defines the traversal operation
2104 -----------------------
2105 -- Check_For_Warning --
2106 -----------------------
2108 function Check_For_Warning (N : Node_Id) return Traverse_Result is
2109 Loc : constant Source_Ptr := Sloc (N);
2110 E : Error_Msg_Id;
2112 function To_Be_Removed (E : Error_Msg_Id) return Boolean;
2113 -- Returns True for a message that is to be removed. Also adjusts
2114 -- warning count appropriately.
2116 -------------------
2117 -- To_Be_Removed --
2118 -------------------
2120 function To_Be_Removed (E : Error_Msg_Id) return Boolean is
2121 begin
2122 if E /= No_Error_Msg
2124 -- Don't remove if location does not match
2126 and then Errors.Table (E).Optr = Loc
2128 -- Don't remove if not warning/info message. Note that we do
2129 -- not remove style messages here. They are warning messages
2130 -- but not ones we want removed in this context.
2132 and then Errors.Table (E).Warn
2134 -- Don't remove unconditional messages
2136 and then not Errors.Table (E).Uncond
2137 then
2138 Warnings_Detected := Warnings_Detected - 1;
2139 return True;
2141 -- No removal required
2143 else
2144 return False;
2145 end if;
2146 end To_Be_Removed;
2148 -- Start of processing for Check_For_Warnings
2150 begin
2151 while To_Be_Removed (First_Error_Msg) loop
2152 First_Error_Msg := Errors.Table (First_Error_Msg).Next;
2153 end loop;
2155 if First_Error_Msg = No_Error_Msg then
2156 Last_Error_Msg := No_Error_Msg;
2157 end if;
2159 E := First_Error_Msg;
2160 while E /= No_Error_Msg loop
2161 while To_Be_Removed (Errors.Table (E).Next) loop
2162 Errors.Table (E).Next :=
2163 Errors.Table (Errors.Table (E).Next).Next;
2165 if Errors.Table (E).Next = No_Error_Msg then
2166 Last_Error_Msg := E;
2167 end if;
2168 end loop;
2170 E := Errors.Table (E).Next;
2171 end loop;
2173 if Nkind (N) = N_Raise_Constraint_Error
2174 and then Original_Node (N) /= N
2175 and then No (Condition (N))
2176 then
2177 -- Warnings may have been posted on subexpressions of the original
2178 -- tree. We place the original node back on the tree to remove
2179 -- those warnings, whose sloc do not match those of any node in
2180 -- the current tree. Given that we are in unreachable code, this
2181 -- modification to the tree is harmless.
2183 declare
2184 Status : Traverse_Final_Result;
2186 begin
2187 if Is_List_Member (N) then
2188 Set_Condition (N, Original_Node (N));
2189 Status := Check_All_Warnings (Condition (N));
2190 else
2191 Rewrite (N, Original_Node (N));
2192 Status := Check_All_Warnings (N);
2193 end if;
2195 return Status;
2196 end;
2198 else
2199 return OK;
2200 end if;
2201 end Check_For_Warning;
2203 -- Start of processing for Remove_Warning_Messages
2205 begin
2206 if Warnings_Detected /= 0 then
2207 declare
2208 Discard : Traverse_Final_Result;
2209 pragma Warnings (Off, Discard);
2211 begin
2212 Discard := Check_All_Warnings (N);
2213 end;
2214 end if;
2215 end Remove_Warning_Messages;
2217 procedure Remove_Warning_Messages (L : List_Id) is
2218 Stat : Node_Id;
2219 begin
2220 if Is_Non_Empty_List (L) then
2221 Stat := First (L);
2222 while Present (Stat) loop
2223 Remove_Warning_Messages (Stat);
2224 Next (Stat);
2225 end loop;
2226 end if;
2227 end Remove_Warning_Messages;
2229 ---------------------------
2230 -- Set_Identifier_Casing --
2231 ---------------------------
2233 procedure Set_Identifier_Casing
2234 (Identifier_Name : System.Address;
2235 File_Name : System.Address)
2237 Ident : constant Big_String_Ptr := To_Big_String_Ptr (Identifier_Name);
2238 File : constant Big_String_Ptr := To_Big_String_Ptr (File_Name);
2239 Flen : Natural;
2241 Desired_Case : Casing_Type := Mixed_Case;
2242 -- Casing required for result. Default value of Mixed_Case is used if
2243 -- for some reason we cannot find the right file name in the table.
2245 begin
2246 -- Get length of file name
2248 Flen := 0;
2249 while File (Flen + 1) /= ASCII.NUL loop
2250 Flen := Flen + 1;
2251 end loop;
2253 -- Loop through file names to find matching one. This is a bit slow, but
2254 -- we only do it in error situations so it is not so terrible. Note that
2255 -- if the loop does not exit, then the desired case will be left set to
2256 -- Mixed_Case, this can happen if the name was not in canonical form,
2257 -- and gets canonicalized on VMS. Possibly we could fix this by
2258 -- unconditionally canonicalizing these names ???
2260 for J in 1 .. Last_Source_File loop
2261 Get_Name_String (Full_Debug_Name (J));
2263 if Name_Len = Flen
2264 and then Name_Buffer (1 .. Name_Len) = String (File (1 .. Flen))
2265 then
2266 Desired_Case := Identifier_Casing (J);
2267 exit;
2268 end if;
2269 end loop;
2271 -- Copy identifier as given to Name_Buffer
2273 for J in Name_Buffer'Range loop
2274 Name_Buffer (J) := Ident (J);
2276 if Name_Buffer (J) = ASCII.NUL then
2277 Name_Len := J - 1;
2278 exit;
2279 end if;
2280 end loop;
2282 Set_Casing (Desired_Case);
2283 end Set_Identifier_Casing;
2285 -----------------------
2286 -- Set_Ignore_Errors --
2287 -----------------------
2289 procedure Set_Ignore_Errors (To : Boolean) is
2290 begin
2291 Errors_Must_Be_Ignored := To;
2292 end Set_Ignore_Errors;
2294 ------------------------------
2295 -- Set_Msg_Insertion_Column --
2296 ------------------------------
2298 procedure Set_Msg_Insertion_Column is
2299 begin
2300 if RM_Column_Check then
2301 Set_Msg_Str (" in column ");
2302 Set_Msg_Int (Int (Error_Msg_Col) + 1);
2303 end if;
2304 end Set_Msg_Insertion_Column;
2306 ----------------------------
2307 -- Set_Msg_Insertion_Node --
2308 ----------------------------
2310 procedure Set_Msg_Insertion_Node is
2311 K : Node_Kind;
2313 begin
2314 Suppress_Message :=
2315 Error_Msg_Node_1 = Error
2316 or else Error_Msg_Node_1 = Any_Type;
2318 if Error_Msg_Node_1 = Empty then
2319 Set_Msg_Blank_Conditional;
2320 Set_Msg_Str ("<empty>");
2322 elsif Error_Msg_Node_1 = Error then
2323 Set_Msg_Blank;
2324 Set_Msg_Str ("<error>");
2326 elsif Error_Msg_Node_1 = Standard_Void_Type then
2327 Set_Msg_Blank;
2328 Set_Msg_Str ("procedure name");
2330 else
2331 Set_Msg_Blank_Conditional;
2333 -- Output name
2335 K := Nkind (Error_Msg_Node_1);
2337 -- If we have operator case, skip quotes since name of operator
2338 -- itself will supply the required quotations. An operator can be an
2339 -- applied use in an expression or an explicit operator symbol, or an
2340 -- identifier whose name indicates it is an operator.
2342 if K in N_Op
2343 or else K = N_Operator_Symbol
2344 or else K = N_Defining_Operator_Symbol
2345 or else ((K = N_Identifier or else K = N_Defining_Identifier)
2346 and then Is_Operator_Name (Chars (Error_Msg_Node_1)))
2347 then
2348 Set_Msg_Node (Error_Msg_Node_1);
2350 -- Normal case, not an operator, surround with quotes
2352 else
2353 Set_Msg_Quote;
2354 Set_Qualification (Error_Msg_Qual_Level, Error_Msg_Node_1);
2355 Set_Msg_Node (Error_Msg_Node_1);
2356 Set_Msg_Quote;
2357 end if;
2358 end if;
2360 -- The following assignment ensures that a second ampersand insertion
2361 -- character will correspond to the Error_Msg_Node_2 parameter. We
2362 -- suppress possible validity checks in case operating in -gnatVa mode,
2363 -- and Error_Msg_Node_2 is not needed and has not been set.
2365 declare
2366 pragma Suppress (Range_Check);
2367 begin
2368 Error_Msg_Node_1 := Error_Msg_Node_2;
2369 end;
2370 end Set_Msg_Insertion_Node;
2372 --------------------------------------
2373 -- Set_Msg_Insertion_Type_Reference --
2374 --------------------------------------
2376 procedure Set_Msg_Insertion_Type_Reference (Flag : Source_Ptr) is
2377 Ent : Entity_Id;
2379 begin
2380 Set_Msg_Blank;
2382 if Error_Msg_Node_1 = Standard_Void_Type then
2383 Set_Msg_Str ("package or procedure name");
2384 return;
2386 elsif Error_Msg_Node_1 = Standard_Exception_Type then
2387 Set_Msg_Str ("exception name");
2388 return;
2390 elsif Error_Msg_Node_1 = Any_Access
2391 or else Error_Msg_Node_1 = Any_Array
2392 or else Error_Msg_Node_1 = Any_Boolean
2393 or else Error_Msg_Node_1 = Any_Character
2394 or else Error_Msg_Node_1 = Any_Composite
2395 or else Error_Msg_Node_1 = Any_Discrete
2396 or else Error_Msg_Node_1 = Any_Fixed
2397 or else Error_Msg_Node_1 = Any_Integer
2398 or else Error_Msg_Node_1 = Any_Modular
2399 or else Error_Msg_Node_1 = Any_Numeric
2400 or else Error_Msg_Node_1 = Any_Real
2401 or else Error_Msg_Node_1 = Any_Scalar
2402 or else Error_Msg_Node_1 = Any_String
2403 then
2404 Get_Unqualified_Decoded_Name_String (Chars (Error_Msg_Node_1));
2405 Set_Msg_Name_Buffer;
2406 return;
2408 elsif Error_Msg_Node_1 = Universal_Real then
2409 Set_Msg_Str ("type universal real");
2410 return;
2412 elsif Error_Msg_Node_1 = Universal_Integer then
2413 Set_Msg_Str ("type universal integer");
2414 return;
2416 elsif Error_Msg_Node_1 = Universal_Fixed then
2417 Set_Msg_Str ("type universal fixed");
2418 return;
2419 end if;
2421 -- Special case of anonymous array
2423 if Nkind (Error_Msg_Node_1) in N_Entity
2424 and then Is_Array_Type (Error_Msg_Node_1)
2425 and then Present (Related_Array_Object (Error_Msg_Node_1))
2426 then
2427 Set_Msg_Str ("type of ");
2428 Set_Msg_Node (Related_Array_Object (Error_Msg_Node_1));
2429 Set_Msg_Str (" declared");
2430 Set_Msg_Insertion_Line_Number
2431 (Sloc (Related_Array_Object (Error_Msg_Node_1)), Flag);
2432 return;
2433 end if;
2435 -- If we fall through, it is not a special case, so first output
2436 -- the name of the type, preceded by private for a private type
2438 if Is_Private_Type (Error_Msg_Node_1) then
2439 Set_Msg_Str ("private type ");
2440 else
2441 Set_Msg_Str ("type ");
2442 end if;
2444 Ent := Error_Msg_Node_1;
2446 if Is_Internal_Name (Chars (Ent)) then
2447 Unwind_Internal_Type (Ent);
2448 end if;
2450 -- Types in Standard are displayed as "Standard.name"
2452 if Sloc (Ent) <= Standard_Location then
2453 Set_Msg_Quote;
2454 Set_Msg_Str ("Standard.");
2455 Set_Msg_Node (Ent);
2456 Add_Class;
2457 Set_Msg_Quote;
2459 -- Types in other language defined units are displayed as
2460 -- "package-name.type-name"
2462 elsif
2463 Is_Predefined_File_Name (Unit_File_Name (Get_Source_Unit (Ent)))
2464 then
2465 Get_Unqualified_Decoded_Name_String
2466 (Unit_Name (Get_Source_Unit (Ent)));
2467 Name_Len := Name_Len - 2;
2468 Set_Msg_Quote;
2469 Set_Casing (Mixed_Case);
2470 Set_Msg_Name_Buffer;
2471 Set_Msg_Char ('.');
2472 Set_Casing (Mixed_Case);
2473 Set_Msg_Node (Ent);
2474 Add_Class;
2475 Set_Msg_Quote;
2477 -- All other types display as "type name" defined at line xxx
2478 -- possibly qualified if qualification is requested.
2480 else
2481 Set_Msg_Quote;
2482 Set_Qualification (Error_Msg_Qual_Level, Ent);
2483 Set_Msg_Node (Ent);
2484 Add_Class;
2486 -- If Ent is an anonymous subprogram type, there is no name to print,
2487 -- so remove enclosing quotes.
2489 if Buffer_Ends_With ("""") then
2490 Buffer_Remove ("""");
2491 else
2492 Set_Msg_Quote;
2493 end if;
2494 end if;
2496 -- If the original type did not come from a predefined file, add the
2497 -- location where the type was defined.
2499 if Sloc (Error_Msg_Node_1) > Standard_Location
2500 and then
2501 not Is_Predefined_File_Name
2502 (Unit_File_Name (Get_Source_Unit (Error_Msg_Node_1)))
2503 then
2504 Set_Msg_Str (" defined");
2505 Set_Msg_Insertion_Line_Number (Sloc (Error_Msg_Node_1), Flag);
2507 -- If it did come from a predefined file, deal with the case where
2508 -- this was a file with a generic instantiation from elsewhere.
2510 else
2511 if Sloc (Error_Msg_Node_1) > Standard_Location then
2512 declare
2513 Iloc : constant Source_Ptr :=
2514 Instantiation_Location (Sloc (Error_Msg_Node_1));
2516 begin
2517 if Iloc /= No_Location
2518 and then not Suppress_Instance_Location
2519 then
2520 Set_Msg_Str (" from instance");
2521 Set_Msg_Insertion_Line_Number (Iloc, Flag);
2522 end if;
2523 end;
2524 end if;
2525 end if;
2526 end Set_Msg_Insertion_Type_Reference;
2528 ---------------------------------
2529 -- Set_Msg_Insertion_Unit_Name --
2530 ---------------------------------
2532 procedure Set_Msg_Insertion_Unit_Name (Suffix : Boolean := True) is
2533 begin
2534 if Error_Msg_Unit_1 = No_Unit_Name then
2535 null;
2537 elsif Error_Msg_Unit_1 = Error_Unit_Name then
2538 Set_Msg_Blank;
2539 Set_Msg_Str ("<error>");
2541 else
2542 Get_Unit_Name_String (Error_Msg_Unit_1, Suffix);
2543 Set_Msg_Blank;
2544 Set_Msg_Quote;
2545 Set_Msg_Name_Buffer;
2546 Set_Msg_Quote;
2547 end if;
2549 -- The following assignment ensures that a second percent insertion
2550 -- character will correspond to the Error_Msg_Unit_2 parameter. We
2551 -- suppress possible validity checks in case operating in -gnatVa mode,
2552 -- and Error_Msg_Unit_2 is not needed and has not been set.
2554 declare
2555 pragma Suppress (Range_Check);
2556 begin
2557 Error_Msg_Unit_1 := Error_Msg_Unit_2;
2558 end;
2559 end Set_Msg_Insertion_Unit_Name;
2561 ------------------
2562 -- Set_Msg_Node --
2563 ------------------
2565 procedure Set_Msg_Node (Node : Node_Id) is
2566 Ent : Entity_Id;
2567 Nam : Name_Id;
2569 begin
2570 case Nkind (Node) is
2571 when N_Designator =>
2572 Set_Msg_Node (Name (Node));
2573 Set_Msg_Char ('.');
2574 Set_Msg_Node (Identifier (Node));
2575 return;
2577 when N_Defining_Program_Unit_Name =>
2578 Set_Msg_Node (Name (Node));
2579 Set_Msg_Char ('.');
2580 Set_Msg_Node (Defining_Identifier (Node));
2581 return;
2583 when N_Selected_Component | N_Expanded_Name =>
2584 Set_Msg_Node (Prefix (Node));
2585 Set_Msg_Char ('.');
2586 Set_Msg_Node (Selector_Name (Node));
2587 return;
2589 when others =>
2590 null;
2591 end case;
2593 -- The only remaining possibilities are identifiers, defining
2594 -- identifiers, pragmas, and pragma argument associations.
2596 if Nkind (Node) = N_Pragma then
2597 Nam := Pragma_Name (Node);
2599 -- The other cases have Chars fields, and we want to test for possible
2600 -- internal names, which generally represent something gone wrong. An
2601 -- exception is the case of internal type names, where we try to find a
2602 -- reasonable external representation for the external name
2604 elsif Is_Internal_Name (Chars (Node))
2605 and then
2606 ((Is_Entity_Name (Node)
2607 and then Present (Entity (Node))
2608 and then Is_Type (Entity (Node)))
2609 or else
2610 (Nkind (Node) = N_Defining_Identifier and then Is_Type (Node)))
2611 then
2612 if Nkind (Node) = N_Identifier then
2613 Ent := Entity (Node);
2614 else
2615 Ent := Node;
2616 end if;
2618 -- If the type is the designated type of an access_to_subprogram,
2619 -- there is no name to provide in the call.
2621 if Ekind (Ent) = E_Subprogram_Type then
2622 return;
2623 else
2624 Unwind_Internal_Type (Ent);
2625 Nam := Chars (Ent);
2626 end if;
2628 -- If not internal name, just use name in Chars field
2630 else
2631 Nam := Chars (Node);
2632 end if;
2634 -- At this stage, the name to output is in Nam
2636 Get_Unqualified_Decoded_Name_String (Nam);
2638 -- Remove trailing upper case letters from the name (useful for
2639 -- dealing with some cases of internal names.
2641 while Name_Len > 1 and then Name_Buffer (Name_Len) in 'A' .. 'Z' loop
2642 Name_Len := Name_Len - 1;
2643 end loop;
2645 -- If we have any of the names from standard that start with the
2646 -- characters "any " (e.g. Any_Type), then kill the message since
2647 -- almost certainly it is a junk cascaded message.
2649 if Name_Len > 4
2650 and then Name_Buffer (1 .. 4) = "any "
2651 then
2652 Kill_Message := True;
2653 end if;
2655 -- Now we have to set the proper case. If we have a source location
2656 -- then do a check to see if the name in the source is the same name
2657 -- as the name in the Names table, except for possible differences
2658 -- in case, which is the case when we can copy from the source.
2660 declare
2661 Src_Loc : constant Source_Ptr := Sloc (Node);
2662 Sbuffer : Source_Buffer_Ptr;
2663 Ref_Ptr : Integer;
2664 Src_Ptr : Source_Ptr;
2666 begin
2667 Ref_Ptr := 1;
2668 Src_Ptr := Src_Loc;
2670 -- For standard locations, always use mixed case
2672 if Src_Loc <= No_Location
2673 or else Sloc (Node) <= No_Location
2674 then
2675 Set_Casing (Mixed_Case);
2677 else
2678 -- Determine if the reference we are dealing with corresponds to
2679 -- text at the point of the error reference. This will often be
2680 -- the case for simple identifier references, and is the case
2681 -- where we can copy the spelling from the source.
2683 Sbuffer := Source_Text (Get_Source_File_Index (Src_Loc));
2685 while Ref_Ptr <= Name_Len loop
2686 exit when
2687 Fold_Lower (Sbuffer (Src_Ptr)) /=
2688 Fold_Lower (Name_Buffer (Ref_Ptr));
2689 Ref_Ptr := Ref_Ptr + 1;
2690 Src_Ptr := Src_Ptr + 1;
2691 end loop;
2693 -- If we get through the loop without a mismatch, then output the
2694 -- name the way it is spelled in the source program
2696 if Ref_Ptr > Name_Len then
2697 Src_Ptr := Src_Loc;
2699 for J in 1 .. Name_Len loop
2700 Name_Buffer (J) := Sbuffer (Src_Ptr);
2701 Src_Ptr := Src_Ptr + 1;
2702 end loop;
2704 -- Otherwise set the casing using the default identifier casing
2706 else
2707 Set_Casing (Identifier_Casing (Flag_Source), Mixed_Case);
2708 end if;
2709 end if;
2710 end;
2712 Set_Msg_Name_Buffer;
2713 Add_Class;
2714 end Set_Msg_Node;
2716 ------------------
2717 -- Set_Msg_Text --
2718 ------------------
2720 procedure Set_Msg_Text (Text : String; Flag : Source_Ptr) is
2721 C : Character; -- Current character
2722 P : Natural; -- Current index;
2724 procedure Set_Msg_Insertion_Warning;
2725 -- Deal with ? ?? ?x? ?X? insertion sequences
2727 -------------------------------
2728 -- Set_Msg_Insertion_Warning --
2729 -------------------------------
2731 procedure Set_Msg_Insertion_Warning is
2732 begin
2733 Warning_Msg_Char := ' ';
2735 if P <= Text'Last and then Text (P) = '?' then
2736 if Warning_Doc_Switch then
2737 Warning_Msg_Char := '?';
2738 end if;
2740 P := P + 1;
2742 elsif P + 1 <= Text'Last
2743 and then (Text (P) in 'a' .. 'z'
2744 or else
2745 Text (P) in 'A' .. 'Z')
2746 and then Text (P + 1) = '?'
2747 then
2748 if Warning_Doc_Switch then
2749 Warning_Msg_Char := Text (P);
2750 end if;
2752 P := P + 2;
2753 end if;
2754 end Set_Msg_Insertion_Warning;
2756 -- Start of processing for Set_Msg_Text
2758 begin
2759 Manual_Quote_Mode := False;
2760 Msglen := 0;
2761 Flag_Source := Get_Source_File_Index (Flag);
2763 P := Text'First;
2764 while P <= Text'Last loop
2765 C := Text (P);
2766 P := P + 1;
2768 -- Check for insertion character or sequence
2770 case C is
2771 when '%' =>
2772 if P <= Text'Last and then Text (P) = '%' then
2773 P := P + 1;
2774 Set_Msg_Insertion_Name_Literal;
2775 else
2776 Set_Msg_Insertion_Name;
2777 end if;
2779 when '$' =>
2780 if P <= Text'Last and then Text (P) = '$' then
2781 P := P + 1;
2782 Set_Msg_Insertion_Unit_Name (Suffix => False);
2783 else
2784 Set_Msg_Insertion_Unit_Name;
2785 end if;
2787 when '{' =>
2788 Set_Msg_Insertion_File_Name;
2790 when '}' =>
2791 Set_Msg_Insertion_Type_Reference (Flag);
2793 when '*' =>
2794 Set_Msg_Insertion_Reserved_Name;
2796 when '&' =>
2797 Set_Msg_Insertion_Node;
2799 when '#' =>
2800 Set_Msg_Insertion_Line_Number (Error_Msg_Sloc, Flag);
2802 when '\' =>
2803 Continuation := True;
2805 if Text (P) = '\' then
2806 Continuation_New_Line := True;
2807 P := P + 1;
2808 end if;
2810 when '@' =>
2811 Set_Msg_Insertion_Column;
2813 when '>' =>
2814 Set_Msg_Insertion_Run_Time_Name;
2816 when '^' =>
2817 Set_Msg_Insertion_Uint;
2819 when '`' =>
2820 Manual_Quote_Mode := not Manual_Quote_Mode;
2821 Set_Msg_Char ('"');
2823 when '!' =>
2824 null; -- already dealt with
2826 when '?' =>
2827 Set_Msg_Insertion_Warning;
2829 when '<' =>
2831 -- If tagging of messages is enabled, and this is a warning,
2832 -- then it is treated as being [enabled by default].
2834 if Error_Msg_Warn
2835 and Warning_Doc_Switch
2836 then
2837 Warning_Msg_Char := '?';
2838 end if;
2840 when '|' =>
2841 null; -- already dealt with
2843 when ''' =>
2844 Set_Msg_Char (Text (P));
2845 P := P + 1;
2847 when '~' =>
2848 Set_Msg_Str (Error_Msg_String (1 .. Error_Msg_Strlen));
2850 -- Upper case letter
2852 when 'A' .. 'Z' =>
2854 -- Start of reserved word if two or more
2856 if P <= Text'Last and then Text (P) in 'A' .. 'Z' then
2857 P := P - 1;
2858 Set_Msg_Insertion_Reserved_Word (Text, P);
2860 -- Single upper case letter is just inserted
2862 else
2863 Set_Msg_Char (C);
2864 end if;
2866 -- Normal character with no special treatment
2868 when others =>
2869 Set_Msg_Char (C);
2870 end case;
2871 end loop;
2873 VMS_Convert;
2874 end Set_Msg_Text;
2876 ----------------
2877 -- Set_Posted --
2878 ----------------
2880 procedure Set_Posted (N : Node_Id) is
2881 P : Node_Id;
2883 begin
2884 if Is_Serious_Error then
2886 -- We always set Error_Posted on the node itself
2888 Set_Error_Posted (N);
2890 -- If it is a subexpression, then set Error_Posted on parents up to
2891 -- and including the first non-subexpression construct. This helps
2892 -- avoid cascaded error messages within a single expression.
2894 P := N;
2895 loop
2896 P := Parent (P);
2897 exit when No (P);
2898 Set_Error_Posted (P);
2899 exit when Nkind (P) not in N_Subexpr;
2900 end loop;
2902 -- A special check, if we just posted an error on an attribute
2903 -- definition clause, then also set the entity involved as posted.
2904 -- For example, this stops complaining about the alignment after
2905 -- complaining about the size, which is likely to be useless.
2907 if Nkind (P) = N_Attribute_Definition_Clause then
2908 if Is_Entity_Name (Name (P)) then
2909 Set_Error_Posted (Entity (Name (P)));
2910 end if;
2911 end if;
2912 end if;
2913 end Set_Posted;
2915 -----------------------
2916 -- Set_Qualification --
2917 -----------------------
2919 procedure Set_Qualification (N : Nat; E : Entity_Id) is
2920 begin
2921 if N /= 0 and then Scope (E) /= Standard_Standard then
2922 Set_Qualification (N - 1, Scope (E));
2923 Set_Msg_Node (Scope (E));
2924 Set_Msg_Char ('.');
2925 end if;
2926 end Set_Qualification;
2928 ------------------------
2929 -- Special_Msg_Delete --
2930 ------------------------
2932 -- Is it really right to have all this specialized knowledge in errout?
2934 function Special_Msg_Delete
2935 (Msg : String;
2936 N : Node_Or_Entity_Id;
2937 E : Node_Or_Entity_Id) return Boolean
2939 begin
2940 -- Never delete messages in -gnatdO mode
2942 if Debug_Flag_OO then
2943 return False;
2945 -- Processing for "atomic access cannot be guaranteed"
2947 elsif Msg = "atomic access to & cannot be guaranteed" then
2949 -- When an atomic object refers to a non-atomic type in the same
2950 -- scope, we implicitly make the type atomic. In the non-error case
2951 -- this is surely safe (and in fact prevents an error from occurring
2952 -- if the type is not atomic by default). But if the object cannot be
2953 -- made atomic, then we introduce an extra junk message by this
2954 -- manipulation, which we get rid of here.
2956 -- We identify this case by the fact that it references a type for
2957 -- which Is_Atomic is set, but there is no Atomic pragma setting it.
2959 if Is_Type (E)
2960 and then Is_Atomic (E)
2961 and then No (Get_Rep_Pragma (E, Name_Atomic))
2962 then
2963 return True;
2964 end if;
2966 -- Processing for "Size too small" messages
2968 elsif Msg = "size for& too small, minimum allowed is ^" then
2970 -- Suppress "size too small" errors in CodePeer mode and SPARK mode,
2971 -- since pragma Pack is also ignored in these configurations.
2973 if CodePeer_Mode or SPARK_Mode then
2974 return True;
2976 -- When a size is wrong for a frozen type there is no explicit size
2977 -- clause, and other errors have occurred, suppress the message,
2978 -- since it is likely that this size error is a cascaded result of
2979 -- other errors. The reason we eliminate unfrozen types is that
2980 -- messages issued before the freeze type are for sure OK.
2982 elsif Is_Frozen (E)
2983 and then Serious_Errors_Detected > 0
2984 and then Nkind (N) /= N_Component_Clause
2985 and then Nkind (Parent (N)) /= N_Component_Clause
2986 and then
2987 No (Get_Attribute_Definition_Clause (E, Attribute_Size))
2988 and then
2989 No (Get_Attribute_Definition_Clause (E, Attribute_Object_Size))
2990 and then
2991 No (Get_Attribute_Definition_Clause (E, Attribute_Value_Size))
2992 then
2993 return True;
2994 end if;
2995 end if;
2997 -- All special tests complete, so go ahead with message
2999 return False;
3000 end Special_Msg_Delete;
3002 --------------------------
3003 -- Unwind_Internal_Type --
3004 --------------------------
3006 procedure Unwind_Internal_Type (Ent : in out Entity_Id) is
3007 Derived : Boolean := False;
3008 Mchar : Character;
3009 Old_Ent : Entity_Id;
3011 begin
3012 -- Undo placement of a quote, since we will put it back later
3014 Mchar := Msg_Buffer (Msglen);
3016 if Mchar = '"' then
3017 Msglen := Msglen - 1;
3018 end if;
3020 -- The loop here deals with recursive types, we are trying to find a
3021 -- related entity that is not an implicit type. Note that the check with
3022 -- Old_Ent stops us from getting "stuck". Also, we don't output the
3023 -- "type derived from" message more than once in the case where we climb
3024 -- up multiple levels.
3026 Find : loop
3027 Old_Ent := Ent;
3029 -- Implicit access type, use directly designated type In Ada 2005,
3030 -- the designated type may be an anonymous access to subprogram, in
3031 -- which case we can only point to its definition.
3033 if Is_Access_Type (Ent) then
3034 if Ekind (Ent) = E_Access_Subprogram_Type
3035 or else Ekind (Ent) = E_Anonymous_Access_Subprogram_Type
3036 or else Is_Access_Protected_Subprogram_Type (Ent)
3037 then
3038 Ent := Directly_Designated_Type (Ent);
3040 if not Comes_From_Source (Ent) then
3041 if Buffer_Ends_With ("type ") then
3042 Buffer_Remove ("type ");
3043 end if;
3045 if Is_Itype (Ent) then
3046 declare
3047 Assoc : constant Node_Id :=
3048 Associated_Node_For_Itype (Ent);
3050 begin
3051 if Nkind (Assoc) in N_Subprogram_Specification then
3053 -- Anonymous access to subprogram in a signature.
3054 -- Indicate the enclosing subprogram.
3056 Ent :=
3057 Defining_Unit_Name
3058 (Associated_Node_For_Itype (Ent));
3059 Set_Msg_Str
3060 ("access to subprogram declared in profile of ");
3062 else
3063 Set_Msg_Str ("access to subprogram with profile ");
3064 end if;
3065 end;
3066 end if;
3068 elsif Ekind (Ent) = E_Function then
3069 Set_Msg_Str ("access to function ");
3070 else
3071 Set_Msg_Str ("access to procedure ");
3072 end if;
3074 exit Find;
3076 -- Type is access to object, named or anonymous
3078 else
3079 Set_Msg_Str ("access to ");
3080 Ent := Directly_Designated_Type (Ent);
3081 end if;
3083 -- Classwide type
3085 elsif Is_Class_Wide_Type (Ent) then
3086 Class_Flag := True;
3087 Ent := Root_Type (Ent);
3089 -- Use base type if this is a subtype
3091 elsif Ent /= Base_Type (Ent) then
3092 Buffer_Remove ("type ");
3094 -- Avoid duplication "subtype of subtype of", and also replace
3095 -- "derived from subtype of" simply by "derived from"
3097 if not Buffer_Ends_With ("subtype of ")
3098 and then not Buffer_Ends_With ("derived from ")
3099 then
3100 Set_Msg_Str ("subtype of ");
3101 end if;
3103 Ent := Base_Type (Ent);
3105 -- If this is a base type with a first named subtype, use the first
3106 -- named subtype instead. This is not quite accurate in all cases,
3107 -- but it makes too much noise to be accurate and add 'Base in all
3108 -- cases. Note that we only do this is the first named subtype is not
3109 -- itself an internal name. This avoids the obvious loop (subtype ->
3110 -- basetype -> subtype) which would otherwise occur!)
3112 else
3113 declare
3114 FST : constant Entity_Id := First_Subtype (Ent);
3116 begin
3117 if not Is_Internal_Name (Chars (FST)) then
3118 Ent := FST;
3119 exit Find;
3121 -- Otherwise use root type
3123 else
3124 if not Derived then
3125 Buffer_Remove ("type ");
3127 -- Test for "subtype of type derived from" which seems
3128 -- excessive and is replaced by "type derived from".
3130 Buffer_Remove ("subtype of");
3132 -- Avoid duplicated "type derived from type derived from"
3134 if not Buffer_Ends_With ("type derived from ") then
3135 Set_Msg_Str ("type derived from ");
3136 end if;
3138 Derived := True;
3139 end if;
3140 end if;
3141 end;
3143 Ent := Etype (Ent);
3144 end if;
3146 -- If we are stuck in a loop, get out and settle for the internal
3147 -- name after all. In this case we set to kill the message if it is
3148 -- not the first error message (we really try hard not to show the
3149 -- dirty laundry of the implementation to the poor user!)
3151 if Ent = Old_Ent then
3152 Kill_Message := True;
3153 exit Find;
3154 end if;
3156 -- Get out if we finally found a non-internal name to use
3158 exit Find when not Is_Internal_Name (Chars (Ent));
3159 end loop Find;
3161 if Mchar = '"' then
3162 Set_Msg_Char ('"');
3163 end if;
3164 end Unwind_Internal_Type;
3166 -----------------
3167 -- VMS_Convert --
3168 -----------------
3170 procedure VMS_Convert is
3171 P : Natural;
3172 L : Natural;
3173 N : Natural;
3175 begin
3176 if not OpenVMS then
3177 return;
3178 end if;
3180 P := Msg_Buffer'First;
3181 loop
3182 if P >= Msglen then
3183 return;
3184 end if;
3186 if Msg_Buffer (P) = '-' then
3187 for G in Gnames'Range loop
3188 L := Gnames (G)'Length;
3190 -- See if we have "-ggg switch", where ggg is Gnames entry
3192 if P + L + 7 <= Msglen
3193 and then Msg_Buffer (P + 1 .. P + L) = Gnames (G).all
3194 and then Msg_Buffer (P + L + 1 .. P + L + 7) = " switch"
3195 then
3196 -- Replace by "/vvv qualifier", where vvv is Vnames entry
3198 N := Vnames (G)'Length;
3199 Msg_Buffer (P + N + 11 .. Msglen + N - L + 3) :=
3200 Msg_Buffer (P + L + 8 .. Msglen);
3201 Msg_Buffer (P) := '/';
3202 Msg_Buffer (P + 1 .. P + N) := Vnames (G).all;
3203 Msg_Buffer (P + N + 1 .. P + N + 10) := " qualifier";
3204 P := P + N + 10;
3205 Msglen := Msglen + N - L + 3;
3206 exit;
3207 end if;
3208 end loop;
3209 end if;
3211 P := P + 1;
3212 end loop;
3213 end VMS_Convert;
3215 end Errout;