1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2014, Free Software Foundation, Inc. --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING3. If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license. --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 ------------------------------------------------------------------------------
26 -- Warning: Error messages can be generated during Gigi processing by direct
27 -- calls to error message routines, so it is essential that the processing
28 -- in this body be consistent with the requirements for the Gigi processing
29 -- environment, and that in particular, no disallowed table expansion is
32 with Atree
; use Atree
;
33 with Casing
; use Casing
;
34 with Csets
; use Csets
;
35 with Debug
; use Debug
;
36 with Einfo
; use Einfo
;
37 with Erroutc
; use Erroutc
;
38 with Fname
; use Fname
;
39 with Gnatvsn
; use Gnatvsn
;
42 with Nlists
; use Nlists
;
43 with Output
; use Output
;
44 with Scans
; use Scans
;
45 with Sem_Aux
; use Sem_Aux
;
46 with Sinput
; use Sinput
;
47 with Sinfo
; use Sinfo
;
48 with Snames
; use Snames
;
49 with Stand
; use Stand
;
50 with Stylesw
; use Stylesw
;
51 with Uname
; use Uname
;
53 package body Errout
is
55 Errors_Must_Be_Ignored
: Boolean := False;
56 -- Set to True by procedure Set_Ignore_Errors (True), when calls to error
57 -- message procedures should be ignored (when parsing irrelevant text in
58 -- sources being preprocessed).
60 Finalize_Called
: Boolean := False;
61 -- Set True if the Finalize routine has been called
63 Warn_On_Instance
: Boolean;
64 -- Flag set true for warning message to be posted on instance
66 ------------------------------------
67 -- Table of Non-Instance Messages --
68 ------------------------------------
70 -- This table contains an entry for every error message processed by the
71 -- Error_Msg routine that is not posted on generic (or inlined) instance.
72 -- As explained in further detail in the Error_Msg procedure body, this
73 -- table is used to avoid posting redundant messages on instances.
75 type NIM_Record
is record
79 -- Type used to store text and location of one message
81 package Non_Instance_Msgs
is new Table
.Table
(
82 Table_Component_Type
=> NIM_Record
,
83 Table_Index_Type
=> Int
,
86 Table_Increment
=> 100,
87 Table_Name
=> "Non_Instance_Msgs");
89 -----------------------
90 -- Local Subprograms --
91 -----------------------
93 procedure Error_Msg_Internal
98 -- This is the low level routine used to post messages after dealing with
99 -- the issue of messages placed on instantiations (which get broken up
100 -- into separate calls in Error_Msg). Sptr is the location on which the
101 -- flag will be placed in the output. In the case where the flag is on
102 -- the template, this points directly to the template, not to one of the
103 -- instantiation copies of the template. Optr is the original location
104 -- used to flag the error, and this may indeed point to an instantiation
105 -- copy. So typically we can see Optr pointing to the template location
106 -- in an instantiation copy when Sptr points to the source location of
107 -- the actual instantiation (i.e the line with the new). Msg_Cont is
108 -- set true if this is a continuation message.
110 function No_Warnings
(N
: Node_Or_Entity_Id
) return Boolean;
111 -- Determines if warnings should be suppressed for the given node
113 function OK_Node
(N
: Node_Id
) return Boolean;
114 -- Determines if a node is an OK node to place an error message on (return
115 -- True) or if the error message should be suppressed (return False). A
116 -- message is suppressed if the node already has an error posted on it,
117 -- or if it refers to an Etype that has an error posted on it, or if
118 -- it references an Entity that has an error posted on it.
120 procedure Output_Source_Line
121 (L
: Physical_Line_Number
;
122 Sfile
: Source_File_Index
;
124 -- Outputs text of source line L, in file S, together with preceding line
125 -- number, as described above for Output_Line_Number. The Errs parameter
126 -- indicates if there are errors attached to the line, which forces
127 -- listing on, even in the presence of pragma List (Off).
129 procedure Set_Msg_Insertion_Column
;
130 -- Handle column number insertion (@ insertion character)
132 procedure Set_Msg_Insertion_Node
;
133 -- Handle node (name from node) insertion (& insertion character)
135 procedure Set_Msg_Insertion_Type_Reference
(Flag
: Source_Ptr
);
136 -- Handle type reference (right brace insertion character). Flag is the
137 -- location of the flag, which is provided for the internal call to
138 -- Set_Msg_Insertion_Line_Number,
140 procedure Set_Msg_Insertion_Unit_Name
(Suffix
: Boolean := True);
141 -- Handle unit name insertion ($ insertion character). Depending on Boolean
142 -- parameter Suffix, (spec) or (body) is appended after the unit name.
144 procedure Set_Msg_Node
(Node
: Node_Id
);
145 -- Add the sequence of characters for the name associated with the given
146 -- node to the current message. For N_Designator, N_Selected_Component,
147 -- N_Defining_Program_Unit_Name, and N_Expanded_Name, the Prefix is
150 procedure Set_Msg_Text
(Text
: String; Flag
: Source_Ptr
);
151 -- Add a sequence of characters to the current message. The characters may
152 -- be one of the special insertion characters (see documentation in spec).
153 -- Flag is the location at which the error is to be posted, which is used
154 -- to determine whether or not the # insertion needs a file name. The
155 -- variables Msg_Buffer are set on return Msglen.
157 procedure Set_Posted
(N
: Node_Id
);
158 -- Sets the Error_Posted flag on the given node, and all its parents that
159 -- are subexpressions and then on the parent non-subexpression construct
160 -- that contains the original expression. If that parent is a named
161 -- association, the flag is further propagated to its parent. This is done
162 -- in order to guard against cascaded errors. Note that this call has an
163 -- effect for a serious error only.
165 procedure Set_Qualification
(N
: Nat
; E
: Entity_Id
);
166 -- Outputs up to N levels of qualification for the given entity. For
167 -- example, the entity A.B.C.D will output B.C. if N = 2.
169 function Special_Msg_Delete
171 N
: Node_Or_Entity_Id
;
172 E
: Node_Or_Entity_Id
) return Boolean;
173 -- This function is called from Error_Msg_NEL, passing the message Msg,
174 -- node N on which the error is to be posted, and the entity or node E
175 -- to be used for an & insertion in the message if any. The job of this
176 -- procedure is to test for certain cascaded messages that we would like
177 -- to suppress. If the message is to be suppressed then we return True.
178 -- If the message should be generated (the normal case) False is returned.
180 procedure Unwind_Internal_Type
(Ent
: in out Entity_Id
);
181 -- This procedure is given an entity id for an internal type, i.e. a type
182 -- with an internal name. It unwinds the type to try to get to something
183 -- reasonably printable, generating prefixes like "subtype of", "access
184 -- to", etc along the way in the buffer. The value in Ent on return is the
185 -- final name to be printed. Hopefully this is not an internal name, but in
186 -- some internal name cases, it is an internal name, and has to be printed
187 -- anyway (although in this case the message has been killed if possible).
188 -- The global variable Class_Flag is set to True if the resulting entity
189 -- should have 'Class appended to its name (see Add_Class procedure), and
190 -- is otherwise unchanged.
192 function Warn_Insertion
return String;
193 -- This is called for warning messages only (so Warning_Msg_Char is set)
194 -- and returns a corresponding string to use at the beginning of generated
195 -- auxiliary messages, such as "in instantiation at ...".
196 -- 'a' .. 'z' returns "?x?"
197 -- 'A' .. 'Z' returns "?X?"
199 -- '$' returns "?$?info: "
201 -- No other settings are valid
203 -----------------------
204 -- Change_Error_Text --
205 -----------------------
207 procedure Change_Error_Text
(Error_Id
: Error_Msg_Id
; New_Msg
: String) is
208 Save_Next
: Error_Msg_Id
;
209 Err_Id
: Error_Msg_Id
:= Error_Id
;
212 Set_Msg_Text
(New_Msg
, Errors
.Table
(Error_Id
).Sptr
);
213 Errors
.Table
(Error_Id
).Text
:= new String'(Msg_Buffer (1 .. Msglen));
215 -- If in immediate error message mode, output modified error message now
216 -- This is just a bit tricky, because we want to output just a single
217 -- message, and the messages we modified is already linked in. We solve
218 -- this by temporarily resetting its forward pointer to empty.
220 if Debug_Flag_OO then
221 Save_Next := Errors.Table (Error_Id).Next;
222 Errors.Table (Error_Id).Next := No_Error_Msg;
225 (Errors.Table (Error_Id).Line, Errors.Table (Error_Id).Sfile, True);
226 Output_Error_Msgs (Err_Id);
227 Errors.Table (Error_Id).Next := Save_Next;
229 end Change_Error_Text;
231 ------------------------
232 -- Compilation_Errors --
233 ------------------------
235 function Compilation_Errors return Boolean is
237 if not Finalize_Called then
240 return Erroutc.Compilation_Errors;
242 end Compilation_Errors;
244 --------------------------------------
245 -- Delete_Warning_And_Continuations --
246 --------------------------------------
248 procedure Delete_Warning_And_Continuations (Msg : Error_Msg_Id) is
252 pragma Assert (not Errors.Table (Msg).Msg_Cont);
257 M : Error_Msg_Object renames Errors.Table (Id);
260 if not M.Deleted then
262 Warnings_Detected := Warnings_Detected - 1;
265 Info_Messages := Info_Messages - 1;
269 Warnings_Treated_As_Errors := Warnings_Treated_As_Errors - 1;
274 exit when Id = No_Error_Msg;
275 exit when not Errors.Table (Id).Msg_Cont;
278 end Delete_Warning_And_Continuations;
284 -- Error_Msg posts a flag at the given location, except that if the
285 -- Flag_Location points within a generic template and corresponds to an
286 -- instantiation of this generic template, then the actual message will be
287 -- posted on the generic instantiation, along with additional messages
288 -- referencing the generic declaration.
290 procedure Error_Msg (Msg : String; Flag_Location : Source_Ptr) is
291 Sindex : Source_File_Index;
292 -- Source index for flag location
294 Orig_Loc : Source_Ptr;
295 -- Original location of Flag_Location (i.e. location in original
296 -- template in instantiation case, otherwise unchanged).
299 -- It is a fatal error to issue an error message when scanning from the
300 -- internal source buffer (see Sinput for further documentation)
302 pragma Assert (Sinput.Source /= Internal_Source_Ptr);
304 -- Return if all errors are to be ignored
306 if Errors_Must_Be_Ignored then
310 -- If we already have messages, and we are trying to place a message at
311 -- No_Location or in package Standard, then just ignore the attempt
312 -- since we assume that what is happening is some cascaded junk. Note
313 -- that this is safe in the sense that proceeding will surely bomb.
315 if Flag_Location < First_Source_Ptr
316 and then Total_Errors_Detected > 0
321 -- Start of processing for new message
323 Sindex := Get_Source_File_Index (Flag_Location);
324 Prescan_Message (Msg);
325 Orig_Loc := Original_Location (Flag_Location);
327 -- If the current location is in an instantiation, the issue arises of
328 -- whether to post the message on the template or the instantiation.
330 -- The way we decide is to see if we have posted the same message on
331 -- the template when we compiled the template (the template is always
332 -- compiled before any instantiations). For this purpose, we use a
333 -- separate table of messages. The reason we do this is twofold:
335 -- First, the messages can get changed by various processing
336 -- including the insertion of tokens etc, making it hard to
337 -- do the comparison.
339 -- Second, we will suppress a warning on a template if it is not in
340 -- the current extended source unit. That's reasonable and means we
341 -- don't want the warning on the instantiation here either, but it
342 -- does mean that the main error table would not in any case include
345 if Flag_Location = Orig_Loc then
346 Non_Instance_Msgs.Append ((new String'(Msg
), Flag_Location
));
347 Warn_On_Instance
:= False;
349 -- Here we have an instance message
352 -- Delete if debug flag off, and this message duplicates a message
353 -- already posted on the corresponding template
355 if not Debug_Flag_GG
then
356 for J
in Non_Instance_Msgs
.First
.. Non_Instance_Msgs
.Last
loop
357 if Msg
= Non_Instance_Msgs
.Table
(J
).Msg
.all
358 and then Non_Instance_Msgs
.Table
(J
).Loc
= Orig_Loc
365 -- No duplicate, so error/warning will be posted on instance
367 Warn_On_Instance
:= Is_Warning_Msg
;
370 -- Ignore warning message that is suppressed for this location. Note
371 -- that style checks are not considered warning messages for this
374 if Is_Warning_Msg
and then Warnings_Suppressed
(Orig_Loc
) /= No_String
378 -- For style messages, check too many messages so far
381 and then Maximum_Messages
/= 0
382 and then Warnings_Detected
>= Maximum_Messages
387 -- The idea at this stage is that we have two kinds of messages
389 -- First, we have those messages that are to be placed as requested at
390 -- Flag_Location. This includes messages that have nothing to do with
391 -- generics, and also messages placed on generic templates that reflect
392 -- an error in the template itself. For such messages we simply call
393 -- Error_Msg_Internal to place the message in the requested location.
395 if Instantiation
(Sindex
) = No_Location
then
396 Error_Msg_Internal
(Msg
, Flag_Location
, Flag_Location
, False);
400 -- If we are trying to flag an error in an instantiation, we may have
401 -- a generic contract violation. What we generate in this case is:
403 -- instantiation error at ...
404 -- original error message
408 -- warning: in instantiation at
409 -- warning: original warning message
411 -- All these messages are posted at the location of the top level
412 -- instantiation. If there are nested instantiations, then the
413 -- instantiation error message can be repeated, pointing to each
414 -- of the relevant instantiations.
416 -- Note: the instantiation mechanism is also shared for inlining of
417 -- subprogram bodies when front end inlining is done. In this case the
418 -- messages have the form:
420 -- in inlined body at ...
421 -- original error message
425 -- warning: in inlined body at
426 -- warning: original warning message
428 -- OK, here we have an instantiation error, and we need to generate the
429 -- error on the instantiation, rather than on the template.
432 Actual_Error_Loc
: Source_Ptr
;
433 -- Location of outer level instantiation in instantiation case, or
434 -- just a copy of Flag_Location in the normal case. This is the
435 -- location where all error messages will actually be posted.
437 Save_Error_Msg_Sloc
: constant Source_Ptr
:= Error_Msg_Sloc
;
438 -- Save possible location set for caller's message. We need to use
439 -- Error_Msg_Sloc for the location of the instantiation error but we
440 -- have to preserve a possible original value.
442 X
: Source_File_Index
;
444 Msg_Cont_Status
: Boolean;
445 -- Used to label continuation lines in instantiation case with
446 -- proper Msg_Cont status.
449 -- Loop to find highest level instantiation, where all error
450 -- messages will be placed.
454 Actual_Error_Loc
:= Instantiation
(X
);
455 X
:= Get_Source_File_Index
(Actual_Error_Loc
);
456 exit when Instantiation
(X
) = No_Location
;
459 -- Since we are generating the messages at the instantiation point in
460 -- any case, we do not want the references to the bad lines in the
461 -- instance to be annotated with the location of the instantiation.
463 Suppress_Instance_Location
:= True;
464 Msg_Cont_Status
:= False;
466 -- Loop to generate instantiation messages
468 Error_Msg_Sloc
:= Flag_Location
;
469 X
:= Get_Source_File_Index
(Flag_Location
);
470 while Instantiation
(X
) /= No_Location
loop
472 -- Suppress instantiation message on continuation lines
474 if Msg
(Msg
'First) /= '\' then
476 -- Case of inlined body
478 if Inlined_Body
(X
) then
479 if Is_Warning_Msg
or Is_Style_Msg
then
481 (Warn_Insertion
& "in inlined body #",
482 Actual_Error_Loc
, Flag_Location
, Msg_Cont_Status
);
485 ("error in inlined body #",
486 Actual_Error_Loc
, Flag_Location
, Msg_Cont_Status
);
489 -- Case of generic instantiation
492 if Is_Warning_Msg
or else Is_Style_Msg
then
494 (Warn_Insertion
& "in instantiation #",
495 Actual_Error_Loc
, Flag_Location
, Msg_Cont_Status
);
498 ("instantiation error #",
499 Actual_Error_Loc
, Flag_Location
, Msg_Cont_Status
);
504 Error_Msg_Sloc
:= Instantiation
(X
);
505 X
:= Get_Source_File_Index
(Error_Msg_Sloc
);
506 Msg_Cont_Status
:= True;
509 Suppress_Instance_Location
:= False;
510 Error_Msg_Sloc
:= Save_Error_Msg_Sloc
;
512 -- Here we output the original message on the outer instantiation
515 (Msg
, Actual_Error_Loc
, Flag_Location
, Msg_Cont_Status
);
519 --------------------------------
520 -- Error_Msg_Ada_2012_Feature --
521 --------------------------------
523 procedure Error_Msg_Ada_2012_Feature
(Feature
: String; Loc
: Source_Ptr
) is
525 if Ada_Version
< Ada_2012
then
526 Error_Msg
(Feature
& " is an Ada 2012 feature", Loc
);
528 if No
(Ada_Version_Pragma
) then
529 Error_Msg
("\unit must be compiled with -gnat2012 switch", Loc
);
531 Error_Msg_Sloc
:= Sloc
(Ada_Version_Pragma
);
532 Error_Msg
("\incompatible with Ada version set#", Loc
);
535 end Error_Msg_Ada_2012_Feature
;
541 procedure Error_Msg_AP
(Msg
: String) is
546 -- If we had saved the Scan_Ptr value after scanning the previous
547 -- token, then we would have exactly the right place for putting
548 -- the flag immediately at hand. However, that would add at least
549 -- two instructions to a Scan call *just* to service the possibility
550 -- of an Error_Msg_AP call. So instead we reconstruct that value.
552 -- We have two possibilities, start with Prev_Token_Ptr and skip over
553 -- the current token, which is made harder by the possibility that this
554 -- token may be in error, or start with Token_Ptr and work backwards.
555 -- We used to take the second approach, but it's hard because of
556 -- comments, and harder still because things that look like comments
557 -- can appear inside strings. So now we take the first approach.
559 -- Note: in the case where there is no previous token, Prev_Token_Ptr
560 -- is set to Source_First, which is a reasonable position for the
561 -- error flag in this situation.
563 S1
:= Prev_Token_Ptr
;
566 -- If the previous token is a string literal, we need a special approach
567 -- since there may be white space inside the literal and we don't want
568 -- to stop on that white space.
570 -- Note: since this is an error recovery issue anyway, it is not worth
571 -- worrying about special UTF_32 line terminator characters here.
573 if Prev_Token
= Tok_String_Literal
then
577 if Source
(S1
) = C
then
579 exit when Source
(S1
) /= C
;
580 elsif Source
(S1
) in Line_Terminator
then
585 -- Character literal also needs special handling
587 elsif Prev_Token
= Tok_Char_Literal
then
590 -- Otherwise we search forward for the end of the current token, marked
591 -- by a line terminator, white space, a comment symbol or if we bump
592 -- into the following token (i.e. the current token).
594 -- Again, it is not worth worrying about UTF_32 special line terminator
595 -- characters in this context, since this is only for error recovery.
598 while Source
(S1
) not in Line_Terminator
599 and then Source
(S1
) /= ' '
600 and then Source
(S1
) /= ASCII
.HT
601 and then (Source
(S1
) /= '-' or else Source
(S1
+ 1) /= '-')
602 and then S1
/= Token_Ptr
608 -- S1 is now set to the location for the flag
617 procedure Error_Msg_BC
(Msg
: String) is
619 -- If we are at end of file, post the flag after the previous token
621 if Token
= Tok_EOF
then
624 -- If we are at start of file, post the flag at the current token
626 elsif Token_Ptr
= Source_First
(Current_Source_File
) then
629 -- If the character before the current token is a space or a horizontal
630 -- tab, then we place the flag on this character (in the case of a tab
631 -- we would really like to place it in the "last" character of the tab
632 -- space, but that it too much trouble to worry about).
634 elsif Source
(Token_Ptr
- 1) = ' '
635 or else Source
(Token_Ptr
- 1) = ASCII
.HT
637 Error_Msg
(Msg
, Token_Ptr
- 1);
639 -- If there is no space or tab before the current token, then there is
640 -- no room to place the flag before the token, so we place it on the
641 -- token instead (this happens for example at the start of a line).
644 Error_Msg
(Msg
, Token_Ptr
);
652 procedure Error_Msg_CRT
(Feature
: String; N
: Node_Id
) is
653 CNRT
: constant String := " not allowed in no run time mode";
654 CCRT
: constant String := " not supported by configuration>";
656 S
: String (1 .. Feature
'Length + 1 + CCRT
'Length);
661 S
(2 .. Feature
'Length + 1) := Feature
;
662 L
:= Feature
'Length + 2;
664 if No_Run_Time_Mode
then
665 S
(L
.. L
+ CNRT
'Length - 1) := CNRT
;
666 L
:= L
+ CNRT
'Length - 1;
668 else pragma Assert
(Configurable_Run_Time_Mode
);
669 S
(L
.. L
+ CCRT
'Length - 1) := CCRT
;
670 L
:= L
+ CCRT
'Length - 1;
673 Error_Msg_N
(S
(1 .. L
), N
);
674 Configurable_Run_Time_Violations
:= Configurable_Run_Time_Violations
+ 1;
681 procedure Error_Msg_PT
(Typ
: Node_Id
; Subp
: Node_Id
) is
684 ("first formal of & must be of mode `OUT`, `IN OUT` or " &
685 "access-to-variable", Typ
, Subp
);
687 ("\in order to be overridden by protected procedure or entry " &
688 "(RM 9.4(11.9/2))", Typ
);
695 procedure Error_Msg_F
(Msg
: String; N
: Node_Id
) is
697 Error_Msg_NEL
(Msg
, N
, N
, Sloc
(First_Node
(N
)));
704 procedure Error_Msg_FE
707 E
: Node_Or_Entity_Id
)
710 Error_Msg_NEL
(Msg
, N
, E
, Sloc
(First_Node
(N
)));
713 ------------------------
714 -- Error_Msg_Internal --
715 ------------------------
717 procedure Error_Msg_Internal
723 Next_Msg
: Error_Msg_Id
;
724 -- Pointer to next message at insertion point
726 Prev_Msg
: Error_Msg_Id
;
727 -- Pointer to previous message at insertion point
729 Temp_Msg
: Error_Msg_Id
;
732 -- Set if warning to be treated as error
734 procedure Handle_Serious_Error
;
735 -- Internal procedure to do all error message handling for a serious
736 -- error message, other than bumping the error counts and arranging
737 -- for the message to be output.
739 --------------------------
740 -- Handle_Serious_Error --
741 --------------------------
743 procedure Handle_Serious_Error
is
745 -- Turn off code generation if not done already
747 if Operating_Mode
= Generate_Code
then
748 Operating_Mode
:= Check_Semantics
;
749 Expander_Active
:= False;
752 -- Set the fatal error flag in the unit table unless we are in
753 -- Try_Semantics mode. This stops the semantics from being performed
754 -- if we find a serious error. This is skipped if we are currently
755 -- dealing with the configuration pragma file.
757 if not Try_Semantics
and then Current_Source_Unit
/= No_Unit
then
758 Set_Fatal_Error
(Get_Source_Unit
(Sptr
));
760 end Handle_Serious_Error
;
762 -- Start of processing for Error_Msg_Internal
765 if Raise_Exception_On_Error
/= 0 then
766 raise Error_Msg_Exception
;
769 Continuation
:= Msg_Cont
;
770 Continuation_New_Line
:= False;
771 Suppress_Message
:= False;
772 Kill_Message
:= False;
773 Set_Msg_Text
(Msg
, Sptr
);
775 -- Kill continuation if parent message killed
777 if Continuation
and Last_Killed
then
781 -- Return without doing anything if message is suppressed
784 and then not All_Errors_Mode
785 and then not Is_Warning_Msg
786 and then not Is_Unconditional_Msg
788 if not Continuation
then
795 -- Return without doing anything if message is killed and this is not
796 -- the first error message. The philosophy is that if we get a weird
797 -- error message and we already have had a message, then we hope the
798 -- weird message is a junk cascaded message
801 and then not All_Errors_Mode
802 and then Total_Errors_Detected
/= 0
804 if not Continuation
then
811 -- Special check for warning message to see if it should be output
813 if Is_Warning_Msg
then
815 -- Immediate return if warning message and warnings are suppressed
817 if Warnings_Suppressed
(Optr
) /= No_String
819 Warnings_Suppressed
(Sptr
) /= No_String
821 Cur_Msg
:= No_Error_Msg
;
825 -- If the flag location is in the main extended source unit then for
826 -- sure we want the warning since it definitely belongs
828 if In_Extended_Main_Source_Unit
(Sptr
) then
831 -- If the main unit has not been read yet. the warning must be on
832 -- a configuration file: gnat.adc or user-defined. This means we
833 -- are not parsing the main unit yet, so skip following checks.
835 elsif No
(Cunit
(Main_Unit
)) then
838 -- If the flag location is not in the main extended source unit, then
839 -- we want to eliminate the warning, unless it is in the extended
840 -- main code unit and we want warnings on the instance.
842 elsif In_Extended_Main_Code_Unit
(Sptr
) and then Warn_On_Instance
then
845 -- Keep warning if debug flag G set
847 elsif Debug_Flag_GG
then
850 -- Keep warning if message text contains !!
852 elsif Has_Double_Exclam
then
855 -- Here is where we delete a warning from a with'ed unit
858 Cur_Msg
:= No_Error_Msg
;
860 if not Continuation
then
868 -- If message is to be ignored in special ignore message mode, this is
869 -- where we do this special processing, bypassing message output.
871 if Ignore_Errors_Enable
> 0 then
872 if Is_Serious_Error
then
873 Handle_Serious_Error
;
879 -- If error message line length set, and this is a continuation message
880 -- then all we do is to append the text to the text of the last message
881 -- with a comma space separator (eliminating a possible (style) or
884 if Error_Msg_Line_Length
/= 0 and then Continuation
then
885 Cur_Msg
:= Errors
.Last
;
888 Oldm
: String_Ptr
:= Errors
.Table
(Cur_Msg
).Text
;
889 Newm
: String (1 .. Oldm
'Last + 2 + Msglen
);
894 -- First copy old message to new one and free it
896 Newm
(Oldm
'Range) := Oldm
.all;
900 -- Remove (style) or info: at start of message
902 if Msglen
> 8 and then Msg_Buffer
(1 .. 8) = "(style) " then
905 elsif Msglen
> 6 and then Msg_Buffer
(1 .. 6) = "info: " then
912 -- Now deal with separation between messages. Normally this is
913 -- simply comma space, but there are some special cases.
915 -- If continuation new line, then put actual NL character in msg
917 if Continuation_New_Line
then
919 Newm
(Newl
) := ASCII
.LF
;
921 -- If continuation message is enclosed in parentheses, then
922 -- special treatment (don't need a comma, and we want to combine
923 -- successive parenthetical remarks into a single one with
924 -- separating commas).
926 elsif Msg_Buffer
(M
) = '(' and then Msg_Buffer
(Msglen
) = ')' then
928 -- Case where existing message ends in right paren, remove
929 -- and separate parenthetical remarks with a comma.
931 if Newm
(Newl
) = ')' then
933 Msg_Buffer
(M
) := ' ';
935 -- Case where we are adding new parenthetical comment
942 -- Case where continuation not in parens and no new line
945 Newm
(Newl
+ 1 .. Newl
+ 2) := ", ";
949 -- Append new message
951 Newm
(Newl
+ 1 .. Newl
+ Msglen
- M
+ 1) :=
952 Msg_Buffer
(M
.. Msglen
);
953 Newl
:= Newl
+ Msglen
- M
+ 1;
954 Errors
.Table
(Cur_Msg
).Text
:= new String'(Newm (1 .. Newl));
956 -- Update warning msg flag and message doc char if needed
958 if Is_Warning_Msg then
959 if not Errors.Table (Cur_Msg).Warn then
960 Errors.Table (Cur_Msg).Warn := True;
961 Errors.Table (Cur_Msg).Warn_Chr := Warning_Msg_Char;
963 elsif Warning_Msg_Char /= ' ' then
964 Errors.Table (Cur_Msg).Warn_Chr := Warning_Msg_Char;
972 -- Here we build a new error object
975 ((Text => new String'(Msg_Buffer
(1 .. Msglen
)),
976 Next
=> No_Error_Msg
,
977 Prev
=> No_Error_Msg
,
980 Sfile
=> Get_Source_File_Index
(Sptr
),
981 Line
=> Get_Physical_Line_Number
(Sptr
),
982 Col
=> Get_Column_Number
(Sptr
),
983 Warn
=> Is_Warning_Msg
,
985 Check
=> Is_Check_Msg
,
986 Warn_Err
=> False, -- reset below
987 Warn_Chr
=> Warning_Msg_Char
,
988 Style
=> Is_Style_Msg
,
989 Serious
=> Is_Serious_Error
,
990 Uncond
=> Is_Unconditional_Msg
,
991 Msg_Cont
=> Continuation
,
993 Cur_Msg
:= Errors
.Last
;
995 -- Test if warning to be treated as error
999 and then (Warning_Treated_As_Error
(Msg_Buffer
(1 .. Msglen
))
1001 Warning_Treated_As_Error
(Get_Warning_Tag
(Cur_Msg
)));
1003 -- Propagate Warn_Err to this message and preceding continuations
1005 for J
in reverse 1 .. Errors
.Last
loop
1006 Errors
.Table
(J
).Warn_Err
:= Warn_Err
;
1007 exit when not Errors
.Table
(J
).Msg_Cont
;
1010 -- If immediate errors mode set, output error message now. Also output
1011 -- now if the -d1 debug flag is set (so node number message comes out
1012 -- just before actual error message)
1014 if Debug_Flag_OO
or else Debug_Flag_1
then
1017 (Errors
.Table
(Cur_Msg
).Line
, Errors
.Table
(Cur_Msg
).Sfile
, True);
1018 Temp_Msg
:= Cur_Msg
;
1019 Output_Error_Msgs
(Temp_Msg
);
1021 -- If not in immediate errors mode, then we insert the message in the
1022 -- error chain for later output by Finalize. The messages are sorted
1023 -- first by unit (main unit comes first), and within a unit by source
1024 -- location (earlier flag location first in the chain).
1027 -- First a quick check, does this belong at the very end of the chain
1028 -- of error messages. This saves a lot of time in the normal case if
1029 -- there are lots of messages.
1031 if Last_Error_Msg
/= No_Error_Msg
1032 and then Errors
.Table
(Cur_Msg
).Sfile
=
1033 Errors
.Table
(Last_Error_Msg
).Sfile
1034 and then (Sptr
> Errors
.Table
(Last_Error_Msg
).Sptr
1036 (Sptr
= Errors
.Table
(Last_Error_Msg
).Sptr
1038 Optr
> Errors
.Table
(Last_Error_Msg
).Optr
))
1040 Prev_Msg
:= Last_Error_Msg
;
1041 Next_Msg
:= No_Error_Msg
;
1043 -- Otherwise do a full sequential search for the insertion point
1046 Prev_Msg
:= No_Error_Msg
;
1047 Next_Msg
:= First_Error_Msg
;
1048 while Next_Msg
/= No_Error_Msg
loop
1050 Errors
.Table
(Cur_Msg
).Sfile
< Errors
.Table
(Next_Msg
).Sfile
;
1052 if Errors
.Table
(Cur_Msg
).Sfile
= Errors
.Table
(Next_Msg
).Sfile
1054 exit when Sptr
< Errors
.Table
(Next_Msg
).Sptr
1055 or else (Sptr
= Errors
.Table
(Next_Msg
).Sptr
1056 and then Optr
< Errors
.Table
(Next_Msg
).Optr
);
1059 Prev_Msg
:= Next_Msg
;
1060 Next_Msg
:= Errors
.Table
(Next_Msg
).Next
;
1064 -- Now we insert the new message in the error chain. The insertion
1065 -- point for the message is after Prev_Msg and before Next_Msg.
1067 -- The possible insertion point for the new message is after Prev_Msg
1068 -- and before Next_Msg. However, this is where we do a special check
1069 -- for redundant parsing messages, defined as messages posted on the
1070 -- same line. The idea here is that probably such messages are junk
1071 -- from the parser recovering. In full errors mode, we don't do this
1072 -- deletion, but otherwise such messages are discarded at this stage.
1074 if Prev_Msg
/= No_Error_Msg
1075 and then Errors
.Table
(Prev_Msg
).Line
=
1076 Errors
.Table
(Cur_Msg
).Line
1077 and then Errors
.Table
(Prev_Msg
).Sfile
=
1078 Errors
.Table
(Cur_Msg
).Sfile
1079 and then Compiler_State
= Parsing
1080 and then not All_Errors_Mode
1082 -- Don't delete unconditional messages and at this stage, don't
1083 -- delete continuation lines (we attempted to delete those earlier
1084 -- if the parent message was deleted.
1086 if not Errors
.Table
(Cur_Msg
).Uncond
1087 and then not Continuation
1089 -- Don't delete if prev msg is warning and new msg is an error.
1090 -- This is because we don't want a real error masked by a
1091 -- warning. In all other cases (that is parse errors for the
1092 -- same line that are not unconditional) we do delete the
1093 -- message. This helps to avoid junk extra messages from
1094 -- cascaded parsing errors
1096 if not (Errors
.Table
(Prev_Msg
).Warn
1098 Errors
.Table
(Prev_Msg
).Style
)
1100 (Errors
.Table
(Cur_Msg
).Warn
1102 Errors
.Table
(Cur_Msg
).Style
)
1104 -- All tests passed, delete the message by simply returning
1105 -- without any further processing.
1107 if not Continuation
then
1108 Last_Killed
:= True;
1116 -- Come here if message is to be inserted in the error chain
1118 if not Continuation
then
1119 Last_Killed
:= False;
1122 if Prev_Msg
= No_Error_Msg
then
1123 First_Error_Msg
:= Cur_Msg
;
1125 Errors
.Table
(Prev_Msg
).Next
:= Cur_Msg
;
1128 Errors
.Table
(Cur_Msg
).Next
:= Next_Msg
;
1130 if Next_Msg
= No_Error_Msg
then
1131 Last_Error_Msg
:= Cur_Msg
;
1135 -- Bump appropriate statistics count
1137 if Errors
.Table
(Cur_Msg
).Warn
or else Errors
.Table
(Cur_Msg
).Style
then
1138 Warnings_Detected
:= Warnings_Detected
+ 1;
1140 if Errors
.Table
(Cur_Msg
).Info
then
1141 Info_Messages
:= Info_Messages
+ 1;
1144 elsif Errors
.Table
(Cur_Msg
).Check
then
1145 Check_Messages
:= Check_Messages
+ 1;
1148 Total_Errors_Detected
:= Total_Errors_Detected
+ 1;
1150 if Errors
.Table
(Cur_Msg
).Serious
then
1151 Serious_Errors_Detected
:= Serious_Errors_Detected
+ 1;
1152 Handle_Serious_Error
;
1156 -- Record warning message issued
1158 if Errors
.Table
(Cur_Msg
).Warn
1159 and then not Errors
.Table
(Cur_Msg
).Msg_Cont
1161 Warning_Msg
:= Cur_Msg
;
1164 -- If too many warnings turn off warnings
1166 if Maximum_Messages
/= 0 then
1167 if Warnings_Detected
= Maximum_Messages
then
1168 Warning_Mode
:= Suppress
;
1171 -- If too many errors abandon compilation
1173 if Total_Errors_Detected
= Maximum_Messages
then
1174 raise Unrecoverable_Error
;
1177 end Error_Msg_Internal
;
1183 procedure Error_Msg_N
(Msg
: String; N
: Node_Or_Entity_Id
) is
1185 Error_Msg_NEL
(Msg
, N
, N
, Sloc
(N
));
1192 procedure Error_Msg_NE
1194 N
: Node_Or_Entity_Id
;
1195 E
: Node_Or_Entity_Id
)
1198 Error_Msg_NEL
(Msg
, N
, E
, Sloc
(N
));
1205 procedure Error_Msg_NEL
1207 N
: Node_Or_Entity_Id
;
1208 E
: Node_Or_Entity_Id
;
1209 Flag_Location
: Source_Ptr
)
1212 if Special_Msg_Delete
(Msg
, N
, E
) then
1216 Prescan_Message
(Msg
);
1218 -- Special handling for warning messages
1220 if Is_Warning_Msg
then
1222 -- Suppress if no warnings set for either entity or node
1224 if No_Warnings
(N
) or else No_Warnings
(E
) then
1226 -- Disable any continuation messages as well
1228 Last_Killed
:= True;
1232 -- Suppress if inside loop that is known to be null or is probably
1233 -- null (case where loop executes only if invalid values present).
1234 -- In either case warnings in the loop are likely to be junk.
1241 while Present
(P
) loop
1242 if Nkind
(P
) = N_Loop_Statement
1243 and then Suppress_Loop_Warnings
(P
)
1253 -- Test for message to be output
1256 or else Is_Unconditional_Msg
1257 or else Is_Warning_Msg
1259 or else (Msg
(Msg
'First) = '\' and then not Last_Killed
)
1262 Error_Msg_Node_1
:= E
;
1263 Error_Msg
(Msg
, Flag_Location
);
1266 Last_Killed
:= True;
1269 if not (Is_Warning_Msg
or Is_Style_Msg
) then
1278 procedure Error_Msg_NW
1281 N
: Node_Or_Entity_Id
)
1285 and then In_Extended_Main_Source_Unit
(N
)
1286 and then Comes_From_Source
(N
)
1288 Error_Msg_NEL
(Msg
, N
, N
, Sloc
(N
));
1296 procedure Error_Msg_S
(Msg
: String) is
1298 Error_Msg
(Msg
, Scan_Ptr
);
1305 procedure Error_Msg_SC
(Msg
: String) is
1307 -- If we are at end of file, post the flag after the previous token
1309 if Token
= Tok_EOF
then
1312 -- For all other cases the message is posted at the current token
1316 Error_Msg
(Msg
, Token_Ptr
);
1324 procedure Error_Msg_SP
(Msg
: String) is
1326 -- Note: in the case where there is no previous token, Prev_Token_Ptr
1327 -- is set to Source_First, which is a reasonable position for the
1328 -- error flag in this situation
1330 Error_Msg
(Msg
, Prev_Token_Ptr
);
1337 procedure Finalize
(Last_Call
: Boolean) is
1342 procedure Delete_Warning
(E
: Error_Msg_Id
);
1343 -- Delete a warning msg if not already deleted and adjust warning count
1345 --------------------
1346 -- Delete_Warning --
1347 --------------------
1349 procedure Delete_Warning
(E
: Error_Msg_Id
) is
1351 if not Errors
.Table
(E
).Deleted
then
1352 Errors
.Table
(E
).Deleted
:= True;
1353 Warnings_Detected
:= Warnings_Detected
- 1;
1355 if Errors
.Table
(E
).Info
then
1356 Info_Messages
:= Info_Messages
- 1;
1359 if Errors
.Table
(E
).Warn_Err
then
1360 Warnings_Treated_As_Errors
:= Warnings_Treated_As_Errors
- 1;
1365 -- Start of processing for Finalize
1368 -- Set Prev pointers
1370 Cur
:= First_Error_Msg
;
1371 while Cur
/= No_Error_Msg
loop
1372 Nxt
:= Errors
.Table
(Cur
).Next
;
1373 exit when Nxt
= No_Error_Msg
;
1374 Errors
.Table
(Nxt
).Prev
:= Cur
;
1378 -- Eliminate any duplicated error messages from the list. This is
1379 -- done after the fact to avoid problems with Change_Error_Text.
1381 Cur
:= First_Error_Msg
;
1382 while Cur
/= No_Error_Msg
loop
1383 Nxt
:= Errors
.Table
(Cur
).Next
;
1386 while F
/= No_Error_Msg
1387 and then Errors
.Table
(F
).Sptr
= Errors
.Table
(Cur
).Sptr
1389 Check_Duplicate_Message
(Cur
, F
);
1390 F
:= Errors
.Table
(F
).Next
;
1396 -- Mark any messages suppressed by specific warnings as Deleted
1398 Cur
:= First_Error_Msg
;
1399 while Cur
/= No_Error_Msg
loop
1401 CE
: Error_Msg_Object
renames Errors
.Table
(Cur
);
1402 Tag
: constant String := Get_Warning_Tag
(Cur
);
1405 if (CE
.Warn
and not CE
.Deleted
)
1407 (Warning_Specifically_Suppressed
(CE
.Sptr
, CE
.Text
, Tag
) /=
1410 Warning_Specifically_Suppressed
(CE
.Optr
, CE
.Text
, Tag
) /=
1413 Delete_Warning
(Cur
);
1415 -- If this is a continuation, delete previous parts of message
1418 while Errors
.Table
(F
).Msg_Cont
loop
1419 F
:= Errors
.Table
(F
).Prev
;
1420 exit when F
= No_Error_Msg
;
1424 -- Delete any following continuations
1428 F
:= Errors
.Table
(F
).Next
;
1429 exit when F
= No_Error_Msg
;
1430 exit when not Errors
.Table
(F
).Msg_Cont
;
1436 Cur
:= Errors
.Table
(Cur
).Next
;
1439 Finalize_Called
:= True;
1441 -- Check consistency of specific warnings (may add warnings). We only
1442 -- do this on the last call, after all possible warnings are posted.
1445 Validate_Specific_Warnings
(Error_Msg
'Access);
1453 function First_Node
(C
: Node_Id
) return Node_Id
is
1454 Orig
: constant Node_Id
:= Original_Node
(C
);
1455 Loc
: constant Source_Ptr
:= Sloc
(Orig
);
1456 Sfile
: constant Source_File_Index
:= Get_Source_File_Index
(Loc
);
1460 function Test_Earlier
(N
: Node_Id
) return Traverse_Result
;
1461 -- Function applied to every node in the construct
1463 procedure Search_Tree_First
is new Traverse_Proc
(Test_Earlier
);
1464 -- Create traversal procedure
1470 function Test_Earlier
(N
: Node_Id
) return Traverse_Result
is
1471 Norig
: constant Node_Id
:= Original_Node
(N
);
1472 Loc
: constant Source_Ptr
:= Sloc
(Norig
);
1475 -- Check for earlier
1479 -- Ignore nodes with no useful location information
1481 and then Loc
/= Standard_Location
1482 and then Loc
/= No_Location
1484 -- Ignore nodes from a different file. This ensures against cases
1485 -- of strange foreign code somehow being present. We don't want
1486 -- wild placement of messages if that happens.
1488 and then Get_Source_File_Index
(Loc
) = Sfile
1497 -- Start of processing for First_Node
1500 if Nkind
(Orig
) in N_Subexpr
then
1503 Search_Tree_First
(Orig
);
1515 function First_Sloc
(N
: Node_Id
) return Source_Ptr
is
1516 SI
: constant Source_File_Index
:= Source_Index
(Get_Source_Unit
(N
));
1517 SF
: constant Source_Ptr
:= Source_First
(SI
);
1522 F
:= First_Node
(N
);
1525 -- The following circuit is a bit subtle. When we have parenthesized
1526 -- expressions, then the Sloc will not record the location of the paren,
1527 -- but we would like to post the flag on the paren. So what we do is to
1528 -- crawl up the tree from the First_Node, adjusting the Sloc value for
1529 -- any parentheses we know are present. Yes, we know this circuit is not
1530 -- 100% reliable (e.g. because we don't record all possible paren level
1531 -- values), but this is only for an error message so it is good enough.
1534 Paren_Loop
: for J
in 1 .. Paren_Count
(F
) loop
1536 -- We don't look more than 12 characters behind the current
1537 -- location, and in any case not past the front of the source.
1539 Search_Loop
: for K
in 1 .. 12 loop
1540 exit Search_Loop
when S
= SF
;
1542 if Source_Text
(SI
) (S
- 1) = '(' then
1546 elsif Source_Text
(SI
) (S
- 1) <= ' ' then
1552 end loop Search_Loop
;
1553 end loop Paren_Loop
;
1555 exit Node_Loop
when F
= N
;
1557 exit Node_Loop
when Nkind
(F
) not in N_Subexpr
;
1563 -----------------------
1564 -- Get_Ignore_Errors --
1565 -----------------------
1567 function Get_Ignore_Errors
return Boolean is
1569 return Errors_Must_Be_Ignored
;
1570 end Get_Ignore_Errors
;
1576 procedure Initialize
is
1579 First_Error_Msg
:= No_Error_Msg
;
1580 Last_Error_Msg
:= No_Error_Msg
;
1581 Serious_Errors_Detected
:= 0;
1582 Total_Errors_Detected
:= 0;
1583 Warnings_Treated_As_Errors
:= 0;
1584 Warnings_Detected
:= 0;
1586 Warnings_As_Errors_Count
:= 0;
1587 Cur_Msg
:= No_Error_Msg
;
1590 -- Initialize warnings tables
1593 Specific_Warnings
.Init
;
1600 function No_Warnings
(N
: Node_Or_Entity_Id
) return Boolean is
1602 if Error_Posted
(N
) then
1605 elsif Nkind
(N
) in N_Entity
and then Has_Warnings_Off
(N
) then
1608 elsif Is_Entity_Name
(N
)
1609 and then Present
(Entity
(N
))
1610 and then Has_Warnings_Off
(Entity
(N
))
1623 function OK_Node
(N
: Node_Id
) return Boolean is
1624 K
: constant Node_Kind
:= Nkind
(N
);
1627 if Error_Posted
(N
) then
1630 elsif K
in N_Has_Etype
1631 and then Present
(Etype
(N
))
1632 and then Error_Posted
(Etype
(N
))
1637 or else K
= N_Attribute_Reference
1638 or else K
= N_Character_Literal
1639 or else K
= N_Expanded_Name
1640 or else K
= N_Identifier
1641 or else K
= N_Operator_Symbol
)
1642 and then Present
(Entity
(N
))
1643 and then Error_Posted
(Entity
(N
))
1651 ---------------------
1652 -- Output_Messages --
1653 ---------------------
1655 procedure Output_Messages
is
1659 procedure Write_Error_Summary
;
1660 -- Write error summary
1662 procedure Write_Header
(Sfile
: Source_File_Index
);
1663 -- Write header line (compiling or checking given file)
1665 procedure Write_Max_Errors
;
1666 -- Write message if max errors reached
1668 -------------------------
1669 -- Write_Error_Summary --
1670 -------------------------
1672 procedure Write_Error_Summary
is
1674 -- Extra blank line if error messages or source listing were output
1676 if Total_Errors_Detected
+ Warnings_Detected
> 0 or else Full_List
1681 -- Message giving number of lines read and number of errors detected.
1682 -- This normally goes to Standard_Output. The exception is when brief
1683 -- mode is not set, verbose mode (or full list mode) is set, and
1684 -- there are errors. In this case we send the message to standard
1685 -- error to make sure that *something* appears on standard error
1686 -- in an error situation.
1688 if Total_Errors_Detected
+ Warnings_Detected
/= 0
1689 and then not Brief_Output
1690 and then (Verbose_Mode
or Full_List
)
1695 -- Message giving total number of lines. Don't give this message if
1696 -- the Main_Source line is unknown (this happens in error situations,
1697 -- e.g. when integrated preprocessing fails).
1699 if Main_Source_File
/= No_Source_File
then
1701 Write_Int
(Num_Source_Lines
(Main_Source_File
));
1703 if Num_Source_Lines
(Main_Source_File
) = 1 then
1704 Write_Str
(" line: ");
1706 Write_Str
(" lines: ");
1710 if Total_Errors_Detected
= 0 then
1711 Write_Str
("No errors");
1713 elsif Total_Errors_Detected
= 1 then
1714 Write_Str
("1 error");
1717 Write_Int
(Total_Errors_Detected
);
1718 Write_Str
(" errors");
1721 if Warnings_Detected
- Info_Messages
/= 0 then
1723 Write_Int
(Warnings_Detected
);
1724 Write_Str
(" warning");
1726 if Warnings_Detected
- Info_Messages
/= 1 then
1730 if Warning_Mode
= Treat_As_Error
then
1731 Write_Str
(" (treated as error");
1733 if Warnings_Detected
/= 1 then
1739 elsif Warnings_Treated_As_Errors
/= 0 then
1741 Write_Int
(Warnings_Treated_As_Errors
);
1742 Write_Str
(" treated as errors)");
1746 if Info_Messages
/= 0 then
1748 Write_Int
(Info_Messages
);
1749 Write_Str
(" info message");
1751 if Info_Messages
> 1 then
1757 Set_Standard_Output
;
1758 end Write_Error_Summary
;
1764 procedure Write_Header
(Sfile
: Source_File_Index
) is
1766 if Verbose_Mode
or Full_List
then
1767 if Original_Operating_Mode
= Generate_Code
then
1768 Write_Str
("Compiling: ");
1770 Write_Str
("Checking: ");
1773 Write_Name
(Full_File_Name
(Sfile
));
1775 if not Debug_Flag_7
then
1777 Write_Str
("Source file time stamp: ");
1778 Write_Time_Stamp
(Sfile
);
1780 Write_Str
("Compiled at: " & Compilation_Time
);
1787 ----------------------
1788 -- Write_Max_Errors --
1789 ----------------------
1791 procedure Write_Max_Errors
is
1793 if Maximum_Messages
/= 0 then
1794 if Warnings_Detected
>= Maximum_Messages
then
1796 Write_Line
("maximum number of warnings output");
1797 Write_Line
("any further warnings suppressed");
1798 Set_Standard_Output
;
1801 -- If too many errors print message
1803 if Total_Errors_Detected
>= Maximum_Messages
then
1805 Write_Line
("fatal error: maximum number of errors detected");
1806 Set_Standard_Output
;
1809 end Write_Max_Errors
;
1811 -- Start of processing for Output_Messages
1814 -- Error if Finalize has not been called
1816 if not Finalize_Called
then
1817 raise Program_Error
;
1820 -- Reset current error source file if the main unit has a pragma
1821 -- Source_Reference. This ensures outputting the proper name of
1822 -- the source file in this situation.
1824 if Main_Source_File
= No_Source_File
1825 or else Num_SRef_Pragmas
(Main_Source_File
) /= 0
1827 Current_Error_Source_File
:= No_Source_File
;
1832 if Brief_Output
or (not Full_List
and not Verbose_Mode
) then
1835 E
:= First_Error_Msg
;
1836 while E
/= No_Error_Msg
loop
1837 if not Errors
.Table
(E
).Deleted
and then not Debug_Flag_KK
then
1838 if Full_Path_Name_For_Brief_Errors
then
1839 Write_Name
(Full_Ref_Name
(Errors
.Table
(E
).Sfile
));
1841 Write_Name
(Reference_Name
(Errors
.Table
(E
).Sfile
));
1845 Write_Int
(Int
(Physical_To_Logical
1846 (Errors
.Table
(E
).Line
,
1847 Errors
.Table
(E
).Sfile
)));
1850 if Errors
.Table
(E
).Col
< 10 then
1854 Write_Int
(Int
(Errors
.Table
(E
).Col
));
1856 Output_Msg_Text
(E
);
1860 E
:= Errors
.Table
(E
).Next
;
1863 Set_Standard_Output
;
1866 -- Full source listing case
1869 List_Pragmas_Index
:= 1;
1870 List_Pragmas_Mode
:= True;
1871 E
:= First_Error_Msg
;
1873 -- Normal case, to stdout (copyright notice already output)
1875 if Full_List_File_Name
= null then
1876 if not Debug_Flag_7
then
1883 Create_List_File_Access
.all (Full_List_File_Name
.all);
1884 Set_Special_Output
(Write_List_Info_Access
.all'Access);
1886 -- Write copyright notice to file
1888 if not Debug_Flag_7
then
1889 Write_Str
("GNAT ");
1890 Write_Str
(Gnat_Version_String
);
1892 Write_Str
("Copyright 1992-" &
1894 ", Free Software Foundation, Inc.");
1899 -- First list extended main source file units with errors
1901 for U
in Main_Unit
.. Last_Unit
loop
1902 if In_Extended_Main_Source_Unit
(Cunit_Entity
(U
))
1904 -- If debug flag d.m is set, only the main source is listed
1906 and then (U
= Main_Unit
or else not Debug_Flag_Dot_M
)
1908 -- If the unit of the entity does not come from source, it is
1909 -- an implicit subprogram declaration for a child subprogram.
1910 -- Do not emit errors for it, they are listed with the body.
1913 (No
(Cunit_Entity
(U
))
1914 or else Comes_From_Source
(Cunit_Entity
(U
))
1915 or else not Is_Subprogram
(Cunit_Entity
(U
)))
1917 -- If the compilation unit associated with this unit does not
1918 -- come from source, it means it is an instantiation that should
1919 -- not be included in the source listing.
1921 and then Comes_From_Source
(Cunit
(U
))
1924 Sfile
: constant Source_File_Index
:= Source_Index
(U
);
1929 -- Only write the header if Sfile is known
1931 if Sfile
/= No_Source_File
then
1932 Write_Header
(Sfile
);
1936 -- Normally, we don't want an "error messages from file"
1937 -- message when listing the entire file, so we set the
1938 -- current source file as the current error source file.
1939 -- However, the old style of doing things was to list this
1940 -- message if pragma Source_Reference is present, even for
1941 -- the main unit. Since the purpose of the -gnatd.m switch
1942 -- is to duplicate the old behavior, we skip the reset if
1943 -- this debug flag is set.
1945 if not Debug_Flag_Dot_M
then
1946 Current_Error_Source_File
:= Sfile
;
1949 -- Only output the listing if Sfile is known, to avoid
1950 -- crashing the compiler.
1952 if Sfile
/= No_Source_File
then
1953 for N
in 1 .. Last_Source_Line
(Sfile
) loop
1954 while E
/= No_Error_Msg
1955 and then Errors
.Table
(E
).Deleted
1957 E
:= Errors
.Table
(E
).Next
;
1962 and then Errors
.Table
(E
).Line
= N
1963 and then Errors
.Table
(E
).Sfile
= Sfile
;
1965 Output_Source_Line
(N
, Sfile
, Err_Flag
);
1968 Output_Error_Msgs
(E
);
1970 if not Debug_Flag_2
then
1980 -- Then output errors, if any, for subsidiary units not in the
1981 -- main extended unit.
1983 -- Note: if debug flag d.m set, include errors for any units other
1984 -- than the main unit in the extended source unit (e.g. spec and
1985 -- subunits for a body).
1987 while E
/= No_Error_Msg
1988 and then (not In_Extended_Main_Source_Unit
(Errors
.Table
(E
).Sptr
)
1991 and then Get_Source_Unit
1992 (Errors
.Table
(E
).Sptr
) /= Main_Unit
))
1994 if Errors
.Table
(E
).Deleted
then
1995 E
:= Errors
.Table
(E
).Next
;
2000 (Errors
.Table
(E
).Line
, Errors
.Table
(E
).Sfile
, True);
2001 Output_Error_Msgs
(E
);
2005 -- If output to file, write extra copy of error summary to the
2006 -- output file, and then close it.
2008 if Full_List_File_Name
/= null then
2009 Write_Error_Summary
;
2011 Close_List_File_Access
.all;
2012 Cancel_Special_Output
;
2016 -- Verbose mode (error lines only with error flags). Normally this is
2017 -- ignored in full list mode, unless we are listing to a file, in which
2018 -- case we still generate -gnatv output to standard output.
2021 and then (not Full_List
or else Full_List_File_Name
/= null)
2025 -- Output the header only when Main_Source_File is known
2027 if Main_Source_File
/= No_Source_File
then
2028 Write_Header
(Main_Source_File
);
2031 E
:= First_Error_Msg
;
2033 -- Loop through error lines
2035 while E
/= No_Error_Msg
loop
2036 if Errors
.Table
(E
).Deleted
then
2037 E
:= Errors
.Table
(E
).Next
;
2041 (Errors
.Table
(E
).Line
, Errors
.Table
(E
).Sfile
, True);
2042 Output_Error_Msgs
(E
);
2047 -- Output error summary if verbose or full list mode
2049 if Verbose_Mode
or else Full_List
then
2050 Write_Error_Summary
;
2055 if Warning_Mode
= Treat_As_Error
then
2056 Total_Errors_Detected
:=
2057 Total_Errors_Detected
+ Warnings_Detected
- Info_Messages
;
2058 Warnings_Detected
:= Info_Messages
;
2060 end Output_Messages
;
2062 ------------------------
2063 -- Output_Source_Line --
2064 ------------------------
2066 procedure Output_Source_Line
2067 (L
: Physical_Line_Number
;
2068 Sfile
: Source_File_Index
;
2074 Line_Number_Output
: Boolean := False;
2075 -- Set True once line number is output
2077 Empty_Line
: Boolean := True;
2078 -- Set False if line includes at least one character
2081 if Sfile
/= Current_Error_Source_File
then
2082 Write_Str
("==============Error messages for ");
2084 case Sinput
.File_Type
(Sfile
) is
2086 Write_Str
("source");
2088 when Sinput
.Config
=>
2089 Write_Str
("configuration pragmas");
2092 Write_Str
("symbol definition");
2094 when Sinput
.Preproc
=>
2095 Write_Str
("preprocessing data");
2098 Write_Str
(" file: ");
2099 Write_Name
(Full_File_Name
(Sfile
));
2102 if Num_SRef_Pragmas
(Sfile
) > 0 then
2103 Write_Str
("--------------Line numbers from file: ");
2104 Write_Name
(Full_Ref_Name
(Sfile
));
2105 Write_Str
(" (starting at line ");
2106 Write_Int
(Int
(First_Mapped_Line
(Sfile
)));
2111 Current_Error_Source_File
:= Sfile
;
2114 if Errs
or List_Pragmas_Mode
then
2115 Output_Line_Number
(Physical_To_Logical
(L
, Sfile
));
2116 Line_Number_Output
:= True;
2119 S
:= Line_Start
(L
, Sfile
);
2122 C
:= Source_Text
(Sfile
) (S
);
2123 exit when C
= ASCII
.LF
or else C
= ASCII
.CR
or else C
= EOF
;
2125 -- Deal with matching entry in List_Pragmas table
2128 and then List_Pragmas_Index
<= List_Pragmas
.Last
2129 and then S
= List_Pragmas
.Table
(List_Pragmas_Index
).Ploc
2131 case List_Pragmas
.Table
(List_Pragmas_Index
).Ptyp
is
2135 -- Ignore if on line with errors so that error flags
2136 -- get properly listed with the error line .
2139 Write_Char
(ASCII
.FF
);
2143 List_Pragmas_Mode
:= True;
2145 if not Line_Number_Output
then
2146 Output_Line_Number
(Physical_To_Logical
(L
, Sfile
));
2147 Line_Number_Output
:= True;
2154 List_Pragmas_Mode
:= False;
2157 List_Pragmas_Index
:= List_Pragmas_Index
+ 1;
2159 -- Normal case (no matching entry in List_Pragmas table)
2162 if Errs
or List_Pragmas_Mode
then
2167 Empty_Line
:= False;
2171 -- If we have output a source line, then add the line terminator, with
2172 -- training spaces preserved (so we output the line exactly as input).
2174 if Line_Number_Output
then
2178 Write_Eol_Keep_Blanks
;
2181 end Output_Source_Line
;
2183 -----------------------------
2184 -- Remove_Warning_Messages --
2185 -----------------------------
2187 procedure Remove_Warning_Messages
(N
: Node_Id
) is
2189 function Check_For_Warning
(N
: Node_Id
) return Traverse_Result
;
2190 -- This function checks one node for a possible warning message
2192 function Check_All_Warnings
is new Traverse_Func
(Check_For_Warning
);
2193 -- This defines the traversal operation
2195 -----------------------
2196 -- Check_For_Warning --
2197 -----------------------
2199 function Check_For_Warning
(N
: Node_Id
) return Traverse_Result
is
2200 Loc
: constant Source_Ptr
:= Sloc
(N
);
2203 function To_Be_Removed
(E
: Error_Msg_Id
) return Boolean;
2204 -- Returns True for a message that is to be removed. Also adjusts
2205 -- warning count appropriately.
2211 function To_Be_Removed
(E
: Error_Msg_Id
) return Boolean is
2213 if E
/= No_Error_Msg
2215 -- Don't remove if location does not match
2217 and then Errors
.Table
(E
).Optr
= Loc
2219 -- Don't remove if not warning/info message. Note that we do
2220 -- not remove style messages here. They are warning messages
2221 -- but not ones we want removed in this context.
2223 and then Errors
.Table
(E
).Warn
2225 -- Don't remove unconditional messages
2227 and then not Errors
.Table
(E
).Uncond
2229 Warnings_Detected
:= Warnings_Detected
- 1;
2231 if Errors
.Table
(E
).Info
then
2232 Info_Messages
:= Info_Messages
- 1;
2237 -- No removal required
2244 -- Start of processing for Check_For_Warnings
2247 while To_Be_Removed
(First_Error_Msg
) loop
2248 First_Error_Msg
:= Errors
.Table
(First_Error_Msg
).Next
;
2251 if First_Error_Msg
= No_Error_Msg
then
2252 Last_Error_Msg
:= No_Error_Msg
;
2255 E
:= First_Error_Msg
;
2256 while E
/= No_Error_Msg
loop
2257 while To_Be_Removed
(Errors
.Table
(E
).Next
) loop
2258 Errors
.Table
(E
).Next
:=
2259 Errors
.Table
(Errors
.Table
(E
).Next
).Next
;
2261 if Errors
.Table
(E
).Next
= No_Error_Msg
then
2262 Last_Error_Msg
:= E
;
2266 E
:= Errors
.Table
(E
).Next
;
2269 if Nkind
(N
) = N_Raise_Constraint_Error
2270 and then Original_Node
(N
) /= N
2271 and then No
(Condition
(N
))
2273 -- Warnings may have been posted on subexpressions of the original
2274 -- tree. We place the original node back on the tree to remove
2275 -- those warnings, whose sloc do not match those of any node in
2276 -- the current tree. Given that we are in unreachable code, this
2277 -- modification to the tree is harmless.
2280 Status
: Traverse_Final_Result
;
2283 if Is_List_Member
(N
) then
2284 Set_Condition
(N
, Original_Node
(N
));
2285 Status
:= Check_All_Warnings
(Condition
(N
));
2287 Rewrite
(N
, Original_Node
(N
));
2288 Status
:= Check_All_Warnings
(N
);
2297 end Check_For_Warning
;
2299 -- Start of processing for Remove_Warning_Messages
2302 if Warnings_Detected
/= 0 then
2304 Discard
: Traverse_Final_Result
;
2305 pragma Warnings
(Off
, Discard
);
2308 Discard
:= Check_All_Warnings
(N
);
2311 end Remove_Warning_Messages
;
2313 procedure Remove_Warning_Messages
(L
: List_Id
) is
2316 if Is_Non_Empty_List
(L
) then
2318 while Present
(Stat
) loop
2319 Remove_Warning_Messages
(Stat
);
2323 end Remove_Warning_Messages
;
2325 ----------------------
2326 -- Adjust_Name_Case --
2327 ----------------------
2329 procedure Adjust_Name_Case
(Loc
: Source_Ptr
) is
2331 -- We have an all lower case name from Namet, and now we want to set
2332 -- the appropriate case. If possible we copy the actual casing from
2333 -- the source. If not we use standard identifier casing.
2336 Src_Ind
: constant Source_File_Index
:= Get_Source_File_Index
(Loc
);
2337 Sbuffer
: Source_Buffer_Ptr
;
2339 Src_Ptr
: Source_Ptr
;
2345 -- For standard locations, always use mixed case
2347 if Loc
<= No_Location
then
2348 Set_Casing
(Mixed_Case
);
2351 -- Determine if the reference we are dealing with corresponds to
2352 -- text at the point of the error reference. This will often be
2353 -- the case for simple identifier references, and is the case
2354 -- where we can copy the casing from the source.
2356 Sbuffer
:= Source_Text
(Src_Ind
);
2358 while Ref_Ptr
<= Name_Len
loop
2360 Fold_Lower
(Sbuffer
(Src_Ptr
)) /=
2361 Fold_Lower
(Name_Buffer
(Ref_Ptr
));
2362 Ref_Ptr
:= Ref_Ptr
+ 1;
2363 Src_Ptr
:= Src_Ptr
+ 1;
2366 -- If we get through the loop without a mismatch, then output the
2367 -- name the way it is cased in the source program
2369 if Ref_Ptr
> Name_Len
then
2372 for J
in 1 .. Name_Len
loop
2373 Name_Buffer
(J
) := Sbuffer
(Src_Ptr
);
2374 Src_Ptr
:= Src_Ptr
+ 1;
2377 -- Otherwise set the casing using the default identifier casing
2380 Set_Casing
(Identifier_Casing
(Src_Ind
), Mixed_Case
);
2384 end Adjust_Name_Case
;
2386 ---------------------------
2387 -- Set_Identifier_Casing --
2388 ---------------------------
2390 procedure Set_Identifier_Casing
2391 (Identifier_Name
: System
.Address
;
2392 File_Name
: System
.Address
)
2394 Ident
: constant Big_String_Ptr
:= To_Big_String_Ptr
(Identifier_Name
);
2395 File
: constant Big_String_Ptr
:= To_Big_String_Ptr
(File_Name
);
2398 Desired_Case
: Casing_Type
:= Mixed_Case
;
2399 -- Casing required for result. Default value of Mixed_Case is used if
2400 -- for some reason we cannot find the right file name in the table.
2403 -- Get length of file name
2406 while File
(Flen
+ 1) /= ASCII
.NUL
loop
2410 -- Loop through file names to find matching one. This is a bit slow, but
2411 -- we only do it in error situations so it is not so terrible. Note that
2412 -- if the loop does not exit, then the desired case will be left set to
2413 -- Mixed_Case, this can happen if the name was not in canonical form.
2415 for J
in 1 .. Last_Source_File
loop
2416 Get_Name_String
(Full_Debug_Name
(J
));
2419 and then Name_Buffer
(1 .. Name_Len
) = String (File
(1 .. Flen
))
2421 Desired_Case
:= Identifier_Casing
(J
);
2426 -- Copy identifier as given to Name_Buffer
2428 for J
in Name_Buffer
'Range loop
2429 Name_Buffer
(J
) := Ident
(J
);
2431 if Name_Buffer
(J
) = ASCII
.NUL
then
2437 Set_Casing
(Desired_Case
);
2438 end Set_Identifier_Casing
;
2440 -----------------------
2441 -- Set_Ignore_Errors --
2442 -----------------------
2444 procedure Set_Ignore_Errors
(To
: Boolean) is
2446 Errors_Must_Be_Ignored
:= To
;
2447 end Set_Ignore_Errors
;
2449 ------------------------------
2450 -- Set_Msg_Insertion_Column --
2451 ------------------------------
2453 procedure Set_Msg_Insertion_Column
is
2455 if RM_Column_Check
then
2456 Set_Msg_Str
(" in column ");
2457 Set_Msg_Int
(Int
(Error_Msg_Col
) + 1);
2459 end Set_Msg_Insertion_Column
;
2461 ----------------------------
2462 -- Set_Msg_Insertion_Node --
2463 ----------------------------
2465 procedure Set_Msg_Insertion_Node
is
2470 Error_Msg_Node_1
= Error
2471 or else Error_Msg_Node_1
= Any_Type
;
2473 if Error_Msg_Node_1
= Empty
then
2474 Set_Msg_Blank_Conditional
;
2475 Set_Msg_Str
("<empty>");
2477 elsif Error_Msg_Node_1
= Error
then
2479 Set_Msg_Str
("<error>");
2481 elsif Error_Msg_Node_1
= Standard_Void_Type
then
2483 Set_Msg_Str
("procedure name");
2485 elsif Nkind
(Error_Msg_Node_1
) in N_Entity
2486 and then Ekind
(Error_Msg_Node_1
) = E_Anonymous_Access_Subprogram_Type
2489 Set_Msg_Str
("access to subprogram");
2492 Set_Msg_Blank_Conditional
;
2496 K
:= Nkind
(Error_Msg_Node_1
);
2498 -- If we have operator case, skip quotes since name of operator
2499 -- itself will supply the required quotations. An operator can be an
2500 -- applied use in an expression or an explicit operator symbol, or an
2501 -- identifier whose name indicates it is an operator.
2504 or else K
= N_Operator_Symbol
2505 or else K
= N_Defining_Operator_Symbol
2506 or else ((K
= N_Identifier
or else K
= N_Defining_Identifier
)
2507 and then Is_Operator_Name
(Chars
(Error_Msg_Node_1
)))
2509 Set_Msg_Node
(Error_Msg_Node_1
);
2511 -- Normal case, not an operator, surround with quotes
2515 Set_Qualification
(Error_Msg_Qual_Level
, Error_Msg_Node_1
);
2516 Set_Msg_Node
(Error_Msg_Node_1
);
2521 -- The following assignment ensures that a second ampersand insertion
2522 -- character will correspond to the Error_Msg_Node_2 parameter. We
2523 -- suppress possible validity checks in case operating in -gnatVa mode,
2524 -- and Error_Msg_Node_2 is not needed and has not been set.
2527 pragma Suppress
(Range_Check
);
2529 Error_Msg_Node_1
:= Error_Msg_Node_2
;
2531 end Set_Msg_Insertion_Node
;
2533 --------------------------------------
2534 -- Set_Msg_Insertion_Type_Reference --
2535 --------------------------------------
2537 procedure Set_Msg_Insertion_Type_Reference
(Flag
: Source_Ptr
) is
2543 if Error_Msg_Node_1
= Standard_Void_Type
then
2544 Set_Msg_Str
("package or procedure name");
2547 elsif Error_Msg_Node_1
= Standard_Exception_Type
then
2548 Set_Msg_Str
("exception name");
2551 elsif Error_Msg_Node_1
= Any_Access
2552 or else Error_Msg_Node_1
= Any_Array
2553 or else Error_Msg_Node_1
= Any_Boolean
2554 or else Error_Msg_Node_1
= Any_Character
2555 or else Error_Msg_Node_1
= Any_Composite
2556 or else Error_Msg_Node_1
= Any_Discrete
2557 or else Error_Msg_Node_1
= Any_Fixed
2558 or else Error_Msg_Node_1
= Any_Integer
2559 or else Error_Msg_Node_1
= Any_Modular
2560 or else Error_Msg_Node_1
= Any_Numeric
2561 or else Error_Msg_Node_1
= Any_Real
2562 or else Error_Msg_Node_1
= Any_Scalar
2563 or else Error_Msg_Node_1
= Any_String
2565 Get_Unqualified_Decoded_Name_String
(Chars
(Error_Msg_Node_1
));
2566 Set_Msg_Name_Buffer
;
2569 elsif Error_Msg_Node_1
= Universal_Real
then
2570 Set_Msg_Str
("type universal real");
2573 elsif Error_Msg_Node_1
= Universal_Integer
then
2574 Set_Msg_Str
("type universal integer");
2577 elsif Error_Msg_Node_1
= Universal_Fixed
then
2578 Set_Msg_Str
("type universal fixed");
2582 -- Special case of anonymous array
2584 if Nkind
(Error_Msg_Node_1
) in N_Entity
2585 and then Is_Array_Type
(Error_Msg_Node_1
)
2586 and then Present
(Related_Array_Object
(Error_Msg_Node_1
))
2588 Set_Msg_Str
("type of ");
2589 Set_Msg_Node
(Related_Array_Object
(Error_Msg_Node_1
));
2590 Set_Msg_Str
(" declared");
2591 Set_Msg_Insertion_Line_Number
2592 (Sloc
(Related_Array_Object
(Error_Msg_Node_1
)), Flag
);
2596 -- If we fall through, it is not a special case, so first output
2597 -- the name of the type, preceded by private for a private type
2599 if Is_Private_Type
(Error_Msg_Node_1
) then
2600 Set_Msg_Str
("private type ");
2602 Set_Msg_Str
("type ");
2605 Ent
:= Error_Msg_Node_1
;
2607 if Is_Internal_Name
(Chars
(Ent
)) then
2608 Unwind_Internal_Type
(Ent
);
2611 -- Types in Standard are displayed as "Standard.name"
2613 if Sloc
(Ent
) <= Standard_Location
then
2615 Set_Msg_Str
("Standard.");
2620 -- Types in other language defined units are displayed as
2621 -- "package-name.type-name"
2624 Is_Predefined_File_Name
(Unit_File_Name
(Get_Source_Unit
(Ent
)))
2626 Get_Unqualified_Decoded_Name_String
2627 (Unit_Name
(Get_Source_Unit
(Ent
)));
2628 Name_Len
:= Name_Len
- 2;
2629 Set_Msg_Blank_Conditional
;
2631 Set_Casing
(Mixed_Case
);
2632 Set_Msg_Name_Buffer
;
2634 Set_Casing
(Mixed_Case
);
2639 -- All other types display as "type name" defined at line xxx
2640 -- possibly qualified if qualification is requested.
2644 Set_Qualification
(Error_Msg_Qual_Level
, Ent
);
2648 -- If we did not print a name (e.g. in the case of an anonymous
2649 -- subprogram type), there is no name to print, so remove quotes.
2651 if Buffer_Ends_With
('"') then
2652 Buffer_Remove
('"');
2658 -- If the original type did not come from a predefined file, add the
2659 -- location where the type was defined.
2661 if Sloc
(Error_Msg_Node_1
) > Standard_Location
2663 not Is_Predefined_File_Name
2664 (Unit_File_Name
(Get_Source_Unit
(Error_Msg_Node_1
)))
2666 Set_Msg_Str
(" defined");
2667 Set_Msg_Insertion_Line_Number
(Sloc
(Error_Msg_Node_1
), Flag
);
2669 -- If it did come from a predefined file, deal with the case where
2670 -- this was a file with a generic instantiation from elsewhere.
2673 if Sloc
(Error_Msg_Node_1
) > Standard_Location
then
2675 Iloc
: constant Source_Ptr
:=
2676 Instantiation_Location
(Sloc
(Error_Msg_Node_1
));
2679 if Iloc
/= No_Location
2680 and then not Suppress_Instance_Location
2682 Set_Msg_Str
(" from instance");
2683 Set_Msg_Insertion_Line_Number
(Iloc
, Flag
);
2688 end Set_Msg_Insertion_Type_Reference
;
2690 ---------------------------------
2691 -- Set_Msg_Insertion_Unit_Name --
2692 ---------------------------------
2694 procedure Set_Msg_Insertion_Unit_Name
(Suffix
: Boolean := True) is
2696 if Error_Msg_Unit_1
= No_Unit_Name
then
2699 elsif Error_Msg_Unit_1
= Error_Unit_Name
then
2701 Set_Msg_Str
("<error>");
2704 Get_Unit_Name_String
(Error_Msg_Unit_1
, Suffix
);
2707 Set_Msg_Name_Buffer
;
2711 -- The following assignment ensures that a second percent insertion
2712 -- character will correspond to the Error_Msg_Unit_2 parameter. We
2713 -- suppress possible validity checks in case operating in -gnatVa mode,
2714 -- and Error_Msg_Unit_2 is not needed and has not been set.
2717 pragma Suppress
(Range_Check
);
2719 Error_Msg_Unit_1
:= Error_Msg_Unit_2
;
2721 end Set_Msg_Insertion_Unit_Name
;
2727 procedure Set_Msg_Node
(Node
: Node_Id
) is
2733 case Nkind
(Node
) is
2734 when N_Designator
=>
2735 Set_Msg_Node
(Name
(Node
));
2737 Set_Msg_Node
(Identifier
(Node
));
2740 when N_Defining_Program_Unit_Name
=>
2741 Set_Msg_Node
(Name
(Node
));
2743 Set_Msg_Node
(Defining_Identifier
(Node
));
2746 when N_Selected_Component | N_Expanded_Name
=>
2747 Set_Msg_Node
(Prefix
(Node
));
2749 Set_Msg_Node
(Selector_Name
(Node
));
2756 -- The only remaining possibilities are identifiers, defining
2757 -- identifiers, pragmas, and pragma argument associations.
2759 if Nkind
(Node
) = N_Pragma
then
2760 Nam
:= Pragma_Name
(Node
);
2763 -- The other cases have Chars fields, and we want to test for possible
2764 -- internal names, which generally represent something gone wrong. An
2765 -- exception is the case of internal type names, where we try to find a
2766 -- reasonable external representation for the external name
2768 elsif Is_Internal_Name
(Chars
(Node
))
2770 ((Is_Entity_Name
(Node
)
2771 and then Present
(Entity
(Node
))
2772 and then Is_Type
(Entity
(Node
)))
2774 (Nkind
(Node
) = N_Defining_Identifier
and then Is_Type
(Node
)))
2776 if Nkind
(Node
) = N_Identifier
then
2777 Ent
:= Entity
(Node
);
2784 -- If the type is the designated type of an access_to_subprogram,
2785 -- then there is no name to provide in the call.
2787 if Ekind
(Ent
) = E_Subprogram_Type
then
2790 -- Otherwise, we will be able to find some kind of name to output
2793 Unwind_Internal_Type
(Ent
);
2797 -- If not internal name, just use name in Chars field
2800 Nam
:= Chars
(Node
);
2804 -- At this stage, the name to output is in Nam
2806 Get_Unqualified_Decoded_Name_String
(Nam
);
2808 -- Remove trailing upper case letters from the name (useful for
2809 -- dealing with some cases of internal names).
2811 while Name_Len
> 1 and then Name_Buffer
(Name_Len
) in 'A' .. 'Z' loop
2812 Name_Len
:= Name_Len
- 1;
2815 -- If we have any of the names from standard that start with the
2816 -- characters "any " (e.g. Any_Type), then kill the message since
2817 -- almost certainly it is a junk cascaded message.
2820 and then Name_Buffer
(1 .. 4) = "any "
2822 Kill_Message
:= True;
2825 -- Remaining step is to adjust casing and possibly add 'Class
2827 Adjust_Name_Case
(Loc
);
2828 Set_Msg_Name_Buffer
;
2836 procedure Set_Msg_Text
(Text
: String; Flag
: Source_Ptr
) is
2837 C
: Character; -- Current character
2838 P
: Natural; -- Current index;
2840 procedure Skip_Msg_Insertion_Warning
(C
: Character);
2841 -- Deal with ? ?? ?x? ?X? ?*? ?$? insertion sequences (and the same
2842 -- sequences using < instead of ?). The caller has already bumped
2843 -- the pointer past the initial ? or < and C is set to this initial
2844 -- character (? or <). This procedure skips past the rest of the
2845 -- sequence. We do not need to set Msg_Insertion_Char, since this
2846 -- was already done during the message prescan.
2848 --------------------------------
2849 -- Skip_Msg_Insertion_Warning --
2850 --------------------------------
2852 procedure Skip_Msg_Insertion_Warning
(C
: Character) is
2854 if P
<= Text
'Last and then Text
(P
) = C
then
2857 elsif P
+ 1 <= Text
'Last
2858 and then (Text
(P
) in 'a' .. 'z'
2860 Text
(P
) in 'A' .. 'Z'
2865 and then Text
(P
+ 1) = C
2869 end Skip_Msg_Insertion_Warning
;
2871 -- Start of processing for Set_Msg_Text
2874 Manual_Quote_Mode
:= False;
2876 Flag_Source
:= Get_Source_File_Index
(Flag
);
2878 -- Skip info: at start, we have recorded this in Is_Info_Msg, and this
2879 -- will be used (Info field in error message object) to put back the
2880 -- string when it is printed. We need to do this, or we get confused
2881 -- with instantiation continuations.
2884 and then Text
(Text
'First .. Text
'First + 5) = "info: "
2886 P
:= Text
'First + 6;
2891 -- Loop through characters of message
2893 while P
<= Text
'Last loop
2897 -- Check for insertion character or sequence
2901 if P
<= Text
'Last and then Text
(P
) = '%' then
2903 Set_Msg_Insertion_Name_Literal
;
2905 Set_Msg_Insertion_Name
;
2909 if P
<= Text
'Last and then Text
(P
) = '$' then
2911 Set_Msg_Insertion_Unit_Name
(Suffix
=> False);
2913 Set_Msg_Insertion_Unit_Name
;
2917 Set_Msg_Insertion_File_Name
;
2920 Set_Msg_Insertion_Type_Reference
(Flag
);
2923 Set_Msg_Insertion_Reserved_Name
;
2926 Set_Msg_Insertion_Node
;
2929 Set_Msg_Insertion_Line_Number
(Error_Msg_Sloc
, Flag
);
2932 Continuation
:= True;
2934 if Text
(P
) = '\' then
2935 Continuation_New_Line
:= True;
2940 Set_Msg_Insertion_Column
;
2943 Set_Msg_Insertion_Run_Time_Name
;
2946 Set_Msg_Insertion_Uint
;
2949 Manual_Quote_Mode
:= not Manual_Quote_Mode
;
2953 null; -- already dealt with
2956 Skip_Msg_Insertion_Warning
('?');
2959 Skip_Msg_Insertion_Warning
('<');
2962 null; -- already dealt with
2965 Set_Msg_Char
(Text
(P
));
2969 Set_Msg_Str
(Error_Msg_String
(1 .. Error_Msg_Strlen
));
2971 -- Upper case letter
2975 -- Start of reserved word if two or more
2977 if P
<= Text
'Last and then Text
(P
) in 'A' .. 'Z' then
2979 Set_Msg_Insertion_Reserved_Word
(Text
, P
);
2981 -- Single upper case letter is just inserted
2987 -- '[' (will be/would have been raised at run time)
2990 if Is_Warning_Msg
then
2991 Set_Msg_Str
("will be raised at run time");
2993 Set_Msg_Str
("would have been raised at run time");
2996 -- ']' (may be/might have been raised at run time)
2999 if Is_Warning_Msg
then
3000 Set_Msg_Str
("may be raised at run time");
3002 Set_Msg_Str
("might have been raised at run time");
3005 -- Normal character with no special treatment
3017 procedure Set_Posted
(N
: Node_Id
) is
3021 if Is_Serious_Error
then
3023 -- We always set Error_Posted on the node itself
3025 Set_Error_Posted
(N
);
3027 -- If it is a subexpression, then set Error_Posted on parents up to
3028 -- and including the first non-subexpression construct. This helps
3029 -- avoid cascaded error messages within a single expression.
3035 Set_Error_Posted
(P
);
3036 exit when Nkind
(P
) not in N_Subexpr
;
3039 if Nkind_In
(P
, N_Pragma_Argument_Association
,
3040 N_Component_Association
,
3041 N_Discriminant_Association
,
3042 N_Generic_Association
,
3043 N_Parameter_Association
)
3045 Set_Error_Posted
(Parent
(P
));
3048 -- A special check, if we just posted an error on an attribute
3049 -- definition clause, then also set the entity involved as posted.
3050 -- For example, this stops complaining about the alignment after
3051 -- complaining about the size, which is likely to be useless.
3053 if Nkind
(P
) = N_Attribute_Definition_Clause
then
3054 if Is_Entity_Name
(Name
(P
)) then
3055 Set_Error_Posted
(Entity
(Name
(P
)));
3061 -----------------------
3062 -- Set_Qualification --
3063 -----------------------
3065 procedure Set_Qualification
(N
: Nat
; E
: Entity_Id
) is
3067 if N
/= 0 and then Scope
(E
) /= Standard_Standard
then
3068 Set_Qualification
(N
- 1, Scope
(E
));
3069 Set_Msg_Node
(Scope
(E
));
3072 end Set_Qualification
;
3074 ------------------------
3075 -- Special_Msg_Delete --
3076 ------------------------
3078 -- Is it really right to have all this specialized knowledge in errout?
3080 function Special_Msg_Delete
3082 N
: Node_Or_Entity_Id
;
3083 E
: Node_Or_Entity_Id
) return Boolean
3086 -- Never delete messages in -gnatdO mode
3088 if Debug_Flag_OO
then
3091 -- Processing for "atomic access cannot be guaranteed"
3093 elsif Msg
= "atomic access to & cannot be guaranteed" then
3095 -- When an atomic object refers to a non-atomic type in the same
3096 -- scope, we implicitly make the type atomic. In the non-error case
3097 -- this is surely safe (and in fact prevents an error from occurring
3098 -- if the type is not atomic by default). But if the object cannot be
3099 -- made atomic, then we introduce an extra junk message by this
3100 -- manipulation, which we get rid of here.
3102 -- We identify this case by the fact that it references a type for
3103 -- which Is_Atomic is set, but there is no Atomic pragma setting it.
3106 and then Is_Atomic
(E
)
3107 and then No
(Get_Rep_Pragma
(E
, Name_Atomic
))
3112 -- Processing for "Size too small" messages
3114 elsif Msg
= "size for& too small, minimum allowed is ^" then
3116 -- Suppress "size too small" errors in CodePeer mode, since code may
3117 -- be analyzed in a different configuration than the one used for
3118 -- compilation. Even when the configurations match, this message
3119 -- may be issued on correct code, because pragma Pack is ignored
3120 -- in CodePeer mode.
3122 if CodePeer_Mode
then
3125 -- When a size is wrong for a frozen type there is no explicit size
3126 -- clause, and other errors have occurred, suppress the message,
3127 -- since it is likely that this size error is a cascaded result of
3128 -- other errors. The reason we eliminate unfrozen types is that
3129 -- messages issued before the freeze type are for sure OK.
3132 and then Serious_Errors_Detected
> 0
3133 and then Nkind
(N
) /= N_Component_Clause
3134 and then Nkind
(Parent
(N
)) /= N_Component_Clause
3136 No
(Get_Attribute_Definition_Clause
(E
, Attribute_Size
))
3138 No
(Get_Attribute_Definition_Clause
(E
, Attribute_Object_Size
))
3140 No
(Get_Attribute_Definition_Clause
(E
, Attribute_Value_Size
))
3146 -- All special tests complete, so go ahead with message
3149 end Special_Msg_Delete
;
3155 procedure SPARK_Msg_N
(Msg
: String; N
: Node_Or_Entity_Id
) is
3157 if SPARK_Mode
/= Off
then
3158 Error_Msg_N
(Msg
, N
);
3166 procedure SPARK_Msg_NE
3168 N
: Node_Or_Entity_Id
;
3169 E
: Node_Or_Entity_Id
)
3172 if SPARK_Mode
/= Off
then
3173 Error_Msg_NE
(Msg
, N
, E
);
3177 --------------------------
3178 -- Unwind_Internal_Type --
3179 --------------------------
3181 procedure Unwind_Internal_Type
(Ent
: in out Entity_Id
) is
3182 Derived
: Boolean := False;
3184 Old_Ent
: Entity_Id
;
3187 -- Undo placement of a quote, since we will put it back later
3189 Mchar
:= Msg_Buffer
(Msglen
);
3192 Msglen
:= Msglen
- 1;
3195 -- The loop here deals with recursive types, we are trying to find a
3196 -- related entity that is not an implicit type. Note that the check with
3197 -- Old_Ent stops us from getting "stuck". Also, we don't output the
3198 -- "type derived from" message more than once in the case where we climb
3199 -- up multiple levels.
3204 -- Implicit access type, use directly designated type In Ada 2005,
3205 -- the designated type may be an anonymous access to subprogram, in
3206 -- which case we can only point to its definition.
3208 if Is_Access_Type
(Ent
) then
3209 if Ekind
(Ent
) = E_Access_Subprogram_Type
3210 or else Ekind
(Ent
) = E_Anonymous_Access_Subprogram_Type
3211 or else Is_Access_Protected_Subprogram_Type
(Ent
)
3213 Ent
:= Directly_Designated_Type
(Ent
);
3215 if not Comes_From_Source
(Ent
) then
3216 if Buffer_Ends_With
("type ") then
3217 Buffer_Remove
("type ");
3221 if Ekind
(Ent
) = E_Function
then
3222 Set_Msg_Str
("access to function ");
3223 elsif Ekind
(Ent
) = E_Procedure
then
3224 Set_Msg_Str
("access to procedure ");
3226 Set_Msg_Str
("access to subprogram");
3231 -- Type is access to object, named or anonymous
3234 Set_Msg_Str
("access to ");
3235 Ent
:= Directly_Designated_Type
(Ent
);
3240 elsif Is_Class_Wide_Type
(Ent
) then
3242 Ent
:= Root_Type
(Ent
);
3244 -- Use base type if this is a subtype
3246 elsif Ent
/= Base_Type
(Ent
) then
3247 Buffer_Remove
("type ");
3249 -- Avoid duplication "subtype of subtype of", and also replace
3250 -- "derived from subtype of" simply by "derived from"
3252 if not Buffer_Ends_With
("subtype of ")
3253 and then not Buffer_Ends_With
("derived from ")
3255 Set_Msg_Str
("subtype of ");
3258 Ent
:= Base_Type
(Ent
);
3260 -- If this is a base type with a first named subtype, use the first
3261 -- named subtype instead. This is not quite accurate in all cases,
3262 -- but it makes too much noise to be accurate and add 'Base in all
3263 -- cases. Note that we only do this is the first named subtype is not
3264 -- itself an internal name. This avoids the obvious loop (subtype ->
3265 -- basetype -> subtype) which would otherwise occur).
3269 FST
: constant Entity_Id
:= First_Subtype
(Ent
);
3272 if not Is_Internal_Name
(Chars
(FST
)) then
3276 -- Otherwise use root type
3280 Buffer_Remove
("type ");
3282 -- Test for "subtype of type derived from" which seems
3283 -- excessive and is replaced by "type derived from".
3285 Buffer_Remove
("subtype of");
3287 -- Avoid duplicated "type derived from type derived from"
3289 if not Buffer_Ends_With
("type derived from ") then
3290 Set_Msg_Str
("type derived from ");
3301 -- If we are stuck in a loop, get out and settle for the internal
3302 -- name after all. In this case we set to kill the message if it is
3303 -- not the first error message (we really try hard not to show the
3304 -- dirty laundry of the implementation to the poor user).
3306 if Ent
= Old_Ent
then
3307 Kill_Message
:= True;
3311 -- Get out if we finally found a non-internal name to use
3313 exit Find
when not Is_Internal_Name
(Chars
(Ent
));
3319 end Unwind_Internal_Type
;
3321 --------------------
3322 -- Warn_Insertion --
3323 --------------------
3325 function Warn_Insertion
return String is
3327 case Warning_Msg_Char
is
3330 when 'a' .. 'z' |
'A' .. 'Z' |
'*' |
'$' =>
3331 return '?' & Warning_Msg_Char
& '?';
3335 raise Program_Error
;