OSDN Git Service

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