1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2010, 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
;
40 with Hostparm
; use Hostparm
;
43 with Nlists
; use Nlists
;
44 with Output
; use Output
;
45 with Scans
; use Scans
;
46 with Sem_Aux
; use Sem_Aux
;
47 with Sinput
; use Sinput
;
48 with Sinfo
; use Sinfo
;
49 with Snames
; use Snames
;
50 with Stand
; use Stand
;
51 with Stylesw
; use Stylesw
;
52 with Uname
; use Uname
;
54 package body Errout
is
56 Errors_Must_Be_Ignored
: Boolean := False;
57 -- Set to True by procedure Set_Ignore_Errors (True), when calls to error
58 -- message procedures should be ignored (when parsing irrelevant text in
59 -- sources being preprocessed).
61 Finalize_Called
: Boolean := False;
62 -- Set True if the Finalize routine has been called
64 Warn_On_Instance
: Boolean;
65 -- Flag set true for warning message to be posted on instance
67 ------------------------------------
68 -- Table of Non-Instance Messages --
69 ------------------------------------
71 -- This table contains an entry for every error message processed by the
72 -- Error_Msg routine that is not posted on generic (or inlined) instance.
73 -- As explained in further detail in the Error_Msg procedure body, this
74 -- table is used to avoid posting redundant messages on instances.
76 type NIM_Record
is record
80 -- Type used to store text and location of one message
82 package Non_Instance_Msgs
is new Table
.Table
(
83 Table_Component_Type
=> NIM_Record
,
84 Table_Index_Type
=> Int
,
87 Table_Increment
=> 100,
88 Table_Name
=> "Non_Instance_Msgs");
90 -----------------------
91 -- Local Subprograms --
92 -----------------------
94 procedure Error_Msg_Internal
99 -- This is the low level routine used to post messages after dealing with
100 -- the issue of messages placed on instantiations (which get broken up
101 -- into separate calls in Error_Msg). Sptr is the location on which the
102 -- flag will be placed in the output. In the case where the flag is on
103 -- the template, this points directly to the template, not to one of the
104 -- instantiation copies of the template. Optr is the original location
105 -- used to flag the error, and this may indeed point to an instantiation
106 -- copy. So typically we can see Optr pointing to the template location
107 -- in an instantiation copy when Sptr points to the source location of
108 -- the actual instantiation (i.e the line with the new). Msg_Cont is
109 -- set true if this is a continuation message.
111 function No_Warnings
(N
: Node_Or_Entity_Id
) return Boolean;
112 -- Determines if warnings should be suppressed for the given node
114 function OK_Node
(N
: Node_Id
) return Boolean;
115 -- Determines if a node is an OK node to place an error message on (return
116 -- True) or if the error message should be suppressed (return False). A
117 -- message is suppressed if the node already has an error posted on it,
118 -- or if it refers to an Etype that has an error posted on it, or if
119 -- it references an Entity that has an error posted on it.
121 procedure Output_Source_Line
122 (L
: Physical_Line_Number
;
123 Sfile
: Source_File_Index
;
125 -- Outputs text of source line L, in file S, together with preceding line
126 -- number, as described above for Output_Line_Number. The Errs parameter
127 -- indicates if there are errors attached to the line, which forces
128 -- listing on, even in the presence of pragma List (Off).
130 procedure Set_Msg_Insertion_Column
;
131 -- Handle column number insertion (@ insertion character)
133 procedure Set_Msg_Insertion_Node
;
134 -- Handle node (name from node) insertion (& insertion character)
136 procedure Set_Msg_Insertion_Type_Reference
(Flag
: Source_Ptr
);
137 -- Handle type reference (right brace insertion character). Flag is the
138 -- location of the flag, which is provided for the internal call to
139 -- Set_Msg_Insertion_Line_Number,
141 procedure Set_Msg_Insertion_Unit_Name
(Suffix
: Boolean := True);
142 -- Handle unit name insertion ($ insertion character). Depending on Boolean
143 -- parameter Suffix, (spec) or (body) is appended after the unit name.
145 procedure Set_Msg_Node
(Node
: Node_Id
);
146 -- Add the sequence of characters for the name associated with the
147 -- given node to the current message.
149 procedure Set_Msg_Text
(Text
: String; Flag
: Source_Ptr
);
150 -- Add a sequence of characters to the current message. The characters may
151 -- be one of the special insertion characters (see documentation in spec).
152 -- Flag is the location at which the error is to be posted, which is used
153 -- to determine whether or not the # insertion needs a file name. The
154 -- variables Msg_Buffer, Msglen, Is_Style_Msg, Is_Warning_Msg, and
155 -- Is_Unconditional_Msg are set on return.
157 procedure Set_Posted
(N
: Node_Id
);
158 -- Sets the Error_Posted flag on the given node, and all its parents
159 -- that are subexpressions and then on the parent non-subexpression
160 -- construct that contains the original expression (this reduces the
161 -- number of cascaded messages). Note that this call only has an effect
162 -- for a serious error. For a non-serious error, it has no effect.
164 procedure Set_Qualification
(N
: Nat
; E
: Entity_Id
);
165 -- Outputs up to N levels of qualification for the given entity. For
166 -- example, the entity A.B.C.D will output B.C. if N = 2.
168 function Special_Msg_Delete
170 N
: Node_Or_Entity_Id
;
171 E
: Node_Or_Entity_Id
) return Boolean;
172 -- This function is called from Error_Msg_NEL, passing the message Msg,
173 -- node N on which the error is to be posted, and the entity or node E
174 -- to be used for an & insertion in the message if any. The job of this
175 -- procedure is to test for certain cascaded messages that we would like
176 -- to suppress. If the message is to be suppressed then we return True.
177 -- If the message should be generated (the normal case) False is returned.
179 procedure Unwind_Internal_Type
(Ent
: in out Entity_Id
);
180 -- This procedure is given an entity id for an internal type, i.e. a type
181 -- with an internal name. It unwinds the type to try to get to something
182 -- reasonably printable, generating prefixes like "subtype of", "access
183 -- to", etc along the way in the buffer. The value in Ent on return is the
184 -- final name to be printed. Hopefully this is not an internal name, but in
185 -- some internal name cases, it is an internal name, and has to be printed
186 -- anyway (although in this case the message has been killed if possible).
187 -- The global variable Class_Flag is set to True if the resulting entity
188 -- should have 'Class appended to its name (see Add_Class procedure), and
189 -- is otherwise unchanged.
191 procedure VMS_Convert
;
192 -- This procedure has no effect if called when the host is not OpenVMS. If
193 -- the host is indeed OpenVMS, then the error message stored in Msg_Buffer
194 -- is scanned for appearances of switch names which need converting to
195 -- corresponding VMS qualifier names. See Gnames/Vnames table in Errout
196 -- spec for precise definition of the conversion that is performed by this
197 -- routine in OpenVMS mode.
199 -----------------------
200 -- Change_Error_Text --
201 -----------------------
203 procedure Change_Error_Text
(Error_Id
: Error_Msg_Id
; New_Msg
: String) is
204 Save_Next
: Error_Msg_Id
;
205 Err_Id
: Error_Msg_Id
:= Error_Id
;
208 Set_Msg_Text
(New_Msg
, Errors
.Table
(Error_Id
).Sptr
);
209 Errors
.Table
(Error_Id
).Text
:= new String'(Msg_Buffer (1 .. Msglen));
211 -- If in immediate error message mode, output modified error message now
212 -- This is just a bit tricky, because we want to output just a single
213 -- message, and the messages we modified is already linked in. We solve
214 -- this by temporarily resetting its forward pointer to empty.
216 if Debug_Flag_OO then
217 Save_Next := Errors.Table (Error_Id).Next;
218 Errors.Table (Error_Id).Next := No_Error_Msg;
221 (Errors.Table (Error_Id).Line, Errors.Table (Error_Id).Sfile, True);
222 Output_Error_Msgs (Err_Id);
223 Errors.Table (Error_Id).Next := Save_Next;
225 end Change_Error_Text;
227 ------------------------
228 -- Compilation_Errors --
229 ------------------------
231 function Compilation_Errors return Boolean is
233 if not Finalize_Called then
236 return Erroutc.Compilation_Errors;
238 end Compilation_Errors;
244 -- Error_Msg posts a flag at the given location, except that if the
245 -- Flag_Location points within a generic template and corresponds to an
246 -- instantiation of this generic template, then the actual message will be
247 -- posted on the generic instantiation, along with additional messages
248 -- referencing the generic declaration.
250 procedure Error_Msg (Msg : String; Flag_Location : Source_Ptr) is
251 Sindex : Source_File_Index;
252 -- Source index for flag location
254 Orig_Loc : Source_Ptr;
255 -- Original location of Flag_Location (i.e. location in original
256 -- template in instantiation case, otherwise unchanged).
259 -- It is a fatal error to issue an error message when scanning from the
260 -- internal source buffer (see Sinput for further documentation)
262 pragma Assert (Sinput.Source /= Internal_Source_Ptr);
264 -- Return if all errors are to be ignored
266 if Errors_Must_Be_Ignored then
270 -- If we already have messages, and we are trying to place a message at
271 -- No_Location or in package Standard, then just ignore the attempt
272 -- since we assume that what is happening is some cascaded junk. Note
273 -- that this is safe in the sense that proceeding will surely bomb.
275 if Flag_Location < First_Source_Ptr
276 and then Total_Errors_Detected > 0
281 -- Start of processing for new message
283 Sindex := Get_Source_File_Index (Flag_Location);
284 Test_Style_Warning_Serious_Msg (Msg);
285 Orig_Loc := Original_Location (Flag_Location);
287 -- If the current location is in an instantiation, the issue arises of
288 -- whether to post the message on the template or the instantiation.
290 -- The way we decide is to see if we have posted the same message on
291 -- the template when we compiled the template (the template is always
292 -- compiled before any instantiations). For this purpose, we use a
293 -- separate table of messages. The reason we do this is twofold:
295 -- First, the messages can get changed by various processing
296 -- including the insertion of tokens etc, making it hard to
297 -- do the comparison.
299 -- Second, we will suppress a warning on a template if it is not in
300 -- the current extended source unit. That's reasonable and means we
301 -- don't want the warning on the instantiation here either, but it
302 -- does mean that the main error table would not in any case include
305 if Flag_Location = Orig_Loc then
306 Non_Instance_Msgs.Append ((new String'(Msg
), Flag_Location
));
307 Warn_On_Instance
:= False;
309 -- Here we have an instance message
312 -- Delete if debug flag off, and this message duplicates a message
313 -- already posted on the corresponding template
315 if not Debug_Flag_GG
then
316 for J
in Non_Instance_Msgs
.First
.. Non_Instance_Msgs
.Last
loop
317 if Msg
= Non_Instance_Msgs
.Table
(J
).Msg
.all
318 and then Non_Instance_Msgs
.Table
(J
).Loc
= Orig_Loc
325 -- No duplicate, so error/warning will be posted on instance
327 Warn_On_Instance
:= Is_Warning_Msg
;
330 -- Ignore warning message that is suppressed for this location. Note
331 -- that style checks are not considered warning messages for this
334 if Is_Warning_Msg
and then Warnings_Suppressed
(Orig_Loc
) then
337 -- For style messages, check too many messages so far
340 and then Maximum_Messages
/= 0
341 and then Warnings_Detected
>= Maximum_Messages
346 -- The idea at this stage is that we have two kinds of messages
348 -- First, we have those messages that are to be placed as requested at
349 -- Flag_Location. This includes messages that have nothing to do with
350 -- generics, and also messages placed on generic templates that reflect
351 -- an error in the template itself. For such messages we simply call
352 -- Error_Msg_Internal to place the message in the requested location.
354 if Instantiation
(Sindex
) = No_Location
then
355 Error_Msg_Internal
(Msg
, Flag_Location
, Flag_Location
, False);
359 -- If we are trying to flag an error in an instantiation, we may have
360 -- a generic contract violation. What we generate in this case is:
362 -- instantiation error at ...
363 -- original error message
367 -- warning: in instantiation at
368 -- warning: original warning message
370 -- All these messages are posted at the location of the top level
371 -- instantiation. If there are nested instantiations, then the
372 -- instantiation error message can be repeated, pointing to each
373 -- of the relevant instantiations.
375 -- Note: the instantiation mechanism is also shared for inlining of
376 -- subprogram bodies when front end inlining is done. In this case the
377 -- messages have the form:
379 -- in inlined body at ...
380 -- original error message
384 -- warning: in inlined body at
385 -- warning: original warning message
387 -- OK, here we have an instantiation error, and we need to generate the
388 -- error on the instantiation, rather than on the template.
391 Actual_Error_Loc
: Source_Ptr
;
392 -- Location of outer level instantiation in instantiation case, or
393 -- just a copy of Flag_Location in the normal case. This is the
394 -- location where all error messages will actually be posted.
396 Save_Error_Msg_Sloc
: constant Source_Ptr
:= Error_Msg_Sloc
;
397 -- Save possible location set for caller's message. We need to use
398 -- Error_Msg_Sloc for the location of the instantiation error but we
399 -- have to preserve a possible original value.
401 X
: Source_File_Index
;
403 Msg_Cont_Status
: Boolean;
404 -- Used to label continuation lines in instantiation case with
405 -- proper Msg_Cont status.
408 -- Loop to find highest level instantiation, where all error
409 -- messages will be placed.
413 Actual_Error_Loc
:= Instantiation
(X
);
414 X
:= Get_Source_File_Index
(Actual_Error_Loc
);
415 exit when Instantiation
(X
) = No_Location
;
418 -- Since we are generating the messages at the instantiation point in
419 -- any case, we do not want the references to the bad lines in the
420 -- instance to be annotated with the location of the instantiation.
422 Suppress_Instance_Location
:= True;
423 Msg_Cont_Status
:= False;
425 -- Loop to generate instantiation messages
427 Error_Msg_Sloc
:= Flag_Location
;
428 X
:= Get_Source_File_Index
(Flag_Location
);
429 while Instantiation
(X
) /= No_Location
loop
431 -- Suppress instantiation message on continuation lines
433 if Msg
(Msg
'First) /= '\' then
435 -- Case of inlined body
437 if Inlined_Body
(X
) then
438 if Is_Warning_Msg
or else Is_Style_Msg
then
440 ("?in inlined body #",
441 Actual_Error_Loc
, Flag_Location
, Msg_Cont_Status
);
445 ("error in inlined body #",
446 Actual_Error_Loc
, Flag_Location
, Msg_Cont_Status
);
449 -- Case of generic instantiation
452 if Is_Warning_Msg
or else Is_Style_Msg
then
454 ("?in instantiation #",
455 Actual_Error_Loc
, Flag_Location
, Msg_Cont_Status
);
459 ("instantiation error #",
460 Actual_Error_Loc
, Flag_Location
, Msg_Cont_Status
);
465 Error_Msg_Sloc
:= Instantiation
(X
);
466 X
:= Get_Source_File_Index
(Error_Msg_Sloc
);
467 Msg_Cont_Status
:= True;
470 Suppress_Instance_Location
:= False;
471 Error_Msg_Sloc
:= Save_Error_Msg_Sloc
;
473 -- Here we output the original message on the outer instantiation
476 (Msg
, Actual_Error_Loc
, Flag_Location
, Msg_Cont_Status
);
484 procedure Error_Msg_AP
(Msg
: String) is
489 -- If we had saved the Scan_Ptr value after scanning the previous
490 -- token, then we would have exactly the right place for putting
491 -- the flag immediately at hand. However, that would add at least
492 -- two instructions to a Scan call *just* to service the possibility
493 -- of an Error_Msg_AP call. So instead we reconstruct that value.
495 -- We have two possibilities, start with Prev_Token_Ptr and skip over
496 -- the current token, which is made harder by the possibility that this
497 -- token may be in error, or start with Token_Ptr and work backwards.
498 -- We used to take the second approach, but it's hard because of
499 -- comments, and harder still because things that look like comments
500 -- can appear inside strings. So now we take the first approach.
502 -- Note: in the case where there is no previous token, Prev_Token_Ptr
503 -- is set to Source_First, which is a reasonable position for the
504 -- error flag in this situation.
506 S1
:= Prev_Token_Ptr
;
509 -- If the previous token is a string literal, we need a special approach
510 -- since there may be white space inside the literal and we don't want
511 -- to stop on that white space.
513 -- Note: since this is an error recovery issue anyway, it is not worth
514 -- worrying about special UTF_32 line terminator characters here.
516 if Prev_Token
= Tok_String_Literal
then
520 if Source
(S1
) = C
then
522 exit when Source
(S1
) /= C
;
523 elsif Source
(S1
) in Line_Terminator
then
528 -- Character literal also needs special handling
530 elsif Prev_Token
= Tok_Char_Literal
then
533 -- Otherwise we search forward for the end of the current token, marked
534 -- by a line terminator, white space, a comment symbol or if we bump
535 -- into the following token (i.e. the current token).
537 -- Again, it is not worth worrying about UTF_32 special line terminator
538 -- characters in this context, since this is only for error recovery.
541 while Source
(S1
) not in Line_Terminator
542 and then Source
(S1
) /= ' '
543 and then Source
(S1
) /= ASCII
.HT
544 and then (Source
(S1
) /= '-' or else Source
(S1
+ 1) /= '-')
545 and then S1
/= Token_Ptr
551 -- S1 is now set to the location for the flag
560 procedure Error_Msg_BC
(Msg
: String) is
562 -- If we are at end of file, post the flag after the previous token
564 if Token
= Tok_EOF
then
567 -- If we are at start of file, post the flag at the current token
569 elsif Token_Ptr
= Source_First
(Current_Source_File
) then
572 -- If the character before the current token is a space or a horizontal
573 -- tab, then we place the flag on this character (in the case of a tab
574 -- we would really like to place it in the "last" character of the tab
575 -- space, but that it too much trouble to worry about).
577 elsif Source
(Token_Ptr
- 1) = ' '
578 or else Source
(Token_Ptr
- 1) = ASCII
.HT
580 Error_Msg
(Msg
, Token_Ptr
- 1);
582 -- If there is no space or tab before the current token, then there is
583 -- no room to place the flag before the token, so we place it on the
584 -- token instead (this happens for example at the start of a line).
587 Error_Msg
(Msg
, Token_Ptr
);
595 procedure Error_Msg_CRT
(Feature
: String; N
: Node_Id
) is
596 CNRT
: constant String := " not allowed in no run time mode";
597 CCRT
: constant String := " not supported by configuration>";
599 S
: String (1 .. Feature
'Length + 1 + CCRT
'Length);
604 S
(2 .. Feature
'Length + 1) := Feature
;
605 L
:= Feature
'Length + 2;
607 if No_Run_Time_Mode
then
608 S
(L
.. L
+ CNRT
'Length - 1) := CNRT
;
609 L
:= L
+ CNRT
'Length - 1;
611 else pragma Assert
(Configurable_Run_Time_Mode
);
612 S
(L
.. L
+ CCRT
'Length - 1) := CCRT
;
613 L
:= L
+ CCRT
'Length - 1;
616 Error_Msg_N
(S
(1 .. L
), N
);
617 Configurable_Run_Time_Violations
:= Configurable_Run_Time_Violations
+ 1;
624 procedure Error_Msg_F
(Msg
: String; N
: Node_Id
) is
626 Error_Msg_NEL
(Msg
, N
, N
, Sloc
(First_Node
(N
)));
633 procedure Error_Msg_FE
636 E
: Node_Or_Entity_Id
)
639 Error_Msg_NEL
(Msg
, N
, E
, Sloc
(First_Node
(N
)));
642 ------------------------
643 -- Error_Msg_Internal --
644 ------------------------
646 procedure Error_Msg_Internal
652 Next_Msg
: Error_Msg_Id
;
653 -- Pointer to next message at insertion point
655 Prev_Msg
: Error_Msg_Id
;
656 -- Pointer to previous message at insertion point
658 Temp_Msg
: Error_Msg_Id
;
660 procedure Handle_Serious_Error
;
661 -- Internal procedure to do all error message handling for a serious
662 -- error message, other than bumping the error counts and arranging
663 -- for the message to be output.
665 --------------------------
666 -- Handle_Serious_Error --
667 --------------------------
669 procedure Handle_Serious_Error
is
671 -- Turn off code generation if not done already
673 if Operating_Mode
= Generate_Code
then
674 Operating_Mode
:= Check_Semantics
;
675 Expander_Active
:= False;
678 -- Set the fatal error flag in the unit table unless we are in
679 -- Try_Semantics mode. This stops the semantics from being performed
680 -- if we find a serious error. This is skipped if we are currently
681 -- dealing with the configuration pragma file.
683 if not Try_Semantics
and then Current_Source_Unit
/= No_Unit
then
684 Set_Fatal_Error
(Get_Source_Unit
(Sptr
));
686 end Handle_Serious_Error
;
688 -- Start of processing for Error_Msg_Internal
691 if Raise_Exception_On_Error
/= 0 then
692 raise Error_Msg_Exception
;
695 Continuation
:= Msg_Cont
;
696 Continuation_New_Line
:= False;
697 Suppress_Message
:= False;
698 Kill_Message
:= False;
699 Set_Msg_Text
(Msg
, Sptr
);
701 -- Kill continuation if parent message killed
703 if Continuation
and Last_Killed
then
707 -- Return without doing anything if message is suppressed
710 and then not All_Errors_Mode
711 and then not Is_Warning_Msg
712 and then Msg
(Msg
'Last) /= '!'
714 if not Continuation
then
721 -- Return without doing anything if message is killed and this is not
722 -- the first error message. The philosophy is that if we get a weird
723 -- error message and we already have had a message, then we hope the
724 -- weird message is a junk cascaded message
727 and then not All_Errors_Mode
728 and then Total_Errors_Detected
/= 0
730 if not Continuation
then
737 -- Special check for warning message to see if it should be output
739 if Is_Warning_Msg
then
741 -- Immediate return if warning message and warnings are suppressed
743 if Warnings_Suppressed
(Optr
) or else Warnings_Suppressed
(Sptr
) then
744 Cur_Msg
:= No_Error_Msg
;
748 -- If the flag location is in the main extended source unit then for
749 -- sure we want the warning since it definitely belongs
751 if In_Extended_Main_Source_Unit
(Sptr
) then
754 -- If the flag location is not in the main extended source unit, then
755 -- we want to eliminate the warning, unless it is in the extended
756 -- main code unit and we want warnings on the instance.
758 elsif In_Extended_Main_Code_Unit
(Sptr
) and then Warn_On_Instance
then
761 -- Keep warning if debug flag G set
763 elsif Debug_Flag_GG
then
766 -- Keep warning if message text ends in !!
768 elsif Msg
(Msg
'Last) = '!' and then Msg
(Msg
'Last - 1) = '!' then
771 -- Here is where we delete a warning from a with'ed unit
774 Cur_Msg
:= No_Error_Msg
;
776 if not Continuation
then
784 -- If message is to be ignored in special ignore message mode, this is
785 -- where we do this special processing, bypassing message output.
787 if Ignore_Errors_Enable
> 0 then
788 if Is_Serious_Error
then
789 Handle_Serious_Error
;
795 -- If error message line length set, and this is a continuation message
796 -- then all we do is to append the text to the text of the last message
797 -- with a comma space separator (eliminating a possible (style) or
800 if Error_Msg_Line_Length
/= 0
801 and then Continuation
803 Cur_Msg
:= Errors
.Last
;
806 Oldm
: String_Ptr
:= Errors
.Table
(Cur_Msg
).Text
;
807 Newm
: String (1 .. Oldm
'Last + 2 + Msglen
);
812 -- First copy old message to new one and free it
814 Newm
(Oldm
'Range) := Oldm
.all;
818 -- Remove (style) or info: at start of message
820 if Msglen
> 8 and then Msg_Buffer
(1 .. 8) = "(style) " then
823 elsif Msglen
> 6 and then Msg_Buffer
(1 .. 6) = "info: " then
830 -- Now deal with separation between messages. Normally this is
831 -- simply comma space, but there are some special cases.
833 -- If continuation new line, then put actual NL character in msg
835 if Continuation_New_Line
then
837 Newm
(Newl
) := ASCII
.LF
;
839 -- If continuation message is enclosed in parentheses, then
840 -- special treatment (don't need a comma, and we want to combine
841 -- successive parenthetical remarks into a single one with
842 -- separating commas).
844 elsif Msg_Buffer
(M
) = '(' and then Msg_Buffer
(Msglen
) = ')' then
846 -- Case where existing message ends in right paren, remove
847 -- and separate parenthetical remarks with a comma.
849 if Newm
(Newl
) = ')' then
851 Msg_Buffer
(M
) := ' ';
853 -- Case where we are adding new parenthetical comment
860 -- Case where continuation not in parens and no new line
863 Newm
(Newl
+ 1 .. Newl
+ 2) := ", ";
867 -- Append new message
869 Newm
(Newl
+ 1 .. Newl
+ Msglen
- M
+ 1) :=
870 Msg_Buffer
(M
.. Msglen
);
871 Newl
:= Newl
+ Msglen
- M
+ 1;
872 Errors
.Table
(Cur_Msg
).Text
:= new String'(Newm (1 .. Newl));
878 -- Otherwise build error message object for new message
881 ((Text => new String'(Msg_Buffer
(1 .. Msglen
)),
882 Next
=> No_Error_Msg
,
883 Prev
=> No_Error_Msg
,
886 Sfile
=> Get_Source_File_Index
(Sptr
),
887 Line
=> Get_Physical_Line_Number
(Sptr
),
888 Col
=> Get_Column_Number
(Sptr
),
889 Warn
=> Is_Warning_Msg
,
890 Style
=> Is_Style_Msg
,
891 Serious
=> Is_Serious_Error
,
892 Uncond
=> Is_Unconditional_Msg
,
893 Msg_Cont
=> Continuation
,
895 Cur_Msg
:= Errors
.Last
;
897 -- If immediate errors mode set, output error message now. Also output
898 -- now if the -d1 debug flag is set (so node number message comes out
899 -- just before actual error message)
901 if Debug_Flag_OO
or else Debug_Flag_1
then
904 (Errors
.Table
(Cur_Msg
).Line
, Errors
.Table
(Cur_Msg
).Sfile
, True);
906 Output_Error_Msgs
(Temp_Msg
);
908 -- If not in immediate errors mode, then we insert the message in the
909 -- error chain for later output by Finalize. The messages are sorted
910 -- first by unit (main unit comes first), and within a unit by source
911 -- location (earlier flag location first in the chain).
914 -- First a quick check, does this belong at the very end of the chain
915 -- of error messages. This saves a lot of time in the normal case if
916 -- there are lots of messages.
918 if Last_Error_Msg
/= No_Error_Msg
919 and then Errors
.Table
(Cur_Msg
).Sfile
=
920 Errors
.Table
(Last_Error_Msg
).Sfile
921 and then (Sptr
> Errors
.Table
(Last_Error_Msg
).Sptr
923 (Sptr
= Errors
.Table
(Last_Error_Msg
).Sptr
925 Optr
> Errors
.Table
(Last_Error_Msg
).Optr
))
927 Prev_Msg
:= Last_Error_Msg
;
928 Next_Msg
:= No_Error_Msg
;
930 -- Otherwise do a full sequential search for the insertion point
933 Prev_Msg
:= No_Error_Msg
;
934 Next_Msg
:= First_Error_Msg
;
935 while Next_Msg
/= No_Error_Msg
loop
937 Errors
.Table
(Cur_Msg
).Sfile
< Errors
.Table
(Next_Msg
).Sfile
;
939 if Errors
.Table
(Cur_Msg
).Sfile
=
940 Errors
.Table
(Next_Msg
).Sfile
942 exit when Sptr
< Errors
.Table
(Next_Msg
).Sptr
944 (Sptr
= Errors
.Table
(Next_Msg
).Sptr
946 Optr
< Errors
.Table
(Next_Msg
).Optr
);
949 Prev_Msg
:= Next_Msg
;
950 Next_Msg
:= Errors
.Table
(Next_Msg
).Next
;
954 -- Now we insert the new message in the error chain. The insertion
955 -- point for the message is after Prev_Msg and before Next_Msg.
957 -- The possible insertion point for the new message is after Prev_Msg
958 -- and before Next_Msg. However, this is where we do a special check
959 -- for redundant parsing messages, defined as messages posted on the
960 -- same line. The idea here is that probably such messages are junk
961 -- from the parser recovering. In full errors mode, we don't do this
962 -- deletion, but otherwise such messages are discarded at this stage.
964 if Prev_Msg
/= No_Error_Msg
965 and then Errors
.Table
(Prev_Msg
).Line
=
966 Errors
.Table
(Cur_Msg
).Line
967 and then Errors
.Table
(Prev_Msg
).Sfile
=
968 Errors
.Table
(Cur_Msg
).Sfile
969 and then Compiler_State
= Parsing
970 and then not All_Errors_Mode
972 -- Don't delete unconditional messages and at this stage, don't
973 -- delete continuation lines (we attempted to delete those earlier
974 -- if the parent message was deleted.
976 if not Errors
.Table
(Cur_Msg
).Uncond
977 and then not Continuation
979 -- Don't delete if prev msg is warning and new msg is an error.
980 -- This is because we don't want a real error masked by a
981 -- warning. In all other cases (that is parse errors for the
982 -- same line that are not unconditional) we do delete the
983 -- message. This helps to avoid junk extra messages from
984 -- cascaded parsing errors
986 if not (Errors
.Table
(Prev_Msg
).Warn
988 Errors
.Table
(Prev_Msg
).Style
)
990 (Errors
.Table
(Cur_Msg
).Warn
992 Errors
.Table
(Cur_Msg
).Style
)
994 -- All tests passed, delete the message by simply returning
995 -- without any further processing.
997 if not Continuation
then
1006 -- Come here if message is to be inserted in the error chain
1008 if not Continuation
then
1009 Last_Killed
:= False;
1012 if Prev_Msg
= No_Error_Msg
then
1013 First_Error_Msg
:= Cur_Msg
;
1015 Errors
.Table
(Prev_Msg
).Next
:= Cur_Msg
;
1018 Errors
.Table
(Cur_Msg
).Next
:= Next_Msg
;
1020 if Next_Msg
= No_Error_Msg
then
1021 Last_Error_Msg
:= Cur_Msg
;
1025 -- Bump appropriate statistics count
1027 if Errors
.Table
(Cur_Msg
).Warn
or else Errors
.Table
(Cur_Msg
).Style
then
1028 Warnings_Detected
:= Warnings_Detected
+ 1;
1031 Total_Errors_Detected
:= Total_Errors_Detected
+ 1;
1033 if Errors
.Table
(Cur_Msg
).Serious
then
1034 Serious_Errors_Detected
:= Serious_Errors_Detected
+ 1;
1035 Handle_Serious_Error
;
1039 -- If too many warnings turn off warnings
1041 if Maximum_Messages
/= 0 then
1042 if Warnings_Detected
= Maximum_Messages
then
1043 Warning_Mode
:= Suppress
;
1046 -- If too many errors abandon compilation
1048 if Total_Errors_Detected
= Maximum_Messages
then
1049 raise Unrecoverable_Error
;
1052 end Error_Msg_Internal
;
1058 procedure Error_Msg_N
(Msg
: String; N
: Node_Or_Entity_Id
) is
1060 Error_Msg_NEL
(Msg
, N
, N
, Sloc
(N
));
1067 procedure Error_Msg_NE
1069 N
: Node_Or_Entity_Id
;
1070 E
: Node_Or_Entity_Id
)
1073 Error_Msg_NEL
(Msg
, N
, E
, Sloc
(N
));
1080 procedure Error_Msg_NEL
1082 N
: Node_Or_Entity_Id
;
1083 E
: Node_Or_Entity_Id
;
1084 Flag_Location
: Source_Ptr
)
1087 if Special_Msg_Delete
(Msg
, N
, E
) then
1091 Test_Style_Warning_Serious_Msg
(Msg
);
1093 -- Special handling for warning messages
1095 if Is_Warning_Msg
then
1097 -- Suppress if no warnings set for either entity or node
1099 if No_Warnings
(N
) or else No_Warnings
(E
) then
1101 -- Disable any continuation messages as well
1103 Last_Killed
:= True;
1107 -- Suppress if inside loop that is known to be null or is probably
1108 -- null (case where loop executes only if invalid values present).
1109 -- In either case warnings in the loop are likely to be junk.
1116 while Present
(P
) loop
1117 if Nkind
(P
) = N_Loop_Statement
1118 and then Suppress_Loop_Warnings
(P
)
1128 -- Test for message to be output
1131 or else Msg
(Msg
'Last) = '!'
1132 or else Is_Warning_Msg
1134 or else (Msg
(Msg
'First) = '\' and then not Last_Killed
)
1137 Error_Msg_Node_1
:= E
;
1138 Error_Msg
(Msg
, Flag_Location
);
1141 Last_Killed
:= True;
1144 if not (Is_Warning_Msg
or Is_Style_Msg
) then
1153 procedure Error_Msg_NW
1156 N
: Node_Or_Entity_Id
)
1160 and then In_Extended_Main_Source_Unit
(N
)
1161 and then Comes_From_Source
(N
)
1163 Error_Msg_NEL
(Msg
, N
, N
, Sloc
(N
));
1171 procedure Error_Msg_S
(Msg
: String) is
1173 Error_Msg
(Msg
, Scan_Ptr
);
1180 procedure Error_Msg_SC
(Msg
: String) is
1182 -- If we are at end of file, post the flag after the previous token
1184 if Token
= Tok_EOF
then
1187 -- For all other cases the message is posted at the current token
1191 Error_Msg
(Msg
, Token_Ptr
);
1199 procedure Error_Msg_SP
(Msg
: String) is
1201 -- Note: in the case where there is no previous token, Prev_Token_Ptr
1202 -- is set to Source_First, which is a reasonable position for the
1203 -- error flag in this situation
1205 Error_Msg
(Msg
, Prev_Token_Ptr
);
1212 procedure Finalize
(Last_Call
: Boolean) is
1217 procedure Delete_Warning
(E
: Error_Msg_Id
);
1218 -- Delete a message if not already deleted and adjust warning count
1220 --------------------
1221 -- Delete_Warning --
1222 --------------------
1224 procedure Delete_Warning
(E
: Error_Msg_Id
) is
1226 if not Errors
.Table
(E
).Deleted
then
1227 Errors
.Table
(E
).Deleted
:= True;
1228 Warnings_Detected
:= Warnings_Detected
- 1;
1232 -- Start of message for Finalize
1235 -- Set Prev pointers
1237 Cur
:= First_Error_Msg
;
1238 while Cur
/= No_Error_Msg
loop
1239 Nxt
:= Errors
.Table
(Cur
).Next
;
1240 exit when Nxt
= No_Error_Msg
;
1241 Errors
.Table
(Nxt
).Prev
:= Cur
;
1245 -- Eliminate any duplicated error messages from the list. This is
1246 -- done after the fact to avoid problems with Change_Error_Text.
1248 Cur
:= First_Error_Msg
;
1249 while Cur
/= No_Error_Msg
loop
1250 Nxt
:= Errors
.Table
(Cur
).Next
;
1253 while F
/= No_Error_Msg
1254 and then Errors
.Table
(F
).Sptr
= Errors
.Table
(Cur
).Sptr
1256 Check_Duplicate_Message
(Cur
, F
);
1257 F
:= Errors
.Table
(F
).Next
;
1263 -- Mark any messages suppressed by specific warnings as Deleted
1265 Cur
:= First_Error_Msg
;
1266 while Cur
/= No_Error_Msg
loop
1267 if not Errors
.Table
(Cur
).Deleted
1268 and then Warning_Specifically_Suppressed
1269 (Errors
.Table
(Cur
).Sptr
, Errors
.Table
(Cur
).Text
)
1271 Delete_Warning
(Cur
);
1273 -- If this is a continuation, delete previous messages
1276 while Errors
.Table
(F
).Msg_Cont
loop
1277 F
:= Errors
.Table
(F
).Prev
;
1281 -- Delete any following continuations
1285 F
:= Errors
.Table
(F
).Next
;
1286 exit when F
= No_Error_Msg
;
1287 exit when not Errors
.Table
(F
).Msg_Cont
;
1292 Cur
:= Errors
.Table
(Cur
).Next
;
1295 Finalize_Called
:= True;
1297 -- Check consistency of specific warnings (may add warnings). We only
1298 -- do this on the last call, after all possible warnings are posted.
1301 Validate_Specific_Warnings
(Error_Msg
'Access);
1309 function First_Node
(C
: Node_Id
) return Node_Id
is
1310 L
: constant Source_Ptr
:= Sloc
(Original_Node
(C
));
1311 Sfile
: constant Source_File_Index
:= Get_Source_File_Index
(L
);
1315 function Test_Earlier
(N
: Node_Id
) return Traverse_Result
;
1316 -- Function applied to every node in the construct
1318 procedure Search_Tree_First
is new Traverse_Proc
(Test_Earlier
);
1319 -- Create traversal procedure
1325 function Test_Earlier
(N
: Node_Id
) return Traverse_Result
is
1326 Loc
: constant Source_Ptr
:= Sloc
(Original_Node
(N
));
1329 -- Check for earlier. The tests for being in the same file ensures
1330 -- against strange cases of foreign code somehow being present. We
1331 -- don't want wild placement of messages if that happens, so it is
1332 -- best to just ignore this situation.
1335 and then Get_Source_File_Index
(Loc
) = Sfile
1337 Earliest
:= Original_Node
(N
);
1344 -- Start of processing for First_Node
1347 Earliest
:= Original_Node
(C
);
1348 Eloc
:= Sloc
(Earliest
);
1349 Search_Tree_First
(Original_Node
(C
));
1357 function First_Sloc
(N
: Node_Id
) return Source_Ptr
is
1358 SI
: constant Source_File_Index
:= Source_Index
(Get_Source_Unit
(N
));
1359 SF
: constant Source_Ptr
:= Source_First
(SI
);
1364 F
:= First_Node
(N
);
1367 -- The following circuit is a bit subtle. When we have parenthesized
1368 -- expressions, then the Sloc will not record the location of the paren,
1369 -- but we would like to post the flag on the paren. So what we do is to
1370 -- crawl up the tree from the First_Node, adjusting the Sloc value for
1371 -- any parentheses we know are present. Yes, we know this circuit is not
1372 -- 100% reliable (e.g. because we don't record all possible paren level
1373 -- values), but this is only for an error message so it is good enough.
1376 Paren_Loop
: for J
in 1 .. Paren_Count
(F
) loop
1378 -- We don't look more than 12 characters behind the current
1379 -- location, and in any case not past the front of the source.
1381 Search_Loop
: for K
in 1 .. 12 loop
1382 exit Search_Loop
when S
= SF
;
1384 if Source_Text
(SI
) (S
- 1) = '(' then
1388 elsif Source_Text
(SI
) (S
- 1) <= ' ' then
1394 end loop Search_Loop
;
1395 end loop Paren_Loop
;
1397 exit Node_Loop
when F
= N
;
1399 exit Node_Loop
when Nkind
(F
) not in N_Subexpr
;
1409 procedure Initialize
is
1412 First_Error_Msg
:= No_Error_Msg
;
1413 Last_Error_Msg
:= No_Error_Msg
;
1414 Serious_Errors_Detected
:= 0;
1415 Total_Errors_Detected
:= 0;
1416 Warnings_Detected
:= 0;
1417 Cur_Msg
:= No_Error_Msg
;
1420 -- Initialize warnings table, if all warnings are suppressed, supply an
1421 -- initial dummy entry covering all possible source locations.
1424 Specific_Warnings
.Init
;
1426 if Warning_Mode
= Suppress
then
1428 ((Start
=> Source_Ptr
'First, Stop
=> Source_Ptr
'Last));
1436 function No_Warnings
(N
: Node_Or_Entity_Id
) return Boolean is
1438 if Error_Posted
(N
) then
1441 elsif Nkind
(N
) in N_Entity
and then Has_Warnings_Off
(N
) then
1444 elsif Is_Entity_Name
(N
)
1445 and then Present
(Entity
(N
))
1446 and then Has_Warnings_Off
(Entity
(N
))
1459 function OK_Node
(N
: Node_Id
) return Boolean is
1460 K
: constant Node_Kind
:= Nkind
(N
);
1463 if Error_Posted
(N
) then
1466 elsif K
in N_Has_Etype
1467 and then Present
(Etype
(N
))
1468 and then Error_Posted
(Etype
(N
))
1473 or else K
= N_Attribute_Reference
1474 or else K
= N_Character_Literal
1475 or else K
= N_Expanded_Name
1476 or else K
= N_Identifier
1477 or else K
= N_Operator_Symbol
)
1478 and then Present
(Entity
(N
))
1479 and then Error_Posted
(Entity
(N
))
1487 ---------------------
1488 -- Output_Messages --
1489 ---------------------
1491 procedure Output_Messages
is
1495 procedure Write_Error_Summary
;
1496 -- Write error summary
1498 procedure Write_Header
(Sfile
: Source_File_Index
);
1499 -- Write header line (compiling or checking given file)
1501 procedure Write_Max_Errors
;
1502 -- Write message if max errors reached
1504 -------------------------
1505 -- Write_Error_Summary --
1506 -------------------------
1508 procedure Write_Error_Summary
is
1510 -- Extra blank line if error messages or source listing were output
1512 if Total_Errors_Detected
+ Warnings_Detected
> 0
1518 -- Message giving number of lines read and number of errors detected.
1519 -- This normally goes to Standard_Output. The exception is when brief
1520 -- mode is not set, verbose mode (or full list mode) is set, and
1521 -- there are errors. In this case we send the message to standard
1522 -- error to make sure that *something* appears on standard error in
1523 -- an error situation.
1525 -- Formerly, only the "# errors" suffix was sent to stderr, whereas
1526 -- "# lines:" appeared on stdout. This caused problems on VMS when
1527 -- the stdout buffer was flushed, giving an extra line feed after
1530 if Total_Errors_Detected
+ Warnings_Detected
/= 0
1531 and then not Brief_Output
1532 and then (Verbose_Mode
or Full_List
)
1537 -- Message giving total number of lines
1540 Write_Int
(Num_Source_Lines
(Main_Source_File
));
1542 if Num_Source_Lines
(Main_Source_File
) = 1 then
1543 Write_Str
(" line: ");
1545 Write_Str
(" lines: ");
1548 if Total_Errors_Detected
= 0 then
1549 Write_Str
("No errors");
1551 elsif Total_Errors_Detected
= 1 then
1552 Write_Str
("1 error");
1555 Write_Int
(Total_Errors_Detected
);
1556 Write_Str
(" errors");
1559 if Warnings_Detected
/= 0 then
1561 Write_Int
(Warnings_Detected
);
1562 Write_Str
(" warning");
1564 if Warnings_Detected
/= 1 then
1568 if Warning_Mode
= Treat_As_Error
then
1569 Write_Str
(" (treated as error");
1571 if Warnings_Detected
/= 1 then
1580 Set_Standard_Output
;
1581 end Write_Error_Summary
;
1587 procedure Write_Header
(Sfile
: Source_File_Index
) is
1589 if Verbose_Mode
or Full_List
then
1590 if Original_Operating_Mode
= Generate_Code
then
1591 Write_Str
("Compiling: ");
1593 Write_Str
("Checking: ");
1596 Write_Name
(Full_File_Name
(Sfile
));
1598 if not Debug_Flag_7
then
1599 Write_Str
(" (source file time stamp: ");
1600 Write_Time_Stamp
(Sfile
);
1608 ----------------------
1609 -- Write_Max_Errors --
1610 ----------------------
1612 procedure Write_Max_Errors
is
1614 if Maximum_Messages
/= 0 then
1615 if Warnings_Detected
>= Maximum_Messages
then
1617 Write_Line
("maximum number of warnings output");
1618 Write_Line
("any further warnings suppressed");
1619 Set_Standard_Output
;
1622 -- If too many errors print message
1624 if Total_Errors_Detected
>= Maximum_Messages
then
1626 Write_Line
("fatal error: maximum number of errors detected");
1627 Set_Standard_Output
;
1630 end Write_Max_Errors
;
1632 -- Start of processing for Output_Messages
1635 -- Error if Finalize has not been called
1637 if not Finalize_Called
then
1638 raise Program_Error
;
1641 -- Reset current error source file if the main unit has a pragma
1642 -- Source_Reference. This ensures outputting the proper name of
1643 -- the source file in this situation.
1645 if Main_Source_File
= No_Source_File
1646 or else Num_SRef_Pragmas
(Main_Source_File
) /= 0
1648 Current_Error_Source_File
:= No_Source_File
;
1653 if Brief_Output
or (not Full_List
and not Verbose_Mode
) then
1656 E
:= First_Error_Msg
;
1657 while E
/= No_Error_Msg
loop
1658 if not Errors
.Table
(E
).Deleted
and then not Debug_Flag_KK
then
1659 if Full_Path_Name_For_Brief_Errors
then
1660 Write_Name
(Full_Ref_Name
(Errors
.Table
(E
).Sfile
));
1662 Write_Name
(Reference_Name
(Errors
.Table
(E
).Sfile
));
1666 Write_Int
(Int
(Physical_To_Logical
1667 (Errors
.Table
(E
).Line
,
1668 Errors
.Table
(E
).Sfile
)));
1671 if Errors
.Table
(E
).Col
< 10 then
1675 Write_Int
(Int
(Errors
.Table
(E
).Col
));
1677 Output_Msg_Text
(E
);
1681 E
:= Errors
.Table
(E
).Next
;
1684 Set_Standard_Output
;
1687 -- Full source listing case
1690 List_Pragmas_Index
:= 1;
1691 List_Pragmas_Mode
:= True;
1692 E
:= First_Error_Msg
;
1694 -- Normal case, to stdout (copyright notice already output)
1696 if Full_List_File_Name
= null then
1697 if not Debug_Flag_7
then
1704 Create_List_File_Access
.all (Full_List_File_Name
.all);
1705 Set_Special_Output
(Write_List_Info_Access
.all'Access);
1707 -- Write copyright notice to file
1709 if not Debug_Flag_7
then
1710 Write_Str
("GNAT ");
1711 Write_Str
(Gnat_Version_String
);
1713 Write_Str
("Copyright 1992-" &
1715 ", Free Software Foundation, Inc.");
1720 -- First list extended main source file units with errors
1722 for U
in Main_Unit
.. Last_Unit
loop
1723 if In_Extended_Main_Source_Unit
(Cunit_Entity
(U
))
1725 -- If debug flag d.m is set, only the main source is listed
1727 and then (U
= Main_Unit
or else not Debug_Flag_Dot_M
)
1729 -- If the unit of the entity does not come from source, it is
1730 -- an implicit subprogram declaration for a child subprogram.
1731 -- Do not emit errors for it, they are listed with the body.
1734 (No
(Cunit_Entity
(U
))
1735 or else Comes_From_Source
(Cunit_Entity
(U
))
1736 or else not Is_Subprogram
(Cunit_Entity
(U
)))
1739 Sfile
: constant Source_File_Index
:= Source_Index
(U
);
1743 Write_Header
(Sfile
);
1746 -- Normally, we don't want an "error messages from file"
1747 -- message when listing the entire file, so we set the
1748 -- current source file as the current error source file.
1749 -- However, the old style of doing things was to list this
1750 -- message if pragma Source_Reference is present, even for
1751 -- the main unit. Since the purpose of the -gnatd.m switch
1752 -- is to duplicate the old behavior, we skip the reset if
1753 -- this debug flag is set.
1755 if not Debug_Flag_Dot_M
then
1756 Current_Error_Source_File
:= Sfile
;
1759 for N
in 1 .. Last_Source_Line
(Sfile
) loop
1760 while E
/= No_Error_Msg
1761 and then Errors
.Table
(E
).Deleted
1763 E
:= Errors
.Table
(E
).Next
;
1768 and then Errors
.Table
(E
).Line
= N
1769 and then Errors
.Table
(E
).Sfile
= Sfile
;
1771 Output_Source_Line
(N
, Sfile
, Err_Flag
);
1774 Output_Error_Msgs
(E
);
1776 if not Debug_Flag_2
then
1785 -- Then output errors, if any, for subsidiary units not in the
1786 -- main extended unit.
1788 -- Note: if debug flag d.m set, include errors for any units other
1789 -- than the main unit in the extended source unit (e.g. spec and
1790 -- subunits for a body).
1792 while E
/= No_Error_Msg
1793 and then (not In_Extended_Main_Source_Unit
(Errors
.Table
(E
).Sptr
)
1796 and then Get_Source_Unit
1797 (Errors
.Table
(E
).Sptr
) /= Main_Unit
))
1799 if Errors
.Table
(E
).Deleted
then
1800 E
:= Errors
.Table
(E
).Next
;
1805 (Errors
.Table
(E
).Line
, Errors
.Table
(E
).Sfile
, True);
1806 Output_Error_Msgs
(E
);
1810 -- If output to file, write extra copy of error summary to the
1811 -- output file, and then close it.
1813 if Full_List_File_Name
/= null then
1814 Write_Error_Summary
;
1816 Close_List_File_Access
.all;
1817 Cancel_Special_Output
;
1821 -- Verbose mode (error lines only with error flags). Normally this is
1822 -- ignored in full list mode, unless we are listing to a file, in which
1823 -- case we still generate -gnatv output to standard output.
1826 and then (not Full_List
or else Full_List_File_Name
/= null)
1829 Write_Header
(Main_Source_File
);
1830 E
:= First_Error_Msg
;
1832 -- Loop through error lines
1834 while E
/= No_Error_Msg
loop
1835 if Errors
.Table
(E
).Deleted
then
1836 E
:= Errors
.Table
(E
).Next
;
1840 (Errors
.Table
(E
).Line
, Errors
.Table
(E
).Sfile
, True);
1841 Output_Error_Msgs
(E
);
1846 -- Output error summary if verbose or full list mode
1848 if Verbose_Mode
or else Full_List
then
1849 Write_Error_Summary
;
1854 if Warning_Mode
= Treat_As_Error
then
1855 Total_Errors_Detected
:= Total_Errors_Detected
+ Warnings_Detected
;
1856 Warnings_Detected
:= 0;
1858 end Output_Messages
;
1860 ------------------------
1861 -- Output_Source_Line --
1862 ------------------------
1864 procedure Output_Source_Line
1865 (L
: Physical_Line_Number
;
1866 Sfile
: Source_File_Index
;
1872 Line_Number_Output
: Boolean := False;
1873 -- Set True once line number is output
1875 Empty_Line
: Boolean := True;
1876 -- Set False if line includes at least one character
1879 if Sfile
/= Current_Error_Source_File
then
1880 Write_Str
("==============Error messages for ");
1882 case Sinput
.File_Type
(Sfile
) is
1884 Write_Str
("source");
1886 when Sinput
.Config
=>
1887 Write_Str
("configuration pragmas");
1890 Write_Str
("symbol definition");
1892 when Sinput
.Preproc
=>
1893 Write_Str
("preprocessing data");
1896 Write_Str
(" file: ");
1897 Write_Name
(Full_File_Name
(Sfile
));
1900 if Num_SRef_Pragmas
(Sfile
) > 0 then
1901 Write_Str
("--------------Line numbers from file: ");
1902 Write_Name
(Full_Ref_Name
(Sfile
));
1903 Write_Str
(" (starting at line ");
1904 Write_Int
(Int
(First_Mapped_Line
(Sfile
)));
1909 Current_Error_Source_File
:= Sfile
;
1912 if Errs
or List_Pragmas_Mode
then
1913 Output_Line_Number
(Physical_To_Logical
(L
, Sfile
));
1914 Line_Number_Output
:= True;
1917 S
:= Line_Start
(L
, Sfile
);
1920 C
:= Source_Text
(Sfile
) (S
);
1921 exit when C
= ASCII
.LF
or else C
= ASCII
.CR
or else C
= EOF
;
1923 -- Deal with matching entry in List_Pragmas table
1926 and then List_Pragmas_Index
<= List_Pragmas
.Last
1927 and then S
= List_Pragmas
.Table
(List_Pragmas_Index
).Ploc
1929 case List_Pragmas
.Table
(List_Pragmas_Index
).Ptyp
is
1933 -- Ignore if on line with errors so that error flags
1934 -- get properly listed with the error line .
1937 Write_Char
(ASCII
.FF
);
1941 List_Pragmas_Mode
:= True;
1943 if not Line_Number_Output
then
1944 Output_Line_Number
(Physical_To_Logical
(L
, Sfile
));
1945 Line_Number_Output
:= True;
1952 List_Pragmas_Mode
:= False;
1955 List_Pragmas_Index
:= List_Pragmas_Index
+ 1;
1957 -- Normal case (no matching entry in List_Pragmas table)
1960 if Errs
or List_Pragmas_Mode
then
1965 Empty_Line
:= False;
1969 -- If we have output a source line, then add the line terminator, with
1970 -- training spaces preserved (so we output the line exactly as input).
1972 if Line_Number_Output
then
1976 Write_Eol_Keep_Blanks
;
1979 end Output_Source_Line
;
1981 -----------------------------
1982 -- Remove_Warning_Messages --
1983 -----------------------------
1985 procedure Remove_Warning_Messages
(N
: Node_Id
) is
1987 function Check_For_Warning
(N
: Node_Id
) return Traverse_Result
;
1988 -- This function checks one node for a possible warning message
1990 function Check_All_Warnings
is new Traverse_Func
(Check_For_Warning
);
1991 -- This defines the traversal operation
1993 -----------------------
1994 -- Check_For_Warning --
1995 -----------------------
1997 function Check_For_Warning
(N
: Node_Id
) return Traverse_Result
is
1998 Loc
: constant Source_Ptr
:= Sloc
(N
);
2001 function To_Be_Removed
(E
: Error_Msg_Id
) return Boolean;
2002 -- Returns True for a message that is to be removed. Also adjusts
2003 -- warning count appropriately.
2009 function To_Be_Removed
(E
: Error_Msg_Id
) return Boolean is
2011 if E
/= No_Error_Msg
2013 -- Don't remove if location does not match
2015 and then Errors
.Table
(E
).Optr
= Loc
2017 -- Don't remove if not warning/info message. Note that we do
2018 -- not remove style messages here. They are warning messages
2019 -- but not ones we want removed in this context.
2021 and then Errors
.Table
(E
).Warn
2023 -- Don't remove unconditional messages
2025 and then not Errors
.Table
(E
).Uncond
2027 Warnings_Detected
:= Warnings_Detected
- 1;
2030 -- No removal required
2037 -- Start of processing for Check_For_Warnings
2040 while To_Be_Removed
(First_Error_Msg
) loop
2041 First_Error_Msg
:= Errors
.Table
(First_Error_Msg
).Next
;
2044 if First_Error_Msg
= No_Error_Msg
then
2045 Last_Error_Msg
:= No_Error_Msg
;
2048 E
:= First_Error_Msg
;
2049 while E
/= No_Error_Msg
loop
2050 while To_Be_Removed
(Errors
.Table
(E
).Next
) loop
2051 Errors
.Table
(E
).Next
:=
2052 Errors
.Table
(Errors
.Table
(E
).Next
).Next
;
2054 if Errors
.Table
(E
).Next
= No_Error_Msg
then
2055 Last_Error_Msg
:= E
;
2059 E
:= Errors
.Table
(E
).Next
;
2062 if Nkind
(N
) = N_Raise_Constraint_Error
2063 and then Original_Node
(N
) /= N
2064 and then No
(Condition
(N
))
2066 -- Warnings may have been posted on subexpressions of the original
2067 -- tree. We place the original node back on the tree to remove
2068 -- those warnings, whose sloc do not match those of any node in
2069 -- the current tree. Given that we are in unreachable code, this
2070 -- modification to the tree is harmless.
2073 Status
: Traverse_Final_Result
;
2076 if Is_List_Member
(N
) then
2077 Set_Condition
(N
, Original_Node
(N
));
2078 Status
:= Check_All_Warnings
(Condition
(N
));
2080 Rewrite
(N
, Original_Node
(N
));
2081 Status
:= Check_All_Warnings
(N
);
2090 end Check_For_Warning
;
2092 -- Start of processing for Remove_Warning_Messages
2095 if Warnings_Detected
/= 0 then
2097 Discard
: Traverse_Final_Result
;
2098 pragma Warnings
(Off
, Discard
);
2101 Discard
:= Check_All_Warnings
(N
);
2104 end Remove_Warning_Messages
;
2106 procedure Remove_Warning_Messages
(L
: List_Id
) is
2109 if Is_Non_Empty_List
(L
) then
2111 while Present
(Stat
) loop
2112 Remove_Warning_Messages
(Stat
);
2116 end Remove_Warning_Messages
;
2118 ---------------------------
2119 -- Set_Identifier_Casing --
2120 ---------------------------
2122 procedure Set_Identifier_Casing
2123 (Identifier_Name
: System
.Address
;
2124 File_Name
: System
.Address
)
2126 Ident
: constant Big_String_Ptr
:= To_Big_String_Ptr
(Identifier_Name
);
2127 File
: constant Big_String_Ptr
:= To_Big_String_Ptr
(File_Name
);
2130 Desired_Case
: Casing_Type
:= Mixed_Case
;
2131 -- Casing required for result. Default value of Mixed_Case is used if
2132 -- for some reason we cannot find the right file name in the table.
2135 -- Get length of file name
2138 while File
(Flen
+ 1) /= ASCII
.NUL
loop
2142 -- Loop through file names to find matching one. This is a bit slow, but
2143 -- we only do it in error situations so it is not so terrible. Note that
2144 -- if the loop does not exit, then the desired case will be left set to
2145 -- Mixed_Case, this can happen if the name was not in canonical form,
2146 -- and gets canonicalized on VMS. Possibly we could fix this by
2147 -- unconditionally canonicalizing these names ???
2149 for J
in 1 .. Last_Source_File
loop
2150 Get_Name_String
(Full_Debug_Name
(J
));
2153 and then Name_Buffer
(1 .. Name_Len
) = String (File
(1 .. Flen
))
2155 Desired_Case
:= Identifier_Casing
(J
);
2160 -- Copy identifier as given to Name_Buffer
2162 for J
in Name_Buffer
'Range loop
2163 Name_Buffer
(J
) := Ident
(J
);
2165 if Name_Buffer
(J
) = ASCII
.NUL
then
2171 Set_Casing
(Desired_Case
);
2172 end Set_Identifier_Casing
;
2174 -----------------------
2175 -- Set_Ignore_Errors --
2176 -----------------------
2178 procedure Set_Ignore_Errors
(To
: Boolean) is
2180 Errors_Must_Be_Ignored
:= To
;
2181 end Set_Ignore_Errors
;
2183 ------------------------------
2184 -- Set_Msg_Insertion_Column --
2185 ------------------------------
2187 procedure Set_Msg_Insertion_Column
is
2189 if RM_Column_Check
then
2190 Set_Msg_Str
(" in column ");
2191 Set_Msg_Int
(Int
(Error_Msg_Col
) + 1);
2193 end Set_Msg_Insertion_Column
;
2195 ----------------------------
2196 -- Set_Msg_Insertion_Node --
2197 ----------------------------
2199 procedure Set_Msg_Insertion_Node
is
2204 Error_Msg_Node_1
= Error
2205 or else Error_Msg_Node_1
= Any_Type
;
2207 if Error_Msg_Node_1
= Empty
then
2208 Set_Msg_Blank_Conditional
;
2209 Set_Msg_Str
("<empty>");
2211 elsif Error_Msg_Node_1
= Error
then
2213 Set_Msg_Str
("<error>");
2215 elsif Error_Msg_Node_1
= Standard_Void_Type
then
2217 Set_Msg_Str
("procedure name");
2220 Set_Msg_Blank_Conditional
;
2224 K
:= Nkind
(Error_Msg_Node_1
);
2226 -- If we have operator case, skip quotes since name of operator
2227 -- itself will supply the required quotations. An operator can be an
2228 -- applied use in an expression or an explicit operator symbol, or an
2229 -- identifier whose name indicates it is an operator.
2232 or else K
= N_Operator_Symbol
2233 or else K
= N_Defining_Operator_Symbol
2234 or else ((K
= N_Identifier
or else K
= N_Defining_Identifier
)
2235 and then Is_Operator_Name
(Chars
(Error_Msg_Node_1
)))
2237 Set_Msg_Node
(Error_Msg_Node_1
);
2239 -- Normal case, not an operator, surround with quotes
2243 Set_Qualification
(Error_Msg_Qual_Level
, Error_Msg_Node_1
);
2244 Set_Msg_Node
(Error_Msg_Node_1
);
2249 -- The following assignment ensures that a second ampersand insertion
2250 -- character will correspond to the Error_Msg_Node_2 parameter. We
2251 -- suppress possible validity checks in case operating in -gnatVa mode,
2252 -- and Error_Msg_Node_2 is not needed and has not been set.
2255 pragma Suppress
(Range_Check
);
2257 Error_Msg_Node_1
:= Error_Msg_Node_2
;
2259 end Set_Msg_Insertion_Node
;
2261 --------------------------------------
2262 -- Set_Msg_Insertion_Type_Reference --
2263 --------------------------------------
2265 procedure Set_Msg_Insertion_Type_Reference
(Flag
: Source_Ptr
) is
2271 if Error_Msg_Node_1
= Standard_Void_Type
then
2272 Set_Msg_Str
("package or procedure name");
2275 elsif Error_Msg_Node_1
= Standard_Exception_Type
then
2276 Set_Msg_Str
("exception name");
2279 elsif Error_Msg_Node_1
= Any_Access
2280 or else Error_Msg_Node_1
= Any_Array
2281 or else Error_Msg_Node_1
= Any_Boolean
2282 or else Error_Msg_Node_1
= Any_Character
2283 or else Error_Msg_Node_1
= Any_Composite
2284 or else Error_Msg_Node_1
= Any_Discrete
2285 or else Error_Msg_Node_1
= Any_Fixed
2286 or else Error_Msg_Node_1
= Any_Integer
2287 or else Error_Msg_Node_1
= Any_Modular
2288 or else Error_Msg_Node_1
= Any_Numeric
2289 or else Error_Msg_Node_1
= Any_Real
2290 or else Error_Msg_Node_1
= Any_Scalar
2291 or else Error_Msg_Node_1
= Any_String
2293 Get_Unqualified_Decoded_Name_String
(Chars
(Error_Msg_Node_1
));
2294 Set_Msg_Name_Buffer
;
2297 elsif Error_Msg_Node_1
= Universal_Real
then
2298 Set_Msg_Str
("type universal real");
2301 elsif Error_Msg_Node_1
= Universal_Integer
then
2302 Set_Msg_Str
("type universal integer");
2305 elsif Error_Msg_Node_1
= Universal_Fixed
then
2306 Set_Msg_Str
("type universal fixed");
2310 -- Special case of anonymous array
2312 if Nkind
(Error_Msg_Node_1
) in N_Entity
2313 and then Is_Array_Type
(Error_Msg_Node_1
)
2314 and then Present
(Related_Array_Object
(Error_Msg_Node_1
))
2316 Set_Msg_Str
("type of ");
2317 Set_Msg_Node
(Related_Array_Object
(Error_Msg_Node_1
));
2318 Set_Msg_Str
(" declared");
2319 Set_Msg_Insertion_Line_Number
2320 (Sloc
(Related_Array_Object
(Error_Msg_Node_1
)), Flag
);
2324 -- If we fall through, it is not a special case, so first output
2325 -- the name of the type, preceded by private for a private type
2327 if Is_Private_Type
(Error_Msg_Node_1
) then
2328 Set_Msg_Str
("private type ");
2330 Set_Msg_Str
("type ");
2333 Ent
:= Error_Msg_Node_1
;
2335 if Is_Internal_Name
(Chars
(Ent
)) then
2336 Unwind_Internal_Type
(Ent
);
2339 -- Types in Standard are displayed as "Standard.name"
2341 if Sloc
(Ent
) <= Standard_Location
then
2343 Set_Msg_Str
("Standard.");
2348 -- Types in other language defined units are displayed as
2349 -- "package-name.type-name"
2352 Is_Predefined_File_Name
(Unit_File_Name
(Get_Source_Unit
(Ent
)))
2354 Get_Unqualified_Decoded_Name_String
2355 (Unit_Name
(Get_Source_Unit
(Ent
)));
2356 Name_Len
:= Name_Len
- 2;
2358 Set_Casing
(Mixed_Case
);
2359 Set_Msg_Name_Buffer
;
2361 Set_Casing
(Mixed_Case
);
2366 -- All other types display as "type name" defined at line xxx
2367 -- possibly qualified if qualification is requested.
2371 Set_Qualification
(Error_Msg_Qual_Level
, Ent
);
2375 -- If Ent is an anonymous subprogram type, there is no name to print,
2376 -- so remove enclosing quotes.
2378 if Buffer_Ends_With
("""") then
2379 Buffer_Remove
("""");
2385 -- If the original type did not come from a predefined file, add the
2386 -- location where the type was defined.
2388 if Sloc
(Error_Msg_Node_1
) > Standard_Location
2390 not Is_Predefined_File_Name
2391 (Unit_File_Name
(Get_Source_Unit
(Error_Msg_Node_1
)))
2393 Set_Msg_Str
(" defined");
2394 Set_Msg_Insertion_Line_Number
(Sloc
(Error_Msg_Node_1
), Flag
);
2396 -- If it did come from a predefined file, deal with the case where
2397 -- this was a file with a generic instantiation from elsewhere.
2400 if Sloc
(Error_Msg_Node_1
) > Standard_Location
then
2402 Iloc
: constant Source_Ptr
:=
2403 Instantiation_Location
(Sloc
(Error_Msg_Node_1
));
2406 if Iloc
/= No_Location
2407 and then not Suppress_Instance_Location
2409 Set_Msg_Str
(" from instance");
2410 Set_Msg_Insertion_Line_Number
(Iloc
, Flag
);
2415 end Set_Msg_Insertion_Type_Reference
;
2417 ---------------------------------
2418 -- Set_Msg_Insertion_Unit_Name --
2419 ---------------------------------
2421 procedure Set_Msg_Insertion_Unit_Name
(Suffix
: Boolean := True) is
2423 if Error_Msg_Unit_1
= No_Unit_Name
then
2426 elsif Error_Msg_Unit_1
= Error_Unit_Name
then
2428 Set_Msg_Str
("<error>");
2431 Get_Unit_Name_String
(Error_Msg_Unit_1
, Suffix
);
2434 Set_Msg_Name_Buffer
;
2438 -- The following assignment ensures that a second percent insertion
2439 -- character will correspond to the Error_Msg_Unit_2 parameter. We
2440 -- suppress possible validity checks in case operating in -gnatVa mode,
2441 -- and Error_Msg_Unit_2 is not needed and has not been set.
2444 pragma Suppress
(Range_Check
);
2446 Error_Msg_Unit_1
:= Error_Msg_Unit_2
;
2448 end Set_Msg_Insertion_Unit_Name
;
2454 procedure Set_Msg_Node
(Node
: Node_Id
) is
2459 if Nkind
(Node
) = N_Designator
then
2460 Set_Msg_Node
(Name
(Node
));
2462 Set_Msg_Node
(Identifier
(Node
));
2465 elsif Nkind
(Node
) = N_Defining_Program_Unit_Name
then
2466 Set_Msg_Node
(Name
(Node
));
2468 Set_Msg_Node
(Defining_Identifier
(Node
));
2471 elsif Nkind
(Node
) = N_Selected_Component
then
2472 Set_Msg_Node
(Prefix
(Node
));
2474 Set_Msg_Node
(Selector_Name
(Node
));
2478 -- The only remaining possibilities are identifiers, defining
2479 -- identifiers, pragmas, and pragma argument associations.
2481 if Nkind
(Node
) = N_Pragma
then
2482 Nam
:= Pragma_Name
(Node
);
2484 -- The other cases have Chars fields, and we want to test for possible
2485 -- internal names, which generally represent something gone wrong. An
2486 -- exception is the case of internal type names, where we try to find a
2487 -- reasonable external representation for the external name
2489 elsif Is_Internal_Name
(Chars
(Node
))
2491 ((Is_Entity_Name
(Node
)
2492 and then Present
(Entity
(Node
))
2493 and then Is_Type
(Entity
(Node
)))
2495 (Nkind
(Node
) = N_Defining_Identifier
and then Is_Type
(Node
)))
2497 if Nkind
(Node
) = N_Identifier
then
2498 Ent
:= Entity
(Node
);
2503 -- If the type is the designated type of an access_to_subprogram,
2504 -- there is no name to provide in the call.
2506 if Ekind
(Ent
) = E_Subprogram_Type
then
2509 Unwind_Internal_Type
(Ent
);
2513 -- If not internal name, just use name in Chars field
2516 Nam
:= Chars
(Node
);
2519 -- At this stage, the name to output is in Nam
2521 Get_Unqualified_Decoded_Name_String
(Nam
);
2523 -- Remove trailing upper case letters from the name (useful for
2524 -- dealing with some cases of internal names.
2526 while Name_Len
> 1 and then Name_Buffer
(Name_Len
) in 'A' .. 'Z' loop
2527 Name_Len
:= Name_Len
- 1;
2530 -- If we have any of the names from standard that start with the
2531 -- characters "any " (e.g. Any_Type), then kill the message since
2532 -- almost certainly it is a junk cascaded message.
2535 and then Name_Buffer
(1 .. 4) = "any "
2537 Kill_Message
:= True;
2540 -- Now we have to set the proper case. If we have a source location
2541 -- then do a check to see if the name in the source is the same name
2542 -- as the name in the Names table, except for possible differences
2543 -- in case, which is the case when we can copy from the source.
2546 Src_Loc
: constant Source_Ptr
:= Sloc
(Node
);
2547 Sbuffer
: Source_Buffer_Ptr
;
2549 Src_Ptr
: Source_Ptr
;
2555 -- For standard locations, always use mixed case
2557 if Src_Loc
<= No_Location
2558 or else Sloc
(Node
) <= No_Location
2560 Set_Casing
(Mixed_Case
);
2563 -- Determine if the reference we are dealing with corresponds to
2564 -- text at the point of the error reference. This will often be
2565 -- the case for simple identifier references, and is the case
2566 -- where we can copy the spelling from the source.
2568 Sbuffer
:= Source_Text
(Get_Source_File_Index
(Src_Loc
));
2570 while Ref_Ptr
<= Name_Len
loop
2572 Fold_Lower
(Sbuffer
(Src_Ptr
)) /=
2573 Fold_Lower
(Name_Buffer
(Ref_Ptr
));
2574 Ref_Ptr
:= Ref_Ptr
+ 1;
2575 Src_Ptr
:= Src_Ptr
+ 1;
2578 -- If we get through the loop without a mismatch, then output the
2579 -- name the way it is spelled in the source program
2581 if Ref_Ptr
> Name_Len
then
2584 for J
in 1 .. Name_Len
loop
2585 Name_Buffer
(J
) := Sbuffer
(Src_Ptr
);
2586 Src_Ptr
:= Src_Ptr
+ 1;
2589 -- Otherwise set the casing using the default identifier casing
2592 Set_Casing
(Identifier_Casing
(Flag_Source
), Mixed_Case
);
2597 Set_Msg_Name_Buffer
;
2605 procedure Set_Msg_Text
(Text
: String; Flag
: Source_Ptr
) is
2606 C
: Character; -- Current character
2607 P
: Natural; -- Current index;
2610 Manual_Quote_Mode
:= False;
2611 Is_Unconditional_Msg
:= False;
2613 Flag_Source
:= Get_Source_File_Index
(Flag
);
2616 while P
<= Text
'Last loop
2620 -- Check for insertion character or sequence
2624 if P
<= Text
'Last and then Text
(P
) = '%' then
2626 Set_Msg_Insertion_Name_Literal
;
2628 Set_Msg_Insertion_Name
;
2632 if P
<= Text
'Last and then Text
(P
) = '$' then
2634 Set_Msg_Insertion_Unit_Name
(Suffix
=> False);
2637 Set_Msg_Insertion_Unit_Name
;
2641 Set_Msg_Insertion_File_Name
;
2644 Set_Msg_Insertion_Type_Reference
(Flag
);
2647 Set_Msg_Insertion_Reserved_Name
;
2650 Set_Msg_Insertion_Node
;
2653 Set_Msg_Insertion_Line_Number
(Error_Msg_Sloc
, Flag
);
2656 Continuation
:= True;
2658 if Text
(P
) = '\' then
2659 Continuation_New_Line
:= True;
2664 Set_Msg_Insertion_Column
;
2667 Set_Msg_Insertion_Run_Time_Name
;
2670 Set_Msg_Insertion_Uint
;
2673 Manual_Quote_Mode
:= not Manual_Quote_Mode
;
2677 Is_Unconditional_Msg
:= True;
2680 null; -- already dealt with
2683 null; -- already dealt with
2686 null; -- already dealt with
2689 Set_Msg_Char
(Text
(P
));
2693 Set_Msg_Str
(Error_Msg_String
(1 .. Error_Msg_Strlen
));
2695 -- Upper case letter
2699 -- Start of reserved word if two or more
2701 if P
<= Text
'Last and then Text
(P
) in 'A' .. 'Z' then
2703 Set_Msg_Insertion_Reserved_Word
(Text
, P
);
2705 -- Single upper case letter is just inserted
2711 -- Normal character with no special treatment
2725 procedure Set_Posted
(N
: Node_Id
) is
2729 if Is_Serious_Error
then
2731 -- We always set Error_Posted on the node itself
2733 Set_Error_Posted
(N
);
2735 -- If it is a subexpression, then set Error_Posted on parents up to
2736 -- and including the first non-subexpression construct. This helps
2737 -- avoid cascaded error messages within a single expression.
2743 Set_Error_Posted
(P
);
2744 exit when Nkind
(P
) not in N_Subexpr
;
2747 -- A special check, if we just posted an error on an attribute
2748 -- definition clause, then also set the entity involved as posted.
2749 -- For example, this stops complaining about the alignment after
2750 -- complaining about the size, which is likely to be useless.
2752 if Nkind
(P
) = N_Attribute_Definition_Clause
then
2753 if Is_Entity_Name
(Name
(P
)) then
2754 Set_Error_Posted
(Entity
(Name
(P
)));
2760 -----------------------
2761 -- Set_Qualification --
2762 -----------------------
2764 procedure Set_Qualification
(N
: Nat
; E
: Entity_Id
) is
2766 if N
/= 0 and then Scope
(E
) /= Standard_Standard
then
2767 Set_Qualification
(N
- 1, Scope
(E
));
2768 Set_Msg_Node
(Scope
(E
));
2771 end Set_Qualification
;
2773 ------------------------
2774 -- Special_Msg_Delete --
2775 ------------------------
2777 -- Is it really right to have all this specialized knowledge in errout?
2779 function Special_Msg_Delete
2781 N
: Node_Or_Entity_Id
;
2782 E
: Node_Or_Entity_Id
) return Boolean
2785 -- Never delete messages in -gnatdO mode
2787 if Debug_Flag_OO
then
2790 -- Processing for "atomic access cannot be guaranteed"
2792 elsif Msg
= "atomic access to & cannot be guaranteed" then
2794 -- When an atomic object refers to a non-atomic type in the same
2795 -- scope, we implicitly make the type atomic. In the non-error case
2796 -- this is surely safe (and in fact prevents an error from occurring
2797 -- if the type is not atomic by default). But if the object cannot be
2798 -- made atomic, then we introduce an extra junk message by this
2799 -- manipulation, which we get rid of here.
2801 -- We identify this case by the fact that it references a type for
2802 -- which Is_Atomic is set, but there is no Atomic pragma setting it.
2805 and then Is_Atomic
(E
)
2806 and then No
(Get_Rep_Pragma
(E
, Name_Atomic
))
2811 -- Processing for "Size too small" messages
2813 elsif Msg
= "size for& too small, minimum allowed is ^" then
2815 -- Suppress "size too small" errors in CodePeer mode, since pragma
2816 -- Pack is also ignored in this configuration.
2818 if CodePeer_Mode
then
2821 -- When a size is wrong for a frozen type there is no explicit size
2822 -- clause, and other errors have occurred, suppress the message,
2823 -- since it is likely that this size error is a cascaded result of
2824 -- other errors. The reason we eliminate unfrozen types is that
2825 -- messages issued before the freeze type are for sure OK.
2828 and then Serious_Errors_Detected
> 0
2829 and then Nkind
(N
) /= N_Component_Clause
2830 and then Nkind
(Parent
(N
)) /= N_Component_Clause
2832 No
(Get_Attribute_Definition_Clause
(E
, Attribute_Size
))
2834 No
(Get_Attribute_Definition_Clause
(E
, Attribute_Object_Size
))
2836 No
(Get_Attribute_Definition_Clause
(E
, Attribute_Value_Size
))
2842 -- All special tests complete, so go ahead with message
2845 end Special_Msg_Delete
;
2847 --------------------------
2848 -- Unwind_Internal_Type --
2849 --------------------------
2851 procedure Unwind_Internal_Type
(Ent
: in out Entity_Id
) is
2852 Derived
: Boolean := False;
2854 Old_Ent
: Entity_Id
;
2857 -- Undo placement of a quote, since we will put it back later
2859 Mchar
:= Msg_Buffer
(Msglen
);
2862 Msglen
:= Msglen
- 1;
2865 -- The loop here deals with recursive types, we are trying to find a
2866 -- related entity that is not an implicit type. Note that the check with
2867 -- Old_Ent stops us from getting "stuck". Also, we don't output the
2868 -- "type derived from" message more than once in the case where we climb
2869 -- up multiple levels.
2874 -- Implicit access type, use directly designated type In Ada 2005,
2875 -- the designated type may be an anonymous access to subprogram, in
2876 -- which case we can only point to its definition.
2878 if Is_Access_Type
(Ent
) then
2879 if Ekind
(Ent
) = E_Access_Subprogram_Type
2880 or else Ekind
(Ent
) = E_Anonymous_Access_Subprogram_Type
2881 or else Is_Access_Protected_Subprogram_Type
(Ent
)
2883 Ent
:= Directly_Designated_Type
(Ent
);
2885 if not Comes_From_Source
(Ent
) then
2886 if Buffer_Ends_With
("type ") then
2887 Buffer_Remove
("type ");
2890 if Is_Itype
(Ent
) then
2892 Assoc
: constant Node_Id
:=
2893 Associated_Node_For_Itype
(Ent
);
2896 if Nkind
(Assoc
) in N_Subprogram_Specification
then
2898 -- Anonymous access to subprogram in a signature.
2899 -- Indicate the enclosing subprogram.
2903 (Associated_Node_For_Itype
(Ent
));
2905 ("access to subprogram declared in profile of ");
2908 Set_Msg_Str
("access to subprogram with profile ");
2913 elsif Ekind
(Ent
) = E_Function
then
2914 Set_Msg_Str
("access to function ");
2916 Set_Msg_Str
("access to procedure ");
2921 -- Type is access to object, named or anonymous
2924 Set_Msg_Str
("access to ");
2925 Ent
:= Directly_Designated_Type
(Ent
);
2930 elsif Is_Class_Wide_Type
(Ent
) then
2932 Ent
:= Root_Type
(Ent
);
2934 -- Use base type if this is a subtype
2936 elsif Ent
/= Base_Type
(Ent
) then
2937 Buffer_Remove
("type ");
2939 -- Avoid duplication "subtype of subtype of", and also replace
2940 -- "derived from subtype of" simply by "derived from"
2942 if not Buffer_Ends_With
("subtype of ")
2943 and then not Buffer_Ends_With
("derived from ")
2945 Set_Msg_Str
("subtype of ");
2948 Ent
:= Base_Type
(Ent
);
2950 -- If this is a base type with a first named subtype, use the first
2951 -- named subtype instead. This is not quite accurate in all cases,
2952 -- but it makes too much noise to be accurate and add 'Base in all
2953 -- cases. Note that we only do this is the first named subtype is not
2954 -- itself an internal name. This avoids the obvious loop (subtype ->
2955 -- basetype -> subtype) which would otherwise occur!)
2959 FST
: constant Entity_Id
:= First_Subtype
(Ent
);
2962 if not Is_Internal_Name
(Chars
(FST
)) then
2966 -- Otherwise use root type
2970 Buffer_Remove
("type ");
2972 -- Test for "subtype of type derived from" which seems
2973 -- excessive and is replaced by "type derived from".
2975 Buffer_Remove
("subtype of");
2977 -- Avoid duplicated "type derived from type derived from"
2979 if not Buffer_Ends_With
("type derived from ") then
2980 Set_Msg_Str
("type derived from ");
2991 -- If we are stuck in a loop, get out and settle for the internal
2992 -- name after all. In this case we set to kill the message if it is
2993 -- not the first error message (we really try hard not to show the
2994 -- dirty laundry of the implementation to the poor user!)
2996 if Ent
= Old_Ent
then
2997 Kill_Message
:= True;
3001 -- Get out if we finally found a non-internal name to use
3003 exit Find
when not Is_Internal_Name
(Chars
(Ent
));
3009 end Unwind_Internal_Type
;
3015 procedure VMS_Convert
is
3025 P
:= Msg_Buffer
'First;
3031 if Msg_Buffer
(P
) = '-' then
3032 for G
in Gnames
'Range loop
3033 L
:= Gnames
(G
)'Length;
3035 -- See if we have "-ggg switch", where ggg is Gnames entry
3037 if P
+ L
+ 7 <= Msglen
3038 and then Msg_Buffer
(P
+ 1 .. P
+ L
) = Gnames
(G
).all
3039 and then Msg_Buffer
(P
+ L
+ 1 .. P
+ L
+ 7) = " switch"
3041 -- Replace by "/vvv qualifier", where vvv is Vnames entry
3043 N
:= Vnames
(G
)'Length;
3044 Msg_Buffer
(P
+ N
+ 11 .. Msglen
+ N
- L
+ 3) :=
3045 Msg_Buffer
(P
+ L
+ 8 .. Msglen
);
3046 Msg_Buffer
(P
) := '/';
3047 Msg_Buffer
(P
+ 1 .. P
+ N
) := Vnames
(G
).all;
3048 Msg_Buffer
(P
+ N
+ 1 .. P
+ N
+ 10) := " qualifier";
3050 Msglen
:= Msglen
+ N
- L
+ 3;