re PR rtl-optimization/34522 (inefficient code for long long multiply when only low...
[official-gcc.git] / gcc / ada / errout.adb
blobe0f649222d6d5ebb120371cd557626d2d50fffb8
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-2007, 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 Style;
51 with Uname; use Uname;
53 with Unchecked_Conversion;
55 package body Errout is
57 Errors_Must_Be_Ignored : Boolean := False;
58 -- Set to True by procedure Set_Ignore_Errors (True), when calls to
59 -- error message procedures should be ignored (when parsing irrelevant
60 -- text in sources being preprocessed).
62 Finalize_Called : Boolean := False;
63 -- Set True if the Finalize routine has been called
65 Warn_On_Instance : Boolean;
66 -- Flag set true for warning message to be posted on instance
68 ------------------------------------
69 -- Table of Non-Instance Messages --
70 ------------------------------------
72 -- This table contains an entry for every error message processed by the
73 -- Error_Msg routine that is not posted on generic (or inlined) instance.
74 -- As explained in further detail in the Error_Msg procedure body, this
75 -- table is used to avoid posting redundant messages on instances.
77 type NIM_Record is record
78 Msg : String_Ptr;
79 Loc : Source_Ptr;
80 end record;
81 -- Type used to store text and location of one message
83 package Non_Instance_Msgs is new Table.Table (
84 Table_Component_Type => NIM_Record,
85 Table_Index_Type => Int,
86 Table_Low_Bound => 1,
87 Table_Initial => 100,
88 Table_Increment => 100,
89 Table_Name => "Non_Instance_Msgs");
91 -----------------------
92 -- Local Subprograms --
93 -----------------------
95 procedure Error_Msg_Internal
96 (Msg : String;
97 Sptr : Source_Ptr;
98 Optr : Source_Ptr;
99 Msg_Cont : Boolean);
100 -- This is the low level routine used to post messages after dealing with
101 -- the issue of messages placed on instantiations (which get broken up
102 -- into separate calls in Error_Msg). Sptr is the location on which the
103 -- flag will be placed in the output. In the case where the flag is on
104 -- the template, this points directly to the template, not to one of the
105 -- instantiation copies of the template. Optr is the original location
106 -- used to flag the error, and this may indeed point to an instantiation
107 -- copy. So typically we can see Optr pointing to the template location
108 -- in an instantiation copy when Sptr points to the source location of
109 -- the actual instantiation (i.e the line with the new). Msg_Cont is
110 -- set true if this is a continuation message.
112 function No_Warnings (N : Node_Or_Entity_Id) return Boolean;
113 -- Determines if warnings should be suppressed for the given node
115 function OK_Node (N : Node_Id) return Boolean;
116 -- Determines if a node is an OK node to place an error message on (return
117 -- True) or if the error message should be suppressed (return False). A
118 -- message is suppressed if the node already has an error posted on it,
119 -- or if it refers to an Etype that has an error posted on it, or if
120 -- it references an Entity that has an error posted on it.
122 procedure Output_Source_Line
123 (L : Physical_Line_Number;
124 Sfile : Source_File_Index;
125 Errs : Boolean);
126 -- Outputs text of source line L, in file S, together with preceding line
127 -- number, as described above for Output_Line_Number. The Errs parameter
128 -- indicates if there are errors attached to the line, which forces
129 -- listing on, even in the presence of pragma List (Off).
131 procedure Set_Msg_Insertion_Column;
132 -- Handle column number insertion (@ insertion character)
134 procedure Set_Msg_Insertion_Node;
135 -- Handle node (name from node) insertion (& insertion character)
137 procedure Set_Msg_Insertion_Type_Reference (Flag : Source_Ptr);
138 -- Handle type reference (right brace insertion character). Flag is the
139 -- location of the flag, which is provided for the internal call to
140 -- Set_Msg_Insertion_Line_Number,
142 procedure Set_Msg_Insertion_Unit_Name (Suffix : Boolean := True);
143 -- Handle unit name insertion ($ insertion character). Depending on Boolean
144 -- parameter Suffix, (spec) or (body) is appended after the unit name.
146 procedure Set_Msg_Node (Node : Node_Id);
147 -- Add the sequence of characters for the name associated with the
148 -- given node to the current message.
150 procedure Set_Msg_Text (Text : String; Flag : Source_Ptr);
151 -- Add a sequence of characters to the current message. The characters may
152 -- be one of the special insertion characters (see documentation in spec).
153 -- Flag is the location at which the error is to be posted, which is used
154 -- to determine whether or not the # insertion needs a file name. The
155 -- variables Msg_Buffer, Msglen, Is_Style_Msg, Is_Warning_Msg, and
156 -- Is_Unconditional_Msg are set on return.
158 procedure Set_Posted (N : Node_Id);
159 -- Sets the Error_Posted flag on the given node, and all its parents
160 -- that are subexpressions and then on the parent non-subexpression
161 -- construct that contains the original expression (this reduces the
162 -- number of cascaded messages). Note that this call only has an effect
163 -- for a serious error. For a non-serious error, it has no effect.
165 procedure Set_Qualification (N : Nat; E : Entity_Id);
166 -- Outputs up to N levels of qualification for the given entity. For
167 -- example, the entity A.B.C.D will output B.C. if N = 2.
169 function Special_Msg_Delete
170 (Msg : String;
171 N : Node_Or_Entity_Id;
172 E : Node_Or_Entity_Id) return Boolean;
173 -- This function is called from Error_Msg_NEL, passing the message Msg,
174 -- node N on which the error is to be posted, and the entity or node E
175 -- to be used for an & insertion in the message if any. The job of this
176 -- procedure is to test for certain cascaded messages that we would like
177 -- to suppress. If the message is to be suppressed then we return True.
178 -- If the message should be generated (the normal case) False is returned.
180 procedure Unwind_Internal_Type (Ent : in out Entity_Id);
181 -- This procedure is given an entity id for an internal type, i.e.
182 -- a type with an internal name. It unwinds the type to try to get
183 -- to something reasonably printable, generating prefixes like
184 -- "subtype of", "access to", etc along the way in the buffer. The
185 -- value in Ent on return is the final name to be printed. Hopefully
186 -- this is not an internal name, but in some internal name cases, it
187 -- is an internal name, and has to be printed anyway (although in this
188 -- case the message has been killed if possible). The global variable
189 -- Class_Flag is set to True if the resulting entity should have
190 -- 'Class appended to its name (see Add_Class procedure), and is
191 -- otherwise unchanged.
193 procedure VMS_Convert;
194 -- This procedure has no effect if called when the host is not OpenVMS.
195 -- If the host is indeed OpenVMS, then the error message stored in
196 -- Msg_Buffer is scanned for appearences of switch names which need
197 -- converting to corresponding VMS qualifer names. See Gnames/Vnames
198 -- table in Errout spec for precise definition of the conversion that
199 -- is performed by this routine in OpenVMS mode.
201 -----------------------
202 -- Change_Error_Text --
203 -----------------------
205 procedure Change_Error_Text (Error_Id : Error_Msg_Id; New_Msg : String) is
206 Save_Next : Error_Msg_Id;
207 Err_Id : Error_Msg_Id := Error_Id;
209 begin
210 Set_Msg_Text (New_Msg, Errors.Table (Error_Id).Sptr);
211 Errors.Table (Error_Id).Text := new String'(Msg_Buffer (1 .. Msglen));
213 -- If in immediate error message mode, output modified error message now
214 -- This is just a bit tricky, because we want to output just a single
215 -- message, and the messages we modified is already linked in. We solve
216 -- this by temporarily resetting its forward pointer to empty.
218 if Debug_Flag_OO then
219 Save_Next := Errors.Table (Error_Id).Next;
220 Errors.Table (Error_Id).Next := No_Error_Msg;
221 Write_Eol;
222 Output_Source_Line
223 (Errors.Table (Error_Id).Line, Errors.Table (Error_Id).Sfile, True);
224 Output_Error_Msgs (Err_Id);
225 Errors.Table (Error_Id).Next := Save_Next;
226 end if;
227 end Change_Error_Text;
229 ------------------------
230 -- Compilation_Errors --
231 ------------------------
233 function Compilation_Errors return Boolean is
234 begin
235 if not Finalize_Called then
236 raise Program_Error;
237 else
238 return Erroutc.Compilation_Errors;
239 end if;
240 end Compilation_Errors;
242 ---------------
243 -- Error_Msg --
244 ---------------
246 -- Error_Msg posts a flag at the given location, except that if the
247 -- Flag_Location points within a generic template and corresponds
248 -- to an instantiation of this generic template, then the actual
249 -- message will be posted on the generic instantiation, along with
250 -- additional messages referencing the generic declaration.
252 procedure Error_Msg (Msg : String; Flag_Location : Source_Ptr) is
253 Sindex : Source_File_Index;
254 -- Source index for flag location
256 Orig_Loc : Source_Ptr;
257 -- Original location of Flag_Location (i.e. location in original
258 -- template in instantiation case, otherwise unchanged).
260 begin
261 -- It is a fatal error to issue an error message when scanning from
262 -- the internal source buffer (see Sinput for further documentation)
264 pragma Assert (Sinput.Source /= Internal_Source_Ptr);
266 -- Return if all errors are to be ignored
268 if Errors_Must_Be_Ignored then
269 return;
270 end if;
272 -- If we already have messages, and we are trying to place a message
273 -- at No_Location or in package Standard, then just ignore the attempt
274 -- since we assume that what is happening is some cascaded junk. Note
275 -- that this is safe in the sense that proceeding will surely bomb.
277 if Flag_Location < First_Source_Ptr
278 and then Total_Errors_Detected > 0
279 then
280 return;
281 end if;
283 -- Start processing of new message
285 Sindex := Get_Source_File_Index (Flag_Location);
286 Test_Style_Warning_Serious_Msg (Msg);
287 Orig_Loc := Original_Location (Flag_Location);
289 -- If the current location is in an instantiation, the issue arises
290 -- of whether to post the message on the template or the instantiation.
292 -- The way we decide is to see if we have posted the same message
293 -- on the template when we compiled the template (the template is
294 -- always compiled before any instantiations). For this purpose,
295 -- we use a separate table of messages. The reason we do this is
296 -- twofold:
298 -- First, the messages can get changed by various processing
299 -- including the insertion of tokens etc, making it hard to
300 -- do the comparison.
302 -- Second, we will suppress a warning on a template if it is
303 -- not in the current extended source unit. That's reasonable
304 -- and means we don't want the warning on the instantiation
305 -- here either, but it does mean that the main error table
306 -- would not in any case include the message.
308 if Flag_Location = Orig_Loc then
309 Non_Instance_Msgs.Append ((new String'(Msg), Flag_Location));
310 Warn_On_Instance := False;
312 -- Here we have an instance message
314 else
315 -- Delete if debug flag off, and this message duplicates a
316 -- message already posted on the corresponding template
318 if not Debug_Flag_GG then
319 for J in Non_Instance_Msgs.First .. Non_Instance_Msgs.Last loop
320 if Msg = Non_Instance_Msgs.Table (J).Msg.all
321 and then Non_Instance_Msgs.Table (J).Loc = Orig_Loc
322 then
323 return;
324 end if;
325 end loop;
326 end if;
328 -- No duplicate, so error/warning will be posted on instance
330 Warn_On_Instance := Is_Warning_Msg;
331 end if;
333 -- Ignore warning message that is suppressed. Note that style
334 -- checks are not considered warning messages for this purpose
336 if Is_Warning_Msg and then Warnings_Suppressed (Orig_Loc) then
337 return;
338 end if;
340 -- The idea at this stage is that we have two kinds of messages
342 -- First, we have those messages that are to be placed as requested at
343 -- Flag_Location. This includes messages that have nothing to do with
344 -- generics, and also messages placed on generic templates that reflect
345 -- an error in the template itself. For such messages we simply call
346 -- Error_Msg_Internal to place the message in the requested location.
348 if Instantiation (Sindex) = No_Location then
349 Error_Msg_Internal (Msg, Flag_Location, Flag_Location, False);
350 return;
351 end if;
353 -- If we are trying to flag an error in an instantiation, we may have
354 -- a generic contract violation. What we generate in this case is:
356 -- instantiation error at ...
357 -- original error message
359 -- or
361 -- warning: in instantiation at
362 -- warning: original warning message
364 -- All these messages are posted at the location of the top level
365 -- instantiation. If there are nested instantiations, then the
366 -- instantiation error message can be repeated, pointing to each
367 -- of the relevant instantiations.
369 -- Note: the instantiation mechanism is also shared for inlining
370 -- of subprogram bodies when front end inlining is done. In this
371 -- case the messages have the form:
373 -- in inlined body at ...
374 -- original error message
376 -- or
378 -- warning: in inlined body at
379 -- warning: original warning message
381 -- OK, this is the case where we have an instantiation error, and
382 -- we need to generate the error on the instantiation, rather than
383 -- on the template.
385 declare
386 Actual_Error_Loc : Source_Ptr;
387 -- Location of outer level instantiation in instantiation case, or
388 -- just a copy of Flag_Location in the normal case. This is the
389 -- location where all error messages will actually be posted.
391 Save_Error_Msg_Sloc : constant Source_Ptr := Error_Msg_Sloc;
392 -- Save possible location set for caller's message. We need to
393 -- use Error_Msg_Sloc for the location of the instantiation error
394 -- but we have to preserve a possible original value.
396 X : Source_File_Index;
398 Msg_Cont_Status : Boolean;
399 -- Used to label continuation lines in instantiation case with
400 -- proper Msg_Cont status.
402 begin
403 -- Loop to find highest level instantiation, where all error
404 -- messages will be placed.
406 X := Sindex;
407 loop
408 Actual_Error_Loc := Instantiation (X);
409 X := Get_Source_File_Index (Actual_Error_Loc);
410 exit when Instantiation (X) = No_Location;
411 end loop;
413 -- Since we are generating the messages at the instantiation
414 -- point in any case, we do not want the references to the
415 -- bad lines in the instance to be annotated with the location
416 -- of the instantiation.
418 Suppress_Instance_Location := True;
419 Msg_Cont_Status := False;
421 -- Loop to generate instantiation messages
423 Error_Msg_Sloc := Flag_Location;
424 X := Get_Source_File_Index (Flag_Location);
426 while Instantiation (X) /= No_Location loop
428 -- Suppress instantiation message on continuation lines
430 if Msg (Msg'First) /= '\' then
432 -- Case of inlined body
434 if Inlined_Body (X) then
435 if Is_Warning_Msg then
436 Error_Msg_Internal
437 ("?in inlined body #",
438 Actual_Error_Loc, Flag_Location, Msg_Cont_Status);
440 else
441 Error_Msg_Internal
442 ("error in inlined body #",
443 Actual_Error_Loc, Flag_Location, Msg_Cont_Status);
444 end if;
446 -- Case of generic instantiation
448 else
449 if Is_Warning_Msg then
450 Error_Msg_Internal
451 ("?in instantiation #",
452 Actual_Error_Loc, Flag_Location, Msg_Cont_Status);
454 else
455 Error_Msg_Internal
456 ("instantiation error #",
457 Actual_Error_Loc, Flag_Location, Msg_Cont_Status);
458 end if;
459 end if;
460 end if;
462 Error_Msg_Sloc := Instantiation (X);
463 X := Get_Source_File_Index (Error_Msg_Sloc);
464 Msg_Cont_Status := True;
465 end loop;
467 Suppress_Instance_Location := False;
468 Error_Msg_Sloc := Save_Error_Msg_Sloc;
470 -- Here we output the original message on the outer instantiation
472 Error_Msg_Internal
473 (Msg, Actual_Error_Loc, Flag_Location, Msg_Cont_Status);
474 end;
475 end Error_Msg;
477 ------------------
478 -- Error_Msg_AP --
479 ------------------
481 procedure Error_Msg_AP (Msg : String) is
482 S1 : Source_Ptr;
483 C : Character;
485 begin
486 -- If we had saved the Scan_Ptr value after scanning the previous
487 -- token, then we would have exactly the right place for putting
488 -- the flag immediately at hand. However, that would add at least
489 -- two instructions to a Scan call *just* to service the possibility
490 -- of an Error_Msg_AP call. So instead we reconstruct that value.
492 -- We have two possibilities, start with Prev_Token_Ptr and skip over
493 -- the current token, which is made harder by the possibility that this
494 -- token may be in error, or start with Token_Ptr and work backwards.
495 -- We used to take the second approach, but it's hard because of
496 -- comments, and harder still because things that look like comments
497 -- can appear inside strings. So now we take the first approach.
499 -- Note: in the case where there is no previous token, Prev_Token_Ptr
500 -- is set to Source_First, which is a reasonable position for the
501 -- error flag in this situation.
503 S1 := Prev_Token_Ptr;
504 C := Source (S1);
506 -- If the previous token is a string literal, we need a special approach
507 -- since there may be white space inside the literal and we don't want
508 -- to stop on that white space.
510 -- Note: since this is an error recovery issue anyway, it is not worth
511 -- worrying about special UTF_32 line terminator characters here.
513 if Prev_Token = Tok_String_Literal then
514 loop
515 S1 := S1 + 1;
517 if Source (S1) = C then
518 S1 := S1 + 1;
519 exit when Source (S1) /= C;
520 elsif Source (S1) in Line_Terminator then
521 exit;
522 end if;
523 end loop;
525 -- Character literal also needs special handling
527 elsif Prev_Token = Tok_Char_Literal then
528 S1 := S1 + 3;
530 -- Otherwise we search forward for the end of the current token, marked
531 -- by a line terminator, white space, a comment symbol or if we bump
532 -- into the following token (i.e. the current token).
534 -- Again, it is not worth worrying about UTF_32 special line terminator
535 -- characters in this context, since this is only for error recovery.
537 else
538 while Source (S1) not in Line_Terminator
539 and then Source (S1) /= ' '
540 and then Source (S1) /= ASCII.HT
541 and then (Source (S1) /= '-' or else Source (S1 + 1) /= '-')
542 and then S1 /= Token_Ptr
543 loop
544 S1 := S1 + 1;
545 end loop;
546 end if;
548 -- S1 is now set to the location for the flag
550 Error_Msg (Msg, S1);
551 end Error_Msg_AP;
553 ------------------
554 -- Error_Msg_BC --
555 ------------------
557 procedure Error_Msg_BC (Msg : String) is
558 begin
559 -- If we are at end of file, post the flag after the previous token
561 if Token = Tok_EOF then
562 Error_Msg_AP (Msg);
564 -- If we are at start of file, post the flag at the current token
566 elsif Token_Ptr = Source_First (Current_Source_File) then
567 Error_Msg_SC (Msg);
569 -- If the character before the current token is a space or a horizontal
570 -- tab, then we place the flag on this character (in the case of a tab
571 -- we would really like to place it in the "last" character of the tab
572 -- space, but that it too much trouble to worry about).
574 elsif Source (Token_Ptr - 1) = ' '
575 or else Source (Token_Ptr - 1) = ASCII.HT
576 then
577 Error_Msg (Msg, Token_Ptr - 1);
579 -- If there is no space or tab before the current token, then there is
580 -- no room to place the flag before the token, so we place it on the
581 -- token instead (this happens for example at the start of a line).
583 else
584 Error_Msg (Msg, Token_Ptr);
585 end if;
586 end Error_Msg_BC;
588 -------------------
589 -- Error_Msg_CRT --
590 -------------------
592 procedure Error_Msg_CRT (Feature : String; N : Node_Id) is
593 CNRT : constant String := " not allowed in no run time mode";
594 CCRT : constant String := " not supported by configuration>";
596 S : String (1 .. Feature'Length + 1 + CCRT'Length);
597 L : Natural;
599 begin
600 S (1) := '|';
601 S (2 .. Feature'Length + 1) := Feature;
602 L := Feature'Length + 2;
604 if No_Run_Time_Mode then
605 S (L .. L + CNRT'Length - 1) := CNRT;
606 L := L + CNRT'Length - 1;
608 else pragma Assert (Configurable_Run_Time_Mode);
609 S (L .. L + CCRT'Length - 1) := CCRT;
610 L := L + CCRT'Length - 1;
611 end if;
613 Error_Msg_N (S (1 .. L), N);
614 Configurable_Run_Time_Violations := Configurable_Run_Time_Violations + 1;
615 end Error_Msg_CRT;
617 -----------------
618 -- Error_Msg_F --
619 -----------------
621 procedure Error_Msg_F (Msg : String; N : Node_Id) is
622 begin
623 Error_Msg_NEL (Msg, N, N, Sloc (First_Node (N)));
624 end Error_Msg_F;
626 ------------------
627 -- Error_Msg_FE --
628 ------------------
630 procedure Error_Msg_FE
631 (Msg : String;
632 N : Node_Id;
633 E : Node_Or_Entity_Id)
635 begin
636 Error_Msg_NEL (Msg, N, E, Sloc (First_Node (N)));
637 end Error_Msg_FE;
639 ------------------------
640 -- Error_Msg_Internal --
641 ------------------------
643 procedure Error_Msg_Internal
644 (Msg : String;
645 Sptr : Source_Ptr;
646 Optr : Source_Ptr;
647 Msg_Cont : Boolean)
649 Next_Msg : Error_Msg_Id;
650 -- Pointer to next message at insertion point
652 Prev_Msg : Error_Msg_Id;
653 -- Pointer to previous message at insertion point
655 Temp_Msg : Error_Msg_Id;
657 procedure Handle_Serious_Error;
658 -- Internal procedure to do all error message handling for a serious
659 -- error message, other than bumping the error counts and arranging
660 -- for the message to be output.
662 --------------------------
663 -- Handle_Serious_Error --
664 --------------------------
666 procedure Handle_Serious_Error is
667 begin
668 -- Turn off code generation if not done already
670 if Operating_Mode = Generate_Code then
671 Operating_Mode := Check_Semantics;
672 Expander_Active := False;
673 end if;
675 -- Set the fatal error flag in the unit table unless we are
676 -- in Try_Semantics mode. This stops the semantics from being
677 -- performed if we find a serious error. This is skipped if we
678 -- are currently dealing with the configuration pragma file.
680 if not Try_Semantics
681 and then Current_Source_Unit /= No_Unit
682 then
683 Set_Fatal_Error (Get_Source_Unit (Sptr));
684 end if;
685 end Handle_Serious_Error;
687 -- Start of processing for Error_Msg_Internal
689 begin
690 if Raise_Exception_On_Error /= 0 then
691 raise Error_Msg_Exception;
692 end if;
694 Continuation := Msg_Cont;
695 Continuation_New_Line := False;
696 Suppress_Message := False;
697 Kill_Message := False;
698 Set_Msg_Text (Msg, Sptr);
700 -- Kill continuation if parent message killed
702 if Continuation and Last_Killed then
703 return;
704 end if;
706 -- Return without doing anything if message is suppressed
708 if Suppress_Message
709 and not All_Errors_Mode
710 and not (Msg (Msg'Last) = '!')
711 and not Is_Warning_Msg
712 then
713 if not Continuation then
714 Last_Killed := True;
715 end if;
717 return;
718 end if;
720 -- Return without doing anything if message is killed and this
721 -- is not the first error message. The philosophy is that if we
722 -- get a weird error message and we already have had a message,
723 -- then we hope the weird message is a junk cascaded message
725 if Kill_Message
726 and then not All_Errors_Mode
727 and then Total_Errors_Detected /= 0
728 then
729 if not Continuation then
730 Last_Killed := True;
731 end if;
733 return;
734 end if;
736 -- Special check for warning message to see if it should be output
738 if Is_Warning_Msg then
740 -- Immediate return if warning message and warnings are suppressed
742 if Warnings_Suppressed (Optr)
743 or else Warnings_Suppressed (Sptr)
744 then
745 Cur_Msg := No_Error_Msg;
746 return;
747 end if;
749 -- If the flag location is in the main extended source unit
750 -- then for sure we want the warning since it definitely belongs
752 if In_Extended_Main_Source_Unit (Sptr) then
753 null;
755 -- If the flag location is not in the main extended source unit,
756 -- then we want to eliminate the warning, unless it is in the
757 -- extended main code unit and we want warnings on the instance.
759 elsif In_Extended_Main_Code_Unit (Sptr)
760 and then Warn_On_Instance
761 then
762 null;
764 -- Keep warning if debug flag G set
766 elsif Debug_Flag_GG then
767 null;
769 -- Here is where we delete a warning from a with'ed unit
771 else
772 Cur_Msg := No_Error_Msg;
774 if not Continuation then
775 Last_Killed := True;
776 end if;
778 return;
779 end if;
780 end if;
782 -- If message is to be ignored in special ignore message mode, this is
783 -- where we do this special processing, bypassing message output.
785 if Ignore_Errors_Enable > 0 then
786 if Is_Serious_Error then
787 Handle_Serious_Error;
788 end if;
790 return;
791 end if;
793 -- If error message line length set, and this is a continuation message
794 -- then all we do is to append the text to the text of the last message
795 -- with a comma space separator.
797 if Error_Msg_Line_Length /= 0
798 and then Continuation
799 then
800 Cur_Msg := Errors.Last;
802 declare
803 Oldm : String_Ptr := Errors.Table (Cur_Msg).Text;
804 Newm : String (1 .. Oldm'Last + 2 + Msglen);
805 Newl : Natural;
807 begin
808 -- First copy old message to new one and free it
810 Newm (Oldm'Range) := Oldm.all;
811 Newl := Oldm'Length;
812 Free (Oldm);
814 -- Now deal with separation between messages. Normally this
815 -- is simply comma space, but there are some special cases.
817 -- If continuation new line, then put actual NL character in msg
819 if Continuation_New_Line then
820 Newl := Newl + 1;
821 Newm (Newl) := ASCII.LF;
823 -- If continuation message is enclosed in parentheses, then
824 -- special treatment (don't need a comma, and we want to combine
825 -- successive parenthetical remarks into a single one with
826 -- separating commas).
828 elsif Msg_Buffer (1) = '(' and then Msg_Buffer (Msglen) = ')' then
830 -- Case where existing message ends in right paren, remove
831 -- and separate parenthetical remarks with a comma.
833 if Newm (Newl) = ')' then
834 Newm (Newl) := ',';
835 Msg_Buffer (1) := ' ';
837 -- Case where we are adding new parenthetical comment
839 else
840 Newl := Newl + 1;
841 Newm (Newl) := ' ';
842 end if;
844 -- Case where continuation not in parens and no new line
846 else
847 Newm (Newl + 1 .. Newl + 2) := ", ";
848 Newl := Newl + 2;
849 end if;
851 -- Append new message
853 Newm (Newl + 1 .. Newl + Msglen) := Msg_Buffer (1 .. Msglen);
854 Newl := Newl + Msglen;
855 Errors.Table (Cur_Msg).Text := new String'(Newm (1 .. Newl));
856 end;
858 return;
859 end if;
861 -- Otherwise build error message object for new message
863 Errors.Increment_Last;
864 Cur_Msg := Errors.Last;
865 Errors.Table (Cur_Msg).Text := new String'(Msg_Buffer (1 .. Msglen));
866 Errors.Table (Cur_Msg).Next := No_Error_Msg;
867 Errors.Table (Cur_Msg).Sptr := Sptr;
868 Errors.Table (Cur_Msg).Optr := Optr;
869 Errors.Table (Cur_Msg).Sfile := Get_Source_File_Index (Sptr);
870 Errors.Table (Cur_Msg).Line := Get_Physical_Line_Number (Sptr);
871 Errors.Table (Cur_Msg).Col := Get_Column_Number (Sptr);
872 Errors.Table (Cur_Msg).Warn := Is_Warning_Msg;
873 Errors.Table (Cur_Msg).Style := Is_Style_Msg;
874 Errors.Table (Cur_Msg).Serious := Is_Serious_Error;
875 Errors.Table (Cur_Msg).Uncond := Is_Unconditional_Msg;
876 Errors.Table (Cur_Msg).Msg_Cont := Continuation;
877 Errors.Table (Cur_Msg).Deleted := False;
879 -- If immediate errors mode set, output error message now. Also output
880 -- now if the -d1 debug flag is set (so node number message comes out
881 -- just before actual error message)
883 if Debug_Flag_OO or else Debug_Flag_1 then
884 Write_Eol;
885 Output_Source_Line
886 (Errors.Table (Cur_Msg).Line, Errors.Table (Cur_Msg).Sfile, True);
887 Temp_Msg := Cur_Msg;
888 Output_Error_Msgs (Temp_Msg);
890 -- If not in immediate errors mode, then we insert the message in the
891 -- error chain for later output by Finalize. The messages are sorted
892 -- first by unit (main unit comes first), and within a unit by source
893 -- location (earlier flag location first in the chain).
895 else
896 -- First a quick check, does this belong at the very end of the chain
897 -- of error messages. This saves a lot of time in the normal case if
898 -- there are lots of messages.
900 if Last_Error_Msg /= No_Error_Msg
901 and then Errors.Table (Cur_Msg).Sfile =
902 Errors.Table (Last_Error_Msg).Sfile
903 and then (Sptr > Errors.Table (Last_Error_Msg).Sptr
904 or else
905 (Sptr = Errors.Table (Last_Error_Msg).Sptr
906 and then
907 Optr > Errors.Table (Last_Error_Msg).Optr))
908 then
909 Prev_Msg := Last_Error_Msg;
910 Next_Msg := No_Error_Msg;
912 -- Otherwise do a full sequential search for the insertion point
914 else
915 Prev_Msg := No_Error_Msg;
916 Next_Msg := First_Error_Msg;
917 while Next_Msg /= No_Error_Msg loop
918 exit when
919 Errors.Table (Cur_Msg).Sfile < Errors.Table (Next_Msg).Sfile;
921 if Errors.Table (Cur_Msg).Sfile =
922 Errors.Table (Next_Msg).Sfile
923 then
924 exit when Sptr < Errors.Table (Next_Msg).Sptr
925 or else
926 (Sptr = Errors.Table (Next_Msg).Sptr
927 and then
928 Optr < Errors.Table (Next_Msg).Optr);
929 end if;
931 Prev_Msg := Next_Msg;
932 Next_Msg := Errors.Table (Next_Msg).Next;
933 end loop;
934 end if;
936 -- Now we insert the new message in the error chain. The insertion
937 -- point for the message is after Prev_Msg and before Next_Msg.
939 -- The possible insertion point for the new message is after Prev_Msg
940 -- and before Next_Msg. However, this is where we do a special check
941 -- for redundant parsing messages, defined as messages posted on the
942 -- same line. The idea here is that probably such messages are junk
943 -- from the parser recovering. In full errors mode, we don't do this
944 -- deletion, but otherwise such messages are discarded at this stage.
946 if Prev_Msg /= No_Error_Msg
947 and then Errors.Table (Prev_Msg).Line =
948 Errors.Table (Cur_Msg).Line
949 and then Errors.Table (Prev_Msg).Sfile =
950 Errors.Table (Cur_Msg).Sfile
951 and then Compiler_State = Parsing
952 and then not All_Errors_Mode
953 then
954 -- Don't delete unconditional messages and at this stage,
955 -- don't delete continuation lines (we attempted to delete
956 -- those earlier if the parent message was deleted.
958 if not Errors.Table (Cur_Msg).Uncond
959 and then not Continuation
960 then
961 -- Don't delete if prev msg is warning and new msg is an error.
962 -- This is because we don't want a real error masked by a
963 -- warning. In all other cases (that is parse errors for the
964 -- same line that are not unconditional) we do delete the
965 -- message. This helps to avoid junk extra messages from
966 -- cascaded parsing errors
968 if not (Errors.Table (Prev_Msg).Warn
970 Errors.Table (Prev_Msg).Style)
971 or else
972 (Errors.Table (Cur_Msg).Warn
974 Errors.Table (Cur_Msg).Style)
975 then
976 -- All tests passed, delete the message by simply returning
977 -- without any further processing.
979 if not Continuation then
980 Last_Killed := True;
981 end if;
983 return;
984 end if;
985 end if;
986 end if;
988 -- Come here if message is to be inserted in the error chain
990 if not Continuation then
991 Last_Killed := False;
992 end if;
994 if Prev_Msg = No_Error_Msg then
995 First_Error_Msg := Cur_Msg;
996 else
997 Errors.Table (Prev_Msg).Next := Cur_Msg;
998 end if;
1000 Errors.Table (Cur_Msg).Next := Next_Msg;
1002 if Next_Msg = No_Error_Msg then
1003 Last_Error_Msg := Cur_Msg;
1004 end if;
1005 end if;
1007 -- Bump appropriate statistics count
1009 if Errors.Table (Cur_Msg).Warn
1010 or else Errors.Table (Cur_Msg).Style
1011 then
1012 Warnings_Detected := Warnings_Detected + 1;
1013 else
1014 Total_Errors_Detected := Total_Errors_Detected + 1;
1016 if Errors.Table (Cur_Msg).Serious then
1017 Serious_Errors_Detected := Serious_Errors_Detected + 1;
1018 Handle_Serious_Error;
1019 end if;
1020 end if;
1022 -- Terminate if max errors reached
1024 if Total_Errors_Detected + Warnings_Detected = Maximum_Errors then
1025 raise Unrecoverable_Error;
1026 end if;
1027 end Error_Msg_Internal;
1029 -----------------
1030 -- Error_Msg_N --
1031 -----------------
1033 procedure Error_Msg_N (Msg : String; N : Node_Or_Entity_Id) is
1034 begin
1035 Error_Msg_NEL (Msg, N, N, Sloc (N));
1036 end Error_Msg_N;
1038 ------------------
1039 -- Error_Msg_NE --
1040 ------------------
1042 procedure Error_Msg_NE
1043 (Msg : String;
1044 N : Node_Or_Entity_Id;
1045 E : Node_Or_Entity_Id)
1047 begin
1048 Error_Msg_NEL (Msg, N, E, Sloc (N));
1049 end Error_Msg_NE;
1051 -------------------
1052 -- Error_Msg_NEL --
1053 -------------------
1055 procedure Error_Msg_NEL
1056 (Msg : String;
1057 N : Node_Or_Entity_Id;
1058 E : Node_Or_Entity_Id;
1059 Flag_Location : Source_Ptr)
1061 begin
1062 if Special_Msg_Delete (Msg, N, E) then
1063 return;
1064 end if;
1066 Test_Style_Warning_Serious_Msg (Msg);
1068 -- Special handling for warning messages
1070 if Is_Warning_Msg then
1072 -- Suppress if no warnings set for either entity or node
1074 if No_Warnings (N) or else No_Warnings (E) then
1075 return;
1076 end if;
1078 -- Suppress if inside loop that is known to be null
1080 declare
1081 P : Node_Id;
1083 begin
1084 P := Parent (N);
1085 while Present (P) loop
1086 if Nkind (P) = N_Loop_Statement and then Is_Null_Loop (P) then
1087 return;
1088 end if;
1090 P := Parent (P);
1091 end loop;
1092 end;
1093 end if;
1095 -- Test for message to be output
1097 if All_Errors_Mode
1098 or else Msg (Msg'Last) = '!'
1099 or else Is_Warning_Msg
1100 or else OK_Node (N)
1101 or else (Msg (Msg'First) = '\' and not Last_Killed)
1102 then
1103 Debug_Output (N);
1104 Error_Msg_Node_1 := E;
1105 Error_Msg (Msg, Flag_Location);
1107 else
1108 Last_Killed := True;
1109 end if;
1111 if not Is_Warning_Msg and then not Is_Style_Msg then
1112 Set_Posted (N);
1113 end if;
1114 end Error_Msg_NEL;
1116 ------------------
1117 -- Error_Msg_NW --
1118 ------------------
1120 procedure Error_Msg_NW
1121 (Eflag : Boolean;
1122 Msg : String;
1123 N : Node_Or_Entity_Id)
1125 begin
1126 if Eflag
1127 and then In_Extended_Main_Source_Unit (N)
1128 and then Comes_From_Source (N)
1129 then
1130 Error_Msg_NEL (Msg, N, N, Sloc (N));
1131 end if;
1132 end Error_Msg_NW;
1134 -----------------
1135 -- Error_Msg_S --
1136 -----------------
1138 procedure Error_Msg_S (Msg : String) is
1139 begin
1140 Error_Msg (Msg, Scan_Ptr);
1141 end Error_Msg_S;
1143 ------------------
1144 -- Error_Msg_SC --
1145 ------------------
1147 procedure Error_Msg_SC (Msg : String) is
1148 begin
1149 -- If we are at end of file, post the flag after the previous token
1151 if Token = Tok_EOF then
1152 Error_Msg_AP (Msg);
1154 -- For all other cases the message is posted at the current token
1155 -- pointer position
1157 else
1158 Error_Msg (Msg, Token_Ptr);
1159 end if;
1160 end Error_Msg_SC;
1162 ------------------
1163 -- Error_Msg_SP --
1164 ------------------
1166 procedure Error_Msg_SP (Msg : String) is
1167 begin
1168 -- Note: in the case where there is no previous token, Prev_Token_Ptr
1169 -- is set to Source_First, which is a reasonable position for the
1170 -- error flag in this situation
1172 Error_Msg (Msg, Prev_Token_Ptr);
1173 end Error_Msg_SP;
1175 --------------
1176 -- Finalize --
1177 --------------
1179 procedure Finalize (Last_Call : Boolean) is
1180 Cur : Error_Msg_Id;
1181 Nxt : Error_Msg_Id;
1182 F : Error_Msg_Id;
1184 begin
1185 -- Eliminate any duplicated error messages from the list. This is
1186 -- done after the fact to avoid problems with Change_Error_Text.
1188 Cur := First_Error_Msg;
1189 while Cur /= No_Error_Msg loop
1190 Nxt := Errors.Table (Cur).Next;
1192 F := Nxt;
1193 while F /= No_Error_Msg
1194 and then Errors.Table (F).Sptr = Errors.Table (Cur).Sptr
1195 loop
1196 Check_Duplicate_Message (Cur, F);
1197 F := Errors.Table (F).Next;
1198 end loop;
1200 Cur := Nxt;
1201 end loop;
1203 -- Mark any messages suppressed by specific warnings as Deleted
1205 Cur := First_Error_Msg;
1206 while Cur /= No_Error_Msg loop
1207 if not Errors.Table (Cur).Deleted
1208 and then Warning_Specifically_Suppressed
1209 (Errors.Table (Cur).Sptr,
1210 Errors.Table (Cur).Text)
1211 then
1212 Errors.Table (Cur).Deleted := True;
1213 Warnings_Detected := Warnings_Detected - 1;
1214 end if;
1216 Cur := Errors.Table (Cur).Next;
1217 end loop;
1219 Finalize_Called := True;
1221 -- Check consistency of specific warnings (may add warnings). We only
1222 -- do this on the last call, after all possible warnings are posted.
1224 if Last_Call then
1225 Validate_Specific_Warnings (Error_Msg'Access);
1226 end if;
1227 end Finalize;
1229 ----------------
1230 -- First_Node --
1231 ----------------
1233 function First_Node (C : Node_Id) return Node_Id is
1234 L : constant Source_Ptr := Sloc (Original_Node (C));
1235 Sfile : constant Source_File_Index := Get_Source_File_Index (L);
1236 Earliest : Node_Id;
1237 Eloc : Source_Ptr;
1239 function Test_Earlier (N : Node_Id) return Traverse_Result;
1240 -- Function applied to every node in the construct
1242 procedure Search_Tree_First is new Traverse_Proc (Test_Earlier);
1243 -- Create traversal procedure
1245 ------------------
1246 -- Test_Earlier --
1247 ------------------
1249 function Test_Earlier (N : Node_Id) return Traverse_Result is
1250 Loc : constant Source_Ptr := Sloc (Original_Node (N));
1252 begin
1253 -- Check for earlier. The tests for being in the same file ensures
1254 -- against strange cases of foreign code somehow being present. We
1255 -- don't want wild placement of messages if that happens, so it is
1256 -- best to just ignore this situation.
1258 if Loc < Eloc
1259 and then Get_Source_File_Index (Loc) = Sfile
1260 then
1261 Earliest := Original_Node (N);
1262 Eloc := Loc;
1263 end if;
1265 return OK_Orig;
1266 end Test_Earlier;
1268 -- Start of processing for First_Node
1270 begin
1271 Earliest := Original_Node (C);
1272 Eloc := Sloc (Earliest);
1273 Search_Tree_First (Original_Node (C));
1274 return Earliest;
1275 end First_Node;
1277 ----------------
1278 -- First_Sloc --
1279 ----------------
1281 function First_Sloc (N : Node_Id) return Source_Ptr is
1282 SI : constant Source_File_Index := Source_Index (Get_Source_Unit (N));
1283 SF : constant Source_Ptr := Source_First (SI);
1284 F : Node_Id;
1285 S : Source_Ptr;
1287 begin
1288 F := First_Node (N);
1289 S := Sloc (F);
1291 -- The following circuit is a bit subtle. When we have parenthesized
1292 -- expressions, then the Sloc will not record the location of the
1293 -- paren, but we would like to post the flag on the paren. So what
1294 -- we do is to crawl up the tree from the First_Node, adjusting the
1295 -- Sloc value for any parentheses we know are present. Yes, we know
1296 -- this circuit is not 100% reliable (e.g. because we don't record
1297 -- all possible paren level values), but this is only for an error
1298 -- message so it is good enough.
1300 Node_Loop : loop
1301 Paren_Loop : for J in 1 .. Paren_Count (F) loop
1303 -- We don't look more than 12 characters behind the current
1304 -- location, and in any case not past the front of the source.
1306 Search_Loop : for K in 1 .. 12 loop
1307 exit Search_Loop when S = SF;
1309 if Source_Text (SI) (S - 1) = '(' then
1310 S := S - 1;
1311 exit Search_Loop;
1313 elsif Source_Text (SI) (S - 1) <= ' ' then
1314 S := S - 1;
1316 else
1317 exit Search_Loop;
1318 end if;
1319 end loop Search_Loop;
1320 end loop Paren_Loop;
1322 exit Node_Loop when F = N;
1323 F := Parent (F);
1324 exit Node_Loop when Nkind (F) not in N_Subexpr;
1325 end loop Node_Loop;
1327 return S;
1328 end First_Sloc;
1330 ----------------
1331 -- Initialize --
1332 ----------------
1334 procedure Initialize is
1335 begin
1336 Errors.Init;
1337 First_Error_Msg := No_Error_Msg;
1338 Last_Error_Msg := No_Error_Msg;
1339 Serious_Errors_Detected := 0;
1340 Total_Errors_Detected := 0;
1341 Warnings_Detected := 0;
1342 Cur_Msg := No_Error_Msg;
1343 List_Pragmas.Init;
1345 -- Initialize warnings table, if all warnings are suppressed, supply
1346 -- an initial dummy entry covering all possible source locations.
1348 Warnings.Init;
1349 Specific_Warnings.Init;
1351 if Warning_Mode = Suppress then
1352 Warnings.Increment_Last;
1353 Warnings.Table (Warnings.Last).Start := Source_Ptr'First;
1354 Warnings.Table (Warnings.Last).Stop := Source_Ptr'Last;
1355 end if;
1356 end Initialize;
1358 -----------------
1359 -- No_Warnings --
1360 -----------------
1362 function No_Warnings (N : Node_Or_Entity_Id) return Boolean is
1363 begin
1364 if Error_Posted (N) then
1365 return True;
1367 elsif Nkind (N) in N_Entity and then Warnings_Off (N) then
1368 return True;
1370 elsif Is_Entity_Name (N)
1371 and then Present (Entity (N))
1372 and then Warnings_Off (Entity (N))
1373 then
1374 return True;
1376 else
1377 return False;
1378 end if;
1379 end No_Warnings;
1381 -------------
1382 -- OK_Node --
1383 -------------
1385 function OK_Node (N : Node_Id) return Boolean is
1386 K : constant Node_Kind := Nkind (N);
1388 begin
1389 if Error_Posted (N) then
1390 return False;
1392 elsif K in N_Has_Etype
1393 and then Present (Etype (N))
1394 and then Error_Posted (Etype (N))
1395 then
1396 return False;
1398 elsif (K in N_Op
1399 or else K = N_Attribute_Reference
1400 or else K = N_Character_Literal
1401 or else K = N_Expanded_Name
1402 or else K = N_Identifier
1403 or else K = N_Operator_Symbol)
1404 and then Present (Entity (N))
1405 and then Error_Posted (Entity (N))
1406 then
1407 return False;
1408 else
1409 return True;
1410 end if;
1411 end OK_Node;
1413 ---------------------
1414 -- Output_Messages --
1415 ---------------------
1417 procedure Output_Messages is
1418 E : Error_Msg_Id;
1419 Err_Flag : Boolean;
1421 procedure Write_Error_Summary;
1422 -- Write error summary
1424 procedure Write_Header (Sfile : Source_File_Index);
1425 -- Write header line (compiling or checking given file)
1427 procedure Write_Max_Errors;
1428 -- Write message if max errors reached
1430 -------------------------
1431 -- Write_Error_Summary --
1432 -------------------------
1434 procedure Write_Error_Summary is
1435 begin
1436 -- Extra blank line if error messages or source listing were output
1438 if Total_Errors_Detected + Warnings_Detected > 0
1439 or else Full_List
1440 then
1441 Write_Eol;
1442 end if;
1444 -- Message giving number of lines read and number of errors detected.
1445 -- This normally goes to Standard_Output. The exception is when brief
1446 -- mode is not set, verbose mode (or full list mode) is set, and
1447 -- there are errors. In this case we send the message to standard
1448 -- error to make sure that *something* appears on standard error in
1449 -- an error situation.
1451 -- Formerly, only the "# errors" suffix was sent to stderr, whereas
1452 -- "# lines:" appeared on stdout. This caused problems on VMS when
1453 -- the stdout buffer was flushed, giving an extra line feed after
1454 -- the prefix.
1456 if Total_Errors_Detected + Warnings_Detected /= 0
1457 and then not Brief_Output
1458 and then (Verbose_Mode or Full_List)
1459 then
1460 Set_Standard_Error;
1461 end if;
1463 -- Message giving total number of lines
1465 Write_Str (" ");
1466 Write_Int (Num_Source_Lines (Main_Source_File));
1468 if Num_Source_Lines (Main_Source_File) = 1 then
1469 Write_Str (" line: ");
1470 else
1471 Write_Str (" lines: ");
1472 end if;
1474 if Total_Errors_Detected = 0 then
1475 Write_Str ("No errors");
1477 elsif Total_Errors_Detected = 1 then
1478 Write_Str ("1 error");
1480 else
1481 Write_Int (Total_Errors_Detected);
1482 Write_Str (" errors");
1483 end if;
1485 if Warnings_Detected /= 0 then
1486 Write_Str (", ");
1487 Write_Int (Warnings_Detected);
1488 Write_Str (" warning");
1490 if Warnings_Detected /= 1 then
1491 Write_Char ('s');
1492 end if;
1494 if Warning_Mode = Treat_As_Error then
1495 Write_Str (" (treated as error");
1497 if Warnings_Detected /= 1 then
1498 Write_Char ('s');
1499 end if;
1501 Write_Char (')');
1502 end if;
1503 end if;
1505 Write_Eol;
1506 Set_Standard_Output;
1507 end Write_Error_Summary;
1509 ------------------
1510 -- Write_Header --
1511 ------------------
1513 procedure Write_Header (Sfile : Source_File_Index) is
1514 begin
1515 if Verbose_Mode or Full_List then
1516 if Original_Operating_Mode = Generate_Code then
1517 Write_Str ("Compiling: ");
1518 else
1519 Write_Str ("Checking: ");
1520 end if;
1522 Write_Name (Full_File_Name (Sfile));
1524 if not Debug_Flag_7 then
1525 Write_Str (" (source file time stamp: ");
1526 Write_Time_Stamp (Sfile);
1527 Write_Char (')');
1528 end if;
1530 Write_Eol;
1531 end if;
1532 end Write_Header;
1534 ----------------------
1535 -- Write_Max_Errors --
1536 ----------------------
1538 procedure Write_Max_Errors is
1539 begin
1540 if Maximum_Errors /= 0
1541 and then Total_Errors_Detected + Warnings_Detected = Maximum_Errors
1542 then
1543 Set_Standard_Error;
1544 Write_Str ("fatal error: maximum errors reached");
1545 Write_Eol;
1546 Set_Standard_Output;
1547 end if;
1548 end Write_Max_Errors;
1550 -- Start of processing for Output_Messages
1552 begin
1553 -- Error if Finalize has not been called
1555 if not Finalize_Called then
1556 raise Program_Error;
1557 end if;
1559 -- Reset current error source file if the main unit has a pragma
1560 -- Source_Reference. This ensures outputting the proper name of
1561 -- the source file in this situation.
1563 if Main_Source_File = No_Source_File
1564 or else Num_SRef_Pragmas (Main_Source_File) /= 0
1565 then
1566 Current_Error_Source_File := No_Source_File;
1567 end if;
1569 -- Brief Error mode
1571 if Brief_Output or (not Full_List and not Verbose_Mode) then
1572 Set_Standard_Error;
1574 E := First_Error_Msg;
1575 while E /= No_Error_Msg loop
1576 if not Errors.Table (E).Deleted and then not Debug_Flag_KK then
1577 if Full_Path_Name_For_Brief_Errors then
1578 Write_Name (Full_Ref_Name (Errors.Table (E).Sfile));
1579 else
1580 Write_Name (Reference_Name (Errors.Table (E).Sfile));
1581 end if;
1583 Write_Char (':');
1584 Write_Int (Int (Physical_To_Logical
1585 (Errors.Table (E).Line,
1586 Errors.Table (E).Sfile)));
1587 Write_Char (':');
1589 if Errors.Table (E).Col < 10 then
1590 Write_Char ('0');
1591 end if;
1593 Write_Int (Int (Errors.Table (E).Col));
1594 Write_Str (": ");
1595 Output_Msg_Text (E);
1596 Write_Eol;
1597 end if;
1599 E := Errors.Table (E).Next;
1600 end loop;
1602 Set_Standard_Output;
1603 end if;
1605 -- Full source listing case
1607 if Full_List then
1608 List_Pragmas_Index := 1;
1609 List_Pragmas_Mode := True;
1610 E := First_Error_Msg;
1612 -- Normal case, to stdout (copyright notice already output)
1614 if Full_List_File_Name = null then
1615 if not Debug_Flag_7 then
1616 Write_Eol;
1617 end if;
1619 -- Output to file
1621 else
1622 Create_List_File_Access.all (Full_List_File_Name.all);
1623 Set_Special_Output (Write_List_Info_Access.all'Access);
1625 -- Write copyright notice to file
1627 if not Debug_Flag_7 then
1628 Write_Str ("GNAT ");
1629 Write_Str (Gnat_Version_String);
1630 Write_Eol;
1631 Write_Str ("Copyright 1992-" &
1632 Current_Year &
1633 ", Free Software Foundation, Inc.");
1634 Write_Eol;
1635 end if;
1636 end if;
1638 -- First list extended main source file units with errors
1640 -- Note: if debug flag d.m is set, only the main source is listed
1642 for U in Main_Unit .. Last_Unit loop
1643 if In_Extended_Main_Source_Unit (Cunit_Entity (U))
1644 and then (U = Main_Unit or else not Debug_Flag_Dot_M)
1645 then
1646 declare
1647 Sfile : constant Source_File_Index := Source_Index (U);
1649 begin
1650 Write_Eol;
1651 Write_Header (Sfile);
1652 Write_Eol;
1654 -- Normally, we don't want an "error messages from file"
1655 -- message when listing the entire file, so we set the
1656 -- current source file as the current error source file.
1657 -- However, the old style of doing things was to list this
1658 -- message if pragma Source_Reference is present, even for
1659 -- the main unit. Since the purpose of the -gnatd.m switch
1660 -- is to duplicate the old behavior, we skip the reset if
1661 -- this debug flag is set.
1663 if not Debug_Flag_Dot_M then
1664 Current_Error_Source_File := Sfile;
1665 end if;
1667 for N in 1 .. Last_Source_Line (Sfile) loop
1668 while E /= No_Error_Msg
1669 and then Errors.Table (E).Deleted
1670 loop
1671 E := Errors.Table (E).Next;
1672 end loop;
1674 Err_Flag :=
1675 E /= No_Error_Msg
1676 and then Errors.Table (E).Line = N
1677 and then Errors.Table (E).Sfile = Sfile;
1679 Output_Source_Line (N, Sfile, Err_Flag);
1681 if Err_Flag then
1682 Output_Error_Msgs (E);
1684 if not Debug_Flag_2 then
1685 Write_Eol;
1686 end if;
1687 end if;
1688 end loop;
1689 end;
1690 end if;
1691 end loop;
1693 -- Then output errors, if any, for subsidiary units not in the
1694 -- main extended unit.
1696 -- Note: if debug flag d.m set, include errors for any units other
1697 -- than the main unit in the extended source unit (e.g. spec and
1698 -- subunits for a body).
1700 while E /= No_Error_Msg
1701 and then (not In_Extended_Main_Source_Unit (Errors.Table (E).Sptr)
1702 or else
1703 (Debug_Flag_Dot_M
1704 and then Get_Source_Unit
1705 (Errors.Table (E).Sptr) /= Main_Unit))
1706 loop
1707 if Errors.Table (E).Deleted then
1708 E := Errors.Table (E).Next;
1710 else
1711 Write_Eol;
1712 Output_Source_Line
1713 (Errors.Table (E).Line, Errors.Table (E).Sfile, True);
1714 Output_Error_Msgs (E);
1715 end if;
1716 end loop;
1718 -- If output to file, write extra copy of error summary to the
1719 -- output file, and then close it.
1721 if Full_List_File_Name /= null then
1722 Write_Error_Summary;
1723 Write_Max_Errors;
1724 Close_List_File_Access.all;
1725 Cancel_Special_Output;
1726 end if;
1727 end if;
1729 -- Verbose mode (error lines only with error flags). Normally this is
1730 -- ignored in full list mode, unless we are listing to a file, in which
1731 -- case we still generate -gnatv output to standard output.
1733 if Verbose_Mode
1734 and then (not Full_List or else Full_List_File_Name /= null)
1735 then
1736 Write_Eol;
1737 Write_Header (Main_Source_File);
1738 E := First_Error_Msg;
1740 -- Loop through error lines
1742 while E /= No_Error_Msg loop
1743 if Errors.Table (E).Deleted then
1744 E := Errors.Table (E).Next;
1745 else
1746 Write_Eol;
1747 Output_Source_Line
1748 (Errors.Table (E).Line, Errors.Table (E).Sfile, True);
1749 Output_Error_Msgs (E);
1750 end if;
1751 end loop;
1752 end if;
1754 -- Output error summary if verbose or full list mode
1756 if Verbose_Mode or else Full_List then
1757 Write_Error_Summary;
1758 end if;
1760 Write_Max_Errors;
1762 if Warning_Mode = Treat_As_Error then
1763 Total_Errors_Detected := Total_Errors_Detected + Warnings_Detected;
1764 Warnings_Detected := 0;
1765 end if;
1766 end Output_Messages;
1768 ------------------------
1769 -- Output_Source_Line --
1770 ------------------------
1772 procedure Output_Source_Line
1773 (L : Physical_Line_Number;
1774 Sfile : Source_File_Index;
1775 Errs : Boolean)
1777 S : Source_Ptr;
1778 C : Character;
1780 Line_Number_Output : Boolean := False;
1781 -- Set True once line number is output
1783 Empty_Line : Boolean := True;
1784 -- Set False if line includes at least one character
1786 begin
1787 if Sfile /= Current_Error_Source_File then
1788 Write_Str ("==============Error messages for ");
1790 case Sinput.File_Type (Sfile) is
1791 when Sinput.Src =>
1792 Write_Str ("source");
1794 when Sinput.Config =>
1795 Write_Str ("configuration pragmas");
1797 when Sinput.Def =>
1798 Write_Str ("symbol definition");
1800 when Sinput.Preproc =>
1801 Write_Str ("preprocessing data");
1802 end case;
1804 Write_Str (" file: ");
1805 Write_Name (Full_File_Name (Sfile));
1806 Write_Eol;
1808 if Num_SRef_Pragmas (Sfile) > 0 then
1809 Write_Str ("--------------Line numbers from file: ");
1810 Write_Name (Full_Ref_Name (Sfile));
1811 Write_Str (" (starting at line ");
1812 Write_Int (Int (First_Mapped_Line (Sfile)));
1813 Write_Char (')');
1814 Write_Eol;
1815 end if;
1817 Current_Error_Source_File := Sfile;
1818 end if;
1820 if Errs or List_Pragmas_Mode then
1821 Output_Line_Number (Physical_To_Logical (L, Sfile));
1822 Line_Number_Output := True;
1823 end if;
1825 S := Line_Start (L, Sfile);
1827 loop
1828 C := Source_Text (Sfile) (S);
1829 exit when C = ASCII.LF or else C = ASCII.CR or else C = EOF;
1831 -- Deal with matching entry in List_Pragmas table
1833 if Full_List
1834 and then List_Pragmas_Index <= List_Pragmas.Last
1835 and then S = List_Pragmas.Table (List_Pragmas_Index).Ploc
1836 then
1837 case List_Pragmas.Table (List_Pragmas_Index).Ptyp is
1838 when Page =>
1839 Write_Char (C);
1841 -- Ignore if on line with errors so that error flags
1842 -- get properly listed with the error line .
1844 if not Errs then
1845 Write_Char (ASCII.FF);
1846 end if;
1848 when List_On =>
1849 List_Pragmas_Mode := True;
1851 if not Line_Number_Output then
1852 Output_Line_Number (Physical_To_Logical (L, Sfile));
1853 Line_Number_Output := True;
1854 end if;
1856 Write_Char (C);
1858 when List_Off =>
1859 Write_Char (C);
1860 List_Pragmas_Mode := False;
1861 end case;
1863 List_Pragmas_Index := List_Pragmas_Index + 1;
1865 -- Normal case (no matching entry in List_Pragmas table)
1867 else
1868 if Errs or List_Pragmas_Mode then
1869 Write_Char (C);
1870 end if;
1871 end if;
1873 Empty_Line := False;
1874 S := S + 1;
1875 end loop;
1877 -- If we have output a source line, then add the line terminator, with
1878 -- training spaces preserved (so we output the line exactly as input).
1880 if Line_Number_Output then
1881 if Empty_Line then
1882 Write_Eol;
1883 else
1884 Write_Eol_Keep_Blanks;
1885 end if;
1886 end if;
1887 end Output_Source_Line;
1889 -----------------------------
1890 -- Remove_Warning_Messages --
1891 -----------------------------
1893 procedure Remove_Warning_Messages (N : Node_Id) is
1895 function Check_For_Warning (N : Node_Id) return Traverse_Result;
1896 -- This function checks one node for a possible warning message
1898 function Check_All_Warnings is new Traverse_Func (Check_For_Warning);
1899 -- This defines the traversal operation
1901 -----------------------
1902 -- Check_For_Warning --
1903 -----------------------
1905 function Check_For_Warning (N : Node_Id) return Traverse_Result is
1906 Loc : constant Source_Ptr := Sloc (N);
1907 E : Error_Msg_Id;
1909 function To_Be_Removed (E : Error_Msg_Id) return Boolean;
1910 -- Returns True for a message that is to be removed. Also adjusts
1911 -- warning count appropriately.
1913 -------------------
1914 -- To_Be_Removed --
1915 -------------------
1917 function To_Be_Removed (E : Error_Msg_Id) return Boolean is
1918 begin
1919 if E /= No_Error_Msg
1921 -- Don't remove if location does not match
1923 and then Errors.Table (E).Optr = Loc
1925 -- Don't remove if not warning message. Note that we do not
1926 -- remove style messages here. They are warning messages but
1927 -- not ones we want removed in this context.
1929 and then Errors.Table (E).Warn
1931 -- Don't remove unconditional messages
1933 and then not Errors.Table (E).Uncond
1934 then
1935 Warnings_Detected := Warnings_Detected - 1;
1936 return True;
1938 -- No removal required
1940 else
1941 return False;
1942 end if;
1943 end To_Be_Removed;
1945 -- Start of processing for Check_For_Warnings
1947 begin
1948 while To_Be_Removed (First_Error_Msg) loop
1949 First_Error_Msg := Errors.Table (First_Error_Msg).Next;
1950 end loop;
1952 if First_Error_Msg = No_Error_Msg then
1953 Last_Error_Msg := No_Error_Msg;
1954 end if;
1956 E := First_Error_Msg;
1957 while E /= No_Error_Msg loop
1958 while To_Be_Removed (Errors.Table (E).Next) loop
1959 Errors.Table (E).Next :=
1960 Errors.Table (Errors.Table (E).Next).Next;
1962 if Errors.Table (E).Next = No_Error_Msg then
1963 Last_Error_Msg := E;
1964 end if;
1965 end loop;
1967 E := Errors.Table (E).Next;
1968 end loop;
1970 if Nkind (N) = N_Raise_Constraint_Error
1971 and then Original_Node (N) /= N
1972 and then No (Condition (N))
1973 then
1974 -- Warnings may have been posted on subexpressions of
1975 -- the original tree. We place the original node back
1976 -- on the tree to remove those warnings, whose sloc
1977 -- do not match those of any node in the current tree.
1978 -- Given that we are in unreachable code, this modification
1979 -- to the tree is harmless.
1981 declare
1982 Status : Traverse_Final_Result;
1984 begin
1985 if Is_List_Member (N) then
1986 Set_Condition (N, Original_Node (N));
1987 Status := Check_All_Warnings (Condition (N));
1988 else
1989 Rewrite (N, Original_Node (N));
1990 Status := Check_All_Warnings (N);
1991 end if;
1993 return Status;
1994 end;
1996 else
1997 return OK;
1998 end if;
1999 end Check_For_Warning;
2001 -- Start of processing for Remove_Warning_Messages
2003 begin
2004 if Warnings_Detected /= 0 then
2005 declare
2006 Discard : Traverse_Final_Result;
2007 pragma Warnings (Off, Discard);
2009 begin
2010 Discard := Check_All_Warnings (N);
2011 end;
2012 end if;
2013 end Remove_Warning_Messages;
2015 procedure Remove_Warning_Messages (L : List_Id) is
2016 Stat : Node_Id;
2017 begin
2018 if Is_Non_Empty_List (L) then
2019 Stat := First (L);
2021 while Present (Stat) loop
2022 Remove_Warning_Messages (Stat);
2023 Next (Stat);
2024 end loop;
2025 end if;
2026 end Remove_Warning_Messages;
2028 ---------------------------
2029 -- Set_Identifier_Casing --
2030 ---------------------------
2032 procedure Set_Identifier_Casing
2033 (Identifier_Name : System.Address;
2034 File_Name : System.Address)
2036 type Big_String is array (Positive) of Character;
2037 type Big_String_Ptr is access all Big_String;
2039 function To_Big_String_Ptr is new Unchecked_Conversion
2040 (System.Address, Big_String_Ptr);
2042 Ident : constant Big_String_Ptr := To_Big_String_Ptr (Identifier_Name);
2043 File : constant Big_String_Ptr := To_Big_String_Ptr (File_Name);
2044 Flen : Natural;
2046 Desired_Case : Casing_Type := Mixed_Case;
2047 -- Casing required for result. Default value of Mixed_Case is used if
2048 -- for some reason we cannot find the right file name in the table.
2050 begin
2051 -- Get length of file name
2053 Flen := 0;
2054 while File (Flen + 1) /= ASCII.NUL loop
2055 Flen := Flen + 1;
2056 end loop;
2058 -- Loop through file names to find matching one. This is a bit slow,
2059 -- but we only do it in error situations so it is not so terrible.
2060 -- Note that if the loop does not exit, then the desired case will
2061 -- be left set to Mixed_Case, this can happen if the name was not
2062 -- in canonical form, and gets canonicalized on VMS. Possibly we
2063 -- could fix this by unconditinally canonicalizing these names ???
2065 for J in 1 .. Last_Source_File loop
2066 Get_Name_String (Full_Debug_Name (J));
2068 if Name_Len = Flen
2069 and then Name_Buffer (1 .. Name_Len) = String (File (1 .. Flen))
2070 then
2071 Desired_Case := Identifier_Casing (J);
2072 exit;
2073 end if;
2074 end loop;
2076 -- Copy identifier as given to Name_Buffer
2078 for J in Name_Buffer'Range loop
2079 Name_Buffer (J) := Ident (J);
2081 if Name_Buffer (J) = ASCII.Nul then
2082 Name_Len := J - 1;
2083 exit;
2084 end if;
2085 end loop;
2087 Set_Casing (Desired_Case);
2088 end Set_Identifier_Casing;
2090 -----------------------
2091 -- Set_Ignore_Errors --
2092 -----------------------
2094 procedure Set_Ignore_Errors (To : Boolean) is
2095 begin
2096 Errors_Must_Be_Ignored := To;
2097 end Set_Ignore_Errors;
2099 ------------------------------
2100 -- Set_Msg_Insertion_Column --
2101 ------------------------------
2103 procedure Set_Msg_Insertion_Column is
2104 begin
2105 if Style.RM_Column_Check then
2106 Set_Msg_Str (" in column ");
2107 Set_Msg_Int (Int (Error_Msg_Col) + 1);
2108 end if;
2109 end Set_Msg_Insertion_Column;
2111 ----------------------------
2112 -- Set_Msg_Insertion_Node --
2113 ----------------------------
2115 procedure Set_Msg_Insertion_Node is
2116 K : Node_Kind;
2118 begin
2119 Suppress_Message :=
2120 Error_Msg_Node_1 = Error
2121 or else Error_Msg_Node_1 = Any_Type;
2123 if Error_Msg_Node_1 = Empty then
2124 Set_Msg_Blank_Conditional;
2125 Set_Msg_Str ("<empty>");
2127 elsif Error_Msg_Node_1 = Error then
2128 Set_Msg_Blank;
2129 Set_Msg_Str ("<error>");
2131 elsif Error_Msg_Node_1 = Standard_Void_Type then
2132 Set_Msg_Blank;
2133 Set_Msg_Str ("procedure name");
2135 else
2136 Set_Msg_Blank_Conditional;
2138 -- Output name
2140 K := Nkind (Error_Msg_Node_1);
2142 -- If we have operator case, skip quotes since name of operator
2143 -- itself will supply the required quotations. An operator can be
2144 -- an applied use in an expression or an explicit operator symbol,
2145 -- or an identifier whose name indicates it is an operator.
2147 if K in N_Op
2148 or else K = N_Operator_Symbol
2149 or else K = N_Defining_Operator_Symbol
2150 or else ((K = N_Identifier or else K = N_Defining_Identifier)
2151 and then Is_Operator_Name (Chars (Error_Msg_Node_1)))
2152 then
2153 Set_Msg_Node (Error_Msg_Node_1);
2155 -- Normal case, not an operator, surround with quotes
2157 else
2158 Set_Msg_Quote;
2159 Set_Qualification (Error_Msg_Qual_Level, Error_Msg_Node_1);
2160 Set_Msg_Node (Error_Msg_Node_1);
2161 Set_Msg_Quote;
2162 end if;
2163 end if;
2165 -- The following assignment ensures that a second ampersand insertion
2166 -- character will correspond to the Error_Msg_Node_2 parameter. We
2167 -- suppress possible validity checks in case operating in -gnatVa mode,
2168 -- and Error_Msg_Node_2 is not needed and has not been set.
2170 declare
2171 pragma Suppress (Range_Check);
2172 begin
2173 Error_Msg_Node_1 := Error_Msg_Node_2;
2174 end;
2175 end Set_Msg_Insertion_Node;
2177 --------------------------------------
2178 -- Set_Msg_Insertion_Type_Reference --
2179 --------------------------------------
2181 procedure Set_Msg_Insertion_Type_Reference (Flag : Source_Ptr) is
2182 Ent : Entity_Id;
2184 begin
2185 Set_Msg_Blank;
2187 if Error_Msg_Node_1 = Standard_Void_Type then
2188 Set_Msg_Str ("package or procedure name");
2189 return;
2191 elsif Error_Msg_Node_1 = Standard_Exception_Type then
2192 Set_Msg_Str ("exception name");
2193 return;
2195 elsif Error_Msg_Node_1 = Any_Access
2196 or else Error_Msg_Node_1 = Any_Array
2197 or else Error_Msg_Node_1 = Any_Boolean
2198 or else Error_Msg_Node_1 = Any_Character
2199 or else Error_Msg_Node_1 = Any_Composite
2200 or else Error_Msg_Node_1 = Any_Discrete
2201 or else Error_Msg_Node_1 = Any_Fixed
2202 or else Error_Msg_Node_1 = Any_Integer
2203 or else Error_Msg_Node_1 = Any_Modular
2204 or else Error_Msg_Node_1 = Any_Numeric
2205 or else Error_Msg_Node_1 = Any_Real
2206 or else Error_Msg_Node_1 = Any_Scalar
2207 or else Error_Msg_Node_1 = Any_String
2208 then
2209 Get_Unqualified_Decoded_Name_String (Chars (Error_Msg_Node_1));
2210 Set_Msg_Name_Buffer;
2211 return;
2213 elsif Error_Msg_Node_1 = Universal_Real then
2214 Set_Msg_Str ("type universal real");
2215 return;
2217 elsif Error_Msg_Node_1 = Universal_Integer then
2218 Set_Msg_Str ("type universal integer");
2219 return;
2221 elsif Error_Msg_Node_1 = Universal_Fixed then
2222 Set_Msg_Str ("type universal fixed");
2223 return;
2224 end if;
2226 -- Special case of anonymous array
2228 if Nkind (Error_Msg_Node_1) in N_Entity
2229 and then Is_Array_Type (Error_Msg_Node_1)
2230 and then Present (Related_Array_Object (Error_Msg_Node_1))
2231 then
2232 Set_Msg_Str ("type of ");
2233 Set_Msg_Node (Related_Array_Object (Error_Msg_Node_1));
2234 Set_Msg_Str (" declared");
2235 Set_Msg_Insertion_Line_Number
2236 (Sloc (Related_Array_Object (Error_Msg_Node_1)), Flag);
2237 return;
2238 end if;
2240 -- If we fall through, it is not a special case, so first output
2241 -- the name of the type, preceded by private for a private type
2243 if Is_Private_Type (Error_Msg_Node_1) then
2244 Set_Msg_Str ("private type ");
2245 else
2246 Set_Msg_Str ("type ");
2247 end if;
2249 Ent := Error_Msg_Node_1;
2251 if Is_Internal_Name (Chars (Ent)) then
2252 Unwind_Internal_Type (Ent);
2253 end if;
2255 -- Types in Standard are displayed as "Standard.name"
2257 if Sloc (Ent) <= Standard_Location then
2258 Set_Msg_Quote;
2259 Set_Msg_Str ("Standard.");
2260 Set_Msg_Node (Ent);
2261 Add_Class;
2262 Set_Msg_Quote;
2264 -- Types in other language defined units are displayed as
2265 -- "package-name.type-name"
2267 elsif
2268 Is_Predefined_File_Name (Unit_File_Name (Get_Source_Unit (Ent)))
2269 then
2270 Get_Unqualified_Decoded_Name_String
2271 (Unit_Name (Get_Source_Unit (Ent)));
2272 Name_Len := Name_Len - 2;
2273 Set_Msg_Quote;
2274 Set_Casing (Mixed_Case);
2275 Set_Msg_Name_Buffer;
2276 Set_Msg_Char ('.');
2277 Set_Casing (Mixed_Case);
2278 Set_Msg_Node (Ent);
2279 Add_Class;
2280 Set_Msg_Quote;
2282 -- All other types display as "type name" defined at line xxx
2283 -- possibly qualified if qualification is requested.
2285 else
2286 Set_Msg_Quote;
2287 Set_Qualification (Error_Msg_Qual_Level, Ent);
2288 Set_Msg_Node (Ent);
2289 Add_Class;
2291 -- If Ent is an anonymous subprogram type, there is no name
2292 -- to print, so remove enclosing quotes.
2294 if Buffer_Ends_With ("""") then
2295 Buffer_Remove ("""");
2296 else
2297 Set_Msg_Quote;
2298 end if;
2299 end if;
2301 -- If the original type did not come from a predefined
2302 -- file, add the location where the type was defined.
2304 if Sloc (Error_Msg_Node_1) > Standard_Location
2305 and then
2306 not Is_Predefined_File_Name
2307 (Unit_File_Name (Get_Source_Unit (Error_Msg_Node_1)))
2308 then
2309 Set_Msg_Str (" defined");
2310 Set_Msg_Insertion_Line_Number (Sloc (Error_Msg_Node_1), Flag);
2312 -- If it did come from a predefined file, deal with the case where
2313 -- this was a file with a generic instantiation from elsewhere.
2315 else
2316 if Sloc (Error_Msg_Node_1) > Standard_Location then
2317 declare
2318 Iloc : constant Source_Ptr :=
2319 Instantiation_Location (Sloc (Error_Msg_Node_1));
2321 begin
2322 if Iloc /= No_Location
2323 and then not Suppress_Instance_Location
2324 then
2325 Set_Msg_Str (" from instance");
2326 Set_Msg_Insertion_Line_Number (Iloc, Flag);
2327 end if;
2328 end;
2329 end if;
2330 end if;
2331 end Set_Msg_Insertion_Type_Reference;
2333 ---------------------------------
2334 -- Set_Msg_Insertion_Unit_Name --
2335 ---------------------------------
2337 procedure Set_Msg_Insertion_Unit_Name (Suffix : Boolean := True) is
2338 begin
2339 if Error_Msg_Unit_1 = No_Unit_Name then
2340 null;
2342 elsif Error_Msg_Unit_1 = Error_Unit_Name then
2343 Set_Msg_Blank;
2344 Set_Msg_Str ("<error>");
2346 else
2347 Get_Unit_Name_String (Error_Msg_Unit_1, Suffix);
2348 Set_Msg_Blank;
2349 Set_Msg_Quote;
2350 Set_Msg_Name_Buffer;
2351 Set_Msg_Quote;
2352 end if;
2354 -- The following assignment ensures that a second percent insertion
2355 -- character will correspond to the Error_Msg_Unit_2 parameter. We
2356 -- suppress possible validity checks in case operating in -gnatVa mode,
2357 -- and Error_Msg_Unit_2 is not needed and has not been set.
2359 declare
2360 pragma Suppress (Range_Check);
2361 begin
2362 Error_Msg_Unit_1 := Error_Msg_Unit_2;
2363 end;
2364 end Set_Msg_Insertion_Unit_Name;
2366 ------------------
2367 -- Set_Msg_Node --
2368 ------------------
2370 procedure Set_Msg_Node (Node : Node_Id) is
2371 Ent : Entity_Id;
2372 Nam : Name_Id;
2374 begin
2375 if Nkind (Node) = N_Designator then
2376 Set_Msg_Node (Name (Node));
2377 Set_Msg_Char ('.');
2378 Set_Msg_Node (Identifier (Node));
2379 return;
2381 elsif Nkind (Node) = N_Defining_Program_Unit_Name then
2382 Set_Msg_Node (Name (Node));
2383 Set_Msg_Char ('.');
2384 Set_Msg_Node (Defining_Identifier (Node));
2385 return;
2387 elsif Nkind (Node) = N_Selected_Component then
2388 Set_Msg_Node (Prefix (Node));
2389 Set_Msg_Char ('.');
2390 Set_Msg_Node (Selector_Name (Node));
2391 return;
2392 end if;
2394 -- The only remaining possibilities are identifiers, defining
2395 -- identifiers, pragmas, and pragma argument associations, i.e.
2396 -- nodes that have a Chars field.
2398 -- Internal names generally represent something gone wrong. An exception
2399 -- is the case of internal type names, where we try to find a reasonable
2400 -- external representation for the external name
2402 if Is_Internal_Name (Chars (Node))
2403 and then
2404 ((Is_Entity_Name (Node)
2405 and then Present (Entity (Node))
2406 and then Is_Type (Entity (Node)))
2407 or else
2408 (Nkind (Node) = N_Defining_Identifier and then Is_Type (Node)))
2409 then
2410 if Nkind (Node) = N_Identifier then
2411 Ent := Entity (Node);
2412 else
2413 Ent := Node;
2414 end if;
2416 -- If the type is the designated type of an access_to_subprogram,
2417 -- there is no name to provide in the call.
2419 if Ekind (Ent) = E_Subprogram_Type then
2420 return;
2421 else
2422 Unwind_Internal_Type (Ent);
2423 Nam := Chars (Ent);
2424 end if;
2426 else
2427 Nam := Chars (Node);
2428 end if;
2430 -- At this stage, the name to output is in Nam
2432 Get_Unqualified_Decoded_Name_String (Nam);
2434 -- Remove trailing upper case letters from the name (useful for
2435 -- dealing with some cases of internal names.
2437 while Name_Len > 1 and then Name_Buffer (Name_Len) in 'A' .. 'Z' loop
2438 Name_Len := Name_Len - 1;
2439 end loop;
2441 -- If we have any of the names from standard that start with the
2442 -- characters "any " (e.g. Any_Type), then kill the message since
2443 -- almost certainly it is a junk cascaded message.
2445 if Name_Len > 4
2446 and then Name_Buffer (1 .. 4) = "any "
2447 then
2448 Kill_Message := True;
2449 end if;
2451 -- Now we have to set the proper case. If we have a source location
2452 -- then do a check to see if the name in the source is the same name
2453 -- as the name in the Names table, except for possible differences
2454 -- in case, which is the case when we can copy from the source.
2456 declare
2457 Src_Loc : constant Source_Ptr := Sloc (Error_Msg_Node_1);
2458 Sbuffer : Source_Buffer_Ptr;
2459 Ref_Ptr : Integer;
2460 Src_Ptr : Source_Ptr;
2462 begin
2463 Ref_Ptr := 1;
2464 Src_Ptr := Src_Loc;
2466 -- For standard locations, always use mixed case
2468 if Src_Loc <= No_Location
2469 or else Sloc (Node) <= No_Location
2470 then
2471 Set_Casing (Mixed_Case);
2473 else
2474 -- Determine if the reference we are dealing with corresponds
2475 -- to text at the point of the error reference. This will often
2476 -- be the case for simple identifier references, and is the case
2477 -- where we can copy the spelling from the source.
2479 Sbuffer := Source_Text (Get_Source_File_Index (Src_Loc));
2481 while Ref_Ptr <= Name_Len loop
2482 exit when
2483 Fold_Lower (Sbuffer (Src_Ptr)) /=
2484 Fold_Lower (Name_Buffer (Ref_Ptr));
2485 Ref_Ptr := Ref_Ptr + 1;
2486 Src_Ptr := Src_Ptr + 1;
2487 end loop;
2489 -- If we get through the loop without a mismatch, then output
2490 -- the name the way it is spelled in the source program
2492 if Ref_Ptr > Name_Len then
2493 Src_Ptr := Src_Loc;
2495 for J in 1 .. Name_Len loop
2496 Name_Buffer (J) := Sbuffer (Src_Ptr);
2497 Src_Ptr := Src_Ptr + 1;
2498 end loop;
2500 -- Otherwise set the casing using the default identifier casing
2502 else
2503 Set_Casing (Identifier_Casing (Flag_Source), Mixed_Case);
2504 end if;
2505 end if;
2506 end;
2508 Set_Msg_Name_Buffer;
2509 Add_Class;
2510 end Set_Msg_Node;
2512 ------------------
2513 -- Set_Msg_Text --
2514 ------------------
2516 procedure Set_Msg_Text (Text : String; Flag : Source_Ptr) is
2517 C : Character; -- Current character
2518 P : Natural; -- Current index;
2520 begin
2521 Manual_Quote_Mode := False;
2522 Is_Unconditional_Msg := False;
2523 Msglen := 0;
2524 Flag_Source := Get_Source_File_Index (Flag);
2525 P := Text'First;
2527 while P <= Text'Last loop
2528 C := Text (P);
2529 P := P + 1;
2531 -- Check for insertion character or sequence
2533 case C is
2534 when '%' =>
2535 if P <= Text'Last and then Text (P) = '%' then
2536 P := P + 1;
2537 Set_Msg_Insertion_Name_Literal;
2538 else
2539 Set_Msg_Insertion_Name;
2540 end if;
2542 when '$' =>
2543 if P <= Text'Last and then Text (P) = '$' then
2544 P := P + 1;
2545 Set_Msg_Insertion_Unit_Name (Suffix => False);
2547 else
2548 Set_Msg_Insertion_Unit_Name;
2549 end if;
2551 when '{' =>
2552 Set_Msg_Insertion_File_Name;
2554 when '}' =>
2555 Set_Msg_Insertion_Type_Reference (Flag);
2557 when '*' =>
2558 Set_Msg_Insertion_Reserved_Name;
2560 when '&' =>
2561 Set_Msg_Insertion_Node;
2563 when '#' =>
2564 Set_Msg_Insertion_Line_Number (Error_Msg_Sloc, Flag);
2566 when '\' =>
2567 Continuation := True;
2569 if Text (P) = '\' then
2570 Continuation_New_Line := True;
2571 P := P + 1;
2572 end if;
2574 when '@' =>
2575 Set_Msg_Insertion_Column;
2577 when '>' =>
2578 Set_Msg_Insertion_Run_Time_Name;
2580 when '^' =>
2581 Set_Msg_Insertion_Uint;
2583 when '`' =>
2584 Manual_Quote_Mode := not Manual_Quote_Mode;
2585 Set_Msg_Char ('"');
2587 when '!' =>
2588 Is_Unconditional_Msg := True;
2590 when '?' =>
2591 null; -- already dealt with
2593 when '<' =>
2594 null; -- already dealt with
2596 when '|' =>
2597 null; -- already dealt with
2599 when ''' =>
2600 Set_Msg_Char (Text (P));
2601 P := P + 1;
2603 when '~' =>
2604 Set_Msg_Str (Error_Msg_String (1 .. Error_Msg_Strlen));
2606 -- Upper case letter
2608 when 'A' .. 'Z' =>
2610 -- Start of reserved word if two or more
2612 if P <= Text'Last and then Text (P) in 'A' .. 'Z' then
2613 P := P - 1;
2614 Set_Msg_Insertion_Reserved_Word (Text, P);
2616 -- Single upper case letter is just inserted
2618 else
2619 Set_Msg_Char (C);
2620 end if;
2622 -- Normal character with no special treatment
2624 when others =>
2625 Set_Msg_Char (C);
2626 end case;
2627 end loop;
2629 VMS_Convert;
2630 end Set_Msg_Text;
2632 ----------------
2633 -- Set_Posted --
2634 ----------------
2636 procedure Set_Posted (N : Node_Id) is
2637 P : Node_Id;
2639 begin
2640 if Is_Serious_Error then
2642 -- We always set Error_Posted on the node itself
2644 Set_Error_Posted (N);
2646 -- If it is a subexpression, then set Error_Posted on parents
2647 -- up to and including the first non-subexpression construct. This
2648 -- helps avoid cascaded error messages within a single expression.
2650 P := N;
2651 loop
2652 P := Parent (P);
2653 exit when No (P);
2654 Set_Error_Posted (P);
2655 exit when Nkind (P) not in N_Subexpr;
2656 end loop;
2658 -- A special check, if we just posted an error on an attribute
2659 -- definition clause, then also set the entity involved as posted.
2660 -- For example, this stops complaining about the alignment after
2661 -- complaining about the size, which is likely to be useless.
2663 if Nkind (P) = N_Attribute_Definition_Clause then
2664 if Is_Entity_Name (Name (P)) then
2665 Set_Error_Posted (Entity (Name (P)));
2666 end if;
2667 end if;
2668 end if;
2669 end Set_Posted;
2671 -----------------------
2672 -- Set_Qualification --
2673 -----------------------
2675 procedure Set_Qualification (N : Nat; E : Entity_Id) is
2676 begin
2677 if N /= 0 and then Scope (E) /= Standard_Standard then
2678 Set_Qualification (N - 1, Scope (E));
2679 Set_Msg_Node (Scope (E));
2680 Set_Msg_Char ('.');
2681 end if;
2682 end Set_Qualification;
2684 ------------------------
2685 -- Special_Msg_Delete --
2686 ------------------------
2688 function Special_Msg_Delete
2689 (Msg : String;
2690 N : Node_Or_Entity_Id;
2691 E : Node_Or_Entity_Id) return Boolean
2693 begin
2694 -- Never delete messages in -gnatdO mode
2696 if Debug_Flag_OO then
2697 return False;
2699 -- When an atomic object refers to a non-atomic type in the same
2700 -- scope, we implicitly make the type atomic. In the non-error
2701 -- case this is surely safe (and in fact prevents an error from
2702 -- occurring if the type is not atomic by default). But if the
2703 -- object cannot be made atomic, then we introduce an extra junk
2704 -- message by this manipulation, which we get rid of here.
2706 -- We identify this case by the fact that it references a type for
2707 -- which Is_Atomic is set, but there is no Atomic pragma setting it.
2709 elsif Msg = "atomic access to & cannot be guaranteed"
2710 and then Is_Type (E)
2711 and then Is_Atomic (E)
2712 and then No (Get_Rep_Pragma (E, Name_Atomic))
2713 then
2714 return True;
2716 -- When a size is wrong for a frozen type there is no explicit
2717 -- size clause, and other errors have occurred, suppress the
2718 -- message, since it is likely that this size error is a cascaded
2719 -- result of other errors. The reason we eliminate unfrozen types
2720 -- is that messages issued before the freeze type are for sure OK.
2722 elsif Msg = "size for& too small, minimum allowed is ^"
2723 and then Is_Frozen (E)
2724 and then Serious_Errors_Detected > 0
2725 and then Nkind (N) /= N_Component_Clause
2726 and then Nkind (Parent (N)) /= N_Component_Clause
2727 and then
2728 No (Get_Attribute_Definition_Clause (E, Attribute_Size))
2729 and then
2730 No (Get_Attribute_Definition_Clause (E, Attribute_Object_Size))
2731 and then
2732 No (Get_Attribute_Definition_Clause (E, Attribute_Value_Size))
2733 then
2734 return True;
2736 -- All special tests complete, so go ahead with message
2738 else
2739 return False;
2740 end if;
2741 end Special_Msg_Delete;
2743 --------------------------
2744 -- Unwind_Internal_Type --
2745 --------------------------
2747 procedure Unwind_Internal_Type (Ent : in out Entity_Id) is
2748 Derived : Boolean := False;
2749 Mchar : Character;
2750 Old_Ent : Entity_Id;
2752 begin
2753 -- Undo placement of a quote, since we will put it back later
2755 Mchar := Msg_Buffer (Msglen);
2757 if Mchar = '"' then
2758 Msglen := Msglen - 1;
2759 end if;
2761 -- The loop here deals with recursive types, we are trying to
2762 -- find a related entity that is not an implicit type. Note
2763 -- that the check with Old_Ent stops us from getting "stuck".
2764 -- Also, we don't output the "type derived from" message more
2765 -- than once in the case where we climb up multiple levels.
2767 loop
2768 Old_Ent := Ent;
2770 -- Implicit access type, use directly designated type
2771 -- In Ada 2005, the designated type may be an anonymous access to
2772 -- subprogram, in which case we can only point to its definition.
2774 if Is_Access_Type (Ent) then
2775 if Ekind (Ent) = E_Access_Subprogram_Type
2776 or else Ekind (Ent) = E_Anonymous_Access_Subprogram_Type
2777 or else Is_Access_Protected_Subprogram_Type (Ent)
2778 then
2779 Ent := Directly_Designated_Type (Ent);
2781 if not Comes_From_Source (Ent) then
2782 if Buffer_Ends_With ("type ") then
2783 Buffer_Remove ("type ");
2784 end if;
2786 Set_Msg_Str ("access to subprogram with profile ");
2788 elsif Ekind (Ent) = E_Function then
2789 Set_Msg_Str ("access to function ");
2790 else
2791 Set_Msg_Str ("access to procedure ");
2792 end if;
2793 exit;
2795 -- Type is access to object, named or anonymous
2797 else
2798 Set_Msg_Str ("access to ");
2799 Ent := Directly_Designated_Type (Ent);
2800 end if;
2802 -- Classwide type
2804 elsif Is_Class_Wide_Type (Ent) then
2805 Class_Flag := True;
2806 Ent := Root_Type (Ent);
2808 -- Use base type if this is a subtype
2810 elsif Ent /= Base_Type (Ent) then
2811 Buffer_Remove ("type ");
2813 -- Avoid duplication "subtype of subtype of", and also replace
2814 -- "derived from subtype of" simply by "derived from"
2816 if not Buffer_Ends_With ("subtype of ")
2817 and then not Buffer_Ends_With ("derived from ")
2818 then
2819 Set_Msg_Str ("subtype of ");
2820 end if;
2822 Ent := Base_Type (Ent);
2824 -- If this is a base type with a first named subtype, use the
2825 -- first named subtype instead. This is not quite accurate in
2826 -- all cases, but it makes too much noise to be accurate and
2827 -- add 'Base in all cases. Note that we only do this is the
2828 -- first named subtype is not itself an internal name. This
2829 -- avoids the obvious loop (subtype->basetype->subtype) which
2830 -- would otherwise occur!)
2832 elsif Present (Freeze_Node (Ent))
2833 and then Present (First_Subtype_Link (Freeze_Node (Ent)))
2834 and then
2835 not Is_Internal_Name
2836 (Chars (First_Subtype_Link (Freeze_Node (Ent))))
2837 then
2838 Ent := First_Subtype_Link (Freeze_Node (Ent));
2840 -- Otherwise use root type
2842 else
2843 if not Derived then
2844 Buffer_Remove ("type ");
2846 -- Test for "subtype of type derived from" which seems
2847 -- excessive and is replaced by simply "type derived from"
2849 Buffer_Remove ("subtype of");
2851 -- Avoid duplication "type derived from type derived from"
2853 if not Buffer_Ends_With ("type derived from ") then
2854 Set_Msg_Str ("type derived from ");
2855 end if;
2857 Derived := True;
2858 end if;
2860 Ent := Etype (Ent);
2861 end if;
2863 -- If we are stuck in a loop, get out and settle for the internal
2864 -- name after all. In this case we set to kill the message if it
2865 -- is not the first error message (we really try hard not to show
2866 -- the dirty laundry of the implementation to the poor user!)
2868 if Ent = Old_Ent then
2869 Kill_Message := True;
2870 exit;
2871 end if;
2873 -- Get out if we finally found a non-internal name to use
2875 exit when not Is_Internal_Name (Chars (Ent));
2876 end loop;
2878 if Mchar = '"' then
2879 Set_Msg_Char ('"');
2880 end if;
2881 end Unwind_Internal_Type;
2883 -----------------
2884 -- VMS_Convert --
2885 -----------------
2887 procedure VMS_Convert is
2888 P : Natural;
2889 L : Natural;
2890 N : Natural;
2892 begin
2893 if not OpenVMS then
2894 return;
2895 end if;
2897 P := Msg_Buffer'First;
2898 loop
2899 if P >= Msglen then
2900 return;
2901 end if;
2903 if Msg_Buffer (P) = '-' then
2904 for G in Gnames'Range loop
2905 L := Gnames (G)'Length;
2907 -- See if we have "-ggg switch", where ggg is Gnames entry
2909 if P + L + 7 <= Msglen
2910 and then Msg_Buffer (P + 1 .. P + L) = Gnames (G).all
2911 and then Msg_Buffer (P + L + 1 .. P + L + 7) = " switch"
2912 then
2913 -- Replace by "/vvv qualifier", where vvv is Vnames entry
2915 N := Vnames (G)'Length;
2916 Msg_Buffer (P + N + 11 .. Msglen + N - L + 3) :=
2917 Msg_Buffer (P + L + 8 .. Msglen);
2918 Msg_Buffer (P) := '/';
2919 Msg_Buffer (P + 1 .. P + N) := Vnames (G).all;
2920 Msg_Buffer (P + N + 1 .. P + N + 10) := " qualifier";
2921 P := P + N + 10;
2922 Msglen := Msglen + N - L + 3;
2923 exit;
2924 end if;
2925 end loop;
2926 end if;
2928 P := P + 1;
2929 end loop;
2930 end VMS_Convert;
2932 end Errout;