* doc/install.texi (*-*-aix): Update explanation of XLC bootstrap.
[official-gcc.git] / gcc / ada / errout.adb
blobc762be166fcb7a33db45b011bc87ca6b536ec0e3
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- E R R O U T --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-2009, Free Software Foundation, Inc. --
10 -- --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. 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. --
20 -- --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
23 -- --
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
30 -- allowed to occur.
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;
41 with Lib; use Lib;
42 with Opt; use Opt;
43 with Nlists; use Nlists;
44 with Output; use Output;
45 with Scans; use Scans;
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
76 Msg : String_Ptr;
77 Loc : Source_Ptr;
78 end 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,
84 Table_Low_Bound => 1,
85 Table_Initial => 100,
86 Table_Increment => 100,
87 Table_Name => "Non_Instance_Msgs");
89 -----------------------
90 -- Local Subprograms --
91 -----------------------
93 procedure Error_Msg_Internal
94 (Msg : String;
95 Sptr : Source_Ptr;
96 Optr : Source_Ptr;
97 Msg_Cont : Boolean);
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;
123 Errs : Boolean);
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
146 -- given node to the current message.
148 procedure Set_Msg_Text (Text : String; Flag : Source_Ptr);
149 -- Add a sequence of characters to the current message. The characters may
150 -- be one of the special insertion characters (see documentation in spec).
151 -- Flag is the location at which the error is to be posted, which is used
152 -- to determine whether or not the # insertion needs a file name. The
153 -- variables Msg_Buffer, Msglen, Is_Style_Msg, Is_Warning_Msg, and
154 -- Is_Unconditional_Msg are set on return.
156 procedure Set_Posted (N : Node_Id);
157 -- Sets the Error_Posted flag on the given node, and all its parents
158 -- that are subexpressions and then on the parent non-subexpression
159 -- construct that contains the original expression (this reduces the
160 -- number of cascaded messages). Note that this call only has an effect
161 -- for a serious error. For a non-serious error, it has no effect.
163 procedure Set_Qualification (N : Nat; E : Entity_Id);
164 -- Outputs up to N levels of qualification for the given entity. For
165 -- example, the entity A.B.C.D will output B.C. if N = 2.
167 function Special_Msg_Delete
168 (Msg : String;
169 N : Node_Or_Entity_Id;
170 E : Node_Or_Entity_Id) return Boolean;
171 -- This function is called from Error_Msg_NEL, passing the message Msg,
172 -- node N on which the error is to be posted, and the entity or node E
173 -- to be used for an & insertion in the message if any. The job of this
174 -- procedure is to test for certain cascaded messages that we would like
175 -- to suppress. If the message is to be suppressed then we return True.
176 -- If the message should be generated (the normal case) False is returned.
178 procedure Unwind_Internal_Type (Ent : in out Entity_Id);
179 -- This procedure is given an entity id for an internal type, i.e.
180 -- a type with an internal name. It unwinds the type to try to get
181 -- to something reasonably printable, generating prefixes like
182 -- "subtype of", "access to", etc along the way in the buffer. The
183 -- value in Ent on return is the final name to be printed. Hopefully
184 -- this is not an internal name, but in some internal name cases, it
185 -- is an internal name, and has to be printed anyway (although in this
186 -- case the message has been killed if possible). The global variable
187 -- Class_Flag is set to True if the resulting entity should have
188 -- 'Class appended to its name (see Add_Class procedure), and is
189 -- otherwise unchanged.
191 procedure VMS_Convert;
192 -- This procedure has no effect if called when the host is not OpenVMS.
193 -- If the host is indeed OpenVMS, then the error message stored in
194 -- Msg_Buffer is scanned for appearances of switch names which need
195 -- converting to corresponding VMS qualifier names. See Gnames/Vnames
196 -- table in Errout spec for precise definition of the conversion that
197 -- is performed by this routine in OpenVMS mode.
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;
207 begin
208 Set_Msg_Text (New_Msg, Errors.Table (Error_Id).Sptr);
209 Errors.Table (Error_Id).Text := new String'(Msg_Buffer (1 .. Msglen));
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;
219 Write_Eol;
220 Output_Source_Line
221 (Errors.Table (Error_Id).Line, Errors.Table (Error_Id).Sfile, True);
222 Output_Error_Msgs (Err_Id);
223 Errors.Table (Error_Id).Next := Save_Next;
224 end if;
225 end Change_Error_Text;
227 ------------------------
228 -- Compilation_Errors --
229 ------------------------
231 function Compilation_Errors return Boolean is
232 begin
233 if not Finalize_Called then
234 raise Program_Error;
235 else
236 return Erroutc.Compilation_Errors;
237 end if;
238 end Compilation_Errors;
240 ---------------
241 -- Error_Msg --
242 ---------------
244 -- Error_Msg posts a flag at the given location, except that if the
245 -- Flag_Location points within a generic template and corresponds
246 -- to an instantiation of this generic template, then the actual
247 -- message will be posted on the generic instantiation, along with
248 -- additional messages 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).
258 begin
259 -- It is a fatal error to issue an error message when scanning from
260 -- the 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
267 return;
268 end if;
270 -- If we already have messages, and we are trying to place a message
271 -- at 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
277 then
278 return;
279 end if;
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
288 -- of 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
291 -- on the template when we compiled the template (the template is
292 -- always compiled before any instantiations). For this purpose,
293 -- we use a separate table of messages. The reason we do this is
294 -- twofold:
296 -- First, the messages can get changed by various processing
297 -- including the insertion of tokens etc, making it hard to
298 -- do the comparison.
300 -- Second, we will suppress a warning on a template if it is
301 -- not in the current extended source unit. That's reasonable
302 -- and means we don't want the warning on the instantiation
303 -- here either, but it does mean that the main error table
304 -- would not in any case include the message.
306 if Flag_Location = Orig_Loc then
307 Non_Instance_Msgs.Append ((new String'(Msg), Flag_Location));
308 Warn_On_Instance := False;
310 -- Here we have an instance message
312 else
313 -- Delete if debug flag off, and this message duplicates a
314 -- message already posted on the corresponding template
316 if not Debug_Flag_GG then
317 for J in Non_Instance_Msgs.First .. Non_Instance_Msgs.Last loop
318 if Msg = Non_Instance_Msgs.Table (J).Msg.all
319 and then Non_Instance_Msgs.Table (J).Loc = Orig_Loc
320 then
321 return;
322 end if;
323 end loop;
324 end if;
326 -- No duplicate, so error/warning will be posted on instance
328 Warn_On_Instance := Is_Warning_Msg;
329 end if;
331 -- Ignore warning message that is suppressed for this location. Note
332 -- that style checks are not considered warning messages for this
333 -- purpose.
335 if Is_Warning_Msg and then Warnings_Suppressed (Orig_Loc) then
336 return;
338 -- For style messages, check too many messages so far
340 elsif Is_Style_Msg
341 and then Maximum_Messages /= 0
342 and then Warnings_Detected >= Maximum_Messages
343 then
344 return;
345 end if;
347 -- The idea at this stage is that we have two kinds of messages
349 -- First, we have those messages that are to be placed as requested at
350 -- Flag_Location. This includes messages that have nothing to do with
351 -- generics, and also messages placed on generic templates that reflect
352 -- an error in the template itself. For such messages we simply call
353 -- Error_Msg_Internal to place the message in the requested location.
355 if Instantiation (Sindex) = No_Location then
356 Error_Msg_Internal (Msg, Flag_Location, Flag_Location, False);
357 return;
358 end if;
360 -- If we are trying to flag an error in an instantiation, we may have
361 -- a generic contract violation. What we generate in this case is:
363 -- instantiation error at ...
364 -- original error message
366 -- or
368 -- warning: in instantiation at
369 -- warning: original warning message
371 -- All these messages are posted at the location of the top level
372 -- instantiation. If there are nested instantiations, then the
373 -- instantiation error message can be repeated, pointing to each
374 -- of the relevant instantiations.
376 -- Note: the instantiation mechanism is also shared for inlining
377 -- of subprogram bodies when front end inlining is done. In this
378 -- case the messages have the form:
380 -- in inlined body at ...
381 -- original error message
383 -- or
385 -- warning: in inlined body at
386 -- warning: original warning message
388 -- OK, this is the case where we have an instantiation error, and
389 -- we need to generate the error on the instantiation, rather than
390 -- on the template.
392 declare
393 Actual_Error_Loc : Source_Ptr;
394 -- Location of outer level instantiation in instantiation case, or
395 -- just a copy of Flag_Location in the normal case. This is the
396 -- location where all error messages will actually be posted.
398 Save_Error_Msg_Sloc : constant Source_Ptr := Error_Msg_Sloc;
399 -- Save possible location set for caller's message. We need to
400 -- use Error_Msg_Sloc for the location of the instantiation error
401 -- but we have to preserve a possible original value.
403 X : Source_File_Index;
405 Msg_Cont_Status : Boolean;
406 -- Used to label continuation lines in instantiation case with
407 -- proper Msg_Cont status.
409 begin
410 -- Loop to find highest level instantiation, where all error
411 -- messages will be placed.
413 X := Sindex;
414 loop
415 Actual_Error_Loc := Instantiation (X);
416 X := Get_Source_File_Index (Actual_Error_Loc);
417 exit when Instantiation (X) = No_Location;
418 end loop;
420 -- Since we are generating the messages at the instantiation
421 -- point in any case, we do not want the references to the
422 -- bad lines in the instance to be annotated with the location
423 -- of the instantiation.
425 Suppress_Instance_Location := True;
426 Msg_Cont_Status := False;
428 -- Loop to generate instantiation messages
430 Error_Msg_Sloc := Flag_Location;
431 X := Get_Source_File_Index (Flag_Location);
433 while Instantiation (X) /= No_Location loop
435 -- Suppress instantiation message on continuation lines
437 if Msg (Msg'First) /= '\' then
439 -- Case of inlined body
441 if Inlined_Body (X) then
442 if Is_Warning_Msg then
443 Error_Msg_Internal
444 ("?in inlined body #",
445 Actual_Error_Loc, Flag_Location, Msg_Cont_Status);
447 else
448 Error_Msg_Internal
449 ("error in inlined body #",
450 Actual_Error_Loc, Flag_Location, Msg_Cont_Status);
451 end if;
453 -- Case of generic instantiation
455 else
456 if Is_Warning_Msg then
457 Error_Msg_Internal
458 ("?in instantiation #",
459 Actual_Error_Loc, Flag_Location, Msg_Cont_Status);
461 else
462 Error_Msg_Internal
463 ("instantiation error #",
464 Actual_Error_Loc, Flag_Location, Msg_Cont_Status);
465 end if;
466 end if;
467 end if;
469 Error_Msg_Sloc := Instantiation (X);
470 X := Get_Source_File_Index (Error_Msg_Sloc);
471 Msg_Cont_Status := True;
472 end loop;
474 Suppress_Instance_Location := False;
475 Error_Msg_Sloc := Save_Error_Msg_Sloc;
477 -- Here we output the original message on the outer instantiation
479 Error_Msg_Internal
480 (Msg, Actual_Error_Loc, Flag_Location, Msg_Cont_Status);
481 end;
482 end Error_Msg;
484 ------------------
485 -- Error_Msg_AP --
486 ------------------
488 procedure Error_Msg_AP (Msg : String) is
489 S1 : Source_Ptr;
490 C : Character;
492 begin
493 -- If we had saved the Scan_Ptr value after scanning the previous
494 -- token, then we would have exactly the right place for putting
495 -- the flag immediately at hand. However, that would add at least
496 -- two instructions to a Scan call *just* to service the possibility
497 -- of an Error_Msg_AP call. So instead we reconstruct that value.
499 -- We have two possibilities, start with Prev_Token_Ptr and skip over
500 -- the current token, which is made harder by the possibility that this
501 -- token may be in error, or start with Token_Ptr and work backwards.
502 -- We used to take the second approach, but it's hard because of
503 -- comments, and harder still because things that look like comments
504 -- can appear inside strings. So now we take the first approach.
506 -- Note: in the case where there is no previous token, Prev_Token_Ptr
507 -- is set to Source_First, which is a reasonable position for the
508 -- error flag in this situation.
510 S1 := Prev_Token_Ptr;
511 C := Source (S1);
513 -- If the previous token is a string literal, we need a special approach
514 -- since there may be white space inside the literal and we don't want
515 -- to stop on that white space.
517 -- Note: since this is an error recovery issue anyway, it is not worth
518 -- worrying about special UTF_32 line terminator characters here.
520 if Prev_Token = Tok_String_Literal then
521 loop
522 S1 := S1 + 1;
524 if Source (S1) = C then
525 S1 := S1 + 1;
526 exit when Source (S1) /= C;
527 elsif Source (S1) in Line_Terminator then
528 exit;
529 end if;
530 end loop;
532 -- Character literal also needs special handling
534 elsif Prev_Token = Tok_Char_Literal then
535 S1 := S1 + 3;
537 -- Otherwise we search forward for the end of the current token, marked
538 -- by a line terminator, white space, a comment symbol or if we bump
539 -- into the following token (i.e. the current token).
541 -- Again, it is not worth worrying about UTF_32 special line terminator
542 -- characters in this context, since this is only for error recovery.
544 else
545 while Source (S1) not in Line_Terminator
546 and then Source (S1) /= ' '
547 and then Source (S1) /= ASCII.HT
548 and then (Source (S1) /= '-' or else Source (S1 + 1) /= '-')
549 and then S1 /= Token_Ptr
550 loop
551 S1 := S1 + 1;
552 end loop;
553 end if;
555 -- S1 is now set to the location for the flag
557 Error_Msg (Msg, S1);
558 end Error_Msg_AP;
560 ------------------
561 -- Error_Msg_BC --
562 ------------------
564 procedure Error_Msg_BC (Msg : String) is
565 begin
566 -- If we are at end of file, post the flag after the previous token
568 if Token = Tok_EOF then
569 Error_Msg_AP (Msg);
571 -- If we are at start of file, post the flag at the current token
573 elsif Token_Ptr = Source_First (Current_Source_File) then
574 Error_Msg_SC (Msg);
576 -- If the character before the current token is a space or a horizontal
577 -- tab, then we place the flag on this character (in the case of a tab
578 -- we would really like to place it in the "last" character of the tab
579 -- space, but that it too much trouble to worry about).
581 elsif Source (Token_Ptr - 1) = ' '
582 or else Source (Token_Ptr - 1) = ASCII.HT
583 then
584 Error_Msg (Msg, Token_Ptr - 1);
586 -- If there is no space or tab before the current token, then there is
587 -- no room to place the flag before the token, so we place it on the
588 -- token instead (this happens for example at the start of a line).
590 else
591 Error_Msg (Msg, Token_Ptr);
592 end if;
593 end Error_Msg_BC;
595 -------------------
596 -- Error_Msg_CRT --
597 -------------------
599 procedure Error_Msg_CRT (Feature : String; N : Node_Id) is
600 CNRT : constant String := " not allowed in no run time mode";
601 CCRT : constant String := " not supported by configuration>";
603 S : String (1 .. Feature'Length + 1 + CCRT'Length);
604 L : Natural;
606 begin
607 S (1) := '|';
608 S (2 .. Feature'Length + 1) := Feature;
609 L := Feature'Length + 2;
611 if No_Run_Time_Mode then
612 S (L .. L + CNRT'Length - 1) := CNRT;
613 L := L + CNRT'Length - 1;
615 else pragma Assert (Configurable_Run_Time_Mode);
616 S (L .. L + CCRT'Length - 1) := CCRT;
617 L := L + CCRT'Length - 1;
618 end if;
620 Error_Msg_N (S (1 .. L), N);
621 Configurable_Run_Time_Violations := Configurable_Run_Time_Violations + 1;
622 end Error_Msg_CRT;
624 -----------------
625 -- Error_Msg_F --
626 -----------------
628 procedure Error_Msg_F (Msg : String; N : Node_Id) is
629 begin
630 Error_Msg_NEL (Msg, N, N, Sloc (First_Node (N)));
631 end Error_Msg_F;
633 ------------------
634 -- Error_Msg_FE --
635 ------------------
637 procedure Error_Msg_FE
638 (Msg : String;
639 N : Node_Id;
640 E : Node_Or_Entity_Id)
642 begin
643 Error_Msg_NEL (Msg, N, E, Sloc (First_Node (N)));
644 end Error_Msg_FE;
646 ------------------------
647 -- Error_Msg_Internal --
648 ------------------------
650 procedure Error_Msg_Internal
651 (Msg : String;
652 Sptr : Source_Ptr;
653 Optr : Source_Ptr;
654 Msg_Cont : Boolean)
656 Next_Msg : Error_Msg_Id;
657 -- Pointer to next message at insertion point
659 Prev_Msg : Error_Msg_Id;
660 -- Pointer to previous message at insertion point
662 Temp_Msg : Error_Msg_Id;
664 procedure Handle_Serious_Error;
665 -- Internal procedure to do all error message handling for a serious
666 -- error message, other than bumping the error counts and arranging
667 -- for the message to be output.
669 --------------------------
670 -- Handle_Serious_Error --
671 --------------------------
673 procedure Handle_Serious_Error is
674 begin
675 -- Turn off code generation if not done already
677 if Operating_Mode = Generate_Code then
678 Operating_Mode := Check_Semantics;
679 Expander_Active := False;
680 end if;
682 -- Set the fatal error flag in the unit table unless we are
683 -- in Try_Semantics mode. This stops the semantics from being
684 -- performed if we find a serious error. This is skipped if we
685 -- are currently dealing with the configuration pragma file.
687 if not Try_Semantics
688 and then Current_Source_Unit /= No_Unit
689 then
690 Set_Fatal_Error (Get_Source_Unit (Sptr));
691 end if;
692 end Handle_Serious_Error;
694 -- Start of processing for Error_Msg_Internal
696 begin
697 if Raise_Exception_On_Error /= 0 then
698 raise Error_Msg_Exception;
699 end if;
701 Continuation := Msg_Cont;
702 Continuation_New_Line := False;
703 Suppress_Message := False;
704 Kill_Message := False;
705 Set_Msg_Text (Msg, Sptr);
707 -- Kill continuation if parent message killed
709 if Continuation and Last_Killed then
710 return;
711 end if;
713 -- Return without doing anything if message is suppressed
715 if Suppress_Message
716 and not All_Errors_Mode
717 and not (Msg (Msg'Last) = '!')
718 and not Is_Warning_Msg
719 then
720 if not Continuation then
721 Last_Killed := True;
722 end if;
724 return;
725 end if;
727 -- Return without doing anything if message is killed and this
728 -- is not the first error message. The philosophy is that if we
729 -- get a weird error message and we already have had a message,
730 -- then we hope the weird message is a junk cascaded message
732 if Kill_Message
733 and then not All_Errors_Mode
734 and then Total_Errors_Detected /= 0
735 then
736 if not Continuation then
737 Last_Killed := True;
738 end if;
740 return;
741 end if;
743 -- Special check for warning message to see if it should be output
745 if Is_Warning_Msg then
747 -- Immediate return if warning message and warnings are suppressed
749 if Warnings_Suppressed (Optr)
750 or else Warnings_Suppressed (Sptr)
751 then
752 Cur_Msg := No_Error_Msg;
753 return;
754 end if;
756 -- If the flag location is in the main extended source unit
757 -- then for sure we want the warning since it definitely belongs
759 if In_Extended_Main_Source_Unit (Sptr) then
760 null;
762 -- If the flag location is not in the main extended source unit,
763 -- then we want to eliminate the warning, unless it is in the
764 -- extended main code unit and we want warnings on the instance.
766 elsif In_Extended_Main_Code_Unit (Sptr)
767 and then Warn_On_Instance
768 then
769 null;
771 -- Keep warning if debug flag G set
773 elsif Debug_Flag_GG then
774 null;
776 -- Keep warning if message text ends in !!
778 elsif Msg (Msg'Last) = '!' and then Msg (Msg'Last - 1) = '!' then
779 null;
781 -- Here is where we delete a warning from a with'ed unit
783 else
784 Cur_Msg := No_Error_Msg;
786 if not Continuation then
787 Last_Killed := True;
788 end if;
790 return;
791 end if;
792 end if;
794 -- If message is to be ignored in special ignore message mode, this is
795 -- where we do this special processing, bypassing message output.
797 if Ignore_Errors_Enable > 0 then
798 if Is_Serious_Error then
799 Handle_Serious_Error;
800 end if;
802 return;
803 end if;
805 -- If error message line length set, and this is a continuation message
806 -- then all we do is to append the text to the text of the last message
807 -- with a comma space separator (eliminating a possible (style) or
808 -- info prefix).
810 if Error_Msg_Line_Length /= 0
811 and then Continuation
812 then
813 Cur_Msg := Errors.Last;
815 declare
816 Oldm : String_Ptr := Errors.Table (Cur_Msg).Text;
817 Newm : String (1 .. Oldm'Last + 2 + Msglen);
818 Newl : Natural;
819 M : Natural;
821 begin
822 -- First copy old message to new one and free it
824 Newm (Oldm'Range) := Oldm.all;
825 Newl := Oldm'Length;
826 Free (Oldm);
828 -- Remove (style) or info: at start of message
830 if Msglen > 8 and then Msg_Buffer (1 .. 8) = "(style) " then
831 M := 9;
832 elsif Msglen > 6 and then Msg_Buffer (1 .. 6) = "info: " then
833 M := 7;
834 else
835 M := 1;
836 end if;
838 -- Now deal with separation between messages. Normally this
839 -- is simply comma space, but there are some special cases.
841 -- If continuation new line, then put actual NL character in msg
843 if Continuation_New_Line then
844 Newl := Newl + 1;
845 Newm (Newl) := ASCII.LF;
847 -- If continuation message is enclosed in parentheses, then
848 -- special treatment (don't need a comma, and we want to combine
849 -- successive parenthetical remarks into a single one with
850 -- separating commas).
852 elsif Msg_Buffer (M) = '(' and then Msg_Buffer (Msglen) = ')' then
854 -- Case where existing message ends in right paren, remove
855 -- and separate parenthetical remarks with a comma.
857 if Newm (Newl) = ')' then
858 Newm (Newl) := ',';
859 Msg_Buffer (M) := ' ';
861 -- Case where we are adding new parenthetical comment
863 else
864 Newl := Newl + 1;
865 Newm (Newl) := ' ';
866 end if;
868 -- Case where continuation not in parens and no new line
870 else
871 Newm (Newl + 1 .. Newl + 2) := ", ";
872 Newl := Newl + 2;
873 end if;
875 -- Append new message
877 Newm (Newl + 1 .. Newl + Msglen - M + 1) :=
878 Msg_Buffer (M .. Msglen);
879 Newl := Newl + Msglen - M + 1;
880 Errors.Table (Cur_Msg).Text := new String'(Newm (1 .. Newl));
881 end;
883 return;
884 end if;
886 -- Otherwise build error message object for new message
888 Errors.Increment_Last;
889 Cur_Msg := Errors.Last;
890 Errors.Table (Cur_Msg).Text := new String'(Msg_Buffer (1 .. Msglen));
891 Errors.Table (Cur_Msg).Next := No_Error_Msg;
892 Errors.Table (Cur_Msg).Sptr := Sptr;
893 Errors.Table (Cur_Msg).Optr := Optr;
894 Errors.Table (Cur_Msg).Sfile := Get_Source_File_Index (Sptr);
895 Errors.Table (Cur_Msg).Line := Get_Physical_Line_Number (Sptr);
896 Errors.Table (Cur_Msg).Col := Get_Column_Number (Sptr);
897 Errors.Table (Cur_Msg).Warn := Is_Warning_Msg;
898 Errors.Table (Cur_Msg).Style := Is_Style_Msg;
899 Errors.Table (Cur_Msg).Serious := Is_Serious_Error;
900 Errors.Table (Cur_Msg).Uncond := Is_Unconditional_Msg;
901 Errors.Table (Cur_Msg).Msg_Cont := Continuation;
902 Errors.Table (Cur_Msg).Deleted := False;
904 -- If immediate errors mode set, output error message now. Also output
905 -- now if the -d1 debug flag is set (so node number message comes out
906 -- just before actual error message)
908 if Debug_Flag_OO or else Debug_Flag_1 then
909 Write_Eol;
910 Output_Source_Line
911 (Errors.Table (Cur_Msg).Line, Errors.Table (Cur_Msg).Sfile, True);
912 Temp_Msg := Cur_Msg;
913 Output_Error_Msgs (Temp_Msg);
915 -- If not in immediate errors mode, then we insert the message in the
916 -- error chain for later output by Finalize. The messages are sorted
917 -- first by unit (main unit comes first), and within a unit by source
918 -- location (earlier flag location first in the chain).
920 else
921 -- First a quick check, does this belong at the very end of the chain
922 -- of error messages. This saves a lot of time in the normal case if
923 -- there are lots of messages.
925 if Last_Error_Msg /= No_Error_Msg
926 and then Errors.Table (Cur_Msg).Sfile =
927 Errors.Table (Last_Error_Msg).Sfile
928 and then (Sptr > Errors.Table (Last_Error_Msg).Sptr
929 or else
930 (Sptr = Errors.Table (Last_Error_Msg).Sptr
931 and then
932 Optr > Errors.Table (Last_Error_Msg).Optr))
933 then
934 Prev_Msg := Last_Error_Msg;
935 Next_Msg := No_Error_Msg;
937 -- Otherwise do a full sequential search for the insertion point
939 else
940 Prev_Msg := No_Error_Msg;
941 Next_Msg := First_Error_Msg;
942 while Next_Msg /= No_Error_Msg loop
943 exit when
944 Errors.Table (Cur_Msg).Sfile < Errors.Table (Next_Msg).Sfile;
946 if Errors.Table (Cur_Msg).Sfile =
947 Errors.Table (Next_Msg).Sfile
948 then
949 exit when Sptr < Errors.Table (Next_Msg).Sptr
950 or else
951 (Sptr = Errors.Table (Next_Msg).Sptr
952 and then
953 Optr < Errors.Table (Next_Msg).Optr);
954 end if;
956 Prev_Msg := Next_Msg;
957 Next_Msg := Errors.Table (Next_Msg).Next;
958 end loop;
959 end if;
961 -- Now we insert the new message in the error chain. The insertion
962 -- point for the message is after Prev_Msg and before Next_Msg.
964 -- The possible insertion point for the new message is after Prev_Msg
965 -- and before Next_Msg. However, this is where we do a special check
966 -- for redundant parsing messages, defined as messages posted on the
967 -- same line. The idea here is that probably such messages are junk
968 -- from the parser recovering. In full errors mode, we don't do this
969 -- deletion, but otherwise such messages are discarded at this stage.
971 if Prev_Msg /= No_Error_Msg
972 and then Errors.Table (Prev_Msg).Line =
973 Errors.Table (Cur_Msg).Line
974 and then Errors.Table (Prev_Msg).Sfile =
975 Errors.Table (Cur_Msg).Sfile
976 and then Compiler_State = Parsing
977 and then not All_Errors_Mode
978 then
979 -- Don't delete unconditional messages and at this stage, don't
980 -- delete continuation lines (we attempted to delete those earlier
981 -- if the parent message was deleted.
983 if not Errors.Table (Cur_Msg).Uncond
984 and then not Continuation
985 then
986 -- Don't delete if prev msg is warning and new msg is an error.
987 -- This is because we don't want a real error masked by a
988 -- warning. In all other cases (that is parse errors for the
989 -- same line that are not unconditional) we do delete the
990 -- message. This helps to avoid junk extra messages from
991 -- cascaded parsing errors
993 if not (Errors.Table (Prev_Msg).Warn
995 Errors.Table (Prev_Msg).Style)
996 or else
997 (Errors.Table (Cur_Msg).Warn
999 Errors.Table (Cur_Msg).Style)
1000 then
1001 -- All tests passed, delete the message by simply returning
1002 -- without any further processing.
1004 if not Continuation then
1005 Last_Killed := True;
1006 end if;
1008 return;
1009 end if;
1010 end if;
1011 end if;
1013 -- Come here if message is to be inserted in the error chain
1015 if not Continuation then
1016 Last_Killed := False;
1017 end if;
1019 if Prev_Msg = No_Error_Msg then
1020 First_Error_Msg := Cur_Msg;
1021 else
1022 Errors.Table (Prev_Msg).Next := Cur_Msg;
1023 end if;
1025 Errors.Table (Cur_Msg).Next := Next_Msg;
1027 if Next_Msg = No_Error_Msg then
1028 Last_Error_Msg := Cur_Msg;
1029 end if;
1030 end if;
1032 -- Bump appropriate statistics count
1034 if Errors.Table (Cur_Msg).Warn or Errors.Table (Cur_Msg).Style then
1035 Warnings_Detected := Warnings_Detected + 1;
1037 else
1038 Total_Errors_Detected := Total_Errors_Detected + 1;
1040 if Errors.Table (Cur_Msg).Serious then
1041 Serious_Errors_Detected := Serious_Errors_Detected + 1;
1042 Handle_Serious_Error;
1043 end if;
1044 end if;
1046 -- If too many warnings turn off warnings
1048 if Maximum_Messages /= 0 then
1049 if Warnings_Detected = Maximum_Messages then
1050 Warning_Mode := Suppress;
1051 end if;
1053 -- If too many errors abandon compilation
1055 if Total_Errors_Detected = Maximum_Messages then
1056 raise Unrecoverable_Error;
1057 end if;
1058 end if;
1059 end Error_Msg_Internal;
1061 -----------------
1062 -- Error_Msg_N --
1063 -----------------
1065 procedure Error_Msg_N (Msg : String; N : Node_Or_Entity_Id) is
1066 begin
1067 Error_Msg_NEL (Msg, N, N, Sloc (N));
1068 end Error_Msg_N;
1070 ------------------
1071 -- Error_Msg_NE --
1072 ------------------
1074 procedure Error_Msg_NE
1075 (Msg : String;
1076 N : Node_Or_Entity_Id;
1077 E : Node_Or_Entity_Id)
1079 begin
1080 Error_Msg_NEL (Msg, N, E, Sloc (N));
1081 end Error_Msg_NE;
1083 -------------------
1084 -- Error_Msg_NEL --
1085 -------------------
1087 procedure Error_Msg_NEL
1088 (Msg : String;
1089 N : Node_Or_Entity_Id;
1090 E : Node_Or_Entity_Id;
1091 Flag_Location : Source_Ptr)
1093 begin
1094 if Special_Msg_Delete (Msg, N, E) then
1095 return;
1096 end if;
1098 Test_Style_Warning_Serious_Msg (Msg);
1100 -- Special handling for warning messages
1102 if Is_Warning_Msg then
1104 -- Suppress if no warnings set for either entity or node
1106 if No_Warnings (N) or else No_Warnings (E) then
1107 return;
1108 end if;
1110 -- Suppress if inside loop that is known to be null or is probably
1111 -- null (case where loop executes only if invalid values present).
1112 -- In either case warnings in the loop are likely to be junk.
1114 declare
1115 P : Node_Id;
1117 begin
1118 P := Parent (N);
1119 while Present (P) loop
1120 if Nkind (P) = N_Loop_Statement
1121 and then Suppress_Loop_Warnings (P)
1122 then
1123 return;
1124 end if;
1126 P := Parent (P);
1127 end loop;
1128 end;
1129 end if;
1131 -- Test for message to be output
1133 if All_Errors_Mode
1134 or else Msg (Msg'Last) = '!'
1135 or else Is_Warning_Msg
1136 or else OK_Node (N)
1137 or else (Msg (Msg'First) = '\' and not Last_Killed)
1138 then
1139 Debug_Output (N);
1140 Error_Msg_Node_1 := E;
1141 Error_Msg (Msg, Flag_Location);
1143 else
1144 Last_Killed := True;
1145 end if;
1147 if not (Is_Warning_Msg or Is_Style_Msg) then
1148 Set_Posted (N);
1149 end if;
1150 end Error_Msg_NEL;
1152 ------------------
1153 -- Error_Msg_NW --
1154 ------------------
1156 procedure Error_Msg_NW
1157 (Eflag : Boolean;
1158 Msg : String;
1159 N : Node_Or_Entity_Id)
1161 begin
1162 if Eflag
1163 and then In_Extended_Main_Source_Unit (N)
1164 and then Comes_From_Source (N)
1165 then
1166 Error_Msg_NEL (Msg, N, N, Sloc (N));
1167 end if;
1168 end Error_Msg_NW;
1170 -----------------
1171 -- Error_Msg_S --
1172 -----------------
1174 procedure Error_Msg_S (Msg : String) is
1175 begin
1176 Error_Msg (Msg, Scan_Ptr);
1177 end Error_Msg_S;
1179 ------------------
1180 -- Error_Msg_SC --
1181 ------------------
1183 procedure Error_Msg_SC (Msg : String) is
1184 begin
1185 -- If we are at end of file, post the flag after the previous token
1187 if Token = Tok_EOF then
1188 Error_Msg_AP (Msg);
1190 -- For all other cases the message is posted at the current token
1191 -- pointer position
1193 else
1194 Error_Msg (Msg, Token_Ptr);
1195 end if;
1196 end Error_Msg_SC;
1198 ------------------
1199 -- Error_Msg_SP --
1200 ------------------
1202 procedure Error_Msg_SP (Msg : String) is
1203 begin
1204 -- Note: in the case where there is no previous token, Prev_Token_Ptr
1205 -- is set to Source_First, which is a reasonable position for the
1206 -- error flag in this situation
1208 Error_Msg (Msg, Prev_Token_Ptr);
1209 end Error_Msg_SP;
1211 --------------
1212 -- Finalize --
1213 --------------
1215 procedure Finalize (Last_Call : Boolean) is
1216 Cur : Error_Msg_Id;
1217 Nxt : Error_Msg_Id;
1218 F : Error_Msg_Id;
1220 begin
1221 -- Eliminate any duplicated error messages from the list. This is
1222 -- done after the fact to avoid problems with Change_Error_Text.
1224 Cur := First_Error_Msg;
1225 while Cur /= No_Error_Msg loop
1226 Nxt := Errors.Table (Cur).Next;
1228 F := Nxt;
1229 while F /= No_Error_Msg
1230 and then Errors.Table (F).Sptr = Errors.Table (Cur).Sptr
1231 loop
1232 Check_Duplicate_Message (Cur, F);
1233 F := Errors.Table (F).Next;
1234 end loop;
1236 Cur := Nxt;
1237 end loop;
1239 -- Mark any messages suppressed by specific warnings as Deleted
1241 Cur := First_Error_Msg;
1242 while Cur /= No_Error_Msg loop
1243 if not Errors.Table (Cur).Deleted
1244 and then Warning_Specifically_Suppressed
1245 (Errors.Table (Cur).Sptr,
1246 Errors.Table (Cur).Text)
1247 then
1248 Errors.Table (Cur).Deleted := True;
1249 Warnings_Detected := Warnings_Detected - 1;
1250 end if;
1252 Cur := Errors.Table (Cur).Next;
1253 end loop;
1255 Finalize_Called := True;
1257 -- Check consistency of specific warnings (may add warnings). We only
1258 -- do this on the last call, after all possible warnings are posted.
1260 if Last_Call then
1261 Validate_Specific_Warnings (Error_Msg'Access);
1262 end if;
1263 end Finalize;
1265 ----------------
1266 -- First_Node --
1267 ----------------
1269 function First_Node (C : Node_Id) return Node_Id is
1270 L : constant Source_Ptr := Sloc (Original_Node (C));
1271 Sfile : constant Source_File_Index := Get_Source_File_Index (L);
1272 Earliest : Node_Id;
1273 Eloc : Source_Ptr;
1275 function Test_Earlier (N : Node_Id) return Traverse_Result;
1276 -- Function applied to every node in the construct
1278 procedure Search_Tree_First is new Traverse_Proc (Test_Earlier);
1279 -- Create traversal procedure
1281 ------------------
1282 -- Test_Earlier --
1283 ------------------
1285 function Test_Earlier (N : Node_Id) return Traverse_Result is
1286 Loc : constant Source_Ptr := Sloc (Original_Node (N));
1288 begin
1289 -- Check for earlier. The tests for being in the same file ensures
1290 -- against strange cases of foreign code somehow being present. We
1291 -- don't want wild placement of messages if that happens, so it is
1292 -- best to just ignore this situation.
1294 if Loc < Eloc
1295 and then Get_Source_File_Index (Loc) = Sfile
1296 then
1297 Earliest := Original_Node (N);
1298 Eloc := Loc;
1299 end if;
1301 return OK_Orig;
1302 end Test_Earlier;
1304 -- Start of processing for First_Node
1306 begin
1307 Earliest := Original_Node (C);
1308 Eloc := Sloc (Earliest);
1309 Search_Tree_First (Original_Node (C));
1310 return Earliest;
1311 end First_Node;
1313 ----------------
1314 -- First_Sloc --
1315 ----------------
1317 function First_Sloc (N : Node_Id) return Source_Ptr is
1318 SI : constant Source_File_Index := Source_Index (Get_Source_Unit (N));
1319 SF : constant Source_Ptr := Source_First (SI);
1320 F : Node_Id;
1321 S : Source_Ptr;
1323 begin
1324 F := First_Node (N);
1325 S := Sloc (F);
1327 -- The following circuit is a bit subtle. When we have parenthesized
1328 -- expressions, then the Sloc will not record the location of the
1329 -- paren, but we would like to post the flag on the paren. So what
1330 -- we do is to crawl up the tree from the First_Node, adjusting the
1331 -- Sloc value for any parentheses we know are present. Yes, we know
1332 -- this circuit is not 100% reliable (e.g. because we don't record
1333 -- all possible paren level values), but this is only for an error
1334 -- message so it is good enough.
1336 Node_Loop : loop
1337 Paren_Loop : for J in 1 .. Paren_Count (F) loop
1339 -- We don't look more than 12 characters behind the current
1340 -- location, and in any case not past the front of the source.
1342 Search_Loop : for K in 1 .. 12 loop
1343 exit Search_Loop when S = SF;
1345 if Source_Text (SI) (S - 1) = '(' then
1346 S := S - 1;
1347 exit Search_Loop;
1349 elsif Source_Text (SI) (S - 1) <= ' ' then
1350 S := S - 1;
1352 else
1353 exit Search_Loop;
1354 end if;
1355 end loop Search_Loop;
1356 end loop Paren_Loop;
1358 exit Node_Loop when F = N;
1359 F := Parent (F);
1360 exit Node_Loop when Nkind (F) not in N_Subexpr;
1361 end loop Node_Loop;
1363 return S;
1364 end First_Sloc;
1366 ----------------
1367 -- Initialize --
1368 ----------------
1370 procedure Initialize is
1371 begin
1372 Errors.Init;
1373 First_Error_Msg := No_Error_Msg;
1374 Last_Error_Msg := No_Error_Msg;
1375 Serious_Errors_Detected := 0;
1376 Total_Errors_Detected := 0;
1377 Warnings_Detected := 0;
1378 Cur_Msg := No_Error_Msg;
1379 List_Pragmas.Init;
1381 -- Initialize warnings table, if all warnings are suppressed, supply
1382 -- an initial dummy entry covering all possible source locations.
1384 Warnings.Init;
1385 Specific_Warnings.Init;
1387 if Warning_Mode = Suppress then
1388 Warnings.Increment_Last;
1389 Warnings.Table (Warnings.Last).Start := Source_Ptr'First;
1390 Warnings.Table (Warnings.Last).Stop := Source_Ptr'Last;
1391 end if;
1392 end Initialize;
1394 -----------------
1395 -- No_Warnings --
1396 -----------------
1398 function No_Warnings (N : Node_Or_Entity_Id) return Boolean is
1399 begin
1400 if Error_Posted (N) then
1401 return True;
1403 elsif Nkind (N) in N_Entity and then Has_Warnings_Off (N) then
1404 return True;
1406 elsif Is_Entity_Name (N)
1407 and then Present (Entity (N))
1408 and then Has_Warnings_Off (Entity (N))
1409 then
1410 return True;
1412 else
1413 return False;
1414 end if;
1415 end No_Warnings;
1417 -------------
1418 -- OK_Node --
1419 -------------
1421 function OK_Node (N : Node_Id) return Boolean is
1422 K : constant Node_Kind := Nkind (N);
1424 begin
1425 if Error_Posted (N) then
1426 return False;
1428 elsif K in N_Has_Etype
1429 and then Present (Etype (N))
1430 and then Error_Posted (Etype (N))
1431 then
1432 return False;
1434 elsif (K in N_Op
1435 or else K = N_Attribute_Reference
1436 or else K = N_Character_Literal
1437 or else K = N_Expanded_Name
1438 or else K = N_Identifier
1439 or else K = N_Operator_Symbol)
1440 and then Present (Entity (N))
1441 and then Error_Posted (Entity (N))
1442 then
1443 return False;
1444 else
1445 return True;
1446 end if;
1447 end OK_Node;
1449 ---------------------
1450 -- Output_Messages --
1451 ---------------------
1453 procedure Output_Messages is
1454 E : Error_Msg_Id;
1455 Err_Flag : Boolean;
1457 procedure Write_Error_Summary;
1458 -- Write error summary
1460 procedure Write_Header (Sfile : Source_File_Index);
1461 -- Write header line (compiling or checking given file)
1463 procedure Write_Max_Errors;
1464 -- Write message if max errors reached
1466 -------------------------
1467 -- Write_Error_Summary --
1468 -------------------------
1470 procedure Write_Error_Summary is
1471 begin
1472 -- Extra blank line if error messages or source listing were output
1474 if Total_Errors_Detected + Warnings_Detected > 0
1475 or else Full_List
1476 then
1477 Write_Eol;
1478 end if;
1480 -- Message giving number of lines read and number of errors detected.
1481 -- This normally goes to Standard_Output. The exception is when brief
1482 -- mode is not set, verbose mode (or full list mode) is set, and
1483 -- there are errors. In this case we send the message to standard
1484 -- error to make sure that *something* appears on standard error in
1485 -- an error situation.
1487 -- Formerly, only the "# errors" suffix was sent to stderr, whereas
1488 -- "# lines:" appeared on stdout. This caused problems on VMS when
1489 -- the stdout buffer was flushed, giving an extra line feed after
1490 -- the prefix.
1492 if Total_Errors_Detected + Warnings_Detected /= 0
1493 and then not Brief_Output
1494 and then (Verbose_Mode or Full_List)
1495 then
1496 Set_Standard_Error;
1497 end if;
1499 -- Message giving total number of lines
1501 Write_Str (" ");
1502 Write_Int (Num_Source_Lines (Main_Source_File));
1504 if Num_Source_Lines (Main_Source_File) = 1 then
1505 Write_Str (" line: ");
1506 else
1507 Write_Str (" lines: ");
1508 end if;
1510 if Total_Errors_Detected = 0 then
1511 Write_Str ("No errors");
1513 elsif Total_Errors_Detected = 1 then
1514 Write_Str ("1 error");
1516 else
1517 Write_Int (Total_Errors_Detected);
1518 Write_Str (" errors");
1519 end if;
1521 if Warnings_Detected /= 0 then
1522 Write_Str (", ");
1523 Write_Int (Warnings_Detected);
1524 Write_Str (" warning");
1526 if Warnings_Detected /= 1 then
1527 Write_Char ('s');
1528 end if;
1530 if Warning_Mode = Treat_As_Error then
1531 Write_Str (" (treated as error");
1533 if Warnings_Detected /= 1 then
1534 Write_Char ('s');
1535 end if;
1537 Write_Char (')');
1538 end if;
1539 end if;
1541 Write_Eol;
1542 Set_Standard_Output;
1543 end Write_Error_Summary;
1545 ------------------
1546 -- Write_Header --
1547 ------------------
1549 procedure Write_Header (Sfile : Source_File_Index) is
1550 begin
1551 if Verbose_Mode or Full_List then
1552 if Original_Operating_Mode = Generate_Code then
1553 Write_Str ("Compiling: ");
1554 else
1555 Write_Str ("Checking: ");
1556 end if;
1558 Write_Name (Full_File_Name (Sfile));
1560 if not Debug_Flag_7 then
1561 Write_Str (" (source file time stamp: ");
1562 Write_Time_Stamp (Sfile);
1563 Write_Char (')');
1564 end if;
1566 Write_Eol;
1567 end if;
1568 end Write_Header;
1570 ----------------------
1571 -- Write_Max_Errors --
1572 ----------------------
1574 procedure Write_Max_Errors is
1575 begin
1576 if Maximum_Messages /= 0 then
1577 if Warnings_Detected >= Maximum_Messages then
1578 Set_Standard_Error;
1579 Write_Line ("maximum number of warnings output");
1580 Write_Line ("any further warnings suppressed");
1581 Set_Standard_Output;
1582 end if;
1584 -- If too many errors print message
1586 if Total_Errors_Detected >= Maximum_Messages then
1587 Set_Standard_Error;
1588 Write_Line ("fatal error: maximum number of errors detected");
1589 Set_Standard_Output;
1590 end if;
1591 end if;
1592 end Write_Max_Errors;
1594 -- Start of processing for Output_Messages
1596 begin
1597 -- Error if Finalize has not been called
1599 if not Finalize_Called then
1600 raise Program_Error;
1601 end if;
1603 -- Reset current error source file if the main unit has a pragma
1604 -- Source_Reference. This ensures outputting the proper name of
1605 -- the source file in this situation.
1607 if Main_Source_File = No_Source_File
1608 or else Num_SRef_Pragmas (Main_Source_File) /= 0
1609 then
1610 Current_Error_Source_File := No_Source_File;
1611 end if;
1613 -- Brief Error mode
1615 if Brief_Output or (not Full_List and not Verbose_Mode) then
1616 Set_Standard_Error;
1618 E := First_Error_Msg;
1619 while E /= No_Error_Msg loop
1620 if not Errors.Table (E).Deleted and then not Debug_Flag_KK then
1621 if Full_Path_Name_For_Brief_Errors then
1622 Write_Name (Full_Ref_Name (Errors.Table (E).Sfile));
1623 else
1624 Write_Name (Reference_Name (Errors.Table (E).Sfile));
1625 end if;
1627 Write_Char (':');
1628 Write_Int (Int (Physical_To_Logical
1629 (Errors.Table (E).Line,
1630 Errors.Table (E).Sfile)));
1631 Write_Char (':');
1633 if Errors.Table (E).Col < 10 then
1634 Write_Char ('0');
1635 end if;
1637 Write_Int (Int (Errors.Table (E).Col));
1638 Write_Str (": ");
1639 Output_Msg_Text (E);
1640 Write_Eol;
1641 end if;
1643 E := Errors.Table (E).Next;
1644 end loop;
1646 Set_Standard_Output;
1647 end if;
1649 -- Full source listing case
1651 if Full_List then
1652 List_Pragmas_Index := 1;
1653 List_Pragmas_Mode := True;
1654 E := First_Error_Msg;
1656 -- Normal case, to stdout (copyright notice already output)
1658 if Full_List_File_Name = null then
1659 if not Debug_Flag_7 then
1660 Write_Eol;
1661 end if;
1663 -- Output to file
1665 else
1666 Create_List_File_Access.all (Full_List_File_Name.all);
1667 Set_Special_Output (Write_List_Info_Access.all'Access);
1669 -- Write copyright notice to file
1671 if not Debug_Flag_7 then
1672 Write_Str ("GNAT ");
1673 Write_Str (Gnat_Version_String);
1674 Write_Eol;
1675 Write_Str ("Copyright 1992-" &
1676 Current_Year &
1677 ", Free Software Foundation, Inc.");
1678 Write_Eol;
1679 end if;
1680 end if;
1682 -- First list extended main source file units with errors
1684 for U in Main_Unit .. Last_Unit loop
1685 if In_Extended_Main_Source_Unit (Cunit_Entity (U))
1687 -- If debug flag d.m is set, only the main source is listed
1689 and then (U = Main_Unit or else not Debug_Flag_Dot_M)
1691 -- If the unit of the entity does not come from source, it is
1692 -- an implicit subprogram declaration for a child subprogram.
1693 -- Do not emit errors for it, they are listed with the body.
1695 and then
1696 (No (Cunit_Entity (U))
1697 or else Comes_From_Source (Cunit_Entity (U))
1698 or else not Is_Subprogram (Cunit_Entity (U)))
1699 then
1700 declare
1701 Sfile : constant Source_File_Index := Source_Index (U);
1703 begin
1704 Write_Eol;
1705 Write_Header (Sfile);
1706 Write_Eol;
1708 -- Normally, we don't want an "error messages from file"
1709 -- message when listing the entire file, so we set the
1710 -- current source file as the current error source file.
1711 -- However, the old style of doing things was to list this
1712 -- message if pragma Source_Reference is present, even for
1713 -- the main unit. Since the purpose of the -gnatd.m switch
1714 -- is to duplicate the old behavior, we skip the reset if
1715 -- this debug flag is set.
1717 if not Debug_Flag_Dot_M then
1718 Current_Error_Source_File := Sfile;
1719 end if;
1721 for N in 1 .. Last_Source_Line (Sfile) loop
1722 while E /= No_Error_Msg
1723 and then Errors.Table (E).Deleted
1724 loop
1725 E := Errors.Table (E).Next;
1726 end loop;
1728 Err_Flag :=
1729 E /= No_Error_Msg
1730 and then Errors.Table (E).Line = N
1731 and then Errors.Table (E).Sfile = Sfile;
1733 Output_Source_Line (N, Sfile, Err_Flag);
1735 if Err_Flag then
1736 Output_Error_Msgs (E);
1738 if not Debug_Flag_2 then
1739 Write_Eol;
1740 end if;
1741 end if;
1742 end loop;
1743 end;
1744 end if;
1745 end loop;
1747 -- Then output errors, if any, for subsidiary units not in the
1748 -- main extended unit.
1750 -- Note: if debug flag d.m set, include errors for any units other
1751 -- than the main unit in the extended source unit (e.g. spec and
1752 -- subunits for a body).
1754 while E /= No_Error_Msg
1755 and then (not In_Extended_Main_Source_Unit (Errors.Table (E).Sptr)
1756 or else
1757 (Debug_Flag_Dot_M
1758 and then Get_Source_Unit
1759 (Errors.Table (E).Sptr) /= Main_Unit))
1760 loop
1761 if Errors.Table (E).Deleted then
1762 E := Errors.Table (E).Next;
1764 else
1765 Write_Eol;
1766 Output_Source_Line
1767 (Errors.Table (E).Line, Errors.Table (E).Sfile, True);
1768 Output_Error_Msgs (E);
1769 end if;
1770 end loop;
1772 -- If output to file, write extra copy of error summary to the
1773 -- output file, and then close it.
1775 if Full_List_File_Name /= null then
1776 Write_Error_Summary;
1777 Write_Max_Errors;
1778 Close_List_File_Access.all;
1779 Cancel_Special_Output;
1780 end if;
1781 end if;
1783 -- Verbose mode (error lines only with error flags). Normally this is
1784 -- ignored in full list mode, unless we are listing to a file, in which
1785 -- case we still generate -gnatv output to standard output.
1787 if Verbose_Mode
1788 and then (not Full_List or else Full_List_File_Name /= null)
1789 then
1790 Write_Eol;
1791 Write_Header (Main_Source_File);
1792 E := First_Error_Msg;
1794 -- Loop through error lines
1796 while E /= No_Error_Msg loop
1797 if Errors.Table (E).Deleted then
1798 E := Errors.Table (E).Next;
1799 else
1800 Write_Eol;
1801 Output_Source_Line
1802 (Errors.Table (E).Line, Errors.Table (E).Sfile, True);
1803 Output_Error_Msgs (E);
1804 end if;
1805 end loop;
1806 end if;
1808 -- Output error summary if verbose or full list mode
1810 if Verbose_Mode or else Full_List then
1811 Write_Error_Summary;
1812 end if;
1814 Write_Max_Errors;
1816 if Warning_Mode = Treat_As_Error then
1817 Total_Errors_Detected := Total_Errors_Detected + Warnings_Detected;
1818 Warnings_Detected := 0;
1819 end if;
1820 end Output_Messages;
1822 ------------------------
1823 -- Output_Source_Line --
1824 ------------------------
1826 procedure Output_Source_Line
1827 (L : Physical_Line_Number;
1828 Sfile : Source_File_Index;
1829 Errs : Boolean)
1831 S : Source_Ptr;
1832 C : Character;
1834 Line_Number_Output : Boolean := False;
1835 -- Set True once line number is output
1837 Empty_Line : Boolean := True;
1838 -- Set False if line includes at least one character
1840 begin
1841 if Sfile /= Current_Error_Source_File then
1842 Write_Str ("==============Error messages for ");
1844 case Sinput.File_Type (Sfile) is
1845 when Sinput.Src =>
1846 Write_Str ("source");
1848 when Sinput.Config =>
1849 Write_Str ("configuration pragmas");
1851 when Sinput.Def =>
1852 Write_Str ("symbol definition");
1854 when Sinput.Preproc =>
1855 Write_Str ("preprocessing data");
1856 end case;
1858 Write_Str (" file: ");
1859 Write_Name (Full_File_Name (Sfile));
1860 Write_Eol;
1862 if Num_SRef_Pragmas (Sfile) > 0 then
1863 Write_Str ("--------------Line numbers from file: ");
1864 Write_Name (Full_Ref_Name (Sfile));
1865 Write_Str (" (starting at line ");
1866 Write_Int (Int (First_Mapped_Line (Sfile)));
1867 Write_Char (')');
1868 Write_Eol;
1869 end if;
1871 Current_Error_Source_File := Sfile;
1872 end if;
1874 if Errs or List_Pragmas_Mode then
1875 Output_Line_Number (Physical_To_Logical (L, Sfile));
1876 Line_Number_Output := True;
1877 end if;
1879 S := Line_Start (L, Sfile);
1881 loop
1882 C := Source_Text (Sfile) (S);
1883 exit when C = ASCII.LF or else C = ASCII.CR or else C = EOF;
1885 -- Deal with matching entry in List_Pragmas table
1887 if Full_List
1888 and then List_Pragmas_Index <= List_Pragmas.Last
1889 and then S = List_Pragmas.Table (List_Pragmas_Index).Ploc
1890 then
1891 case List_Pragmas.Table (List_Pragmas_Index).Ptyp is
1892 when Page =>
1893 Write_Char (C);
1895 -- Ignore if on line with errors so that error flags
1896 -- get properly listed with the error line .
1898 if not Errs then
1899 Write_Char (ASCII.FF);
1900 end if;
1902 when List_On =>
1903 List_Pragmas_Mode := True;
1905 if not Line_Number_Output then
1906 Output_Line_Number (Physical_To_Logical (L, Sfile));
1907 Line_Number_Output := True;
1908 end if;
1910 Write_Char (C);
1912 when List_Off =>
1913 Write_Char (C);
1914 List_Pragmas_Mode := False;
1915 end case;
1917 List_Pragmas_Index := List_Pragmas_Index + 1;
1919 -- Normal case (no matching entry in List_Pragmas table)
1921 else
1922 if Errs or List_Pragmas_Mode then
1923 Write_Char (C);
1924 end if;
1925 end if;
1927 Empty_Line := False;
1928 S := S + 1;
1929 end loop;
1931 -- If we have output a source line, then add the line terminator, with
1932 -- training spaces preserved (so we output the line exactly as input).
1934 if Line_Number_Output then
1935 if Empty_Line then
1936 Write_Eol;
1937 else
1938 Write_Eol_Keep_Blanks;
1939 end if;
1940 end if;
1941 end Output_Source_Line;
1943 -----------------------------
1944 -- Remove_Warning_Messages --
1945 -----------------------------
1947 procedure Remove_Warning_Messages (N : Node_Id) is
1949 function Check_For_Warning (N : Node_Id) return Traverse_Result;
1950 -- This function checks one node for a possible warning message
1952 function Check_All_Warnings is new Traverse_Func (Check_For_Warning);
1953 -- This defines the traversal operation
1955 -----------------------
1956 -- Check_For_Warning --
1957 -----------------------
1959 function Check_For_Warning (N : Node_Id) return Traverse_Result is
1960 Loc : constant Source_Ptr := Sloc (N);
1961 E : Error_Msg_Id;
1963 function To_Be_Removed (E : Error_Msg_Id) return Boolean;
1964 -- Returns True for a message that is to be removed. Also adjusts
1965 -- warning count appropriately.
1967 -------------------
1968 -- To_Be_Removed --
1969 -------------------
1971 function To_Be_Removed (E : Error_Msg_Id) return Boolean is
1972 begin
1973 if E /= No_Error_Msg
1975 -- Don't remove if location does not match
1977 and then Errors.Table (E).Optr = Loc
1979 -- Don't remove if not warning/info message. Note that we do
1980 -- not remove style messages here. They are warning messages
1981 -- but not ones we want removed in this context.
1983 and then Errors.Table (E).Warn
1985 -- Don't remove unconditional messages
1987 and then not Errors.Table (E).Uncond
1988 then
1989 Warnings_Detected := Warnings_Detected - 1;
1990 return True;
1992 -- No removal required
1994 else
1995 return False;
1996 end if;
1997 end To_Be_Removed;
1999 -- Start of processing for Check_For_Warnings
2001 begin
2002 while To_Be_Removed (First_Error_Msg) loop
2003 First_Error_Msg := Errors.Table (First_Error_Msg).Next;
2004 end loop;
2006 if First_Error_Msg = No_Error_Msg then
2007 Last_Error_Msg := No_Error_Msg;
2008 end if;
2010 E := First_Error_Msg;
2011 while E /= No_Error_Msg loop
2012 while To_Be_Removed (Errors.Table (E).Next) loop
2013 Errors.Table (E).Next :=
2014 Errors.Table (Errors.Table (E).Next).Next;
2016 if Errors.Table (E).Next = No_Error_Msg then
2017 Last_Error_Msg := E;
2018 end if;
2019 end loop;
2021 E := Errors.Table (E).Next;
2022 end loop;
2024 if Nkind (N) = N_Raise_Constraint_Error
2025 and then Original_Node (N) /= N
2026 and then No (Condition (N))
2027 then
2028 -- Warnings may have been posted on subexpressions of the original
2029 -- tree. We place the original node back on the tree to remove
2030 -- those warnings, whose sloc do not match those of any node in
2031 -- the current tree. Given that we are in unreachable code, this
2032 -- modification to the tree is harmless.
2034 declare
2035 Status : Traverse_Final_Result;
2037 begin
2038 if Is_List_Member (N) then
2039 Set_Condition (N, Original_Node (N));
2040 Status := Check_All_Warnings (Condition (N));
2041 else
2042 Rewrite (N, Original_Node (N));
2043 Status := Check_All_Warnings (N);
2044 end if;
2046 return Status;
2047 end;
2049 else
2050 return OK;
2051 end if;
2052 end Check_For_Warning;
2054 -- Start of processing for Remove_Warning_Messages
2056 begin
2057 if Warnings_Detected /= 0 then
2058 declare
2059 Discard : Traverse_Final_Result;
2060 pragma Warnings (Off, Discard);
2062 begin
2063 Discard := Check_All_Warnings (N);
2064 end;
2065 end if;
2066 end Remove_Warning_Messages;
2068 procedure Remove_Warning_Messages (L : List_Id) is
2069 Stat : Node_Id;
2070 begin
2071 if Is_Non_Empty_List (L) then
2072 Stat := First (L);
2073 while Present (Stat) loop
2074 Remove_Warning_Messages (Stat);
2075 Next (Stat);
2076 end loop;
2077 end if;
2078 end Remove_Warning_Messages;
2080 ---------------------------
2081 -- Set_Identifier_Casing --
2082 ---------------------------
2084 procedure Set_Identifier_Casing
2085 (Identifier_Name : System.Address;
2086 File_Name : System.Address)
2088 Ident : constant Big_String_Ptr := To_Big_String_Ptr (Identifier_Name);
2089 File : constant Big_String_Ptr := To_Big_String_Ptr (File_Name);
2090 Flen : Natural;
2092 Desired_Case : Casing_Type := Mixed_Case;
2093 -- Casing required for result. Default value of Mixed_Case is used if
2094 -- for some reason we cannot find the right file name in the table.
2096 begin
2097 -- Get length of file name
2099 Flen := 0;
2100 while File (Flen + 1) /= ASCII.NUL loop
2101 Flen := Flen + 1;
2102 end loop;
2104 -- Loop through file names to find matching one. This is a bit slow,
2105 -- but we only do it in error situations so it is not so terrible.
2106 -- Note that if the loop does not exit, then the desired case will
2107 -- be left set to Mixed_Case, this can happen if the name was not
2108 -- in canonical form, and gets canonicalized on VMS. Possibly we
2109 -- could fix this by unconditinally canonicalizing these names ???
2111 for J in 1 .. Last_Source_File loop
2112 Get_Name_String (Full_Debug_Name (J));
2114 if Name_Len = Flen
2115 and then Name_Buffer (1 .. Name_Len) = String (File (1 .. Flen))
2116 then
2117 Desired_Case := Identifier_Casing (J);
2118 exit;
2119 end if;
2120 end loop;
2122 -- Copy identifier as given to Name_Buffer
2124 for J in Name_Buffer'Range loop
2125 Name_Buffer (J) := Ident (J);
2127 if Name_Buffer (J) = ASCII.NUL then
2128 Name_Len := J - 1;
2129 exit;
2130 end if;
2131 end loop;
2133 Set_Casing (Desired_Case);
2134 end Set_Identifier_Casing;
2136 -----------------------
2137 -- Set_Ignore_Errors --
2138 -----------------------
2140 procedure Set_Ignore_Errors (To : Boolean) is
2141 begin
2142 Errors_Must_Be_Ignored := To;
2143 end Set_Ignore_Errors;
2145 ------------------------------
2146 -- Set_Msg_Insertion_Column --
2147 ------------------------------
2149 procedure Set_Msg_Insertion_Column is
2150 begin
2151 if RM_Column_Check then
2152 Set_Msg_Str (" in column ");
2153 Set_Msg_Int (Int (Error_Msg_Col) + 1);
2154 end if;
2155 end Set_Msg_Insertion_Column;
2157 ----------------------------
2158 -- Set_Msg_Insertion_Node --
2159 ----------------------------
2161 procedure Set_Msg_Insertion_Node is
2162 K : Node_Kind;
2164 begin
2165 Suppress_Message :=
2166 Error_Msg_Node_1 = Error
2167 or else Error_Msg_Node_1 = Any_Type;
2169 if Error_Msg_Node_1 = Empty then
2170 Set_Msg_Blank_Conditional;
2171 Set_Msg_Str ("<empty>");
2173 elsif Error_Msg_Node_1 = Error then
2174 Set_Msg_Blank;
2175 Set_Msg_Str ("<error>");
2177 elsif Error_Msg_Node_1 = Standard_Void_Type then
2178 Set_Msg_Blank;
2179 Set_Msg_Str ("procedure name");
2181 else
2182 Set_Msg_Blank_Conditional;
2184 -- Output name
2186 K := Nkind (Error_Msg_Node_1);
2188 -- If we have operator case, skip quotes since name of operator
2189 -- itself will supply the required quotations. An operator can be
2190 -- an applied use in an expression or an explicit operator symbol,
2191 -- or an identifier whose name indicates it is an operator.
2193 if K in N_Op
2194 or else K = N_Operator_Symbol
2195 or else K = N_Defining_Operator_Symbol
2196 or else ((K = N_Identifier or else K = N_Defining_Identifier)
2197 and then Is_Operator_Name (Chars (Error_Msg_Node_1)))
2198 then
2199 Set_Msg_Node (Error_Msg_Node_1);
2201 -- Normal case, not an operator, surround with quotes
2203 else
2204 Set_Msg_Quote;
2205 Set_Qualification (Error_Msg_Qual_Level, Error_Msg_Node_1);
2206 Set_Msg_Node (Error_Msg_Node_1);
2207 Set_Msg_Quote;
2208 end if;
2209 end if;
2211 -- The following assignment ensures that a second ampersand insertion
2212 -- character will correspond to the Error_Msg_Node_2 parameter. We
2213 -- suppress possible validity checks in case operating in -gnatVa mode,
2214 -- and Error_Msg_Node_2 is not needed and has not been set.
2216 declare
2217 pragma Suppress (Range_Check);
2218 begin
2219 Error_Msg_Node_1 := Error_Msg_Node_2;
2220 end;
2221 end Set_Msg_Insertion_Node;
2223 --------------------------------------
2224 -- Set_Msg_Insertion_Type_Reference --
2225 --------------------------------------
2227 procedure Set_Msg_Insertion_Type_Reference (Flag : Source_Ptr) is
2228 Ent : Entity_Id;
2230 begin
2231 Set_Msg_Blank;
2233 if Error_Msg_Node_1 = Standard_Void_Type then
2234 Set_Msg_Str ("package or procedure name");
2235 return;
2237 elsif Error_Msg_Node_1 = Standard_Exception_Type then
2238 Set_Msg_Str ("exception name");
2239 return;
2241 elsif Error_Msg_Node_1 = Any_Access
2242 or else Error_Msg_Node_1 = Any_Array
2243 or else Error_Msg_Node_1 = Any_Boolean
2244 or else Error_Msg_Node_1 = Any_Character
2245 or else Error_Msg_Node_1 = Any_Composite
2246 or else Error_Msg_Node_1 = Any_Discrete
2247 or else Error_Msg_Node_1 = Any_Fixed
2248 or else Error_Msg_Node_1 = Any_Integer
2249 or else Error_Msg_Node_1 = Any_Modular
2250 or else Error_Msg_Node_1 = Any_Numeric
2251 or else Error_Msg_Node_1 = Any_Real
2252 or else Error_Msg_Node_1 = Any_Scalar
2253 or else Error_Msg_Node_1 = Any_String
2254 then
2255 Get_Unqualified_Decoded_Name_String (Chars (Error_Msg_Node_1));
2256 Set_Msg_Name_Buffer;
2257 return;
2259 elsif Error_Msg_Node_1 = Universal_Real then
2260 Set_Msg_Str ("type universal real");
2261 return;
2263 elsif Error_Msg_Node_1 = Universal_Integer then
2264 Set_Msg_Str ("type universal integer");
2265 return;
2267 elsif Error_Msg_Node_1 = Universal_Fixed then
2268 Set_Msg_Str ("type universal fixed");
2269 return;
2270 end if;
2272 -- Special case of anonymous array
2274 if Nkind (Error_Msg_Node_1) in N_Entity
2275 and then Is_Array_Type (Error_Msg_Node_1)
2276 and then Present (Related_Array_Object (Error_Msg_Node_1))
2277 then
2278 Set_Msg_Str ("type of ");
2279 Set_Msg_Node (Related_Array_Object (Error_Msg_Node_1));
2280 Set_Msg_Str (" declared");
2281 Set_Msg_Insertion_Line_Number
2282 (Sloc (Related_Array_Object (Error_Msg_Node_1)), Flag);
2283 return;
2284 end if;
2286 -- If we fall through, it is not a special case, so first output
2287 -- the name of the type, preceded by private for a private type
2289 if Is_Private_Type (Error_Msg_Node_1) then
2290 Set_Msg_Str ("private type ");
2291 else
2292 Set_Msg_Str ("type ");
2293 end if;
2295 Ent := Error_Msg_Node_1;
2297 if Is_Internal_Name (Chars (Ent)) then
2298 Unwind_Internal_Type (Ent);
2299 end if;
2301 -- Types in Standard are displayed as "Standard.name"
2303 if Sloc (Ent) <= Standard_Location then
2304 Set_Msg_Quote;
2305 Set_Msg_Str ("Standard.");
2306 Set_Msg_Node (Ent);
2307 Add_Class;
2308 Set_Msg_Quote;
2310 -- Types in other language defined units are displayed as
2311 -- "package-name.type-name"
2313 elsif
2314 Is_Predefined_File_Name (Unit_File_Name (Get_Source_Unit (Ent)))
2315 then
2316 Get_Unqualified_Decoded_Name_String
2317 (Unit_Name (Get_Source_Unit (Ent)));
2318 Name_Len := Name_Len - 2;
2319 Set_Msg_Quote;
2320 Set_Casing (Mixed_Case);
2321 Set_Msg_Name_Buffer;
2322 Set_Msg_Char ('.');
2323 Set_Casing (Mixed_Case);
2324 Set_Msg_Node (Ent);
2325 Add_Class;
2326 Set_Msg_Quote;
2328 -- All other types display as "type name" defined at line xxx
2329 -- possibly qualified if qualification is requested.
2331 else
2332 Set_Msg_Quote;
2333 Set_Qualification (Error_Msg_Qual_Level, Ent);
2334 Set_Msg_Node (Ent);
2335 Add_Class;
2337 -- If Ent is an anonymous subprogram type, there is no name
2338 -- to print, so remove enclosing quotes.
2340 if Buffer_Ends_With ("""") then
2341 Buffer_Remove ("""");
2342 else
2343 Set_Msg_Quote;
2344 end if;
2345 end if;
2347 -- If the original type did not come from a predefined
2348 -- file, add the location where the type was defined.
2350 if Sloc (Error_Msg_Node_1) > Standard_Location
2351 and then
2352 not Is_Predefined_File_Name
2353 (Unit_File_Name (Get_Source_Unit (Error_Msg_Node_1)))
2354 then
2355 Set_Msg_Str (" defined");
2356 Set_Msg_Insertion_Line_Number (Sloc (Error_Msg_Node_1), Flag);
2358 -- If it did come from a predefined file, deal with the case where
2359 -- this was a file with a generic instantiation from elsewhere.
2361 else
2362 if Sloc (Error_Msg_Node_1) > Standard_Location then
2363 declare
2364 Iloc : constant Source_Ptr :=
2365 Instantiation_Location (Sloc (Error_Msg_Node_1));
2367 begin
2368 if Iloc /= No_Location
2369 and then not Suppress_Instance_Location
2370 then
2371 Set_Msg_Str (" from instance");
2372 Set_Msg_Insertion_Line_Number (Iloc, Flag);
2373 end if;
2374 end;
2375 end if;
2376 end if;
2377 end Set_Msg_Insertion_Type_Reference;
2379 ---------------------------------
2380 -- Set_Msg_Insertion_Unit_Name --
2381 ---------------------------------
2383 procedure Set_Msg_Insertion_Unit_Name (Suffix : Boolean := True) is
2384 begin
2385 if Error_Msg_Unit_1 = No_Unit_Name then
2386 null;
2388 elsif Error_Msg_Unit_1 = Error_Unit_Name then
2389 Set_Msg_Blank;
2390 Set_Msg_Str ("<error>");
2392 else
2393 Get_Unit_Name_String (Error_Msg_Unit_1, Suffix);
2394 Set_Msg_Blank;
2395 Set_Msg_Quote;
2396 Set_Msg_Name_Buffer;
2397 Set_Msg_Quote;
2398 end if;
2400 -- The following assignment ensures that a second percent insertion
2401 -- character will correspond to the Error_Msg_Unit_2 parameter. We
2402 -- suppress possible validity checks in case operating in -gnatVa mode,
2403 -- and Error_Msg_Unit_2 is not needed and has not been set.
2405 declare
2406 pragma Suppress (Range_Check);
2407 begin
2408 Error_Msg_Unit_1 := Error_Msg_Unit_2;
2409 end;
2410 end Set_Msg_Insertion_Unit_Name;
2412 ------------------
2413 -- Set_Msg_Node --
2414 ------------------
2416 procedure Set_Msg_Node (Node : Node_Id) is
2417 Ent : Entity_Id;
2418 Nam : Name_Id;
2420 begin
2421 if Nkind (Node) = N_Designator then
2422 Set_Msg_Node (Name (Node));
2423 Set_Msg_Char ('.');
2424 Set_Msg_Node (Identifier (Node));
2425 return;
2427 elsif Nkind (Node) = N_Defining_Program_Unit_Name then
2428 Set_Msg_Node (Name (Node));
2429 Set_Msg_Char ('.');
2430 Set_Msg_Node (Defining_Identifier (Node));
2431 return;
2433 elsif Nkind (Node) = N_Selected_Component then
2434 Set_Msg_Node (Prefix (Node));
2435 Set_Msg_Char ('.');
2436 Set_Msg_Node (Selector_Name (Node));
2437 return;
2438 end if;
2440 -- The only remaining possibilities are identifiers, defining
2441 -- identifiers, pragmas, and pragma argument associations.
2443 if Nkind (Node) = N_Pragma then
2444 Nam := Pragma_Name (Node);
2446 -- The other cases have Chars fields, and we want to test for possible
2447 -- internal names, which generally represent something gone wrong. An
2448 -- exception is the case of internal type names, where we try to find a
2449 -- reasonable external representation for the external name
2451 elsif Is_Internal_Name (Chars (Node))
2452 and then
2453 ((Is_Entity_Name (Node)
2454 and then Present (Entity (Node))
2455 and then Is_Type (Entity (Node)))
2456 or else
2457 (Nkind (Node) = N_Defining_Identifier and then Is_Type (Node)))
2458 then
2459 if Nkind (Node) = N_Identifier then
2460 Ent := Entity (Node);
2461 else
2462 Ent := Node;
2463 end if;
2465 -- If the type is the designated type of an access_to_subprogram,
2466 -- there is no name to provide in the call.
2468 if Ekind (Ent) = E_Subprogram_Type then
2469 return;
2470 else
2471 Unwind_Internal_Type (Ent);
2472 Nam := Chars (Ent);
2473 end if;
2475 -- If not internal name, just use name in Chars field
2477 else
2478 Nam := Chars (Node);
2479 end if;
2481 -- At this stage, the name to output is in Nam
2483 Get_Unqualified_Decoded_Name_String (Nam);
2485 -- Remove trailing upper case letters from the name (useful for
2486 -- dealing with some cases of internal names.
2488 while Name_Len > 1 and then Name_Buffer (Name_Len) in 'A' .. 'Z' loop
2489 Name_Len := Name_Len - 1;
2490 end loop;
2492 -- If we have any of the names from standard that start with the
2493 -- characters "any " (e.g. Any_Type), then kill the message since
2494 -- almost certainly it is a junk cascaded message.
2496 if Name_Len > 4
2497 and then Name_Buffer (1 .. 4) = "any "
2498 then
2499 Kill_Message := True;
2500 end if;
2502 -- Now we have to set the proper case. If we have a source location
2503 -- then do a check to see if the name in the source is the same name
2504 -- as the name in the Names table, except for possible differences
2505 -- in case, which is the case when we can copy from the source.
2507 declare
2508 Src_Loc : constant Source_Ptr := Sloc (Error_Msg_Node_1);
2509 Sbuffer : Source_Buffer_Ptr;
2510 Ref_Ptr : Integer;
2511 Src_Ptr : Source_Ptr;
2513 begin
2514 Ref_Ptr := 1;
2515 Src_Ptr := Src_Loc;
2517 -- For standard locations, always use mixed case
2519 if Src_Loc <= No_Location
2520 or else Sloc (Node) <= No_Location
2521 then
2522 Set_Casing (Mixed_Case);
2524 else
2525 -- Determine if the reference we are dealing with corresponds
2526 -- to text at the point of the error reference. This will often
2527 -- be the case for simple identifier references, and is the case
2528 -- where we can copy the spelling from the source.
2530 Sbuffer := Source_Text (Get_Source_File_Index (Src_Loc));
2532 while Ref_Ptr <= Name_Len loop
2533 exit when
2534 Fold_Lower (Sbuffer (Src_Ptr)) /=
2535 Fold_Lower (Name_Buffer (Ref_Ptr));
2536 Ref_Ptr := Ref_Ptr + 1;
2537 Src_Ptr := Src_Ptr + 1;
2538 end loop;
2540 -- If we get through the loop without a mismatch, then output
2541 -- the name the way it is spelled in the source program
2543 if Ref_Ptr > Name_Len then
2544 Src_Ptr := Src_Loc;
2546 for J in 1 .. Name_Len loop
2547 Name_Buffer (J) := Sbuffer (Src_Ptr);
2548 Src_Ptr := Src_Ptr + 1;
2549 end loop;
2551 -- Otherwise set the casing using the default identifier casing
2553 else
2554 Set_Casing (Identifier_Casing (Flag_Source), Mixed_Case);
2555 end if;
2556 end if;
2557 end;
2559 Set_Msg_Name_Buffer;
2560 Add_Class;
2561 end Set_Msg_Node;
2563 ------------------
2564 -- Set_Msg_Text --
2565 ------------------
2567 procedure Set_Msg_Text (Text : String; Flag : Source_Ptr) is
2568 C : Character; -- Current character
2569 P : Natural; -- Current index;
2571 begin
2572 Manual_Quote_Mode := False;
2573 Is_Unconditional_Msg := False;
2574 Msglen := 0;
2575 Flag_Source := Get_Source_File_Index (Flag);
2576 P := Text'First;
2578 while P <= Text'Last loop
2579 C := Text (P);
2580 P := P + 1;
2582 -- Check for insertion character or sequence
2584 case C is
2585 when '%' =>
2586 if P <= Text'Last and then Text (P) = '%' then
2587 P := P + 1;
2588 Set_Msg_Insertion_Name_Literal;
2589 else
2590 Set_Msg_Insertion_Name;
2591 end if;
2593 when '$' =>
2594 if P <= Text'Last and then Text (P) = '$' then
2595 P := P + 1;
2596 Set_Msg_Insertion_Unit_Name (Suffix => False);
2598 else
2599 Set_Msg_Insertion_Unit_Name;
2600 end if;
2602 when '{' =>
2603 Set_Msg_Insertion_File_Name;
2605 when '}' =>
2606 Set_Msg_Insertion_Type_Reference (Flag);
2608 when '*' =>
2609 Set_Msg_Insertion_Reserved_Name;
2611 when '&' =>
2612 Set_Msg_Insertion_Node;
2614 when '#' =>
2615 Set_Msg_Insertion_Line_Number (Error_Msg_Sloc, Flag);
2617 when '\' =>
2618 Continuation := True;
2620 if Text (P) = '\' then
2621 Continuation_New_Line := True;
2622 P := P + 1;
2623 end if;
2625 when '@' =>
2626 Set_Msg_Insertion_Column;
2628 when '>' =>
2629 Set_Msg_Insertion_Run_Time_Name;
2631 when '^' =>
2632 Set_Msg_Insertion_Uint;
2634 when '`' =>
2635 Manual_Quote_Mode := not Manual_Quote_Mode;
2636 Set_Msg_Char ('"');
2638 when '!' =>
2639 Is_Unconditional_Msg := True;
2641 when '?' =>
2642 null; -- already dealt with
2644 when '<' =>
2645 null; -- already dealt with
2647 when '|' =>
2648 null; -- already dealt with
2650 when ''' =>
2651 Set_Msg_Char (Text (P));
2652 P := P + 1;
2654 when '~' =>
2655 Set_Msg_Str (Error_Msg_String (1 .. Error_Msg_Strlen));
2657 -- Upper case letter
2659 when 'A' .. 'Z' =>
2661 -- Start of reserved word if two or more
2663 if P <= Text'Last and then Text (P) in 'A' .. 'Z' then
2664 P := P - 1;
2665 Set_Msg_Insertion_Reserved_Word (Text, P);
2667 -- Single upper case letter is just inserted
2669 else
2670 Set_Msg_Char (C);
2671 end if;
2673 -- Normal character with no special treatment
2675 when others =>
2676 Set_Msg_Char (C);
2677 end case;
2678 end loop;
2680 VMS_Convert;
2681 end Set_Msg_Text;
2683 ----------------
2684 -- Set_Posted --
2685 ----------------
2687 procedure Set_Posted (N : Node_Id) is
2688 P : Node_Id;
2690 begin
2691 if Is_Serious_Error then
2693 -- We always set Error_Posted on the node itself
2695 Set_Error_Posted (N);
2697 -- If it is a subexpression, then set Error_Posted on parents
2698 -- up to and including the first non-subexpression construct. This
2699 -- helps avoid cascaded error messages within a single expression.
2701 P := N;
2702 loop
2703 P := Parent (P);
2704 exit when No (P);
2705 Set_Error_Posted (P);
2706 exit when Nkind (P) not in N_Subexpr;
2707 end loop;
2709 -- A special check, if we just posted an error on an attribute
2710 -- definition clause, then also set the entity involved as posted.
2711 -- For example, this stops complaining about the alignment after
2712 -- complaining about the size, which is likely to be useless.
2714 if Nkind (P) = N_Attribute_Definition_Clause then
2715 if Is_Entity_Name (Name (P)) then
2716 Set_Error_Posted (Entity (Name (P)));
2717 end if;
2718 end if;
2719 end if;
2720 end Set_Posted;
2722 -----------------------
2723 -- Set_Qualification --
2724 -----------------------
2726 procedure Set_Qualification (N : Nat; E : Entity_Id) is
2727 begin
2728 if N /= 0 and then Scope (E) /= Standard_Standard then
2729 Set_Qualification (N - 1, Scope (E));
2730 Set_Msg_Node (Scope (E));
2731 Set_Msg_Char ('.');
2732 end if;
2733 end Set_Qualification;
2735 ------------------------
2736 -- Special_Msg_Delete --
2737 ------------------------
2739 function Special_Msg_Delete
2740 (Msg : String;
2741 N : Node_Or_Entity_Id;
2742 E : Node_Or_Entity_Id) return Boolean
2744 begin
2745 -- Never delete messages in -gnatdO mode
2747 if Debug_Flag_OO then
2748 return False;
2750 -- When an atomic object refers to a non-atomic type in the same
2751 -- scope, we implicitly make the type atomic. In the non-error
2752 -- case this is surely safe (and in fact prevents an error from
2753 -- occurring if the type is not atomic by default). But if the
2754 -- object cannot be made atomic, then we introduce an extra junk
2755 -- message by this manipulation, which we get rid of here.
2757 -- We identify this case by the fact that it references a type for
2758 -- which Is_Atomic is set, but there is no Atomic pragma setting it.
2760 elsif Msg = "atomic access to & cannot be guaranteed"
2761 and then Is_Type (E)
2762 and then Is_Atomic (E)
2763 and then No (Get_Rep_Pragma (E, Name_Atomic))
2764 then
2765 return True;
2767 -- When a size is wrong for a frozen type there is no explicit
2768 -- size clause, and other errors have occurred, suppress the
2769 -- message, since it is likely that this size error is a cascaded
2770 -- result of other errors. The reason we eliminate unfrozen types
2771 -- is that messages issued before the freeze type are for sure OK.
2773 elsif Msg = "size for& too small, minimum allowed is ^"
2774 and then Is_Frozen (E)
2775 and then Serious_Errors_Detected > 0
2776 and then Nkind (N) /= N_Component_Clause
2777 and then Nkind (Parent (N)) /= N_Component_Clause
2778 and then
2779 No (Get_Attribute_Definition_Clause (E, Attribute_Size))
2780 and then
2781 No (Get_Attribute_Definition_Clause (E, Attribute_Object_Size))
2782 and then
2783 No (Get_Attribute_Definition_Clause (E, Attribute_Value_Size))
2784 then
2785 return True;
2787 -- All special tests complete, so go ahead with message
2789 else
2790 return False;
2791 end if;
2792 end Special_Msg_Delete;
2794 --------------------------
2795 -- Unwind_Internal_Type --
2796 --------------------------
2798 procedure Unwind_Internal_Type (Ent : in out Entity_Id) is
2799 Derived : Boolean := False;
2800 Mchar : Character;
2801 Old_Ent : Entity_Id;
2803 begin
2804 -- Undo placement of a quote, since we will put it back later
2806 Mchar := Msg_Buffer (Msglen);
2808 if Mchar = '"' then
2809 Msglen := Msglen - 1;
2810 end if;
2812 -- The loop here deals with recursive types, we are trying to
2813 -- find a related entity that is not an implicit type. Note
2814 -- that the check with Old_Ent stops us from getting "stuck".
2815 -- Also, we don't output the "type derived from" message more
2816 -- than once in the case where we climb up multiple levels.
2818 loop
2819 Old_Ent := Ent;
2821 -- Implicit access type, use directly designated type
2822 -- In Ada 2005, the designated type may be an anonymous access to
2823 -- subprogram, in which case we can only point to its definition.
2825 if Is_Access_Type (Ent) then
2826 if Ekind (Ent) = E_Access_Subprogram_Type
2827 or else Ekind (Ent) = E_Anonymous_Access_Subprogram_Type
2828 or else Is_Access_Protected_Subprogram_Type (Ent)
2829 then
2830 Ent := Directly_Designated_Type (Ent);
2832 if not Comes_From_Source (Ent) then
2833 if Buffer_Ends_With ("type ") then
2834 Buffer_Remove ("type ");
2835 end if;
2837 Set_Msg_Str ("access to subprogram with profile ");
2839 elsif Ekind (Ent) = E_Function then
2840 Set_Msg_Str ("access to function ");
2841 else
2842 Set_Msg_Str ("access to procedure ");
2843 end if;
2844 exit;
2846 -- Type is access to object, named or anonymous
2848 else
2849 Set_Msg_Str ("access to ");
2850 Ent := Directly_Designated_Type (Ent);
2851 end if;
2853 -- Classwide type
2855 elsif Is_Class_Wide_Type (Ent) then
2856 Class_Flag := True;
2857 Ent := Root_Type (Ent);
2859 -- Use base type if this is a subtype
2861 elsif Ent /= Base_Type (Ent) then
2862 Buffer_Remove ("type ");
2864 -- Avoid duplication "subtype of subtype of", and also replace
2865 -- "derived from subtype of" simply by "derived from"
2867 if not Buffer_Ends_With ("subtype of ")
2868 and then not Buffer_Ends_With ("derived from ")
2869 then
2870 Set_Msg_Str ("subtype of ");
2871 end if;
2873 Ent := Base_Type (Ent);
2875 -- If this is a base type with a first named subtype, use the
2876 -- first named subtype instead. This is not quite accurate in
2877 -- all cases, but it makes too much noise to be accurate and
2878 -- add 'Base in all cases. Note that we only do this is the
2879 -- first named subtype is not itself an internal name. This
2880 -- avoids the obvious loop (subtype->basetype->subtype) which
2881 -- would otherwise occur!)
2883 elsif Present (Freeze_Node (Ent))
2884 and then Present (First_Subtype_Link (Freeze_Node (Ent)))
2885 and then
2886 not Is_Internal_Name
2887 (Chars (First_Subtype_Link (Freeze_Node (Ent))))
2888 then
2889 Ent := First_Subtype_Link (Freeze_Node (Ent));
2891 -- Otherwise use root type
2893 else
2894 if not Derived then
2895 Buffer_Remove ("type ");
2897 -- Test for "subtype of type derived from" which seems
2898 -- excessive and is replaced by simply "type derived from"
2900 Buffer_Remove ("subtype of");
2902 -- Avoid duplication "type derived from type derived from"
2904 if not Buffer_Ends_With ("type derived from ") then
2905 Set_Msg_Str ("type derived from ");
2906 end if;
2908 Derived := True;
2909 end if;
2911 Ent := Etype (Ent);
2912 end if;
2914 -- If we are stuck in a loop, get out and settle for the internal
2915 -- name after all. In this case we set to kill the message if it
2916 -- is not the first error message (we really try hard not to show
2917 -- the dirty laundry of the implementation to the poor user!)
2919 if Ent = Old_Ent then
2920 Kill_Message := True;
2921 exit;
2922 end if;
2924 -- Get out if we finally found a non-internal name to use
2926 exit when not Is_Internal_Name (Chars (Ent));
2927 end loop;
2929 if Mchar = '"' then
2930 Set_Msg_Char ('"');
2931 end if;
2932 end Unwind_Internal_Type;
2934 -----------------
2935 -- VMS_Convert --
2936 -----------------
2938 procedure VMS_Convert is
2939 P : Natural;
2940 L : Natural;
2941 N : Natural;
2943 begin
2944 if not OpenVMS then
2945 return;
2946 end if;
2948 P := Msg_Buffer'First;
2949 loop
2950 if P >= Msglen then
2951 return;
2952 end if;
2954 if Msg_Buffer (P) = '-' then
2955 for G in Gnames'Range loop
2956 L := Gnames (G)'Length;
2958 -- See if we have "-ggg switch", where ggg is Gnames entry
2960 if P + L + 7 <= Msglen
2961 and then Msg_Buffer (P + 1 .. P + L) = Gnames (G).all
2962 and then Msg_Buffer (P + L + 1 .. P + L + 7) = " switch"
2963 then
2964 -- Replace by "/vvv qualifier", where vvv is Vnames entry
2966 N := Vnames (G)'Length;
2967 Msg_Buffer (P + N + 11 .. Msglen + N - L + 3) :=
2968 Msg_Buffer (P + L + 8 .. Msglen);
2969 Msg_Buffer (P) := '/';
2970 Msg_Buffer (P + 1 .. P + N) := Vnames (G).all;
2971 Msg_Buffer (P + N + 1 .. P + N + 10) := " qualifier";
2972 P := P + N + 10;
2973 Msglen := Msglen + N - L + 3;
2974 exit;
2975 end if;
2976 end loop;
2977 end if;
2979 P := P + 1;
2980 end loop;
2981 end VMS_Convert;
2983 end Errout;