| 1 |
281 |
jeremybenn |
------------------------------------------------------------------------------
|
| 2 |
|
|
-- --
|
| 3 |
|
|
-- GNAT COMPILER COMPONENTS --
|
| 4 |
|
|
-- --
|
| 5 |
|
|
-- E R R O U T --
|
| 6 |
|
|
-- --
|
| 7 |
|
|
-- S p e c --
|
| 8 |
|
|
-- --
|
| 9 |
|
|
-- Copyright (C) 1992-2009, Free Software Foundation, Inc. --
|
| 10 |
|
|
-- --
|
| 11 |
|
|
-- GNAT is free software; you can redistribute it and/or modify it under --
|
| 12 |
|
|
-- terms of the GNU General Public License as published by the Free Soft- --
|
| 13 |
|
|
-- ware Foundation; either version 3, or (at your option) any later ver- --
|
| 14 |
|
|
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
|
| 15 |
|
|
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
|
| 16 |
|
|
-- or FITNESS FOR A PARTICULAR PURPOSE. --
|
| 17 |
|
|
-- --
|
| 18 |
|
|
-- You should have received a copy of the GNU General Public License along --
|
| 19 |
|
|
-- with this program; see file COPYING3. If not see --
|
| 20 |
|
|
-- <http://www.gnu.org/licenses/>. --
|
| 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 are
|
| 28 |
|
|
-- basically system independent, however in some environments, e.g. when the
|
| 29 |
|
|
-- parser is embedded into an editor, it may be appropriate to replace the
|
| 30 |
|
|
-- implementation of this package.
|
| 31 |
|
|
|
| 32 |
|
|
with Err_Vars;
|
| 33 |
|
|
with Erroutc;
|
| 34 |
|
|
with Namet; use Namet;
|
| 35 |
|
|
with Table;
|
| 36 |
|
|
with Types; use Types;
|
| 37 |
|
|
with Uintp; use Uintp;
|
| 38 |
|
|
|
| 39 |
|
|
with System;
|
| 40 |
|
|
|
| 41 |
|
|
package Errout is
|
| 42 |
|
|
|
| 43 |
|
|
Serious_Errors_Detected : Nat renames Err_Vars.Serious_Errors_Detected;
|
| 44 |
|
|
-- This is a count of errors that are serious enough to stop expansion,
|
| 45 |
|
|
-- and hence to prevent generation of an object file even if the switch
|
| 46 |
|
|
-- -gnatQ is set.
|
| 47 |
|
|
|
| 48 |
|
|
Total_Errors_Detected : Nat renames Err_Vars.Total_Errors_Detected;
|
| 49 |
|
|
-- Number of errors detected so far. Includes count of serious errors and
|
| 50 |
|
|
-- non-serious errors, so this value is always greater than or equal to
|
| 51 |
|
|
-- the Serious_Errors_Detected value.
|
| 52 |
|
|
|
| 53 |
|
|
Warnings_Detected : Nat renames Err_Vars.Warnings_Detected;
|
| 54 |
|
|
-- Number of warnings detected
|
| 55 |
|
|
|
| 56 |
|
|
Configurable_Run_Time_Violations : Nat := 0;
|
| 57 |
|
|
-- Count of configurable run time violations so far. This is used to
|
| 58 |
|
|
-- suppress certain cascaded error messages when we know that we may not
|
| 59 |
|
|
-- have fully expanded some items, due to high integrity violations (i.e.
|
| 60 |
|
|
-- the use of constructs not permitted by the library in use, or improper
|
| 61 |
|
|
-- constructs in No_Run_Time mode).
|
| 62 |
|
|
|
| 63 |
|
|
type Compiler_State_Type is (Parsing, Analyzing);
|
| 64 |
|
|
Compiler_State : Compiler_State_Type;
|
| 65 |
|
|
-- Indicates current state of compilation. This is put in the Errout spec
|
| 66 |
|
|
-- because it affects the action of the error message handling. In
|
| 67 |
|
|
-- particular, an attempt is made by Errout to suppress cascaded error
|
| 68 |
|
|
-- messages in Parsing mode, but not in the other modes.
|
| 69 |
|
|
|
| 70 |
|
|
Current_Error_Source_File : Source_File_Index
|
| 71 |
|
|
renames Err_Vars.Current_Error_Source_File;
|
| 72 |
|
|
-- Id of current messages. Used to post file name when unit changes. This
|
| 73 |
|
|
-- is initialized to Main_Source_File at the start of a compilation, which
|
| 74 |
|
|
-- means that no file names will be output unless there are errors in
|
| 75 |
|
|
-- units other than the main unit. However, if the main unit has a pragma
|
| 76 |
|
|
-- Source_Reference line, then this is initialized to No_Source_File, to
|
| 77 |
|
|
-- force an initial reference to the real source file name.
|
| 78 |
|
|
|
| 79 |
|
|
Raise_Exception_On_Error : Nat renames Err_Vars.Raise_Exception_On_Error;
|
| 80 |
|
|
-- If this value is non-zero, then any attempt to generate an error
|
| 81 |
|
|
-- message raises the exception Error_Msg_Exception, and the error message
|
| 82 |
|
|
-- is not output. This is used for defending against junk resulting from
|
| 83 |
|
|
-- illegalities, and also for substitution of more appropriate error
|
| 84 |
|
|
-- messages from higher semantic levels. It is a counter so that the
|
| 85 |
|
|
-- increment/decrement protocol nests neatly.
|
| 86 |
|
|
|
| 87 |
|
|
Error_Msg_Exception : exception renames Err_Vars.Error_Msg_Exception;
|
| 88 |
|
|
-- Exception raised if Raise_Exception_On_Error is true
|
| 89 |
|
|
|
| 90 |
|
|
-----------------------------------
|
| 91 |
|
|
-- Suppression of Error Messages --
|
| 92 |
|
|
-----------------------------------
|
| 93 |
|
|
|
| 94 |
|
|
-- In an effort to reduce the impact of redundant error messages, the
|
| 95 |
|
|
-- error output routines in this package normally suppress certain
|
| 96 |
|
|
-- classes of messages as follows:
|
| 97 |
|
|
|
| 98 |
|
|
-- 1. Identical messages placed at the same point in the text. Such
|
| 99 |
|
|
-- duplicate error message result for example from rescanning
|
| 100 |
|
|
-- sections of the text that contain lexical errors. Only one of
|
| 101 |
|
|
-- such a set of duplicate messages is output, and the rest are
|
| 102 |
|
|
-- suppressed.
|
| 103 |
|
|
|
| 104 |
|
|
-- 2. If more than one parser message is generated for a single source
|
| 105 |
|
|
-- line, then only the first message is output, the remaining
|
| 106 |
|
|
-- messages on the same line are suppressed.
|
| 107 |
|
|
|
| 108 |
|
|
-- 3. If a message is posted on a node for which a message has been
|
| 109 |
|
|
-- previously posted, then only the first message is retained. The
|
| 110 |
|
|
-- Error_Posted flag is used to detect such multiple postings. Note
|
| 111 |
|
|
-- that this only applies to semantic messages, since otherwise
|
| 112 |
|
|
-- for parser messages, this would be a special case of case 2.
|
| 113 |
|
|
|
| 114 |
|
|
-- 4. If a message is posted on a node whose Etype or Entity
|
| 115 |
|
|
-- fields reference entities on which an error message has
|
| 116 |
|
|
-- already been placed, as indicated by the Error_Posted flag
|
| 117 |
|
|
-- being set on these entities, then the message is suppressed.
|
| 118 |
|
|
|
| 119 |
|
|
-- 5. If a message attempts to insert an Error node, or a direct
|
| 120 |
|
|
-- reference to the Any_Type node, then the message is suppressed.
|
| 121 |
|
|
|
| 122 |
|
|
-- 6. Note that cases 2-5 only apply to error messages, not warning
|
| 123 |
|
|
-- messages. Warning messages are only suppressed for case 1, and
|
| 124 |
|
|
-- when they come from other than the main extended unit.
|
| 125 |
|
|
|
| 126 |
|
|
-- This normal suppression action may be overridden in cases 2-5 (but not
|
| 127 |
|
|
-- in case 1) by setting All_Errors mode, or by setting the special
|
| 128 |
|
|
-- unconditional message insertion character (!) at the end of the message
|
| 129 |
|
|
-- text as described below.
|
| 130 |
|
|
|
| 131 |
|
|
---------------------------------------------------------
|
| 132 |
|
|
-- Error Message Text and Message Insertion Characters --
|
| 133 |
|
|
---------------------------------------------------------
|
| 134 |
|
|
|
| 135 |
|
|
-- Error message text strings are composed of lower case letters, digits
|
| 136 |
|
|
-- and the special characters space, comma, period, colon and semicolon,
|
| 137 |
|
|
-- apostrophe and parentheses. Special insertion characters can also
|
| 138 |
|
|
-- appear which cause the error message circuit to modify the given
|
| 139 |
|
|
-- string as follows:
|
| 140 |
|
|
|
| 141 |
|
|
-- Insertion character % (Percent: insert name from Names table)
|
| 142 |
|
|
-- The character % is replaced by the text for the name specified by
|
| 143 |
|
|
-- the Name_Id value stored in Error_Msg_Name_1. A blank precedes the
|
| 144 |
|
|
-- name if it is preceded by a non-blank character other than left
|
| 145 |
|
|
-- parenthesis. The name is enclosed in quotes unless manual quotation
|
| 146 |
|
|
-- mode is set. If the Name_Id is set to No_Name, then no insertion
|
| 147 |
|
|
-- occurs; if the Name_Id is set to Error_Name, then the string
|
| 148 |
|
|
-- <error> is inserted. A second and third % may appear in a single
|
| 149 |
|
|
-- message, similarly replaced by the names which are specified by the
|
| 150 |
|
|
-- Name_Id values stored in Error_Msg_Name_2 and Error_Msg_Name_3. The
|
| 151 |
|
|
-- names are decoded and cased according to the current identifier
|
| 152 |
|
|
-- casing mode. Note: if a unit name ending with %b or %s is passed
|
| 153 |
|
|
-- for this kind of insertion, this suffix is simply stripped. Use a
|
| 154 |
|
|
-- unit name insertion ($) to process the suffix.
|
| 155 |
|
|
|
| 156 |
|
|
-- Insertion character %% (Double percent: insert literal name)
|
| 157 |
|
|
-- The character sequence %% acts as described above for %, except
|
| 158 |
|
|
-- that the name is simply obtained with Get_Name_String and is not
|
| 159 |
|
|
-- decoded or cased, it is inserted literally from the names table.
|
| 160 |
|
|
-- A trailing %b or %s is not treated specially.
|
| 161 |
|
|
|
| 162 |
|
|
-- Insertion character $ (Dollar: insert unit name from Names table)
|
| 163 |
|
|
-- The character $ is treated similarly to %, except that the name is
|
| 164 |
|
|
-- obtained from the Unit_Name_Type value in Error_Msg_Unit_1 and
|
| 165 |
|
|
-- Error_Msg_Unit_2, as provided by Get_Unit_Name_String in package
|
| 166 |
|
|
-- Uname. Note that this name includes the postfix (spec) or (body)
|
| 167 |
|
|
-- strings. If this postfix is not required, use the normal %
|
| 168 |
|
|
-- insertion for the unit name.
|
| 169 |
|
|
|
| 170 |
|
|
-- Insertion character { (Left brace: insert file name from names table)
|
| 171 |
|
|
-- The character { is treated similarly to %, except that the input
|
| 172 |
|
|
-- value is a File_Name_Type value stored in Error_Msg_File_1 or
|
| 173 |
|
|
-- Error_Msg_File_2 or Error_Msg_File_3. The value is output literally,
|
| 174 |
|
|
-- enclosed in quotes as for %, but the case is not modified, the
|
| 175 |
|
|
-- insertion is the exact string stored in the names table without
|
| 176 |
|
|
-- adjusting the casing.
|
| 177 |
|
|
|
| 178 |
|
|
-- Insertion character * (Asterisk, insert reserved word name)
|
| 179 |
|
|
-- The insertion character * is treated exactly like % except that the
|
| 180 |
|
|
-- resulting name is cased according to the default conventions for
|
| 181 |
|
|
-- reserved words (see package Scans).
|
| 182 |
|
|
|
| 183 |
|
|
-- Insertion character & (Ampersand: insert name from node)
|
| 184 |
|
|
-- The insertion character & is treated similarly to %, except that
|
| 185 |
|
|
-- the name is taken from the Chars field of the given node, and may
|
| 186 |
|
|
-- refer to a child unit name, or a selected component. The casing is,
|
| 187 |
|
|
-- if possible, taken from the original source reference, which is
|
| 188 |
|
|
-- obtained from the Sloc field of the given node or nodes. If no Sloc
|
| 189 |
|
|
-- is available (happens e.g. for nodes in package Standard), then the
|
| 190 |
|
|
-- default case (see Scans spec) is used. The nodes to be used are
|
| 191 |
|
|
-- stored in Error_Msg_Node_1, Error_Msg_Node_2. No insertion occurs
|
| 192 |
|
|
-- for the Empty node, and the Error node results in the insertion of
|
| 193 |
|
|
-- the characters <error>. In addition, if the special global variable
|
| 194 |
|
|
-- Error_Msg_Qual_Level is non-zero, then the reference will include
|
| 195 |
|
|
-- up to the given number of levels of qualification, using the scope
|
| 196 |
|
|
-- chain.
|
| 197 |
|
|
|
| 198 |
|
|
-- Insertion character # (Pound: insert line number reference)
|
| 199 |
|
|
-- The character # is replaced by the string indicating the source
|
| 200 |
|
|
-- position stored in Error_Msg_Sloc. There are three cases:
|
| 201 |
|
|
--
|
| 202 |
|
|
-- for package Standard: in package Standard
|
| 203 |
|
|
-- for locations in current file: at line nnn:ccc
|
| 204 |
|
|
-- for locations in other files: at filename:nnn:ccc
|
| 205 |
|
|
--
|
| 206 |
|
|
-- By convention, the # insertion character is only used at the end of
|
| 207 |
|
|
-- an error message, so the above strings only appear as the last
|
| 208 |
|
|
-- characters of an error message. The only exceptions to this rule
|
| 209 |
|
|
-- are that an RM reference may follow in the form (RM .....) and a
|
| 210 |
|
|
-- right parenthesis may immediately follow the #. In the case of
|
| 211 |
|
|
-- continued messages, # can only appear at the end of a group of
|
| 212 |
|
|
-- continuation messsages, except that \\ messages which always start
|
| 213 |
|
|
-- a new line end the sequence from the point of view of this rule.
|
| 214 |
|
|
-- The idea is that for any use of -gnatj, it will still be the case
|
| 215 |
|
|
-- that a location reference appears only at the end of a line.
|
| 216 |
|
|
|
| 217 |
|
|
-- Insertion character } (Right brace: insert type reference)
|
| 218 |
|
|
-- The character } is replaced by a string describing the type
|
| 219 |
|
|
-- referenced by the entity whose Id is stored in Error_Msg_Node_1.
|
| 220 |
|
|
-- the string gives the name or description of the type, and also
|
| 221 |
|
|
-- where appropriate the location of its declaration. Special cases
|
| 222 |
|
|
-- like "some integer type" are handled appropriately. Only one } is
|
| 223 |
|
|
-- allowed in a message, since there is not enough room for two (the
|
| 224 |
|
|
-- insertion can be quite long, including a file name) In addition, if
|
| 225 |
|
|
-- the special global variable Error_Msg_Qual_Level is non-zero, then
|
| 226 |
|
|
-- the reference will include up to the given number of levels of
|
| 227 |
|
|
-- qualification, using the scope chain.
|
| 228 |
|
|
|
| 229 |
|
|
-- Insertion character @ (At: insert column number reference)
|
| 230 |
|
|
-- The character @ is replaced by null if the RM_Column_Check mode is
|
| 231 |
|
|
-- off (False). If the switch is on (True), then @ is replaced by the
|
| 232 |
|
|
-- text string " in column nnn" where nnn is the decimal
|
| 233 |
|
|
-- representation of the column number stored in Error_Msg_Col plus
|
| 234 |
|
|
-- one (the plus one is because the number is stored 0-origin and
|
| 235 |
|
|
-- displayed 1-origin).
|
| 236 |
|
|
|
| 237 |
|
|
-- Insertion character ^ (Carret: insert integer value)
|
| 238 |
|
|
-- The character ^ is replaced by the decimal conversion of the Uint
|
| 239 |
|
|
-- value stored in Error_Msg_Uint_1, with a possible leading minus.
|
| 240 |
|
|
-- A second ^ may occur in the message, in which case it is replaced
|
| 241 |
|
|
-- by the decimal conversion of the Uint value in Error_Msg_Uint_2.
|
| 242 |
|
|
|
| 243 |
|
|
-- Insertion character > (Right bracket, run time name)
|
| 244 |
|
|
-- The character > is replaced by a string of the form (name) if
|
| 245 |
|
|
-- Targparm scanned out a Run_Time_Name (see package Targparm for
|
| 246 |
|
|
-- details). The name is enclosed in parentheses and output in mixed
|
| 247 |
|
|
-- case mode (upper case after any space in the name). If no run time
|
| 248 |
|
|
-- name is defined, this insertion character has no effect.
|
| 249 |
|
|
|
| 250 |
|
|
-- Insertion character ! (Exclamation: unconditional message)
|
| 251 |
|
|
-- The character ! appearing as the last character of a message makes
|
| 252 |
|
|
-- the message unconditional which means that it is output even if it
|
| 253 |
|
|
-- would normally be suppressed. See section above for a description
|
| 254 |
|
|
-- of the cases in which messages are normally suppressed. Note that
|
| 255 |
|
|
-- in the case of warnings, the meaning is that the warning should not
|
| 256 |
|
|
-- be removed in dead code (that's the only time that the use of !
|
| 257 |
|
|
-- has any effect for a warning).
|
| 258 |
|
|
--
|
| 259 |
|
|
-- Note: the presence of ! is ignored in continuation messages (i.e.
|
| 260 |
|
|
-- messages starting with the \ insertion character). The effect of the
|
| 261 |
|
|
-- use of ! in a parent message automatically applies to all of its
|
| 262 |
|
|
-- continuation messages (since we clearly don't want any case in which
|
| 263 |
|
|
-- continuations are separated from the parent message. It is allowable
|
| 264 |
|
|
-- to put ! in continuation messages, and the usual style is to include
|
| 265 |
|
|
-- it, since it makes it clear that the continuation is part of an
|
| 266 |
|
|
-- unconditional message.
|
| 267 |
|
|
|
| 268 |
|
|
-- Insertion character !! (unconditional warning)
|
| 269 |
|
|
|
| 270 |
|
|
-- Normally warning messages issued in other than the main unit are
|
| 271 |
|
|
-- suppressed. If the message ends with !! then this suppression is
|
| 272 |
|
|
-- avoided. This is currently used by the Compile_Time_Warning pragma
|
| 273 |
|
|
-- to ensure the message for a with'ed unit is output, and for warnings
|
| 274 |
|
|
-- on ineffective back-end inlining, which is detected in units that
|
| 275 |
|
|
-- contain subprograms to be inlined in the main program.
|
| 276 |
|
|
|
| 277 |
|
|
-- Insertion character ? (Question: warning message)
|
| 278 |
|
|
-- The character ? appearing anywhere in a message makes the message
|
| 279 |
|
|
-- warning instead of a normal error message, and the text of the
|
| 280 |
|
|
-- message will be preceded by "warning:" in the normal case. The
|
| 281 |
|
|
-- handling of warnings if further controlled by the Warning_Mode
|
| 282 |
|
|
-- option (-w switch), see package Opt for further details, and also by
|
| 283 |
|
|
-- the current setting from pragma Warnings. This pragma applies only
|
| 284 |
|
|
-- to warnings issued from the semantic phase (not the parser), but
|
| 285 |
|
|
-- currently all relevant warnings are posted by the semantic phase
|
| 286 |
|
|
-- anyway. Messages starting with (style) are also treated as warning
|
| 287 |
|
|
-- messages.
|
| 288 |
|
|
--
|
| 289 |
|
|
-- Note: when a warning message is output, the text of the message is
|
| 290 |
|
|
-- preceded by "warning: " in the normal case. An exception to this
|
| 291 |
|
|
-- rule occurs when the text of the message starts with "info: " in
|
| 292 |
|
|
-- which case this string is not prepended. This allows callers to
|
| 293 |
|
|
-- label certain warnings as informational messages, rather than as
|
| 294 |
|
|
-- warning messages requiring some action.
|
| 295 |
|
|
--
|
| 296 |
|
|
-- Note: the presence of ? is ignored in continuation messages (i.e.
|
| 297 |
|
|
-- messages starting with the \ insertion character). The warning
|
| 298 |
|
|
-- status of continuations is determined only by the parent message
|
| 299 |
|
|
-- which is being continued. It is allowable to put ? in continuation
|
| 300 |
|
|
-- messages, and the usual style is to include it, since it makes it
|
| 301 |
|
|
-- clear that the continuation is part of a warning message.
|
| 302 |
|
|
|
| 303 |
|
|
-- Insertion character < (Less Than: conditional warning message)
|
| 304 |
|
|
-- The character < appearing anywhere in a message is used for a
|
| 305 |
|
|
-- conditional error message. If Error_Msg_Warn is True, then the
|
| 306 |
|
|
-- effect is the same as ? described above. If Error_Msg_Warn is
|
| 307 |
|
|
-- False, then there is no effect.
|
| 308 |
|
|
|
| 309 |
|
|
-- Insertion character A-Z (Upper case letter: Ada reserved word)
|
| 310 |
|
|
-- If two or more upper case letters appear in the message, they are
|
| 311 |
|
|
-- taken as an Ada reserved word, and are converted to the default
|
| 312 |
|
|
-- case for reserved words (see Scans package spec). Surrounding
|
| 313 |
|
|
-- quotes are added unless manual quotation mode is currently set.
|
| 314 |
|
|
|
| 315 |
|
|
-- Insertion character ` (Backquote: set manual quotation mode)
|
| 316 |
|
|
-- The backquote character always appears in pairs. Each backquote of
|
| 317 |
|
|
-- the pair is replaced by a double quote character. In addition, any
|
| 318 |
|
|
-- reserved keywords, or name insertions between these backquotes are
|
| 319 |
|
|
-- not surrounded by the usual automatic double quotes. See the
|
| 320 |
|
|
-- section below on manual quotation mode for further details.
|
| 321 |
|
|
|
| 322 |
|
|
-- Insertion character ' (Quote: literal character)
|
| 323 |
|
|
-- Precedes a character which is placed literally into the message.
|
| 324 |
|
|
-- Used to insert characters into messages that are one of the
|
| 325 |
|
|
-- insertion characters defined here. Also useful in inserting
|
| 326 |
|
|
-- sequences of upper case letters (e.g. RM) which are not to be
|
| 327 |
|
|
-- treated as keywords.
|
| 328 |
|
|
|
| 329 |
|
|
-- Insertion character \ (Backslash: continuation message)
|
| 330 |
|
|
-- Indicates that the message is a continuation of a message
|
| 331 |
|
|
-- previously posted. This is used to ensure that such groups of
|
| 332 |
|
|
-- messages are treated as a unit. The \ character must be the first
|
| 333 |
|
|
-- character of the message text.
|
| 334 |
|
|
|
| 335 |
|
|
-- Insertion character \\ (Two backslashes, continuation with new line)
|
| 336 |
|
|
-- This differs from \ only in -gnatjnn mode (Error_Message_Line_Length
|
| 337 |
|
|
-- set non-zero). This sequence forces a new line to start even when
|
| 338 |
|
|
-- continuations are being gathered into a single message.
|
| 339 |
|
|
|
| 340 |
|
|
-- Insertion character | (Vertical bar: non-serious error)
|
| 341 |
|
|
-- By default, error messages (other than warning messages) are
|
| 342 |
|
|
-- considered to be fatal error messages which prevent expansion or
|
| 343 |
|
|
-- generation of code in the presence of the -gnatQ switch. If the
|
| 344 |
|
|
-- insertion character | appears, the message is considered to be
|
| 345 |
|
|
-- non-serious, and does not cause Serious_Errors_Detected to be
|
| 346 |
|
|
-- incremented (so expansion is not prevented by such a msg).
|
| 347 |
|
|
|
| 348 |
|
|
-- Insertion character ~ (Tilde: insert string)
|
| 349 |
|
|
-- Indicates that Error_Msg_String (1 .. Error_Msg_Strlen) is to be
|
| 350 |
|
|
-- inserted to replace the ~ character. The string is inserted in the
|
| 351 |
|
|
-- literal form it appears, without any action on special characters.
|
| 352 |
|
|
|
| 353 |
|
|
----------------------------------------
|
| 354 |
|
|
-- Specialization of Messages for VMS --
|
| 355 |
|
|
----------------------------------------
|
| 356 |
|
|
|
| 357 |
|
|
-- Some messages mention gcc-style switch names. When using an OpenVMS
|
| 358 |
|
|
-- host, such switch names must be converted to their corresponding VMS
|
| 359 |
|
|
-- qualifer. The following table controls this translation. In each case
|
| 360 |
|
|
-- the original message must contain the string "-xxx switch", where xxx
|
| 361 |
|
|
-- is the Gname? entry from below, and this string will be replaced by
|
| 362 |
|
|
-- "/yyy qualifier", where yyy is the corresponding Vname? entry.
|
| 363 |
|
|
|
| 364 |
|
|
Gname1 : aliased constant String := "fno-strict-aliasing";
|
| 365 |
|
|
Vname1 : aliased constant String := "OPTIMIZE=NO_STRICT_ALIASING";
|
| 366 |
|
|
|
| 367 |
|
|
Gname2 : aliased constant String := "gnatX";
|
| 368 |
|
|
Vname2 : aliased constant String := "EXTENSIONS_ALLOWED";
|
| 369 |
|
|
|
| 370 |
|
|
Gname3 : aliased constant String := "gnatW";
|
| 371 |
|
|
Vname3 : aliased constant String := "WIDE_CHARACTER_ENCODING";
|
| 372 |
|
|
|
| 373 |
|
|
Gname4 : aliased constant String := "gnatf";
|
| 374 |
|
|
Vname4 : aliased constant String := "REPORT_ERRORS=FULL";
|
| 375 |
|
|
|
| 376 |
|
|
Gname5 : aliased constant String := "gnat05";
|
| 377 |
|
|
Vname5 : aliased constant String := "05";
|
| 378 |
|
|
|
| 379 |
|
|
type Cstring_Ptr is access constant String;
|
| 380 |
|
|
|
| 381 |
|
|
Gnames : array (Nat range <>) of Cstring_Ptr :=
|
| 382 |
|
|
(Gname1'Access,
|
| 383 |
|
|
Gname2'Access,
|
| 384 |
|
|
Gname3'Access,
|
| 385 |
|
|
Gname4'Access,
|
| 386 |
|
|
Gname5'Access);
|
| 387 |
|
|
|
| 388 |
|
|
Vnames : array (Nat range <>) of Cstring_Ptr :=
|
| 389 |
|
|
(Vname1'Access,
|
| 390 |
|
|
Vname2'Access,
|
| 391 |
|
|
Vname3'Access,
|
| 392 |
|
|
Vname4'Access,
|
| 393 |
|
|
Vname5'Access);
|
| 394 |
|
|
|
| 395 |
|
|
-----------------------------------------------------
|
| 396 |
|
|
-- Global Values Used for Error Message Insertions --
|
| 397 |
|
|
-----------------------------------------------------
|
| 398 |
|
|
|
| 399 |
|
|
-- The following global variables are essentially additional parameters
|
| 400 |
|
|
-- passed to the error message routine for insertion sequences described
|
| 401 |
|
|
-- above. The reason these are passed globally is that the insertion
|
| 402 |
|
|
-- mechanism is essentially an untyped one in which the appropriate
|
| 403 |
|
|
-- variables are set depending on the specific insertion characters used.
|
| 404 |
|
|
|
| 405 |
|
|
-- Note that is mandatory that the caller ensure that global variables
|
| 406 |
|
|
-- are set before the Error_Msg call, otherwise the result is undefined.
|
| 407 |
|
|
|
| 408 |
|
|
Error_Msg_Col : Column_Number renames Err_Vars.Error_Msg_Col;
|
| 409 |
|
|
-- Column for @ insertion character in message
|
| 410 |
|
|
|
| 411 |
|
|
Error_Msg_Uint_1 : Uint renames Err_Vars.Error_Msg_Uint_1;
|
| 412 |
|
|
Error_Msg_Uint_2 : Uint renames Err_Vars.Error_Msg_Uint_2;
|
| 413 |
|
|
-- Uint values for ^ insertion characters in message
|
| 414 |
|
|
|
| 415 |
|
|
Error_Msg_Sloc : Source_Ptr renames Err_Vars.Error_Msg_Sloc;
|
| 416 |
|
|
-- Source location for # insertion character in message
|
| 417 |
|
|
|
| 418 |
|
|
Error_Msg_Name_1 : Name_Id renames Err_Vars.Error_Msg_Name_1;
|
| 419 |
|
|
Error_Msg_Name_2 : Name_Id renames Err_Vars.Error_Msg_Name_2;
|
| 420 |
|
|
Error_Msg_Name_3 : Name_Id renames Err_Vars.Error_Msg_Name_3;
|
| 421 |
|
|
-- Name_Id values for % insertion characters in message
|
| 422 |
|
|
|
| 423 |
|
|
Error_Msg_File_1 : File_Name_Type renames Err_Vars.Error_Msg_File_1;
|
| 424 |
|
|
Error_Msg_File_2 : File_Name_Type renames Err_Vars.Error_Msg_File_2;
|
| 425 |
|
|
Error_Msg_File_3 : File_Name_Type renames Err_Vars.Error_Msg_File_3;
|
| 426 |
|
|
-- File_Name_Type values for { insertion characters in message
|
| 427 |
|
|
|
| 428 |
|
|
Error_Msg_Unit_1 : Unit_Name_Type renames Err_Vars.Error_Msg_Unit_1;
|
| 429 |
|
|
Error_Msg_Unit_2 : Unit_Name_Type renames Err_Vars.Error_Msg_Unit_2;
|
| 430 |
|
|
-- Unit_Name_Type values for $ insertion characters in message
|
| 431 |
|
|
|
| 432 |
|
|
Error_Msg_Node_1 : Node_Id renames Err_Vars.Error_Msg_Node_1;
|
| 433 |
|
|
Error_Msg_Node_2 : Node_Id renames Err_Vars.Error_Msg_Node_2;
|
| 434 |
|
|
-- Node_Id values for & insertion characters in message
|
| 435 |
|
|
|
| 436 |
|
|
Error_Msg_Qual_Level : Int renames Err_Vars.Error_Msg_Qual_Level;
|
| 437 |
|
|
-- Number of levels of qualification required for type name (see the
|
| 438 |
|
|
-- description of the } insertion character. Note that this value does
|
| 439 |
|
|
-- note get reset by any Error_Msg call, so the caller is responsible
|
| 440 |
|
|
-- for resetting it.
|
| 441 |
|
|
|
| 442 |
|
|
Error_Msg_Warn : Boolean renames Err_Vars.Error_Msg_Warn;
|
| 443 |
|
|
-- Used if current message contains a < insertion character to indicate
|
| 444 |
|
|
-- if the current message is a warning message.
|
| 445 |
|
|
|
| 446 |
|
|
Error_Msg_String : String renames Err_Vars.Error_Msg_String;
|
| 447 |
|
|
Error_Msg_Strlen : Natural renames Err_Vars.Error_Msg_Strlen;
|
| 448 |
|
|
-- Used if current message contains a ~ insertion character to indicate
|
| 449 |
|
|
-- insertion of the string Error_Msg_String (1 .. Error_Msg_Strlen).
|
| 450 |
|
|
|
| 451 |
|
|
-----------------------------------------------------
|
| 452 |
|
|
-- Format of Messages and Manual Quotation Control --
|
| 453 |
|
|
-----------------------------------------------------
|
| 454 |
|
|
|
| 455 |
|
|
-- Messages are generally all in lower case, except for inserted names
|
| 456 |
|
|
-- and appear in one of the following three forms:
|
| 457 |
|
|
|
| 458 |
|
|
-- error: text
|
| 459 |
|
|
-- warning: text
|
| 460 |
|
|
|
| 461 |
|
|
-- The prefixes error and warning are supplied automatically (depending
|
| 462 |
|
|
-- on the use of the ? insertion character), and the call to the error
|
| 463 |
|
|
-- message routine supplies the text. The "error: " prefix is omitted
|
| 464 |
|
|
-- in brief error message formats.
|
| 465 |
|
|
|
| 466 |
|
|
-- Reserved Ada keywords in the message are in the default keyword case
|
| 467 |
|
|
-- (determined from the given source program), surrounded by quotation
|
| 468 |
|
|
-- marks. This is achieved by spelling the reserved word in upper case
|
| 469 |
|
|
-- letters, which is recognized as a request for insertion of quotation
|
| 470 |
|
|
-- marks by the error text processor. Thus for example:
|
| 471 |
|
|
|
| 472 |
|
|
-- Error_Msg_AP ("IS expected");
|
| 473 |
|
|
|
| 474 |
|
|
-- would result in the output of one of the following:
|
| 475 |
|
|
|
| 476 |
|
|
-- error: "is" expected
|
| 477 |
|
|
-- error: "IS" expected
|
| 478 |
|
|
-- error: "Is" expected
|
| 479 |
|
|
|
| 480 |
|
|
-- the choice between these being made by looking at the casing convention
|
| 481 |
|
|
-- used for keywords (actually the first compilation unit keyword) in the
|
| 482 |
|
|
-- source file.
|
| 483 |
|
|
|
| 484 |
|
|
-- Note: a special exception is that RM is never treated as a keyword
|
| 485 |
|
|
-- but instead is copied literally into the message, this avoids the
|
| 486 |
|
|
-- need for writing 'R'M for all reference manual quotes.
|
| 487 |
|
|
|
| 488 |
|
|
-- In the case of names, the default mode for the error text processor
|
| 489 |
|
|
-- is to surround the name by quotation marks automatically. The case
|
| 490 |
|
|
-- used for the identifier names is taken from the source program where
|
| 491 |
|
|
-- possible, and otherwise is the default casing convention taken from
|
| 492 |
|
|
-- the source file usage.
|
| 493 |
|
|
|
| 494 |
|
|
-- In some cases, better control over the placement of quote marks is
|
| 495 |
|
|
-- required. This is achieved using manual quotation mode. In this mode,
|
| 496 |
|
|
-- one or more insertion sequences is surrounded by backquote characters.
|
| 497 |
|
|
-- The backquote characters are output as double quote marks, and normal
|
| 498 |
|
|
-- automatic insertion of quotes is suppressed between the double quotes.
|
| 499 |
|
|
-- For example:
|
| 500 |
|
|
|
| 501 |
|
|
-- Error_Msg_AP ("`END &;` expected");
|
| 502 |
|
|
|
| 503 |
|
|
-- generates a message like
|
| 504 |
|
|
|
| 505 |
|
|
-- error: "end Open_Scope;" expected
|
| 506 |
|
|
|
| 507 |
|
|
-- where the node specifying the name Open_Scope has been stored in
|
| 508 |
|
|
-- Error_Msg_Node_1 prior to the call. The great majority of error
|
| 509 |
|
|
-- messages operates in normal quotation mode.
|
| 510 |
|
|
|
| 511 |
|
|
-- Note: the normal automatic insertion of spaces before insertion
|
| 512 |
|
|
-- sequences (such as those that come from & and %) is suppressed in
|
| 513 |
|
|
-- manual quotation mode, so blanks, if needed as in the above example,
|
| 514 |
|
|
-- must be explicitly present.
|
| 515 |
|
|
|
| 516 |
|
|
----------------------------
|
| 517 |
|
|
-- Message ID Definitions --
|
| 518 |
|
|
----------------------------
|
| 519 |
|
|
|
| 520 |
|
|
subtype Error_Msg_Id is Erroutc.Error_Msg_Id;
|
| 521 |
|
|
function "=" (Left, Right : Error_Msg_Id) return Boolean
|
| 522 |
|
|
renames Erroutc."=";
|
| 523 |
|
|
-- A type used to represent specific error messages. Used by the clients
|
| 524 |
|
|
-- of this package only in the context of the Get_Error_Id and
|
| 525 |
|
|
-- Change_Error_Text subprograms.
|
| 526 |
|
|
|
| 527 |
|
|
No_Error_Msg : constant Error_Msg_Id := Erroutc.No_Error_Msg;
|
| 528 |
|
|
-- A constant which is different from any value returned by Get_Error_Id.
|
| 529 |
|
|
-- Typically used by a client to indicate absense of a saved Id value.
|
| 530 |
|
|
|
| 531 |
|
|
function Get_Msg_Id return Error_Msg_Id renames Erroutc.Get_Msg_Id;
|
| 532 |
|
|
-- Returns the Id of the message most recently posted using one of the
|
| 533 |
|
|
-- Error_Msg routines.
|
| 534 |
|
|
|
| 535 |
|
|
function Get_Location (E : Error_Msg_Id) return Source_Ptr
|
| 536 |
|
|
renames Erroutc.Get_Location;
|
| 537 |
|
|
-- Returns the flag location of the error message with the given id E
|
| 538 |
|
|
|
| 539 |
|
|
------------------------
|
| 540 |
|
|
-- List Pragmas Table --
|
| 541 |
|
|
------------------------
|
| 542 |
|
|
|
| 543 |
|
|
-- When a pragma Page or pragma List is encountered by the parser, an
|
| 544 |
|
|
-- entry is made in the following table. This table is then used to
|
| 545 |
|
|
-- control the full listing if one is being generated. Note that the
|
| 546 |
|
|
-- reason we do the processing in the parser is so that we get proper
|
| 547 |
|
|
-- listing control even in syntax check only mode.
|
| 548 |
|
|
|
| 549 |
|
|
type List_Pragma_Type is (List_On, List_Off, Page);
|
| 550 |
|
|
|
| 551 |
|
|
type List_Pragma_Record is record
|
| 552 |
|
|
Ptyp : List_Pragma_Type;
|
| 553 |
|
|
Ploc : Source_Ptr;
|
| 554 |
|
|
end record;
|
| 555 |
|
|
|
| 556 |
|
|
-- Note: Ploc points to the terminating semicolon in the List_Off and Page
|
| 557 |
|
|
-- cases, and to the pragma keyword for List_On. In the case of a pragma
|
| 558 |
|
|
-- List_Off, a List_On entry is also made in the table, pointing to the
|
| 559 |
|
|
-- pragma keyword. This ensures that, as required, a List (Off) pragma is
|
| 560 |
|
|
-- listed even in list off mode.
|
| 561 |
|
|
|
| 562 |
|
|
package List_Pragmas is new Table.Table (
|
| 563 |
|
|
Table_Component_Type => List_Pragma_Record,
|
| 564 |
|
|
Table_Index_Type => Int,
|
| 565 |
|
|
Table_Low_Bound => 1,
|
| 566 |
|
|
Table_Initial => 50,
|
| 567 |
|
|
Table_Increment => 200,
|
| 568 |
|
|
Table_Name => "List_Pragmas");
|
| 569 |
|
|
|
| 570 |
|
|
---------------------------
|
| 571 |
|
|
-- Ignore_Errors Feature --
|
| 572 |
|
|
---------------------------
|
| 573 |
|
|
|
| 574 |
|
|
-- In certain cases, notably for optional subunits, the compiler operates
|
| 575 |
|
|
-- in a mode where errors are to be ignored, and the whole unit is to be
|
| 576 |
|
|
-- considered as not present. To implement this we provide the following
|
| 577 |
|
|
-- flag to enable special handling, where error messages are suppressed,
|
| 578 |
|
|
-- but the Fatal_Error flag will still be set in the normal manner.
|
| 579 |
|
|
|
| 580 |
|
|
Ignore_Errors_Enable : Nat := 0;
|
| 581 |
|
|
-- Triggering switch. If non-zero, then ignore errors mode is activated.
|
| 582 |
|
|
-- This is a counter to allow convenient nesting of enable/disable.
|
| 583 |
|
|
|
| 584 |
|
|
-----------------------
|
| 585 |
|
|
-- CODEFIX Facility --
|
| 586 |
|
|
-----------------------
|
| 587 |
|
|
|
| 588 |
|
|
-- The GPS and GNATBench IDE's have a codefix facility that allows for
|
| 589 |
|
|
-- automatic correction of a subset of the errors and warnings issued
|
| 590 |
|
|
-- by the compiler. This is done by recognizing the text of specific
|
| 591 |
|
|
-- messages using appropriate matching patterns.
|
| 592 |
|
|
|
| 593 |
|
|
-- The text of such messages should not be altered without coordinating
|
| 594 |
|
|
-- with the codefix code. All such messages are marked by a specific
|
| 595 |
|
|
-- style of comments, as shown by the following example:
|
| 596 |
|
|
|
| 597 |
|
|
-- Error_Msg_N -- CODEFIX
|
| 598 |
|
|
-- (parameters ....)
|
| 599 |
|
|
|
| 600 |
|
|
-- Any message marked with this -- CODEFIX comment should not be modified
|
| 601 |
|
|
-- without appropriate coordination. If new messages are added which may
|
| 602 |
|
|
-- be susceptible to automatic codefix action, they are marked using:
|
| 603 |
|
|
|
| 604 |
|
|
-- Error_Msg -- CODEFIX???
|
| 605 |
|
|
-- (parameters)
|
| 606 |
|
|
|
| 607 |
|
|
-- And subsequently either the appropriate code is added to codefix and the
|
| 608 |
|
|
-- ??? are removed, or it is determined that this is not an appropriate
|
| 609 |
|
|
-- case for codefix action, and the comment is removed.
|
| 610 |
|
|
|
| 611 |
|
|
------------------------------
|
| 612 |
|
|
-- Error Output Subprograms --
|
| 613 |
|
|
------------------------------
|
| 614 |
|
|
|
| 615 |
|
|
procedure Initialize;
|
| 616 |
|
|
-- Initializes for output of error messages. Must be called for each
|
| 617 |
|
|
-- source file before using any of the other routines in the package.
|
| 618 |
|
|
|
| 619 |
|
|
procedure Finalize (Last_Call : Boolean);
|
| 620 |
|
|
-- Finalize processing of error message list. Includes processing for
|
| 621 |
|
|
-- duplicated error messages, and other similar final adjustment of the
|
| 622 |
|
|
-- list of error messages. Note that this procedure must be called before
|
| 623 |
|
|
-- calling Compilation_Errors to determine if there were any errors. It
|
| 624 |
|
|
-- is perfectly fine to call Finalize more than once, providing that the
|
| 625 |
|
|
-- parameter Last_Call is set False for every call except the last call.
|
| 626 |
|
|
|
| 627 |
|
|
-- This multiple call capability is used to do some processing that may
|
| 628 |
|
|
-- generate messages. Call Finalize to eliminate duplicates and remove
|
| 629 |
|
|
-- deleted warnings. Test for compilation errors using Compilation_Errors,
|
| 630 |
|
|
-- then generate some more errors/warnings, call Finalize again to make
|
| 631 |
|
|
-- sure that all duplicates in these new messages are dealt with, then
|
| 632 |
|
|
-- finally call Output_Messages to output the final list of messages. The
|
| 633 |
|
|
-- argument Last_Call must be set False on all calls except the last call,
|
| 634 |
|
|
-- and must be set True on the last call (a value of True activates some
|
| 635 |
|
|
-- processing that must only be done after all messages are posted).
|
| 636 |
|
|
|
| 637 |
|
|
procedure Output_Messages;
|
| 638 |
|
|
-- Output list of messages, including messages giving number of detected
|
| 639 |
|
|
-- errors and warnings.
|
| 640 |
|
|
|
| 641 |
|
|
procedure Error_Msg (Msg : String; Flag_Location : Source_Ptr);
|
| 642 |
|
|
-- Output a message at specified location. Can be called from the parser
|
| 643 |
|
|
-- or the semantic analyzer.
|
| 644 |
|
|
|
| 645 |
|
|
procedure Error_Msg_S (Msg : String);
|
| 646 |
|
|
-- Output a message at current scan pointer location. This routine can be
|
| 647 |
|
|
-- called only from the parser, since it references Scan_Ptr.
|
| 648 |
|
|
|
| 649 |
|
|
procedure Error_Msg_AP (Msg : String);
|
| 650 |
|
|
-- Output a message just after the previous token. This routine can be
|
| 651 |
|
|
-- called only from the parser, since it references Prev_Token_Ptr.
|
| 652 |
|
|
|
| 653 |
|
|
procedure Error_Msg_BC (Msg : String);
|
| 654 |
|
|
-- Output a message just before the current token. Note that the important
|
| 655 |
|
|
-- difference between this and the previous routine is that the BC case
|
| 656 |
|
|
-- posts a flag on the current line, whereas AP can post a flag at the
|
| 657 |
|
|
-- end of the preceding line. This routine can be called only from the
|
| 658 |
|
|
-- parser, since it references Token_Ptr.
|
| 659 |
|
|
|
| 660 |
|
|
procedure Error_Msg_SC (Msg : String);
|
| 661 |
|
|
-- Output a message at the start of the current token, unless we are at
|
| 662 |
|
|
-- the end of file, in which case we always output the message after the
|
| 663 |
|
|
-- last real token in the file. This routine can be called only from the
|
| 664 |
|
|
-- parser, since it references Token_Ptr.
|
| 665 |
|
|
|
| 666 |
|
|
procedure Error_Msg_SP (Msg : String);
|
| 667 |
|
|
-- Output a message at the start of the previous token. This routine can
|
| 668 |
|
|
-- be called only from the parser, since it references Prev_Token_Ptr.
|
| 669 |
|
|
|
| 670 |
|
|
procedure Error_Msg_N (Msg : String; N : Node_Or_Entity_Id);
|
| 671 |
|
|
-- Output a message at the Sloc of the given node. This routine can be
|
| 672 |
|
|
-- called from the parser or the semantic analyzer, although the call from
|
| 673 |
|
|
-- the latter is much more common (and is the most usual way of generating
|
| 674 |
|
|
-- error messages from the analyzer). The message text may contain a
|
| 675 |
|
|
-- single & insertion, which will reference the given node. The message is
|
| 676 |
|
|
-- suppressed if the node N already has a message posted, or if it is a
|
| 677 |
|
|
-- warning and warnings and N is an entity node for which warnings are
|
| 678 |
|
|
-- suppressed.
|
| 679 |
|
|
|
| 680 |
|
|
procedure Error_Msg_F (Msg : String; N : Node_Id);
|
| 681 |
|
|
-- Similar to Error_Msg_N except that the message is placed on the first
|
| 682 |
|
|
-- node of the construct N (First_Node (N)).
|
| 683 |
|
|
|
| 684 |
|
|
procedure Error_Msg_NE
|
| 685 |
|
|
(Msg : String;
|
| 686 |
|
|
N : Node_Or_Entity_Id;
|
| 687 |
|
|
E : Node_Or_Entity_Id);
|
| 688 |
|
|
-- Output a message at the Sloc of the given node N, with an insertion of
|
| 689 |
|
|
-- the name from the given entity node E. This is used by the semantic
|
| 690 |
|
|
-- routines, where this is a common error message situation. The Msg text
|
| 691 |
|
|
-- will contain a & or } as usual to mark the insertion point. This
|
| 692 |
|
|
-- routine can be called from the parser or the analyzer.
|
| 693 |
|
|
|
| 694 |
|
|
procedure Error_Msg_FE
|
| 695 |
|
|
(Msg : String;
|
| 696 |
|
|
N : Node_Id;
|
| 697 |
|
|
E : Node_Or_Entity_Id);
|
| 698 |
|
|
-- Same as Error_Msg_NE, except that the message is placed on the first
|
| 699 |
|
|
-- node of the construct N (First_Node (N)).
|
| 700 |
|
|
|
| 701 |
|
|
procedure Error_Msg_NEL
|
| 702 |
|
|
(Msg : String;
|
| 703 |
|
|
N : Node_Or_Entity_Id;
|
| 704 |
|
|
E : Node_Or_Entity_Id;
|
| 705 |
|
|
Flag_Location : Source_Ptr);
|
| 706 |
|
|
-- Exactly the same as Error_Msg_NE, except that the flag is placed at
|
| 707 |
|
|
-- the specified Flag_Location instead of at Sloc (N).
|
| 708 |
|
|
|
| 709 |
|
|
procedure Error_Msg_NW
|
| 710 |
|
|
(Eflag : Boolean;
|
| 711 |
|
|
Msg : String;
|
| 712 |
|
|
N : Node_Or_Entity_Id);
|
| 713 |
|
|
-- This routine is used for posting a message conditionally. The message
|
| 714 |
|
|
-- is posted (with the same effect as Error_Msg_N (Msg, N) if and only
|
| 715 |
|
|
-- if Eflag is True and if the node N is within the main extended source
|
| 716 |
|
|
-- unit and comes from source. Typically this is a warning mode flag.
|
| 717 |
|
|
-- This routine can only be called during semantic analysis. It may not
|
| 718 |
|
|
-- be called during parsing.
|
| 719 |
|
|
|
| 720 |
|
|
procedure Change_Error_Text (Error_Id : Error_Msg_Id; New_Msg : String);
|
| 721 |
|
|
-- The error message text of the message identified by Id is replaced by
|
| 722 |
|
|
-- the given text. This text may contain insertion characters in the
|
| 723 |
|
|
-- usual manner, and need not be the same length as the original text.
|
| 724 |
|
|
|
| 725 |
|
|
function First_Node (C : Node_Id) return Node_Id;
|
| 726 |
|
|
-- Given a construct C, finds the first node in the construct, i.e. the
|
| 727 |
|
|
-- one with the lowest Sloc value. This is useful in placing error msgs.
|
| 728 |
|
|
|
| 729 |
|
|
function First_Sloc (N : Node_Id) return Source_Ptr;
|
| 730 |
|
|
-- Given the node for an expression, return a source pointer value that
|
| 731 |
|
|
-- points to the start of the first token in the expression. In the case
|
| 732 |
|
|
-- where the expression is parenthesized, an attempt is made to include
|
| 733 |
|
|
-- the parentheses (i.e. to return the location of the initial paren).
|
| 734 |
|
|
|
| 735 |
|
|
procedure Purge_Messages (From : Source_Ptr; To : Source_Ptr)
|
| 736 |
|
|
renames Erroutc.Purge_Messages;
|
| 737 |
|
|
-- All error messages whose location is in the range From .. To (not
|
| 738 |
|
|
-- including the end points) will be deleted from the error listing.
|
| 739 |
|
|
|
| 740 |
|
|
procedure Remove_Warning_Messages (N : Node_Id);
|
| 741 |
|
|
-- Remove any warning messages corresponding to the Sloc of N or any
|
| 742 |
|
|
-- of its descendent nodes. No effect if no such warnings. Note that
|
| 743 |
|
|
-- style messages (identified by the fact that they start with "(style)"
|
| 744 |
|
|
-- are not removed by this call. Basically the idea behind this procedure
|
| 745 |
|
|
-- is to remove warnings about execution conditions from known dead code.
|
| 746 |
|
|
|
| 747 |
|
|
procedure Remove_Warning_Messages (L : List_Id);
|
| 748 |
|
|
-- Remove warnings on all elements of a list (Calls Remove_Warning_Messages
|
| 749 |
|
|
-- on each element of the list, see above).
|
| 750 |
|
|
|
| 751 |
|
|
procedure Set_Ignore_Errors (To : Boolean);
|
| 752 |
|
|
-- Following a call to this procedure with To=True, all error calls are
|
| 753 |
|
|
-- ignored. A call with To=False restores the default treatment in which
|
| 754 |
|
|
-- error calls are treated as usual (and as described in this spec).
|
| 755 |
|
|
|
| 756 |
|
|
procedure Set_Warnings_Mode_Off (Loc : Source_Ptr)
|
| 757 |
|
|
renames Erroutc.Set_Warnings_Mode_Off;
|
| 758 |
|
|
-- Called in response to a pragma Warnings (Off) to record the source
|
| 759 |
|
|
-- location from which warnings are to be turned off.
|
| 760 |
|
|
|
| 761 |
|
|
procedure Set_Warnings_Mode_On (Loc : Source_Ptr)
|
| 762 |
|
|
renames Erroutc.Set_Warnings_Mode_On;
|
| 763 |
|
|
-- Called in response to a pragma Warnings (On) to record the source
|
| 764 |
|
|
-- location from which warnings are to be turned back on.
|
| 765 |
|
|
|
| 766 |
|
|
procedure Set_Specific_Warning_Off
|
| 767 |
|
|
(Loc : Source_Ptr;
|
| 768 |
|
|
Msg : String;
|
| 769 |
|
|
Config : Boolean)
|
| 770 |
|
|
renames Erroutc.Set_Specific_Warning_Off;
|
| 771 |
|
|
-- This is called in response to the two argument form of pragma Warnings
|
| 772 |
|
|
-- where the first argument is OFF, and the second argument is the prefix
|
| 773 |
|
|
-- of a specific warning to be suppressed. The first argument is the start
|
| 774 |
|
|
-- of the suppression range, and the second argument is the string from
|
| 775 |
|
|
-- the pragma.
|
| 776 |
|
|
|
| 777 |
|
|
procedure Set_Specific_Warning_On
|
| 778 |
|
|
(Loc : Source_Ptr;
|
| 779 |
|
|
Msg : String;
|
| 780 |
|
|
Err : out Boolean)
|
| 781 |
|
|
renames Erroutc.Set_Specific_Warning_On;
|
| 782 |
|
|
-- This is called in response to the two argument form of pragma Warnings
|
| 783 |
|
|
-- where the first argument is ON, and the second argument is the prefix
|
| 784 |
|
|
-- of a specific warning to be suppressed. The first argument is the end
|
| 785 |
|
|
-- of the suppression range, and the second argument is the string from
|
| 786 |
|
|
-- the pragma. Err is set to True on return to report the error of no
|
| 787 |
|
|
-- matching Warnings Off pragma preceding this one.
|
| 788 |
|
|
|
| 789 |
|
|
function Compilation_Errors return Boolean;
|
| 790 |
|
|
-- Returns true if errors have been detected, or warnings in -gnatwe
|
| 791 |
|
|
-- (treat warnings as errors) mode. Note that it is mandatory to call
|
| 792 |
|
|
-- Finalize before calling this routine.
|
| 793 |
|
|
|
| 794 |
|
|
procedure Error_Msg_CRT (Feature : String; N : Node_Id);
|
| 795 |
|
|
-- Posts a non-fatal message on node N saying that the feature identified
|
| 796 |
|
|
-- by the Feature argument is not supported in either configurable
|
| 797 |
|
|
-- run-time mode or no run-time mode (as appropriate). In the former case,
|
| 798 |
|
|
-- the name of the library is output if available.
|
| 799 |
|
|
|
| 800 |
|
|
procedure dmsg (Id : Error_Msg_Id) renames Erroutc.dmsg;
|
| 801 |
|
|
-- Debugging routine to dump an error message
|
| 802 |
|
|
|
| 803 |
|
|
------------------------------------
|
| 804 |
|
|
-- Utility Interface for Back End --
|
| 805 |
|
|
------------------------------------
|
| 806 |
|
|
|
| 807 |
|
|
-- The following subprograms can be used by the back end for the purposes
|
| 808 |
|
|
-- of concocting error messages that are not output via Errout, e.g. the
|
| 809 |
|
|
-- messages generated by the gcc back end.
|
| 810 |
|
|
|
| 811 |
|
|
procedure Set_Identifier_Casing
|
| 812 |
|
|
(Identifier_Name : System.Address;
|
| 813 |
|
|
File_Name : System.Address);
|
| 814 |
|
|
-- The identifier is a null terminated string that represents the name of
|
| 815 |
|
|
-- an identifier appearing in the source program. File_Name is a null
|
| 816 |
|
|
-- terminated string giving the corresponding file name for the identifier
|
| 817 |
|
|
-- as obtained from the front end by the use of Full_Debug_Name to the
|
| 818 |
|
|
-- source file referenced by the corresponding source location value. On
|
| 819 |
|
|
-- return, the name is in Name_Buffer, null terminated with Name_Len set.
|
| 820 |
|
|
-- This name is the identifier name as passed, cased according to the
|
| 821 |
|
|
-- default identifier casing for the given file.
|
| 822 |
|
|
|
| 823 |
|
|
end Errout;
|