OSDN Git Service

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