OSDN Git Service

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