OSDN Git Service

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