OSDN Git Service

2004-05-17 Steve Kargl <kargls@comcast.net>
[pf3gnuchains/gcc-fork.git] / gcc / ada / errout.ads
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                               E R R O U T                                --
6 --                                                                          --
7 --                                 S p e c                                  --
8 --                                                                          --
9 --          Copyright (C) 1992-2004 Free Software Foundation, Inc.          --
10 --                                                                          --
11 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
12 -- terms of the  GNU General Public License as published  by the Free Soft- --
13 -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
14 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
17 -- for  more details.  You should have  received  a copy of the GNU General --
18 -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
19 -- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
20 -- MA 02111-1307, USA.                                                      --
21 --                                                                          --
22 -- GNAT was originally developed  by the GNAT team at  New York University. --
23 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
24 --                                                                          --
25 ------------------------------------------------------------------------------
26
27 --  This package contains the routines to output error messages. They
28 --  are basically system independent, however in some environments, e.g.
29 --  when the parser is embedded into an editor, it may be appropriate
30 --  to replace the implementation of this package.
31
32 with Err_Vars;
33 with Erroutc;
34 with Table;
35 with Types; use Types;
36 with Uintp; use Uintp;
37
38 with System;
39
40 package Errout is
41
42    Serious_Errors_Detected : Nat renames Err_Vars.Serious_Errors_Detected;
43    --  This is a count of errors that are serious enough to stop expansion,
44    --  and hence to prevent generation of an object file even if the
45    --  switch -gnatQ is set.
46
47    Total_Errors_Detected : Nat renames Err_Vars.Total_Errors_Detected;
48    --  Number of errors detected so far. Includes count of serious errors
49    --  and non-serious errors, so this value is always greater than or
50    --  equal to the Serious_Errors_Detected value.
51
52    Warnings_Detected : Nat renames Err_Vars.Warnings_Detected;
53    --  Number of warnings detected
54
55    Configurable_Run_Time_Violations : Nat := 0;
56    --  Count of configurable run time violations so far. This is used to
57    --  suppress certain cascaded error messages when we know that we may not
58    --  have fully expanded some items, due to high integrity violations (i.e.
59    --  the use of constructs not permitted by the library in use, or
60    --  improper constructs in No_Run_Time mode).
61
62    type Compiler_State_Type is (Parsing, Analyzing);
63    Compiler_State : Compiler_State_Type;
64    --  Indicates current state of compilation. This is put in the Errout
65    --  spec because it affects the action of the error message handling.
66    --  In particular, an attempt is made by Errout to suppress cascaded
67    --  error messages in Parsing mode, but not in the other modes.
68
69    Current_Error_Source_File : Source_File_Index
70      renames Err_Vars.Current_Error_Source_File;
71    --  Id of current messages. Used to post file name when unit changes. This
72    --  is initialized to Main_Source_File at the start of a compilation, which
73    --  means that no file names will be output unless there are errors in units
74    --  other than the main unit. However, if the main unit has a pragma
75    --  Source_Reference line, then this is initialized to No_Source_File,
76    --  to force an initial reference to the real source file name.
77
78    Raise_Exception_On_Error : Nat renames Err_Vars.Raise_Exception_On_Error;
79    --  If this value is non-zero, then any attempt to generate an error
80    --  message raises the exception Error_Msg_Exception, and the error
81    --  message is not output. This is used for defending against junk
82    --  resulting from illegalities, and also for substitution of more
83    --  appropriate error messages from higher semantic levels. It is
84    --  a counter so that the increment/decrement protocol nests neatly.
85
86    Error_Msg_Exception : exception renames Err_Vars.Error_Msg_Exception;
87    --  Exception raised if Raise_Exception_On_Error is true
88
89    -----------------------------------
90    -- Suppression of Error Messages --
91    -----------------------------------
92
93    --  In an effort to reduce the impact of redundant error messages, the
94    --  error output routines in this package normally suppress certain
95    --  classes of messages as follows:
96
97    --    1.  Identical messages placed at the same point in the text. Such
98    --        duplicate error message result for example from rescanning
99    --        sections of the text that contain lexical errors. Only one of
100    --        such a set of duplicate messages is output, and the rest are
101    --        suppressed.
102
103    --    2.  If more than one parser message is generated for a single source
104    --        line, then only the first message is output, the remaining
105    --        messages on the same line are suppressed.
106
107    --    3.  If a message is posted on a node for which a message has been
108    --        previously posted, then only the first message is retained. The
109    --        Error_Posted flag is used to detect such multiple postings. Note
110    --        that this only applies to semantic messages, since otherwise
111    --        for parser messages, this would be a special case of case 2.
112
113    --    4.  If a message is posted on a node whose Etype or Entity
114    --        fields reference entities on which an error message has
115    --        already been placed, as indicated by the Error_Posted flag
116    --        being set on these entities, then the message is suppressed.
117
118    --    5.  If a message attempts to insert an Error node, or a direct
119    --        reference to the Any_Type node, then the message is suppressed.
120
121    --  This normal suppression action may be overridden in cases 2-5 (but not
122    --  in case 1) by setting All_Errors mode, or by setting the special
123    --  unconditional message insertion character (!) at the end of the message
124    --  text as described below.
125
126    ---------------------------------------------------------
127    -- Error Message Text and Message Insertion Characters --
128    ---------------------------------------------------------
129
130    --  Error message text strings are composed of lower case letters, digits
131    --  and the special characters space, comma, period, colon and semicolon,
132    --  apostrophe and parentheses. Special insertion characters can also
133    --  appear which cause the error message circuit to modify the given
134    --  string as follows:
135
136    --    Insertion character % (Percent: insert name from Names table)
137    --      The character % is replaced by the text for the name specified by
138    --      the Name_Id value stored in Error_Msg_Name_1. A blank precedes
139    --      the name if it is preceded by a non-blank character other than a
140    --      left parenthesis. The name is enclosed in quotes unless manual
141    --      quotation mode is set. If the Name_Id is set to No_Name, then
142    --      no insertion occurs; if the Name_Id is set to Error_Name, then
143    --      the string <error> is inserted. A second and third % may appear
144    --      in a single message, similarly replaced by the names which are
145    --      specified by the Name_Id values stored in Error_Msg_Name_2 and
146    --      Error_Msg_Name_3. The names are decoded and cased according to
147    --      the current identifier casing mode.
148
149    --    Insertion character $ (Dollar: insert unit name from Names table)
150    --      The character $ is treated similarly to %, except that the name
151    --      is obtained from the Unit_Name_Type value in Error_Msg_Unit_1
152    --      and Error_Msg_Unit_2, as provided by Get_Unit_Name_String in
153    --      package Uname. Note that this name includes the postfix (spec)
154    --      or (body) strings. If this postfix is not required, use the
155    --      normal % insertion for the unit name.
156
157    --    Insertion character { (Left brace: insert literally from names table)
158    --      The character { is treated similarly to %, except that the
159    --      name is output literally as stored in the names table without
160    --      adjusting the casing. This can be used for file names and in
161    --      other situations where the name string is to be output unchanged.
162
163    --    Insertion character * (Asterisk, insert reserved word name)
164    --      The insertion character * is treated exactly like % except that
165    --      the resulting name is cased according to the default conventions
166    --      for reserved words (see package Scans).
167
168    --    Insertion character & (Ampersand: insert name from node)
169    --      The insertion character & is treated similarly to %, except that
170    --      the name is taken from the Chars field of the given node, and may
171    --      refer to a child unit name, or a selected component. The casing
172    --      is, if possible, taken from the original source reference, which
173    --      is obtained from the Sloc field of the given node or nodes. If no
174    --      Sloc is available (happens e.g. for nodes in package Standard),
175    --      then the default case (see Scans spec) is used. The nodes to be
176    --      used are stored in Error_Msg_Node_1, Error_Msg_Node_2. No insertion
177    --      occurs for the Empty node, and the Error node results in the
178    --      insertion of the characters <error>. In addition, if the special
179    --      global variable Error_Msg_Qual_Level is non-zero, then the
180    --      reference will include up to the given number of levels of
181    --      qualification, using the scope chain.
182
183    --    Insertion character # (Pound: insert line number reference)
184    --      The character # is replaced by the string indicating the source
185    --      position stored in Error_Msg_Sloc. There are three cases:
186    --
187    --        for package Standard:           in package Standard
188    --        for locations in current file:  at line nnn:ccc
189    --        for locations in other files:   at filename:nnn:ccc
190    --
191    --      By convention, the # insertion character is only used at the end
192    --      of an error message, so the above strings only appear as the last
193    --      characters of an error message.
194
195    --    Insertion character } (Right brace: insert type reference)
196    --      The character } is replaced by a string describing the type
197    --      referenced by the entity whose Id is stored in Error_Msg_Node_1.
198    --      the string gives the name or description of the type, and also
199    --      where appropriate the location of its declaration. Special
200    --      cases like "some integer type" are handled appropriately. Only
201    --      one } is allowed in a message, since there is not enough room
202    --      for two (the insertion can be quite long, including a file name)
203    --      In addition, if the special global variable Error_Msg_Qual_Level
204    --      is non-zero, then the reference will include up to the given
205    --      number of levels of qualification, using the scope chain.
206
207    --    Insertion character @ (At: insert column number reference)
208    --      The character @ is replaced by null if the RM_Column_Check mode is
209    --      off (False). If the switch is on (True), then @ is replaced by the
210    --      text string " in column nnn" where nnn is the decimal representation
211    --      of the column number stored in Error_Msg_Col plus one (the plus one
212    --      is because the number is stored 0-origin and displayed 1-origin).
213
214    --    Insertion character ^ (Carret: insert integer value)
215    --      The character ^ is replaced by the decimal conversion of the Uint
216    --      value stored in Error_Msg_Uint_1, with a possible leading minus.
217    --      A second ^ may occur in the message, in which case it is replaced
218    --      by the decimal conversion of the Uint value in Error_Msg_Uint_2.
219
220    --    Insertion character > (Right bracket, run time name)
221    --      The character > is replaced by a string of the form (name) if
222    --      Targparm scanned out a Run_Time_Name (see package Targparm for
223    --      details). The name is enclosed in parentheses and output in mixed
224    --      case mode (upper case after any space in the name). If no run time
225    --      name is defined, this insertion character has no effect.
226
227    --    Insertion character ! (Exclamation: unconditional message)
228    --      The character ! appearing as the last character of a message makes
229    --      the message unconditional which means that it is output even if it
230    --      would normally be suppressed. See section above for a description
231    --      of the cases in which messages are normally suppressed.
232
233    --    Insertion character ? (Question: warning message)
234    --      The character ? appearing anywhere in a message makes the message
235    --      a warning instead of a normal error message, and the text of the
236    --      message will be preceded by "Warning:" instead of "Error:" The
237    --      handling of warnings if further controlled by the Warning_Mode
238    --      option (-w switch), see package Opt for further details, and
239    --      also by the current setting from pragma Warnings. This pragma
240    --      applies only to warnings issued from the semantic phase (not
241    --      the parser), but currently all relevant warnings are posted
242    --      by the semantic phase anyway. Messages starting with (style)
243    --      are also treated as warning messages.
244
245    --    Insertion character A-Z (Upper case letter: Ada reserved word)
246    --      If two or more upper case letters appear in the message, they are
247    --      taken as an Ada reserved word, and are converted to the default
248    --      case for reserved words (see Scans package spec). Surrounding
249    --      quotes are added unless manual quotation mode is currently set.
250
251    --    Insertion character ` (Backquote: set manual quotation mode)
252    --      The backquote character always appears in pairs. Each backquote
253    --      of the pair is replaced by a double quote character. In addition,
254    --      Any reserved keywords, or name insertions between these backquotes
255    --      are not surrounded by the usual automatic double quotes. See the
256    --      section below on manual quotation mode for further details.
257
258    --    Insertion character ' (Quote: literal character)
259    --      Precedes a character which is placed literally into the message.
260    --      Used to insert characters into messages that are one of the
261    --      insertion characters defined here. Also useful in inserting
262    --      sequences of upper case letters (e.g. RM) which are not to be
263    --      treated as keywords.
264
265    --    Insertion character \ (Backslash: continuation message)
266    --      Indicates that the message is a continuation of a message
267    --      previously posted. This is used to ensure that such groups
268    --      of messages are treated as a unit. The \ character must be
269    --      the first character of the message text.
270
271    --    Insertion character | (vertical bar, non-serious error)
272    --      By default, error messages (other than warning messages) are
273    --      considered to be fatal error messages which prevent expansion
274    --      or generation of code in the presence of the -gnatQ switch.
275    --      If the insertion character | appears, the message is considered
276    --      to be non-serious, and does not cause Serious_Errors_Detected
277    --      to be incremented (so expansion is not prevented by such a msg).
278
279    ----------------------------------------
280    -- Specialization of Messages for VMS --
281    ----------------------------------------
282
283    --  Some messages mention gcc-style switch names. When using an OpenVMS
284    --  host, such switch names must be converted to their corresponding VMS
285    --  qualifer. The following table controls this translation. In each case
286    --  the original message must contain the string "-xxx switch", where xxx
287    --  is the Gname? entry from below, and this string will be replaced by
288    --  "/yyy qualifier", where yyy is the corresponding Vname? entry.
289
290    Gname1 : aliased constant String := "fno-strict-aliasing";
291    Vname1 : aliased constant String := "OPTIMIZE=NO_STRICT_ALIASING";
292
293    Gname2 : aliased constant String := "gnatX";
294    Vname2 : aliased constant String := "EXTENSIONS_ALLOWED";
295
296    Gname3 : aliased constant String := "gnatW";
297    Vname3 : aliased constant String := "WIDE_CHARACTER_ENCODING";
298
299    Gname4 : aliased constant String := "gnatf";
300    Vname4 : aliased constant String := "REPORT_ERRORS=FULL";
301
302    type Cstring_Ptr is access constant String;
303
304    Gnames : array (Nat range <>) of Cstring_Ptr :=
305               (Gname1'Access,
306                Gname2'Access,
307                Gname3'Access,
308                Gname4'Access);
309
310    Vnames : array (Nat range <>) of Cstring_Ptr :=
311               (Vname1'Access,
312                Vname2'Access,
313                Vname3'Access,
314                Vname4'Access);
315
316    -----------------------------------------------------
317    -- Global Values Used for Error Message Insertions --
318    -----------------------------------------------------
319
320    --  The following global variables are essentially additional parameters
321    --  passed to the error message routine for insertion sequences described
322    --  above. The reason these are passed globally is that the insertion
323    --  mechanism is essentially an untyped one in which the appropriate
324    --  variables are set dependingon the specific insertion characters used.
325
326    Error_Msg_Col : Column_Number renames Err_Vars.Error_Msg_Col;
327    --  Column for @ insertion character in message
328
329    Error_Msg_Uint_1 : Uint renames Err_Vars.Error_Msg_Uint_1;
330    Error_Msg_Uint_2 : Uint renames Err_Vars.Error_Msg_Uint_2;
331    --  Uint values for ^ insertion characters in message
332
333    Error_Msg_Sloc : Source_Ptr renames Err_Vars.Error_Msg_Sloc;
334    --  Source location for # insertion character in message
335
336    Error_Msg_Name_1 : Name_Id renames Err_Vars.Error_Msg_Name_1;
337    Error_Msg_Name_2 : Name_Id renames Err_Vars.Error_Msg_Name_2;
338    Error_Msg_Name_3 : Name_Id renames Err_Vars.Error_Msg_Name_3;
339    --  Name_Id values for % insertion characters in message
340
341    Error_Msg_Unit_1 : Name_Id renames Err_Vars.Error_Msg_Unit_1;
342    Error_Msg_Unit_2 : Name_Id renames Err_Vars.Error_Msg_Unit_2;
343    --  Name_Id values for $ insertion characters in message
344
345    Error_Msg_Node_1 : Node_Id renames Err_Vars.Error_Msg_Node_1;
346    Error_Msg_Node_2 : Node_Id renames Err_Vars.Error_Msg_Node_2;
347    --  Node_Id values for & insertion characters in message
348
349    Error_Msg_Qual_Level : Int renames Err_Vars.Error_Msg_Qual_Level;
350    --  Number of levels of qualification required for type name (see the
351    --  description of the } insertion character. Note that this value does
352    --  note get reset by any Error_Msg call, so the caller is responsible
353    --  for resetting it.
354
355    -----------------------------------------------------
356    -- Format of Messages and Manual Quotation Control --
357    -----------------------------------------------------
358
359    --  Messages are generally all in lower case, except for inserted names
360    --  and appear in one of the following three forms:
361
362    --    error: text
363    --    warning: text
364
365    --  The prefixes error and warning are supplied automatically (depending
366    --  on the use of the ? insertion character), and the call to the error
367    --  message routine supplies the text. The "error: " prefix is omitted
368    --  in brief error message formats.
369
370    --  Reserved Ada keywords in the message are in the default keyword case
371    --  (determined from the given source program), surrounded by quotation
372    --  marks. This is achieved by spelling the reserved word in upper case
373    --  letters, which is recognized as a request for insertion of quotation
374    --  marks by the error text processor. Thus for example:
375
376    --    Error_Msg_AP ("IS expected");
377
378    --  would result in the output of one of the following:
379
380    --    error: "is" expected
381    --    error: "IS" expected
382    --    error: "Is" expected
383
384    --  the choice between these being made by looking at the casing convention
385    --  used for keywords (actually the first compilation unit keyword) in the
386    --  source file.
387
388    --  In the case of names, the default mode for the error text processor
389    --  is to surround the name by quotation marks automatically. The case
390    --  used for the identifier names is taken from the source program where
391    --  possible, and otherwise is the default casing convention taken from
392    --  the source file usage.
393
394    --  In some cases, better control over the placement of quote marks is
395    --  required. This is achieved using manual quotation mode. In this mode,
396    --  one or more insertion sequences is surrounded by backquote characters.
397    --  The backquote characters are output as double quote marks, and normal
398    --  automatic insertion of quotes is suppressed between the double quotes.
399    --  For example:
400
401    --    Error_Msg_AP ("`END &;` expected");
402
403    --  generates a message like
404
405    --    error: "end Open_Scope;" expected
406
407    --  where the node specifying the name Open_Scope has been stored in
408    --  Error_Msg_Node_1 prior to the call. The great majority of error
409    --  messages operates in normal quotation mode.
410
411    --  Note: the normal automatic insertion of spaces before insertion
412    --  sequences (such as those that come from & and %) is suppressed in
413    --  manual quotation mode, so blanks, if needed as in the above example,
414    --  must be explicitly present.
415
416    ----------------------------
417    -- Message ID Definitions --
418    ----------------------------
419
420    subtype Error_Msg_Id is Erroutc.Error_Msg_Id;
421    function "=" (Left, Right : Error_Msg_Id) return Boolean
422      renames Erroutc."=";
423    --  A type used to represent specific error messages. Used by the clients
424    --  of this package only in the context of the Get_Error_Id and
425    --  Change_Error_Text subprograms.
426
427    No_Error_Msg : constant Error_Msg_Id := Erroutc.No_Error_Msg;
428    --  A constant which is different from any value returned by Get_Error_Id.
429    --  Typically used by a client to indicate absense of a saved Id value.
430
431    function Get_Msg_Id return Error_Msg_Id renames Erroutc.Get_Msg_Id;
432    --  Returns the Id of the message most recently posted using one of the
433    --  Error_Msg routines.
434
435    function Get_Location (E : Error_Msg_Id) return Source_Ptr
436      renames Erroutc.Get_Location;
437    --  Returns the flag location of the error message with the given id E.
438
439    ------------------------
440    -- List Pragmas Table --
441    ------------------------
442
443    --  When a pragma Page or pragma List is encountered by the parser, an
444    --  entry is made in the following table. This table is then used to
445    --  control the full listing if one is being generated. Note that the
446    --  reason we do the processing in the parser is so that we get proper
447    --  listing control even in syntax check only mode.
448
449    type List_Pragma_Type is (List_On, List_Off, Page);
450
451    type List_Pragma_Record is record
452       Ptyp : List_Pragma_Type;
453       Ploc : Source_Ptr;
454    end record;
455
456    --  Note: Ploc points to the terminating semicolon in the List_Off and
457    --  Page cases, and to the pragma keyword for List_On. In the case of
458    --  a pragma List_Off, a List_On entry is also made in the table,
459    --  pointing to the pragma keyword. This ensures that, as required,
460    --  a List (Off) pragma is listed even in list off mode.
461
462    package List_Pragmas is new Table.Table (
463      Table_Component_Type => List_Pragma_Record,
464      Table_Index_Type     => Int,
465      Table_Low_Bound      => 1,
466      Table_Initial        => 50,
467      Table_Increment      => 200,
468      Table_Name           => "List_Pragmas");
469
470    ---------------------------
471    -- Ignore_Errors Feature --
472    ---------------------------
473
474    --  In certain cases, notably for optional subunits, the compiler operates
475    --  in a mode where errors are to be ignored, and the whole unit is to be
476    --  considered as not present. To implement this we provide the following
477    --  flag to enable special handling, where error messages are suppressed,
478    --  but the Fatal_Error flag will still be set in the normal manner.
479
480    Ignore_Errors_Enable : Nat := 0;
481    --  Triggering switch. If non-zero, then ignore errors mode is activated.
482    --  This is a counter to allow convenient nesting of enable/disable.
483
484    ------------------------------
485    -- Error Output Subprograms --
486    ------------------------------
487
488    procedure Initialize;
489    --  Initializes for output of error messages. Must be called for each
490    --  source file before using any of the other routines in the package.
491
492    procedure Finalize;
493    --  Finalize processing of error messages for one file and output message
494    --  indicating the number of detected errors.
495
496    procedure Error_Msg (Msg : String; Flag_Location : Source_Ptr);
497    --  Output a message at specified location. Can be called from the parser
498    --  or the semantic analyzer.
499
500    procedure Error_Msg_S (Msg : String);
501    --  Output a message at current scan pointer location. This routine can be
502    --  called only from the parser, since it references Scan_Ptr.
503
504    procedure Error_Msg_AP (Msg : String);
505    --  Output a message just after the previous token. This routine can be
506    --  called only from the parser, since it references Prev_Token_Ptr.
507
508    procedure Error_Msg_BC (Msg : String);
509    --  Output a message just before the current token. Note that the important
510    --  difference between this and the previous routine is that the BC case
511    --  posts a flag on the current line, whereas AP can post a flag at the
512    --  end of the preceding line. This routine can be called only from the
513    --  parser, since it references Token_Ptr.
514
515    procedure Error_Msg_SC (Msg : String);
516    --  Output a message at the start of the current token, unless we are at
517    --  the end of file, in which case we always output the message after the
518    --  last real token in the file. This routine can be called only from the
519    --  parser, since it references Token_Ptr.
520
521    procedure Error_Msg_SP (Msg : String);
522    --  Output a message at the start of the previous token. This routine can
523    --  be called only from the parser, since it references Prev_Token_Ptr.
524
525    procedure Error_Msg_N (Msg : String; N : Node_Or_Entity_Id);
526    --  Output a message at the Sloc of the given node. This routine can be
527    --  called from the parser or the semantic analyzer, although the call
528    --  from the latter is much more common (and is the most usual way of
529    --  generating error messages from the analyzer). The message text may
530    --  contain a single & insertion, which will reference the given node.
531    --  The message is suppressed if the node N already has a message posted,
532    --  or if it is a warning and warnings and N is an entity node for which
533    --  warnings are suppressed.
534
535    procedure Error_Msg_F (Msg : String; N : Node_Id);
536    --  Similar to Error_Msg_N except that the message is placed on the
537    --  first node of the construct N (First_Node (N)).
538
539    procedure Error_Msg_NE
540      (Msg : String;
541       N   : Node_Or_Entity_Id;
542       E   : Node_Or_Entity_Id);
543    --  Output a message at the Sloc of the given node N, with an insertion of
544    --  the name from the given entity node E. This is used by the semantic
545    --  routines, where this is a common error message situation. The Msg
546    --  text will contain a & or } as usual to mark the insertion point.
547    --  This routine can be called from the parser or the analyzer.
548
549    procedure Error_Msg_FE
550      (Msg : String;
551       N   : Node_Id;
552       E   : Node_Or_Entity_Id);
553    --  Same as Error_Msg_NE, except that the message is placed on the first
554    --  node of the construct N (First_Node (N)).
555
556    procedure Error_Msg_NEL
557      (Msg           : String;
558       N             : Node_Or_Entity_Id;
559       E             : Node_Or_Entity_Id;
560       Flag_Location : Source_Ptr);
561    --  Exactly the same as Error_Msg_NE, except that the flag is placed at
562    --  the specified Flag_Location instead of at Sloc (N).
563
564    procedure Error_Msg_NW
565      (Eflag : Boolean;
566       Msg   : String;
567       N     : Node_Or_Entity_Id);
568    --  This routine is used for posting a message conditionally. The message
569    --  is posted (with the same effect as Error_Msg_N (Msg, N) if and only
570    --  if Eflag is True and if the node N is within the main extended source
571    --  unit. Typically this is a warning mode flag.
572
573    procedure Change_Error_Text (Error_Id : Error_Msg_Id; New_Msg : String);
574    --  The error message text of the message identified by Id is replaced by
575    --  the given text. This text may contain insertion characters in the
576    --  usual manner, and need not be the same length as the original text.
577
578    function First_Node (C : Node_Id) return Node_Id;
579    --  Given a construct C, finds the first node in the construct, i.e. the
580    --  one with the lowest Sloc value. This is useful in placing error msgs.
581
582    procedure Purge_Messages (From : Source_Ptr; To : Source_Ptr)
583      renames Erroutc.Purge_Messages;
584    --  All error messages whose location is in the range From .. To (not
585    --  including the end points) will be deleted from the error listing.
586
587    procedure Remove_Warning_Messages (N : Node_Id);
588    --  Remove any warning messages corresponding to the Sloc of N or any
589    --  of its descendent nodes. No effect if no such warnings.
590
591    procedure Remove_Warning_Messages (L : List_Id);
592    --  Remove warnings on all elements of a list.
593
594    procedure Set_Ignore_Errors (To : Boolean);
595    --  Following a call to this procedure with To=True, all error calls are
596    --  ignored. A call with To=False restores the default treatment in which
597    --  error calls are treated as usual (and as described in this spec).
598
599    procedure Set_Warnings_Mode_Off (Loc : Source_Ptr)
600      renames Erroutc.Set_Warnings_Mode_Off;
601    --  Called in response to a pragma Warnings (Off) to record the source
602    --  location from which warnings are to be turned off.
603
604    procedure Set_Warnings_Mode_On (Loc : Source_Ptr)
605      renames Erroutc.Set_Warnings_Mode_On;
606    --  Called in response to a pragma Warnings (On) to record the source
607    --  location from which warnings are to be turned back on.
608
609    function Compilation_Errors return Boolean
610      renames Erroutc.Compilation_Errors;
611    --  Returns true if errors have been detected, or warnings in -gnatwe
612    --  (treat warnings as errors) mode.
613
614    procedure Error_Msg_CRT (Feature : String; N : Node_Id);
615    --  Posts a non-fatal message on node N saying that the feature
616    --  identified by the Feature argument is not supported in either
617    --  configurable run-time mode or no run-time mode (as appropriate).
618    --  In the former case, the name of the library is output if available.
619
620    procedure dmsg (Id : Error_Msg_Id) renames Erroutc.dmsg;
621    --  Debugging routine to dump an error message
622
623    ------------------------------------
624    -- Utility Interface for Back End --
625    ------------------------------------
626
627    --  The following subprograms can be used by the back end for the purposes
628    --  of concocting error messages that are not output via Errout, e.g. the
629    --  messages generated by the gcc back end.
630
631    procedure Set_Identifier_Casing
632      (Identifier_Name : System.Address;
633       File_Name       : System.Address);
634    --  The identifier is a null terminated string that represents the name
635    --  of an identifier appearing in the source program. File_Name is a null
636    --  terminated string giving the corresponding file name for the identifier
637    --  as obtained from the front end by the use of Full_Debug_Name to the
638    --  source file referenced by the corresponding source location value.
639    --  On return, the name is in Name_Buffer, null terminated with Name_Len
640    --  set. This name is the identifier name as passed, cased according to
641    --  the default identifier casing for the given file.
642
643 end Errout;