PR target/16201
[official-gcc.git] / gcc / ada / errout.adb
blob9751d2a2cebd92e65de4b6b6c4a1bf913fe4d035
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-2004 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 2, 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 COPYING. If not, write --
19 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
20 -- MA 02111-1307, USA. --
21 -- --
22 -- GNAT was originally developed by the GNAT team at New York University. --
23 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 -- --
25 ------------------------------------------------------------------------------
27 -- Warning! Error messages can be generated during Gigi processing by direct
28 -- calls to error message routines, so it is essential that the processing
29 -- in this body be consistent with the requirements for the Gigi processing
30 -- environment, and that in particular, no disallowed table expansion is
31 -- allowed to occur.
33 with Atree; use Atree;
34 with Casing; use Casing;
35 with Csets; use Csets;
36 with Debug; use Debug;
37 with Einfo; use Einfo;
38 with Erroutc; use Erroutc;
39 with Fname; use Fname;
40 with Hostparm; use Hostparm;
41 with Lib; use Lib;
42 with Namet; use Namet;
43 with Opt; use Opt;
44 with Nlists; use Nlists;
45 with Output; use Output;
46 with Scans; use Scans;
47 with Sinput; use Sinput;
48 with Sinfo; use Sinfo;
49 with Snames; use Snames;
50 with Stand; use Stand;
51 with Style;
52 with Uintp; use Uintp;
53 with Uname; use Uname;
55 with Unchecked_Conversion;
57 package body Errout is
59 Errors_Must_Be_Ignored : Boolean := False;
60 -- Set to True by procedure Set_Ignore_Errors (True), when calls to
61 -- error message procedures should be ignored (when parsing irrelevant
62 -- text in sources being preprocessed).
64 Warn_On_Instance : Boolean;
65 -- Flag set true for warning message to be posted on instance
67 ------------------------------------
68 -- Table of Non-Instance Messages --
69 ------------------------------------
71 -- This table contains an entry for every error message processed by the
72 -- Error_Msg routine that is not posted on generic (or inlined) instance.
73 -- As explained in further detail in the Error_Msg procedure body, this
74 -- table is used to avoid posting redundant messages on instances.
76 type NIM_Record is record
77 Msg : String_Ptr;
78 Loc : Source_Ptr;
79 end record;
80 -- Type used to store text and location of one message
82 package Non_Instance_Msgs is new Table.Table (
83 Table_Component_Type => NIM_Record,
84 Table_Index_Type => Int,
85 Table_Low_Bound => 1,
86 Table_Initial => 100,
87 Table_Increment => 100,
88 Table_Name => "Non_Instance_Msgs");
90 -----------------------
91 -- Local Subprograms --
92 -----------------------
94 procedure Error_Msg_Internal
95 (Msg : String;
96 Sptr : Source_Ptr;
97 Optr : Source_Ptr;
98 Msg_Cont : Boolean);
99 -- This is the low level routine used to post messages after dealing with
100 -- the issue of messages placed on instantiations (which get broken up
101 -- into separate calls in Error_Msg). Sptr is the location on which the
102 -- flag will be placed in the output. In the case where the flag is on
103 -- the template, this points directly to the template, not to one of the
104 -- instantiation copies of the template. Optr is the original location
105 -- used to flag the error, and this may indeed point to an instantiation
106 -- copy. So typically we can see Optr pointing to the template location
107 -- in an instantiation copy when Sptr points to the source location of
108 -- the actual instantiation (i.e the line with the new). Msg_Cont is
109 -- set true if this is a continuation message.
111 function No_Warnings (N : Node_Or_Entity_Id) return Boolean;
112 -- Determines if warnings should be suppressed for the given node
114 function OK_Node (N : Node_Id) return Boolean;
115 -- Determines if a node is an OK node to place an error message on (return
116 -- True) or if the error message should be suppressed (return False). A
117 -- message is suppressed if the node already has an error posted on it,
118 -- or if it refers to an Etype that has an error posted on it, or if
119 -- it references an Entity that has an error posted on it.
121 procedure Output_Source_Line
122 (L : Physical_Line_Number;
123 Sfile : Source_File_Index;
124 Errs : Boolean);
125 -- Outputs text of source line L, in file S, together with preceding line
126 -- number, as described above for Output_Line_Number. The Errs parameter
127 -- indicates if there are errors attached to the line, which forces
128 -- listing on, even in the presence of pragma List (Off).
130 procedure Set_Msg_Insertion_Column;
131 -- Handle column number insertion (@ insertion character)
133 procedure Set_Msg_Insertion_Node;
134 -- Handle node (name from node) insertion (& insertion character)
136 procedure Set_Msg_Insertion_Type_Reference (Flag : Source_Ptr);
137 -- Handle type reference (right brace insertion character). Flag is the
138 -- location of the flag, which is provided for the internal call to
139 -- Set_Msg_Insertion_Line_Number,
141 procedure Set_Msg_Insertion_Unit_Name;
142 -- Handle unit name insertion ($ insertion character)
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 appearences of switch names which need
195 -- converting to corresponding VMS qualifer 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 -- Error_Msg --
229 ---------------
231 -- Error_Msg posts a flag at the given location, except that if the
232 -- Flag_Location points within a generic template and corresponds
233 -- to an instantiation of this generic template, then the actual
234 -- message will be posted on the generic instantiation, along with
235 -- additional messages referencing the generic declaration.
237 procedure Error_Msg (Msg : String; Flag_Location : Source_Ptr) is
238 Sindex : Source_File_Index;
239 -- Source index for flag location
241 Orig_Loc : Source_Ptr;
242 -- Original location of Flag_Location (i.e. location in original
243 -- template in instantiation case, otherwise unchanged).
245 begin
246 -- It is a fatal error to issue an error message when scanning from
247 -- the internal source buffer (see Sinput for further documentation)
249 pragma Assert (Sinput.Source /= Internal_Source_Ptr);
251 -- Return if all errors are to be ignored
253 if Errors_Must_Be_Ignored then
254 return;
255 end if;
257 -- If we already have messages, and we are trying to place a message
258 -- at No_Location or in package Standard, then just ignore the attempt
259 -- since we assume that what is happening is some cascaded junk. Note
260 -- that this is safe in the sense that proceeding will surely bomb.
262 if Flag_Location < First_Source_Ptr
263 and then Total_Errors_Detected > 0
264 then
265 return;
266 end if;
268 -- Start procesing of new message
270 Sindex := Get_Source_File_Index (Flag_Location);
271 Test_Style_Warning_Serious_Msg (Msg);
272 Orig_Loc := Original_Location (Flag_Location);
274 -- If the current location is in an instantiation, the issue arises
275 -- of whether to post the message on the template or the instantiation.
277 -- The way we decide is to see if we have posted the same message
278 -- on the template when we compiled the template (the template is
279 -- always compiled before any instantiations). For this purpose,
280 -- we use a separate table of messages. The reason we do this is
281 -- twofold:
283 -- First, the messages can get changed by various processing
284 -- including the insertion of tokens etc, making it hard to
285 -- do the comparison.
287 -- Second, we will suppress a warning on a template if it is
288 -- not in the current extended source unit. That's reasonable
289 -- and means we don't want the warning on the instantiation
290 -- here either, but it does mean that the main error table
291 -- would not in any case include the message.
293 if Flag_Location = Orig_Loc then
294 Non_Instance_Msgs.Append ((new String'(Msg), Flag_Location));
295 Warn_On_Instance := False;
297 -- Here we have an instance message
299 else
300 -- Delete if debug flag off, and this message duplicates a
301 -- message already posted on the corresponding template
303 if not Debug_Flag_GG then
304 for J in Non_Instance_Msgs.First .. Non_Instance_Msgs.Last loop
305 if Msg = Non_Instance_Msgs.Table (J).Msg.all
306 and then Non_Instance_Msgs.Table (J).Loc = Orig_Loc
307 then
308 return;
309 end if;
310 end loop;
311 end if;
313 -- No duplicate, so error/warning will be posted on instance
315 Warn_On_Instance := Is_Warning_Msg;
316 end if;
318 -- Ignore warning message that is suppressed. Note that style
319 -- checks are not considered warning messages for this purpose
321 if Is_Warning_Msg and then Warnings_Suppressed (Orig_Loc) then
322 return;
323 end if;
325 -- The idea at this stage is that we have two kinds of messages.
327 -- First, we have those that are to be placed as requested at
328 -- Flag_Location. This includes messages that have nothing to
329 -- do with generics, and also messages placed on generic templates
330 -- that reflect an error in the template itself. For such messages
331 -- we simply call Error_Msg_Internal to place the message in the
332 -- requested location.
334 if Instantiation (Sindex) = No_Location then
335 Error_Msg_Internal (Msg, Flag_Location, Flag_Location, False);
336 return;
337 end if;
339 -- If we are trying to flag an error in an instantiation, we may have
340 -- a generic contract violation. What we generate in this case is:
342 -- instantiation error at ...
343 -- original error message
345 -- or
347 -- warning: in instantiation at
348 -- warning: original warning message
350 -- All these messages are posted at the location of the top level
351 -- instantiation. If there are nested instantiations, then the
352 -- instantiation error message can be repeated, pointing to each
353 -- of the relevant instantiations.
355 -- Note: the instantiation mechanism is also shared for inlining
356 -- of subprogram bodies when front end inlining is done. In this
357 -- case the messages have the form:
359 -- in inlined body at ...
360 -- original error message
362 -- or
364 -- warning: in inlined body at
365 -- warning: original warning message
367 -- OK, this is the case where we have an instantiation error, and
368 -- we need to generate the error on the instantiation, rather than
369 -- on the template.
371 declare
372 Actual_Error_Loc : Source_Ptr;
373 -- Location of outer level instantiation in instantiation case, or
374 -- just a copy of Flag_Location in the normal case. This is the
375 -- location where all error messages will actually be posted.
377 Save_Error_Msg_Sloc : constant Source_Ptr := Error_Msg_Sloc;
378 -- Save possible location set for caller's message. We need to
379 -- use Error_Msg_Sloc for the location of the instantiation error
380 -- but we have to preserve a possible original value.
382 X : Source_File_Index;
384 Msg_Cont_Status : Boolean;
385 -- Used to label continuation lines in instantiation case with
386 -- proper Msg_Cont status.
388 begin
389 -- Loop to find highest level instantiation, where all error
390 -- messages will be placed.
392 X := Sindex;
393 loop
394 Actual_Error_Loc := Instantiation (X);
395 X := Get_Source_File_Index (Actual_Error_Loc);
396 exit when Instantiation (X) = No_Location;
397 end loop;
399 -- Since we are generating the messages at the instantiation
400 -- point in any case, we do not want the references to the
401 -- bad lines in the instance to be annotated with the location
402 -- of the instantiation.
404 Suppress_Instance_Location := True;
405 Msg_Cont_Status := False;
407 -- Loop to generate instantiation messages
409 Error_Msg_Sloc := Flag_Location;
410 X := Get_Source_File_Index (Flag_Location);
412 while Instantiation (X) /= No_Location loop
414 -- Suppress instantiation message on continuation lines
416 if Msg (Msg'First) /= '\' then
418 -- Case of inlined body
420 if Inlined_Body (X) then
421 if Is_Warning_Msg then
422 Error_Msg_Internal
423 ("?in inlined body #",
424 Actual_Error_Loc, Flag_Location, Msg_Cont_Status);
426 else
427 Error_Msg_Internal
428 ("error in inlined body #",
429 Actual_Error_Loc, Flag_Location, Msg_Cont_Status);
430 end if;
432 -- Case of generic instantiation
434 else
435 if Is_Warning_Msg then
436 Error_Msg_Internal
437 ("?in instantiation #",
438 Actual_Error_Loc, Flag_Location, Msg_Cont_Status);
440 else
441 Error_Msg_Internal
442 ("instantiation error #",
443 Actual_Error_Loc, Flag_Location, Msg_Cont_Status);
444 end if;
445 end if;
446 end if;
448 Error_Msg_Sloc := Instantiation (X);
449 X := Get_Source_File_Index (Error_Msg_Sloc);
450 Msg_Cont_Status := True;
451 end loop;
453 Suppress_Instance_Location := False;
454 Error_Msg_Sloc := Save_Error_Msg_Sloc;
456 -- Here we output the original message on the outer instantiation
458 Error_Msg_Internal
459 (Msg, Actual_Error_Loc, Flag_Location, Msg_Cont_Status);
460 end;
461 end Error_Msg;
463 ------------------
464 -- Error_Msg_AP --
465 ------------------
467 procedure Error_Msg_AP (Msg : String) is
468 S1 : Source_Ptr;
469 C : Character;
471 begin
472 -- If we had saved the Scan_Ptr value after scanning the previous
473 -- token, then we would have exactly the right place for putting
474 -- the flag immediately at hand. However, that would add at least
475 -- two instructions to a Scan call *just* to service the possibility
476 -- of an Error_Msg_AP call. So instead we reconstruct that value.
478 -- We have two possibilities, start with Prev_Token_Ptr and skip over
479 -- the current token, which is made harder by the possibility that this
480 -- token may be in error, or start with Token_Ptr and work backwards.
481 -- We used to take the second approach, but it's hard because of
482 -- comments, and harder still because things that look like comments
483 -- can appear inside strings. So now we take the first approach.
485 -- Note: in the case where there is no previous token, Prev_Token_Ptr
486 -- is set to Source_First, which is a reasonable position for the
487 -- error flag in this situation.
489 S1 := Prev_Token_Ptr;
490 C := Source (S1);
492 -- If the previous token is a string literal, we need a special approach
493 -- since there may be white space inside the literal and we don't want
494 -- to stop on that white space.
496 if Prev_Token = Tok_String_Literal then
497 loop
498 S1 := S1 + 1;
500 if Source (S1) = C then
501 S1 := S1 + 1;
502 exit when Source (S1) /= C;
503 elsif Source (S1) in Line_Terminator then
504 exit;
505 end if;
506 end loop;
508 -- Character literal also needs special handling
510 elsif Prev_Token = Tok_Char_Literal then
511 S1 := S1 + 3;
513 -- Otherwise we search forward for the end of the current token, marked
514 -- by a line terminator, white space, a comment symbol or if we bump
515 -- into the following token (i.e. the current token)
517 else
518 while Source (S1) not in Line_Terminator
519 and then Source (S1) /= ' '
520 and then Source (S1) /= ASCII.HT
521 and then (Source (S1) /= '-' or else Source (S1 + 1) /= '-')
522 and then S1 /= Token_Ptr
523 loop
524 S1 := S1 + 1;
525 end loop;
526 end if;
528 -- S1 is now set to the location for the flag
530 Error_Msg (Msg, S1);
532 end Error_Msg_AP;
534 ------------------
535 -- Error_Msg_BC --
536 ------------------
538 procedure Error_Msg_BC (Msg : String) is
539 begin
540 -- If we are at end of file, post the flag after the previous token
542 if Token = Tok_EOF then
543 Error_Msg_AP (Msg);
545 -- If we are at start of file, post the flag at the current token
547 elsif Token_Ptr = Source_First (Current_Source_File) then
548 Error_Msg_SC (Msg);
550 -- If the character before the current token is a space or a horizontal
551 -- tab, then we place the flag on this character (in the case of a tab
552 -- we would really like to place it in the "last" character of the tab
553 -- space, but that it too much trouble to worry about).
555 elsif Source (Token_Ptr - 1) = ' '
556 or else Source (Token_Ptr - 1) = ASCII.HT
557 then
558 Error_Msg (Msg, Token_Ptr - 1);
560 -- If there is no space or tab before the current token, then there is
561 -- no room to place the flag before the token, so we place it on the
562 -- token instead (this happens for example at the start of a line).
564 else
565 Error_Msg (Msg, Token_Ptr);
566 end if;
567 end Error_Msg_BC;
569 -------------------
570 -- Error_Msg_CRT --
571 -------------------
573 procedure Error_Msg_CRT (Feature : String; N : Node_Id) is
574 CNRT : constant String := " not allowed in no run time mode";
575 CCRT : constant String := " not supported by configuration>";
577 S : String (1 .. Feature'Length + 1 + CCRT'Length);
578 L : Natural;
581 begin
582 S (1) := '|';
583 S (2 .. Feature'Length + 1) := Feature;
584 L := Feature'Length + 2;
586 if No_Run_Time_Mode then
587 S (L .. L + CNRT'Length - 1) := CNRT;
588 L := L + CNRT'Length - 1;
590 else pragma Assert (Configurable_Run_Time_Mode);
591 S (L .. L + CCRT'Length - 1) := CCRT;
592 L := L + CCRT'Length - 1;
593 end if;
595 Error_Msg_N (S (1 .. L), N);
596 Configurable_Run_Time_Violations := Configurable_Run_Time_Violations + 1;
597 end Error_Msg_CRT;
599 -----------------
600 -- Error_Msg_F --
601 -----------------
603 procedure Error_Msg_F (Msg : String; N : Node_Id) is
604 begin
605 Error_Msg_NEL (Msg, N, N, First_Sloc (N));
606 end Error_Msg_F;
608 ------------------
609 -- Error_Msg_FE --
610 ------------------
612 procedure Error_Msg_FE
613 (Msg : String;
614 N : Node_Id;
615 E : Node_Or_Entity_Id)
617 begin
618 Error_Msg_NEL (Msg, N, E, Sloc (First_Node (N)));
619 end Error_Msg_FE;
621 ------------------------
622 -- Error_Msg_Internal --
623 ------------------------
625 procedure Error_Msg_Internal
626 (Msg : String;
627 Sptr : Source_Ptr;
628 Optr : Source_Ptr;
629 Msg_Cont : Boolean)
631 Next_Msg : Error_Msg_Id;
632 -- Pointer to next message at insertion point
634 Prev_Msg : Error_Msg_Id;
635 -- Pointer to previous message at insertion point
637 Temp_Msg : Error_Msg_Id;
639 procedure Handle_Serious_Error;
640 -- Internal procedure to do all error message handling for a serious
641 -- error message, other than bumping the error counts and arranging
642 -- for the message to be output.
644 --------------------------
645 -- Handle_Serious_Error --
646 --------------------------
648 procedure Handle_Serious_Error is
649 begin
650 -- Turn off code generation if not done already
652 if Operating_Mode = Generate_Code then
653 Operating_Mode := Check_Semantics;
654 Expander_Active := False;
655 end if;
657 -- Set the fatal error flag in the unit table unless we are
658 -- in Try_Semantics mode. This stops the semantics from being
659 -- performed if we find a serious error. This is skipped if we
660 -- are currently dealing with the configuration pragma file.
662 if not Try_Semantics
663 and then Current_Source_Unit /= No_Unit
664 then
665 Set_Fatal_Error (Get_Source_Unit (Sptr));
666 end if;
667 end Handle_Serious_Error;
669 -- Start of processing for Error_Msg_Internal
671 begin
672 if Raise_Exception_On_Error /= 0 then
673 raise Error_Msg_Exception;
674 end if;
676 Continuation := Msg_Cont;
677 Suppress_Message := False;
678 Kill_Message := False;
679 Set_Msg_Text (Msg, Sptr);
681 -- Kill continuation if parent message killed
683 if Continuation and Last_Killed then
684 return;
685 end if;
687 -- Return without doing anything if message is suppressed
689 if Suppress_Message
690 and not All_Errors_Mode
691 and not (Msg (Msg'Last) = '!')
692 then
693 if not Continuation then
694 Last_Killed := True;
695 end if;
697 return;
698 end if;
700 -- Return without doing anything if message is killed and this
701 -- is not the first error message. The philosophy is that if we
702 -- get a weird error message and we already have had a message,
703 -- then we hope the weird message is a junk cascaded message
705 if Kill_Message
706 and then not All_Errors_Mode
707 and then Total_Errors_Detected /= 0
708 then
709 if not Continuation then
710 Last_Killed := True;
711 end if;
713 return;
714 end if;
716 -- Special check for warning message to see if it should be output
718 if Is_Warning_Msg then
720 -- Immediate return if warning message and warnings are suppressed
722 if Warnings_Suppressed (Optr)
723 or else Warnings_Suppressed (Sptr)
724 then
725 Cur_Msg := No_Error_Msg;
726 return;
727 end if;
729 -- If the flag location is in the main extended source unit
730 -- then for sure we want the warning since it definitely belongs
732 if In_Extended_Main_Source_Unit (Sptr) then
733 null;
735 -- If the flag location is not in the main extended source
736 -- unit then we want to eliminate the warning.
738 elsif In_Extended_Main_Code_Unit (Sptr)
739 and then Warn_On_Instance
740 then
741 null;
743 -- Keep warning if debug flag G set
745 elsif Debug_Flag_GG then
746 null;
748 -- Here is where we delete a warning from a with'ed unit
750 else
751 Cur_Msg := No_Error_Msg;
752 return;
753 end if;
754 end if;
756 -- If message is to be ignored in special ignore message mode, this is
757 -- where we do this special processing, bypassing message output.
759 if Ignore_Errors_Enable > 0 then
760 if Is_Serious_Error then
761 Handle_Serious_Error;
762 end if;
764 return;
765 end if;
767 -- Otherwise build error message object for new message
769 Errors.Increment_Last;
770 Cur_Msg := Errors.Last;
771 Errors.Table (Cur_Msg).Text := new String'(Msg_Buffer (1 .. Msglen));
772 Errors.Table (Cur_Msg).Next := No_Error_Msg;
773 Errors.Table (Cur_Msg).Sptr := Sptr;
774 Errors.Table (Cur_Msg).Optr := Optr;
775 Errors.Table (Cur_Msg).Sfile := Get_Source_File_Index (Sptr);
776 Errors.Table (Cur_Msg).Line := Get_Physical_Line_Number (Sptr);
777 Errors.Table (Cur_Msg).Col := Get_Column_Number (Sptr);
778 Errors.Table (Cur_Msg).Warn := Is_Warning_Msg;
779 Errors.Table (Cur_Msg).Style := Is_Style_Msg;
780 Errors.Table (Cur_Msg).Serious := Is_Serious_Error;
781 Errors.Table (Cur_Msg).Uncond := Is_Unconditional_Msg;
782 Errors.Table (Cur_Msg).Msg_Cont := Continuation;
783 Errors.Table (Cur_Msg).Deleted := False;
785 -- If immediate errors mode set, output error message now. Also output
786 -- now if the -d1 debug flag is set (so node number message comes out
787 -- just before actual error message)
789 if Debug_Flag_OO or else Debug_Flag_1 then
790 Write_Eol;
791 Output_Source_Line (Errors.Table (Cur_Msg).Line,
792 Errors.Table (Cur_Msg).Sfile, True);
793 Temp_Msg := Cur_Msg;
794 Output_Error_Msgs (Temp_Msg);
796 -- If not in immediate errors mode, then we insert the message in the
797 -- error chain for later output by Finalize. The messages are sorted
798 -- first by unit (main unit comes first), and within a unit by source
799 -- location (earlier flag location first in the chain).
801 else
802 -- First a quick check, does this belong at the very end of the
803 -- chain of error messages. This saves a lot of time in the
804 -- normal case if there are lots of messages.
806 if Last_Error_Msg /= No_Error_Msg
807 and then Errors.Table (Cur_Msg).Sfile =
808 Errors.Table (Last_Error_Msg).Sfile
809 and then (Sptr > Errors.Table (Last_Error_Msg).Sptr
810 or else
811 (Sptr = Errors.Table (Last_Error_Msg).Sptr
812 and then
813 Optr > Errors.Table (Last_Error_Msg).Optr))
814 then
815 Prev_Msg := Last_Error_Msg;
816 Next_Msg := No_Error_Msg;
818 -- Otherwise do a full sequential search for the insertion point
820 else
821 Prev_Msg := No_Error_Msg;
822 Next_Msg := First_Error_Msg;
823 while Next_Msg /= No_Error_Msg loop
824 exit when
825 Errors.Table (Cur_Msg).Sfile < Errors.Table (Next_Msg).Sfile;
827 if Errors.Table (Cur_Msg).Sfile =
828 Errors.Table (Next_Msg).Sfile
829 then
830 exit when Sptr < Errors.Table (Next_Msg).Sptr
831 or else
832 (Sptr = Errors.Table (Next_Msg).Sptr
833 and then
834 Optr < Errors.Table (Next_Msg).Optr);
835 end if;
837 Prev_Msg := Next_Msg;
838 Next_Msg := Errors.Table (Next_Msg).Next;
839 end loop;
840 end if;
842 -- Now we insert the new message in the error chain. The insertion
843 -- point for the message is after Prev_Msg and before Next_Msg.
845 -- The possible insertion point for the new message is after Prev_Msg
846 -- and before Next_Msg. However, this is where we do a special check
847 -- for redundant parsing messages, defined as messages posted on the
848 -- same line. The idea here is that probably such messages are junk
849 -- from the parser recovering. In full errors mode, we don't do this
850 -- deletion, but otherwise such messages are discarded at this stage.
852 if Prev_Msg /= No_Error_Msg
853 and then Errors.Table (Prev_Msg).Line =
854 Errors.Table (Cur_Msg).Line
855 and then Errors.Table (Prev_Msg).Sfile =
856 Errors.Table (Cur_Msg).Sfile
857 and then Compiler_State = Parsing
858 and then not All_Errors_Mode
859 then
860 -- Don't delete unconditional messages and at this stage,
861 -- don't delete continuation lines (we attempted to delete
862 -- those earlier if the parent message was deleted.
864 if not Errors.Table (Cur_Msg).Uncond
865 and then not Continuation
866 then
867 -- Don't delete if prev msg is warning and new msg is
868 -- an error. This is because we don't want a real error
869 -- masked by a warning. In all other cases (that is parse
870 -- errors for the same line that are not unconditional)
871 -- we do delete the message. This helps to avoid
872 -- junk extra messages from cascaded parsing errors
874 if not (Errors.Table (Prev_Msg).Warn
876 Errors.Table (Prev_Msg).Style)
877 or else
878 (Errors.Table (Cur_Msg).Warn
880 Errors.Table (Cur_Msg).Style)
881 then
882 -- All tests passed, delete the message by simply
883 -- returning without any further processing.
885 if not Continuation then
886 Last_Killed := True;
887 end if;
889 return;
890 end if;
891 end if;
892 end if;
894 -- Come here if message is to be inserted in the error chain
896 if not Continuation then
897 Last_Killed := False;
898 end if;
900 if Prev_Msg = No_Error_Msg then
901 First_Error_Msg := Cur_Msg;
902 else
903 Errors.Table (Prev_Msg).Next := Cur_Msg;
904 end if;
906 Errors.Table (Cur_Msg).Next := Next_Msg;
908 if Next_Msg = No_Error_Msg then
909 Last_Error_Msg := Cur_Msg;
910 end if;
911 end if;
913 -- Bump appropriate statistics count
915 if Errors.Table (Cur_Msg).Warn
916 or else Errors.Table (Cur_Msg).Style
917 then
918 Warnings_Detected := Warnings_Detected + 1;
919 else
920 Total_Errors_Detected := Total_Errors_Detected + 1;
922 if Errors.Table (Cur_Msg).Serious then
923 Serious_Errors_Detected := Serious_Errors_Detected + 1;
924 Handle_Serious_Error;
925 end if;
926 end if;
928 -- Terminate if max errors reached
930 if Total_Errors_Detected + Warnings_Detected = Maximum_Errors then
931 raise Unrecoverable_Error;
932 end if;
934 end Error_Msg_Internal;
936 -----------------
937 -- Error_Msg_N --
938 -----------------
940 procedure Error_Msg_N (Msg : String; N : Node_Or_Entity_Id) is
941 begin
942 Error_Msg_NEL (Msg, N, N, Sloc (N));
943 end Error_Msg_N;
945 ------------------
946 -- Error_Msg_NE --
947 ------------------
949 procedure Error_Msg_NE
950 (Msg : String;
951 N : Node_Or_Entity_Id;
952 E : Node_Or_Entity_Id)
954 begin
955 Error_Msg_NEL (Msg, N, E, Sloc (N));
956 end Error_Msg_NE;
958 -------------------
959 -- Error_Msg_NEL --
960 -------------------
962 procedure Error_Msg_NEL
963 (Msg : String;
964 N : Node_Or_Entity_Id;
965 E : Node_Or_Entity_Id;
966 Flag_Location : Source_Ptr)
968 begin
969 if Special_Msg_Delete (Msg, N, E) then
970 return;
971 end if;
973 Test_Style_Warning_Serious_Msg (Msg);
975 -- Special handling for warning messages
977 if Is_Warning_Msg then
979 -- Suppress if no warnings set for either entity or node
981 if No_Warnings (N) or else No_Warnings (E) then
982 return;
983 end if;
985 -- Suppress if inside loop that is known to be null
987 declare
988 P : Node_Id;
990 begin
991 P := Parent (N);
992 while Present (P) loop
993 if Nkind (P) = N_Loop_Statement and then Is_Null_Loop (P) then
994 return;
995 end if;
997 P := Parent (P);
998 end loop;
999 end;
1000 end if;
1002 -- Test for message to be output
1004 if All_Errors_Mode
1005 or else Msg (Msg'Last) = '!'
1006 or else OK_Node (N)
1007 or else (Msg (Msg'First) = '\' and not Last_Killed)
1008 then
1009 Debug_Output (N);
1010 Error_Msg_Node_1 := E;
1011 Error_Msg (Msg, Flag_Location);
1013 else
1014 Last_Killed := True;
1015 end if;
1017 if not Is_Warning_Msg and then not Is_Style_Msg then
1018 Set_Posted (N);
1019 end if;
1020 end Error_Msg_NEL;
1022 ------------------
1023 -- Error_Msg_NW --
1024 ------------------
1026 procedure Error_Msg_NW
1027 (Eflag : Boolean;
1028 Msg : String;
1029 N : Node_Or_Entity_Id)
1031 begin
1032 if Eflag and then In_Extended_Main_Source_Unit (N) then
1033 Error_Msg_NEL (Msg, N, N, Sloc (N));
1034 end if;
1035 end Error_Msg_NW;
1037 -----------------
1038 -- Error_Msg_S --
1039 -----------------
1041 procedure Error_Msg_S (Msg : String) is
1042 begin
1043 Error_Msg (Msg, Scan_Ptr);
1044 end Error_Msg_S;
1046 ------------------
1047 -- Error_Msg_SC --
1048 ------------------
1050 procedure Error_Msg_SC (Msg : String) is
1051 begin
1052 -- If we are at end of file, post the flag after the previous token
1054 if Token = Tok_EOF then
1055 Error_Msg_AP (Msg);
1057 -- For all other cases the message is posted at the current token
1058 -- pointer position
1060 else
1061 Error_Msg (Msg, Token_Ptr);
1062 end if;
1063 end Error_Msg_SC;
1065 ------------------
1066 -- Error_Msg_SP --
1067 ------------------
1069 procedure Error_Msg_SP (Msg : String) is
1070 begin
1071 -- Note: in the case where there is no previous token, Prev_Token_Ptr
1072 -- is set to Source_First, which is a reasonable position for the
1073 -- error flag in this situation
1075 Error_Msg (Msg, Prev_Token_Ptr);
1076 end Error_Msg_SP;
1078 --------------
1079 -- Finalize --
1080 --------------
1082 procedure Finalize is
1083 Cur : Error_Msg_Id;
1084 Nxt : Error_Msg_Id;
1085 E, F : Error_Msg_Id;
1086 Err_Flag : Boolean;
1088 begin
1089 -- Reset current error source file if the main unit has a pragma
1090 -- Source_Reference. This ensures outputting the proper name of
1091 -- the source file in this situation.
1093 if Num_SRef_Pragmas (Main_Source_File) /= 0 then
1094 Current_Error_Source_File := No_Source_File;
1095 end if;
1097 -- Eliminate any duplicated error messages from the list. This is
1098 -- done after the fact to avoid problems with Change_Error_Text.
1100 Cur := First_Error_Msg;
1101 while Cur /= No_Error_Msg loop
1102 Nxt := Errors.Table (Cur).Next;
1104 F := Nxt;
1105 while F /= No_Error_Msg
1106 and then Errors.Table (F).Sptr = Errors.Table (Cur).Sptr
1107 loop
1108 Check_Duplicate_Message (Cur, F);
1109 F := Errors.Table (F).Next;
1110 end loop;
1112 Cur := Nxt;
1113 end loop;
1115 -- Brief Error mode
1117 if Brief_Output or (not Full_List and not Verbose_Mode) then
1118 E := First_Error_Msg;
1119 Set_Standard_Error;
1121 while E /= No_Error_Msg loop
1122 if not Errors.Table (E).Deleted and then not Debug_Flag_KK then
1123 if Full_Path_Name_For_Brief_Errors then
1124 Write_Name (Full_Ref_Name (Errors.Table (E).Sfile));
1125 else
1126 Write_Name (Reference_Name (Errors.Table (E).Sfile));
1127 end if;
1129 Write_Char (':');
1130 Write_Int (Int (Physical_To_Logical
1131 (Errors.Table (E).Line,
1132 Errors.Table (E).Sfile)));
1133 Write_Char (':');
1135 if Errors.Table (E).Col < 10 then
1136 Write_Char ('0');
1137 end if;
1139 Write_Int (Int (Errors.Table (E).Col));
1140 Write_Str (": ");
1141 Output_Msg_Text (E);
1142 Write_Eol;
1143 end if;
1145 E := Errors.Table (E).Next;
1146 end loop;
1148 Set_Standard_Output;
1149 end if;
1151 -- Full source listing case
1153 if Full_List then
1154 List_Pragmas_Index := 1;
1155 List_Pragmas_Mode := True;
1156 E := First_Error_Msg;
1157 Write_Eol;
1159 -- First list initial main source file with its error messages
1161 for N in 1 .. Last_Source_Line (Main_Source_File) loop
1162 Err_Flag :=
1163 E /= No_Error_Msg
1164 and then Errors.Table (E).Line = N
1165 and then Errors.Table (E).Sfile = Main_Source_File;
1167 Output_Source_Line (N, Main_Source_File, Err_Flag);
1169 if Err_Flag then
1170 Output_Error_Msgs (E);
1172 if not Debug_Flag_2 then
1173 Write_Eol;
1174 end if;
1175 end if;
1177 end loop;
1179 -- Then output errors, if any, for subsidiary units
1181 while E /= No_Error_Msg
1182 and then Errors.Table (E).Sfile /= Main_Source_File
1183 loop
1184 Write_Eol;
1185 Output_Source_Line
1186 (Errors.Table (E).Line, Errors.Table (E).Sfile, True);
1187 Output_Error_Msgs (E);
1188 end loop;
1189 end if;
1191 -- Verbose mode (error lines only with error flags)
1193 if Verbose_Mode and not Full_List then
1194 E := First_Error_Msg;
1196 -- Loop through error lines
1198 while E /= No_Error_Msg loop
1199 Write_Eol;
1200 Output_Source_Line
1201 (Errors.Table (E).Line, Errors.Table (E).Sfile, True);
1202 Output_Error_Msgs (E);
1203 end loop;
1204 end if;
1206 -- Output error summary if verbose or full list mode
1208 if Verbose_Mode or else Full_List then
1210 -- Extra blank line if error messages or source listing were output
1212 if Total_Errors_Detected + Warnings_Detected > 0
1213 or else Full_List
1214 then
1215 Write_Eol;
1216 end if;
1218 -- Message giving number of lines read and number of errors detected.
1219 -- This normally goes to Standard_Output. The exception is when brief
1220 -- mode is not set, verbose mode (or full list mode) is set, and
1221 -- there are errors. In this case we send the message to standard
1222 -- error to make sure that *something* appears on standard error in
1223 -- an error situation.
1225 -- Formerly, only the "# errors" suffix was sent to stderr, whereas
1226 -- "# lines:" appeared on stdout. This caused problems on VMS when
1227 -- the stdout buffer was flushed, giving an extra line feed after
1228 -- the prefix.
1230 if Total_Errors_Detected + Warnings_Detected /= 0
1231 and then not Brief_Output
1232 and then (Verbose_Mode or Full_List)
1233 then
1234 Set_Standard_Error;
1235 end if;
1237 -- Message giving total number of lines
1239 Write_Str (" ");
1240 Write_Int (Num_Source_Lines (Main_Source_File));
1242 if Num_Source_Lines (Main_Source_File) = 1 then
1243 Write_Str (" line: ");
1244 else
1245 Write_Str (" lines: ");
1246 end if;
1248 if Total_Errors_Detected = 0 then
1249 Write_Str ("No errors");
1251 elsif Total_Errors_Detected = 1 then
1252 Write_Str ("1 error");
1254 else
1255 Write_Int (Total_Errors_Detected);
1256 Write_Str (" errors");
1257 end if;
1259 if Warnings_Detected /= 0 then
1260 Write_Str (", ");
1261 Write_Int (Warnings_Detected);
1262 Write_Str (" warning");
1264 if Warnings_Detected /= 1 then
1265 Write_Char ('s');
1266 end if;
1268 if Warning_Mode = Treat_As_Error then
1269 Write_Str (" (treated as error");
1271 if Warnings_Detected /= 1 then
1272 Write_Char ('s');
1273 end if;
1275 Write_Char (')');
1276 end if;
1277 end if;
1279 Write_Eol;
1280 Set_Standard_Output;
1281 end if;
1283 if Maximum_Errors /= 0
1284 and then Total_Errors_Detected + Warnings_Detected = Maximum_Errors
1285 then
1286 Set_Standard_Error;
1287 Write_Str ("fatal error: maximum errors reached");
1288 Write_Eol;
1289 Set_Standard_Output;
1290 end if;
1292 if Warning_Mode = Treat_As_Error then
1293 Total_Errors_Detected := Total_Errors_Detected + Warnings_Detected;
1294 Warnings_Detected := 0;
1295 end if;
1296 end Finalize;
1298 ----------------
1299 -- First_Node --
1300 ----------------
1302 function First_Node (C : Node_Id) return Node_Id is
1303 L : constant Source_Ptr := Sloc (C);
1304 Sfile : constant Source_File_Index := Get_Source_File_Index (L);
1305 Earliest : Node_Id;
1306 Eloc : Source_Ptr;
1307 Discard : Traverse_Result;
1309 pragma Warnings (Off, Discard);
1311 function Test_Earlier (N : Node_Id) return Traverse_Result;
1312 -- Function applied to every node in the construct
1314 function Search_Tree_First is new Traverse_Func (Test_Earlier);
1315 -- Create traversal function
1317 ------------------
1318 -- Test_Earlier --
1319 ------------------
1321 function Test_Earlier (N : Node_Id) return Traverse_Result is
1322 Loc : constant Source_Ptr := Sloc (N);
1324 begin
1325 -- Check for earlier. The tests for being in the same file ensures
1326 -- against strange cases of foreign code somehow being present. We
1327 -- don't want wild placement of messages if that happens, so it is
1328 -- best to just ignore this situation.
1330 if Loc < Eloc
1331 and then Get_Source_File_Index (Loc) = Sfile
1332 then
1333 Earliest := N;
1334 Eloc := Loc;
1335 end if;
1337 return OK_Orig;
1338 end Test_Earlier;
1340 -- Start of processing for First_Node
1342 begin
1343 Earliest := Original_Node (C);
1344 Eloc := Sloc (Earliest);
1345 Discard := Search_Tree_First (Original_Node (C));
1346 return Earliest;
1347 end First_Node;
1349 ----------------
1350 -- First_Sloc --
1351 ----------------
1353 function First_Sloc (N : Node_Id) return Source_Ptr is
1354 SI : constant Source_File_Index := Source_Index (Get_Source_Unit (N));
1355 SF : constant Source_Ptr := Source_First (SI);
1356 F : Node_Id;
1357 S : Source_Ptr;
1359 begin
1360 F := First_Node (N);
1361 S := Sloc (F);
1363 -- The following circuit is a bit subtle. When we have parenthesized
1364 -- expressions, then the Sloc will not record the location of the
1365 -- paren, but we would like to post the flag on the paren. So what
1366 -- we do is to crawl up the tree from the First_Node, adjusting the
1367 -- Sloc value for any parentheses we know are present. Yes, we know
1368 -- this circuit is not 100% reliable (e.g. because we don't record
1369 -- all possible paren level valoues), but this is only for an error
1370 -- message so it is good enough.
1372 Node_Loop : loop
1373 Paren_Loop : for J in 1 .. Paren_Count (F) loop
1375 -- We don't look more than 12 characters behind the current
1376 -- location, and in any case not past the front of the source.
1378 Search_Loop : for K in 1 .. 12 loop
1379 exit Search_Loop when S = SF;
1381 if Source_Text (SI) (S - 1) = '(' then
1382 S := S - 1;
1383 exit Search_Loop;
1385 elsif Source_Text (SI) (S - 1) <= ' ' then
1386 S := S - 1;
1388 else
1389 exit Search_Loop;
1390 end if;
1391 end loop Search_Loop;
1392 end loop Paren_Loop;
1394 exit Node_Loop when F = N;
1395 F := Parent (F);
1396 exit Node_Loop when Nkind (F) not in N_Subexpr;
1397 end loop Node_Loop;
1399 return S;
1400 end First_Sloc;
1402 ----------------
1403 -- Initialize --
1404 ----------------
1406 procedure Initialize is
1407 begin
1408 Errors.Init;
1409 First_Error_Msg := No_Error_Msg;
1410 Last_Error_Msg := No_Error_Msg;
1411 Serious_Errors_Detected := 0;
1412 Total_Errors_Detected := 0;
1413 Warnings_Detected := 0;
1414 Cur_Msg := No_Error_Msg;
1415 List_Pragmas.Init;
1417 -- Initialize warnings table, if all warnings are suppressed, supply
1418 -- an initial dummy entry covering all possible source locations.
1420 Warnings.Init;
1422 if Warning_Mode = Suppress then
1423 Warnings.Increment_Last;
1424 Warnings.Table (Warnings.Last).Start := Source_Ptr'First;
1425 Warnings.Table (Warnings.Last).Stop := Source_Ptr'Last;
1426 end if;
1428 -- Set the error nodes to Empty to avoid uninitialized variable
1429 -- references for saves/restores/moves.
1431 Error_Msg_Node_1 := Empty;
1432 Error_Msg_Node_2 := Empty;
1433 end Initialize;
1435 -----------------
1436 -- No_Warnings --
1437 -----------------
1439 function No_Warnings (N : Node_Or_Entity_Id) return Boolean is
1440 begin
1441 if Error_Posted (N) then
1442 return True;
1444 elsif Nkind (N) in N_Entity and then Warnings_Off (N) then
1445 return True;
1447 elsif Is_Entity_Name (N)
1448 and then Present (Entity (N))
1449 and then Warnings_Off (Entity (N))
1450 then
1451 return True;
1453 else
1454 return False;
1455 end if;
1456 end No_Warnings;
1458 -------------
1459 -- OK_Node --
1460 -------------
1462 function OK_Node (N : Node_Id) return Boolean is
1463 K : constant Node_Kind := Nkind (N);
1465 begin
1466 if Error_Posted (N) then
1467 return False;
1469 elsif K in N_Has_Etype
1470 and then Present (Etype (N))
1471 and then Error_Posted (Etype (N))
1472 then
1473 return False;
1475 elsif (K in N_Op
1476 or else K = N_Attribute_Reference
1477 or else K = N_Character_Literal
1478 or else K = N_Expanded_Name
1479 or else K = N_Identifier
1480 or else K = N_Operator_Symbol)
1481 and then Present (Entity (N))
1482 and then Error_Posted (Entity (N))
1483 then
1484 return False;
1485 else
1486 return True;
1487 end if;
1488 end OK_Node;
1490 ------------------------
1491 -- Output_Source_Line --
1492 ------------------------
1494 procedure Output_Source_Line
1495 (L : Physical_Line_Number;
1496 Sfile : Source_File_Index;
1497 Errs : Boolean)
1499 S : Source_Ptr;
1500 C : Character;
1502 Line_Number_Output : Boolean := False;
1503 -- Set True once line number is output
1505 begin
1506 if Sfile /= Current_Error_Source_File then
1507 Write_Str ("==============Error messages for ");
1509 case Sinput.File_Type (Sfile) is
1510 when Sinput.Src =>
1511 Write_Str ("source");
1513 when Sinput.Config =>
1514 Write_Str ("configuration pragmas");
1516 when Sinput.Def =>
1517 Write_Str ("symbol definition");
1519 when Sinput.Preproc =>
1520 Write_Str ("preprocessing data");
1521 end case;
1523 Write_Str (" file: ");
1524 Write_Name (Full_File_Name (Sfile));
1525 Write_Eol;
1527 if Num_SRef_Pragmas (Sfile) > 0 then
1528 Write_Str ("--------------Line numbers from file: ");
1529 Write_Name (Full_Ref_Name (Sfile));
1530 Write_Str (" (starting at line ");
1531 Write_Int (Int (First_Mapped_Line (Sfile)));
1532 Write_Char (')');
1533 Write_Eol;
1534 end if;
1536 Current_Error_Source_File := Sfile;
1537 end if;
1539 if Errs or List_Pragmas_Mode then
1540 Output_Line_Number (Physical_To_Logical (L, Sfile));
1541 Line_Number_Output := True;
1542 end if;
1544 S := Line_Start (L, Sfile);
1546 loop
1547 C := Source_Text (Sfile) (S);
1548 exit when C = ASCII.LF or else C = ASCII.CR or else C = EOF;
1550 -- Deal with matching entry in List_Pragmas table
1552 if Full_List
1553 and then List_Pragmas_Index <= List_Pragmas.Last
1554 and then S = List_Pragmas.Table (List_Pragmas_Index).Ploc
1555 then
1556 case List_Pragmas.Table (List_Pragmas_Index).Ptyp is
1557 when Page =>
1558 Write_Char (C);
1560 -- Ignore if on line with errors so that error flags
1561 -- get properly listed with the error line .
1563 if not Errs then
1564 Write_Char (ASCII.FF);
1565 end if;
1567 when List_On =>
1568 List_Pragmas_Mode := True;
1570 if not Line_Number_Output then
1571 Output_Line_Number (Physical_To_Logical (L, Sfile));
1572 Line_Number_Output := True;
1573 end if;
1575 Write_Char (C);
1577 when List_Off =>
1578 Write_Char (C);
1579 List_Pragmas_Mode := False;
1580 end case;
1582 List_Pragmas_Index := List_Pragmas_Index + 1;
1584 -- Normal case (no matching entry in List_Pragmas table)
1586 else
1587 if Errs or List_Pragmas_Mode then
1588 Write_Char (C);
1589 end if;
1590 end if;
1592 S := S + 1;
1593 end loop;
1595 if Line_Number_Output then
1596 Write_Eol;
1597 end if;
1598 end Output_Source_Line;
1600 -----------------------------
1601 -- Remove_Warning_Messages --
1602 -----------------------------
1604 procedure Remove_Warning_Messages (N : Node_Id) is
1606 function Check_For_Warning (N : Node_Id) return Traverse_Result;
1607 -- This function checks one node for a possible warning message.
1609 function Check_All_Warnings is new
1610 Traverse_Func (Check_For_Warning);
1611 -- This defines the traversal operation
1613 -----------------------
1614 -- Check_For_Warning --
1615 -----------------------
1617 function Check_For_Warning (N : Node_Id) return Traverse_Result is
1618 Loc : constant Source_Ptr := Sloc (N);
1619 E : Error_Msg_Id;
1621 function To_Be_Removed (E : Error_Msg_Id) return Boolean;
1622 -- Returns True for a message that is to be removed. Also adjusts
1623 -- warning count appropriately.
1625 -------------------
1626 -- To_Be_Removed --
1627 -------------------
1629 function To_Be_Removed (E : Error_Msg_Id) return Boolean is
1630 begin
1631 if E /= No_Error_Msg
1632 and then Errors.Table (E).Optr = Loc
1633 and then (Errors.Table (E).Warn or Errors.Table (E).Style)
1634 then
1635 Warnings_Detected := Warnings_Detected - 1;
1636 return True;
1637 else
1638 return False;
1639 end if;
1640 end To_Be_Removed;
1642 -- Start of processing for Check_For_Warnings
1644 begin
1645 while To_Be_Removed (First_Error_Msg) loop
1646 First_Error_Msg := Errors.Table (First_Error_Msg).Next;
1647 end loop;
1649 if First_Error_Msg = No_Error_Msg then
1650 Last_Error_Msg := No_Error_Msg;
1651 end if;
1653 E := First_Error_Msg;
1654 while E /= No_Error_Msg loop
1655 while To_Be_Removed (Errors.Table (E).Next) loop
1656 Errors.Table (E).Next :=
1657 Errors.Table (Errors.Table (E).Next).Next;
1659 if Errors.Table (E).Next = No_Error_Msg then
1660 Last_Error_Msg := E;
1661 end if;
1662 end loop;
1664 E := Errors.Table (E).Next;
1665 end loop;
1667 if Nkind (N) = N_Raise_Constraint_Error
1668 and then Original_Node (N) /= N
1669 and then No (Condition (N))
1670 then
1671 -- Warnings may have been posted on subexpressions of
1672 -- the original tree. We place the original node back
1673 -- on the tree to remove those warnings, whose sloc
1674 -- do not match those of any node in the current tree.
1675 -- Given that we are in unreachable code, this modification
1676 -- to the tree is harmless.
1678 declare
1679 Status : Traverse_Result;
1681 begin
1682 if Is_List_Member (N) then
1683 Set_Condition (N, Original_Node (N));
1684 Status := Check_All_Warnings (Condition (N));
1685 else
1686 Rewrite (N, Original_Node (N));
1687 Status := Check_All_Warnings (N);
1688 end if;
1690 return Status;
1691 end;
1693 else
1694 return OK;
1695 end if;
1696 end Check_For_Warning;
1698 -- Start of processing for Remove_Warning_Messages
1700 begin
1701 if Warnings_Detected /= 0 then
1702 declare
1703 Discard : Traverse_Result;
1704 pragma Warnings (Off, Discard);
1706 begin
1707 Discard := Check_All_Warnings (N);
1708 end;
1709 end if;
1710 end Remove_Warning_Messages;
1712 procedure Remove_Warning_Messages (L : List_Id) is
1713 Stat : Node_Id;
1714 begin
1715 if Is_Non_Empty_List (L) then
1716 Stat := First (L);
1718 while Present (Stat) loop
1719 Remove_Warning_Messages (Stat);
1720 Next (Stat);
1721 end loop;
1722 end if;
1723 end Remove_Warning_Messages;
1725 ---------------------------
1726 -- Set_Identifier_Casing --
1727 ---------------------------
1729 procedure Set_Identifier_Casing
1730 (Identifier_Name : System.Address;
1731 File_Name : System.Address)
1733 type Big_String is array (Positive) of Character;
1734 type Big_String_Ptr is access all Big_String;
1736 function To_Big_String_Ptr is new Unchecked_Conversion
1737 (System.Address, Big_String_Ptr);
1739 Ident : constant Big_String_Ptr := To_Big_String_Ptr (Identifier_Name);
1740 File : constant Big_String_Ptr := To_Big_String_Ptr (File_Name);
1741 Flen : Natural;
1743 Desired_Case : Casing_Type := Mixed_Case;
1744 -- Casing required for result. Default value of Mixed_Case is used if
1745 -- for some reason we cannot find the right file name in the table.
1748 begin
1749 -- Get length of file name
1751 Flen := 0;
1752 while File (Flen + 1) /= ASCII.NUL loop
1753 Flen := Flen + 1;
1754 end loop;
1756 -- Loop through file names to find matching one. This is a bit slow,
1757 -- but we only do it in error situations so it is not so terrible.
1758 -- Note that if the loop does not exit, then the desired case will
1759 -- be left set to Mixed_Case, this can happen if the name was not
1760 -- in canonical form, and gets canonicalized on VMS. Possibly we
1761 -- could fix this by unconditinally canonicalizing these names ???
1763 for J in 1 .. Last_Source_File loop
1764 Get_Name_String (Full_Debug_Name (J));
1766 if Name_Len = Flen
1767 and then Name_Buffer (1 .. Name_Len) = String (File (1 .. Flen))
1768 then
1769 Desired_Case := Identifier_Casing (J);
1770 exit;
1771 end if;
1772 end loop;
1774 -- Copy identifier as given to Name_Buffer
1776 for J in Name_Buffer'Range loop
1777 Name_Buffer (J) := Ident (J);
1779 if Name_Buffer (J) = ASCII.Nul then
1780 Name_Len := J - 1;
1781 exit;
1782 end if;
1783 end loop;
1785 Set_Casing (Desired_Case);
1786 end Set_Identifier_Casing;
1788 -----------------------
1789 -- Set_Ignore_Errors --
1790 -----------------------
1792 procedure Set_Ignore_Errors (To : Boolean) is
1793 begin
1794 Errors_Must_Be_Ignored := To;
1795 end Set_Ignore_Errors;
1797 ------------------------------
1798 -- Set_Msg_Insertion_Column --
1799 ------------------------------
1801 procedure Set_Msg_Insertion_Column is
1802 begin
1803 if Style.RM_Column_Check then
1804 Set_Msg_Str (" in column ");
1805 Set_Msg_Int (Int (Error_Msg_Col) + 1);
1806 end if;
1807 end Set_Msg_Insertion_Column;
1809 ----------------------------
1810 -- Set_Msg_Insertion_Node --
1811 ----------------------------
1813 procedure Set_Msg_Insertion_Node is
1814 K : Node_Kind;
1816 begin
1817 Suppress_Message :=
1818 Error_Msg_Node_1 = Error
1819 or else Error_Msg_Node_1 = Any_Type;
1821 if Error_Msg_Node_1 = Empty then
1822 Set_Msg_Blank_Conditional;
1823 Set_Msg_Str ("<empty>");
1825 elsif Error_Msg_Node_1 = Error then
1826 Set_Msg_Blank;
1827 Set_Msg_Str ("<error>");
1829 elsif Error_Msg_Node_1 = Standard_Void_Type then
1830 Set_Msg_Blank;
1831 Set_Msg_Str ("procedure name");
1833 else
1834 Set_Msg_Blank_Conditional;
1836 -- Output name
1838 K := Nkind (Error_Msg_Node_1);
1840 -- If we have operator case, skip quotes since name of operator
1841 -- itself will supply the required quotations. An operator can be
1842 -- an applied use in an expression or an explicit operator symbol,
1843 -- or an identifier whose name indicates it is an operator.
1845 if K in N_Op
1846 or else K = N_Operator_Symbol
1847 or else K = N_Defining_Operator_Symbol
1848 or else ((K = N_Identifier or else K = N_Defining_Identifier)
1849 and then Is_Operator_Name (Chars (Error_Msg_Node_1)))
1850 then
1851 Set_Msg_Node (Error_Msg_Node_1);
1853 -- Normal case, not an operator, surround with quotes
1855 else
1856 Set_Msg_Quote;
1857 Set_Qualification (Error_Msg_Qual_Level, Error_Msg_Node_1);
1858 Set_Msg_Node (Error_Msg_Node_1);
1859 Set_Msg_Quote;
1860 end if;
1861 end if;
1863 -- The following assignment ensures that a second ampersand insertion
1864 -- character will correspond to the Error_Msg_Node_2 parameter.
1866 Error_Msg_Node_1 := Error_Msg_Node_2;
1867 end Set_Msg_Insertion_Node;
1869 --------------------------------------
1870 -- Set_Msg_Insertion_Type_Reference --
1871 --------------------------------------
1873 procedure Set_Msg_Insertion_Type_Reference (Flag : Source_Ptr) is
1874 Ent : Entity_Id;
1876 begin
1877 Set_Msg_Blank;
1879 if Error_Msg_Node_1 = Standard_Void_Type then
1880 Set_Msg_Str ("package or procedure name");
1881 return;
1883 elsif Error_Msg_Node_1 = Standard_Exception_Type then
1884 Set_Msg_Str ("exception name");
1885 return;
1887 elsif Error_Msg_Node_1 = Any_Access
1888 or else Error_Msg_Node_1 = Any_Array
1889 or else Error_Msg_Node_1 = Any_Boolean
1890 or else Error_Msg_Node_1 = Any_Character
1891 or else Error_Msg_Node_1 = Any_Composite
1892 or else Error_Msg_Node_1 = Any_Discrete
1893 or else Error_Msg_Node_1 = Any_Fixed
1894 or else Error_Msg_Node_1 = Any_Integer
1895 or else Error_Msg_Node_1 = Any_Modular
1896 or else Error_Msg_Node_1 = Any_Numeric
1897 or else Error_Msg_Node_1 = Any_Real
1898 or else Error_Msg_Node_1 = Any_Scalar
1899 or else Error_Msg_Node_1 = Any_String
1900 then
1901 Get_Unqualified_Decoded_Name_String (Chars (Error_Msg_Node_1));
1902 Set_Msg_Name_Buffer;
1903 return;
1905 elsif Error_Msg_Node_1 = Universal_Real then
1906 Set_Msg_Str ("type universal real");
1907 return;
1909 elsif Error_Msg_Node_1 = Universal_Integer then
1910 Set_Msg_Str ("type universal integer");
1911 return;
1913 elsif Error_Msg_Node_1 = Universal_Fixed then
1914 Set_Msg_Str ("type universal fixed");
1915 return;
1916 end if;
1918 -- Special case of anonymous array
1920 if Nkind (Error_Msg_Node_1) in N_Entity
1921 and then Is_Array_Type (Error_Msg_Node_1)
1922 and then Present (Related_Array_Object (Error_Msg_Node_1))
1923 then
1924 Set_Msg_Str ("type of ");
1925 Set_Msg_Node (Related_Array_Object (Error_Msg_Node_1));
1926 Set_Msg_Str (" declared");
1927 Set_Msg_Insertion_Line_Number
1928 (Sloc (Related_Array_Object (Error_Msg_Node_1)), Flag);
1929 return;
1930 end if;
1932 -- If we fall through, it is not a special case, so first output
1933 -- the name of the type, preceded by private for a private type
1935 if Is_Private_Type (Error_Msg_Node_1) then
1936 Set_Msg_Str ("private type ");
1937 else
1938 Set_Msg_Str ("type ");
1939 end if;
1941 Ent := Error_Msg_Node_1;
1943 if Is_Internal_Name (Chars (Ent)) then
1944 Unwind_Internal_Type (Ent);
1945 end if;
1947 -- Types in Standard are displayed as "Standard.name"
1949 if Sloc (Ent) <= Standard_Location then
1950 Set_Msg_Quote;
1951 Set_Msg_Str ("Standard.");
1952 Set_Msg_Node (Ent);
1953 Add_Class;
1954 Set_Msg_Quote;
1956 -- Types in other language defined units are displayed as
1957 -- "package-name.type-name"
1959 elsif
1960 Is_Predefined_File_Name (Unit_File_Name (Get_Source_Unit (Ent)))
1961 then
1962 Get_Unqualified_Decoded_Name_String
1963 (Unit_Name (Get_Source_Unit (Ent)));
1964 Name_Len := Name_Len - 2;
1965 Set_Msg_Quote;
1966 Set_Casing (Mixed_Case);
1967 Set_Msg_Name_Buffer;
1968 Set_Msg_Char ('.');
1969 Set_Casing (Mixed_Case);
1970 Set_Msg_Node (Ent);
1971 Add_Class;
1972 Set_Msg_Quote;
1974 -- All other types display as "type name" defined at line xxx
1975 -- possibly qualified if qualification is requested.
1977 else
1978 Set_Msg_Quote;
1979 Set_Qualification (Error_Msg_Qual_Level, Ent);
1980 Set_Msg_Node (Ent);
1981 Add_Class;
1982 Set_Msg_Quote;
1983 end if;
1985 -- If the original type did not come from a predefined
1986 -- file, add the location where the type was defined.
1988 if Sloc (Error_Msg_Node_1) > Standard_Location
1989 and then
1990 not Is_Predefined_File_Name
1991 (Unit_File_Name (Get_Source_Unit (Error_Msg_Node_1)))
1992 then
1993 Set_Msg_Str (" defined");
1994 Set_Msg_Insertion_Line_Number (Sloc (Error_Msg_Node_1), Flag);
1996 -- If it did come from a predefined file, deal with the case where
1997 -- this was a file with a generic instantiation from elsewhere.
1999 else
2000 if Sloc (Error_Msg_Node_1) > Standard_Location then
2001 declare
2002 Iloc : constant Source_Ptr :=
2003 Instantiation_Location (Sloc (Error_Msg_Node_1));
2005 begin
2006 if Iloc /= No_Location
2007 and then not Suppress_Instance_Location
2008 then
2009 Set_Msg_Str (" from instance");
2010 Set_Msg_Insertion_Line_Number (Iloc, Flag);
2011 end if;
2012 end;
2013 end if;
2014 end if;
2015 end Set_Msg_Insertion_Type_Reference;
2017 ---------------------------------
2018 -- Set_Msg_Insertion_Unit_Name --
2019 ---------------------------------
2021 procedure Set_Msg_Insertion_Unit_Name is
2022 begin
2023 if Error_Msg_Unit_1 = No_Name then
2024 null;
2026 elsif Error_Msg_Unit_1 = Error_Name then
2027 Set_Msg_Blank;
2028 Set_Msg_Str ("<error>");
2030 else
2031 Get_Unit_Name_String (Error_Msg_Unit_1);
2032 Set_Msg_Blank;
2033 Set_Msg_Quote;
2034 Set_Msg_Name_Buffer;
2035 Set_Msg_Quote;
2036 end if;
2038 -- The following assignment ensures that a second percent insertion
2039 -- character will correspond to the Error_Msg_Unit_2 parameter.
2041 Error_Msg_Unit_1 := Error_Msg_Unit_2;
2042 end Set_Msg_Insertion_Unit_Name;
2044 ------------------
2045 -- Set_Msg_Node --
2046 ------------------
2048 procedure Set_Msg_Node (Node : Node_Id) is
2049 Ent : Entity_Id;
2050 Nam : Name_Id;
2052 begin
2053 if Nkind (Node) = N_Designator then
2054 Set_Msg_Node (Name (Node));
2055 Set_Msg_Char ('.');
2056 Set_Msg_Node (Identifier (Node));
2057 return;
2059 elsif Nkind (Node) = N_Defining_Program_Unit_Name then
2060 Set_Msg_Node (Name (Node));
2061 Set_Msg_Char ('.');
2062 Set_Msg_Node (Defining_Identifier (Node));
2063 return;
2065 elsif Nkind (Node) = N_Selected_Component then
2066 Set_Msg_Node (Prefix (Node));
2067 Set_Msg_Char ('.');
2068 Set_Msg_Node (Selector_Name (Node));
2069 return;
2070 end if;
2072 -- The only remaining possibilities are identifiers, defining
2073 -- identifiers, pragmas, and pragma argument associations, i.e.
2074 -- nodes that have a Chars field.
2076 -- Internal names generally represent something gone wrong. An exception
2077 -- is the case of internal type names, where we try to find a reasonable
2078 -- external representation for the external name
2080 if Is_Internal_Name (Chars (Node))
2081 and then
2082 ((Is_Entity_Name (Node)
2083 and then Present (Entity (Node))
2084 and then Is_Type (Entity (Node)))
2085 or else
2086 (Nkind (Node) = N_Defining_Identifier and then Is_Type (Node)))
2087 then
2088 if Nkind (Node) = N_Identifier then
2089 Ent := Entity (Node);
2090 else
2091 Ent := Node;
2092 end if;
2094 Unwind_Internal_Type (Ent);
2095 Nam := Chars (Ent);
2097 else
2098 Nam := Chars (Node);
2099 end if;
2101 -- At this stage, the name to output is in Nam
2103 Get_Unqualified_Decoded_Name_String (Nam);
2105 -- Remove trailing upper case letters from the name (useful for
2106 -- dealing with some cases of internal names.
2108 while Name_Len > 1 and then Name_Buffer (Name_Len) in 'A' .. 'Z' loop
2109 Name_Len := Name_Len - 1;
2110 end loop;
2112 -- If we have any of the names from standard that start with the
2113 -- characters "any " (e.g. Any_Type), then kill the message since
2114 -- almost certainly it is a junk cascaded message.
2116 if Name_Len > 4
2117 and then Name_Buffer (1 .. 4) = "any "
2118 then
2119 Kill_Message := True;
2120 end if;
2122 -- Now we have to set the proper case. If we have a source location
2123 -- then do a check to see if the name in the source is the same name
2124 -- as the name in the Names table, except for possible differences
2125 -- in case, which is the case when we can copy from the source.
2127 declare
2128 Src_Loc : constant Source_Ptr := Sloc (Error_Msg_Node_1);
2129 Sbuffer : Source_Buffer_Ptr;
2130 Ref_Ptr : Integer;
2131 Src_Ptr : Source_Ptr;
2133 begin
2134 Ref_Ptr := 1;
2135 Src_Ptr := Src_Loc;
2137 -- For standard locations, always use mixed case
2139 if Src_Loc <= No_Location
2140 or else Sloc (Node) <= No_Location
2141 then
2142 Set_Casing (Mixed_Case);
2144 else
2145 -- Determine if the reference we are dealing with corresponds
2146 -- to text at the point of the error reference. This will often
2147 -- be the case for simple identifier references, and is the case
2148 -- where we can copy the spelling from the source.
2150 Sbuffer := Source_Text (Get_Source_File_Index (Src_Loc));
2152 while Ref_Ptr <= Name_Len loop
2153 exit when
2154 Fold_Lower (Sbuffer (Src_Ptr)) /=
2155 Fold_Lower (Name_Buffer (Ref_Ptr));
2156 Ref_Ptr := Ref_Ptr + 1;
2157 Src_Ptr := Src_Ptr + 1;
2158 end loop;
2160 -- If we get through the loop without a mismatch, then output
2161 -- the name the way it is spelled in the source program
2163 if Ref_Ptr > Name_Len then
2164 Src_Ptr := Src_Loc;
2166 for J in 1 .. Name_Len loop
2167 Name_Buffer (J) := Sbuffer (Src_Ptr);
2168 Src_Ptr := Src_Ptr + 1;
2169 end loop;
2171 -- Otherwise set the casing using the default identifier casing
2173 else
2174 Set_Casing (Identifier_Casing (Flag_Source), Mixed_Case);
2175 end if;
2176 end if;
2177 end;
2179 Set_Msg_Name_Buffer;
2180 Add_Class;
2181 end Set_Msg_Node;
2183 ------------------
2184 -- Set_Msg_Text --
2185 ------------------
2187 procedure Set_Msg_Text (Text : String; Flag : Source_Ptr) is
2188 C : Character; -- Current character
2189 P : Natural; -- Current index;
2191 begin
2192 Manual_Quote_Mode := False;
2193 Is_Unconditional_Msg := False;
2194 Msglen := 0;
2195 Flag_Source := Get_Source_File_Index (Flag);
2196 P := Text'First;
2198 while P <= Text'Last loop
2199 C := Text (P);
2200 P := P + 1;
2202 -- Check for insertion character
2204 case C is
2205 when '%' =>
2206 Set_Msg_Insertion_Name;
2208 when '$' =>
2209 Set_Msg_Insertion_Unit_Name;
2211 when '{' =>
2212 Set_Msg_Insertion_File_Name;
2214 when '}' =>
2215 Set_Msg_Insertion_Type_Reference (Flag);
2217 when '*' =>
2218 Set_Msg_Insertion_Reserved_Name;
2220 when '&' =>
2221 Set_Msg_Insertion_Node;
2223 when '#' =>
2224 Set_Msg_Insertion_Line_Number (Error_Msg_Sloc, Flag);
2226 when '\' =>
2227 Continuation := True;
2229 when '@' =>
2230 Set_Msg_Insertion_Column;
2232 when '>' =>
2233 Set_Msg_Insertion_Run_Time_Name;
2236 when '^' =>
2237 Set_Msg_Insertion_Uint;
2239 when '`' =>
2240 Manual_Quote_Mode := not Manual_Quote_Mode;
2241 Set_Msg_Char ('"');
2243 when '!' =>
2244 Is_Unconditional_Msg := True;
2246 when '?' =>
2247 null; -- already dealt with
2249 when '|' =>
2250 null; -- already dealt with
2252 when ''' =>
2253 Set_Msg_Char (Text (P));
2254 P := P + 1;
2256 -- Upper case letter
2258 when 'A' .. 'Z' =>
2260 -- Start of reserved word if two or more
2262 if P <= Text'Last and then Text (P) in 'A' .. 'Z' then
2263 P := P - 1;
2264 Set_Msg_Insertion_Reserved_Word (Text, P);
2266 -- Single upper case letter is just inserted
2268 else
2269 Set_Msg_Char (C);
2270 end if;
2272 -- Normal character with no special treatment
2274 when others =>
2275 Set_Msg_Char (C);
2276 end case;
2277 end loop;
2279 VMS_Convert;
2280 end Set_Msg_Text;
2282 ----------------
2283 -- Set_Posted --
2284 ----------------
2286 procedure Set_Posted (N : Node_Id) is
2287 P : Node_Id;
2289 begin
2290 if Is_Serious_Error then
2292 -- We always set Error_Posted on the node itself
2294 Set_Error_Posted (N);
2296 -- If it is a subexpression, then set Error_Posted on parents
2297 -- up to and including the first non-subexpression construct. This
2298 -- helps avoid cascaded error messages within a single expression.
2300 P := N;
2301 loop
2302 P := Parent (P);
2303 exit when No (P);
2304 Set_Error_Posted (P);
2305 exit when Nkind (P) not in N_Subexpr;
2306 end loop;
2308 -- A special check, if we just posted an error on an attribute
2309 -- definition clause, then also set the entity involved as posted.
2310 -- For example, this stops complaining about the alignment after
2311 -- complaining about the size, which is likely to be useless.
2313 if Nkind (P) = N_Attribute_Definition_Clause then
2314 if Is_Entity_Name (Name (P)) then
2315 Set_Error_Posted (Entity (Name (P)));
2316 end if;
2317 end if;
2318 end if;
2319 end Set_Posted;
2321 -----------------------
2322 -- Set_Qualification --
2323 -----------------------
2325 procedure Set_Qualification (N : Nat; E : Entity_Id) is
2326 begin
2327 if N /= 0 and then Scope (E) /= Standard_Standard then
2328 Set_Qualification (N - 1, Scope (E));
2329 Set_Msg_Node (Scope (E));
2330 Set_Msg_Char ('.');
2331 end if;
2332 end Set_Qualification;
2334 ------------------------
2335 -- Special_Msg_Delete --
2336 ------------------------
2338 function Special_Msg_Delete
2339 (Msg : String;
2340 N : Node_Or_Entity_Id;
2341 E : Node_Or_Entity_Id) return Boolean
2343 begin
2344 -- Never delete messages in -gnatdO mode
2346 if Debug_Flag_OO then
2347 return False;
2349 -- When an atomic object refers to a non-atomic type in the same
2350 -- scope, we implicitly make the type atomic. In the non-error
2351 -- case this is surely safe (and in fact prevents an error from
2352 -- occurring if the type is not atomic by default). But if the
2353 -- object cannot be made atomic, then we introduce an extra junk
2354 -- message by this manipulation, which we get rid of here.
2356 -- We identify this case by the fact that it references a type for
2357 -- which Is_Atomic is set, but there is no Atomic pragma setting it.
2359 elsif Msg = "atomic access to & cannot be guaranteed"
2360 and then Is_Type (E)
2361 and then Is_Atomic (E)
2362 and then No (Get_Rep_Pragma (E, Name_Atomic))
2363 then
2364 return True;
2366 -- When a size is wrong for a frozen type there is no explicit
2367 -- size clause, and other errors have occurred, suppress the
2368 -- message, since it is likely that this size error is a cascaded
2369 -- result of other errors. The reason we eliminate unfrozen types
2370 -- is that messages issued before the freeze type are for sure OK.
2372 elsif Msg = "size for& too small, minimum allowed is ^"
2373 and then Is_Frozen (E)
2374 and then Serious_Errors_Detected > 0
2375 and then Nkind (N) /= N_Component_Clause
2376 and then Nkind (Parent (N)) /= N_Component_Clause
2377 and then
2378 No (Get_Attribute_Definition_Clause (E, Attribute_Size))
2379 and then
2380 No (Get_Attribute_Definition_Clause (E, Attribute_Object_Size))
2381 and then
2382 No (Get_Attribute_Definition_Clause (E, Attribute_Value_Size))
2383 then
2384 return True;
2386 -- All special tests complete, so go ahead with message
2388 else
2389 return False;
2390 end if;
2391 end Special_Msg_Delete;
2393 --------------------------
2394 -- Unwind_Internal_Type --
2395 --------------------------
2397 procedure Unwind_Internal_Type (Ent : in out Entity_Id) is
2398 Derived : Boolean := False;
2399 Mchar : Character;
2400 Old_Ent : Entity_Id;
2402 begin
2403 -- Undo placement of a quote, since we will put it back later
2405 Mchar := Msg_Buffer (Msglen);
2407 if Mchar = '"' then
2408 Msglen := Msglen - 1;
2409 end if;
2411 -- The loop here deals with recursive types, we are trying to
2412 -- find a related entity that is not an implicit type. Note
2413 -- that the check with Old_Ent stops us from getting "stuck".
2414 -- Also, we don't output the "type derived from" message more
2415 -- than once in the case where we climb up multiple levels.
2417 loop
2418 Old_Ent := Ent;
2420 -- Implicit access type, use directly designated type
2422 if Is_Access_Type (Ent) then
2423 Set_Msg_Str ("access to ");
2424 Ent := Directly_Designated_Type (Ent);
2426 -- Classwide type
2428 elsif Is_Class_Wide_Type (Ent) then
2429 Class_Flag := True;
2430 Ent := Root_Type (Ent);
2432 -- Use base type if this is a subtype
2434 elsif Ent /= Base_Type (Ent) then
2435 Buffer_Remove ("type ");
2437 -- Avoid duplication "subtype of subtype of", and also replace
2438 -- "derived from subtype of" simply by "derived from"
2440 if not Buffer_Ends_With ("subtype of ")
2441 and then not Buffer_Ends_With ("derived from ")
2442 then
2443 Set_Msg_Str ("subtype of ");
2444 end if;
2446 Ent := Base_Type (Ent);
2448 -- If this is a base type with a first named subtype, use the
2449 -- first named subtype instead. This is not quite accurate in
2450 -- all cases, but it makes too much noise to be accurate and
2451 -- add 'Base in all cases. Note that we only do this is the
2452 -- first named subtype is not itself an internal name. This
2453 -- avoids the obvious loop (subtype->basetype->subtype) which
2454 -- would otherwise occur!)
2456 elsif Present (Freeze_Node (Ent))
2457 and then Present (First_Subtype_Link (Freeze_Node (Ent)))
2458 and then
2459 not Is_Internal_Name
2460 (Chars (First_Subtype_Link (Freeze_Node (Ent))))
2461 then
2462 Ent := First_Subtype_Link (Freeze_Node (Ent));
2464 -- Otherwise use root type
2466 else
2467 if not Derived then
2468 Buffer_Remove ("type ");
2470 -- Test for "subtype of type derived from" which seems
2471 -- excessive and is replaced by simply "type derived from"
2473 Buffer_Remove ("subtype of");
2475 -- Avoid duplication "type derived from type derived from"
2477 if not Buffer_Ends_With ("type derived from ") then
2478 Set_Msg_Str ("type derived from ");
2479 end if;
2481 Derived := True;
2482 end if;
2484 Ent := Etype (Ent);
2485 end if;
2487 -- If we are stuck in a loop, get out and settle for the internal
2488 -- name after all. In this case we set to kill the message if it
2489 -- is not the first error message (we really try hard not to show
2490 -- the dirty laundry of the implementation to the poor user!)
2492 if Ent = Old_Ent then
2493 Kill_Message := True;
2494 exit;
2495 end if;
2497 -- Get out if we finally found a non-internal name to use
2499 exit when not Is_Internal_Name (Chars (Ent));
2500 end loop;
2502 if Mchar = '"' then
2503 Set_Msg_Char ('"');
2504 end if;
2505 end Unwind_Internal_Type;
2507 -----------------
2508 -- VMS_Convert --
2509 -----------------
2511 procedure VMS_Convert is
2512 P : Natural;
2513 L : Natural;
2514 N : Natural;
2516 begin
2517 if not OpenVMS then
2518 return;
2519 end if;
2521 P := Msg_Buffer'First;
2522 loop
2523 if P >= Msglen then
2524 return;
2525 end if;
2527 if Msg_Buffer (P) = '-' then
2528 for G in Gnames'Range loop
2529 L := Gnames (G)'Length;
2531 -- See if we have "-ggg switch", where ggg is Gnames entry
2533 if P + L + 7 <= Msglen
2534 and then Msg_Buffer (P + 1 .. P + L) = Gnames (G).all
2535 and then Msg_Buffer (P + L + 1 .. P + L + 7) = " switch"
2536 then
2537 -- Replace by "/vvv qualifier", where vvv is Vnames entry
2539 N := Vnames (G)'Length;
2540 Msg_Buffer (P + N + 11 .. Msglen + N - L + 3) :=
2541 Msg_Buffer (P + L + 8 .. Msglen);
2542 Msg_Buffer (P) := '/';
2543 Msg_Buffer (P + 1 .. P + N) := Vnames (G).all;
2544 Msg_Buffer (P + N + 1 .. P + N + 10) := " qualifier";
2545 P := P + N + 10;
2546 Msglen := Msglen + N - L + 3;
2547 exit;
2548 end if;
2549 end loop;
2550 end if;
2552 P := P + 1;
2553 end loop;
2554 end VMS_Convert;
2556 end Errout;