[multiple changes]
[gcc.git] / gcc / ada / errout.adb
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-2011, 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 ------------------------------------------------------------------------------
25
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.
31
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 Sem_Aux; use Sem_Aux;
47 with Sinput; use Sinput;
48 with Sinfo; use Sinfo;
49 with Snames; use Snames;
50 with Stand; use Stand;
51 with Stylesw; use Stylesw;
52 with Uname; use Uname;
53
54 package body Errout is
55
56 Errors_Must_Be_Ignored : Boolean := False;
57 -- Set to True by procedure Set_Ignore_Errors (True), when calls to error
58 -- message procedures should be ignored (when parsing irrelevant text in
59 -- sources being preprocessed).
60
61 Finalize_Called : Boolean := False;
62 -- Set True if the Finalize routine has been called
63
64 Warn_On_Instance : Boolean;
65 -- Flag set true for warning message to be posted on instance
66
67 ------------------------------------
68 -- Table of Non-Instance Messages --
69 ------------------------------------
70
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.
75
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
81
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");
89
90 -----------------------
91 -- Local Subprograms --
92 -----------------------
93
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.
110
111 function No_Warnings (N : Node_Or_Entity_Id) return Boolean;
112 -- Determines if warnings should be suppressed for the given node
113
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.
120
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).
129
130 procedure Set_Msg_Insertion_Column;
131 -- Handle column number insertion (@ insertion character)
132
133 procedure Set_Msg_Insertion_Node;
134 -- Handle node (name from node) insertion (& insertion character)
135
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,
140
141 procedure Set_Msg_Insertion_Unit_Name (Suffix : Boolean := True);
142 -- Handle unit name insertion ($ insertion character). Depending on Boolean
143 -- parameter Suffix, (spec) or (body) is appended after the unit name.
144
145 procedure Set_Msg_Node (Node : Node_Id);
146 -- Add the sequence of characters for the name associated with the
147 -- given node to the current message.
148
149 procedure Set_Msg_Text (Text : String; Flag : Source_Ptr);
150 -- Add a sequence of characters to the current message. The characters may
151 -- be one of the special insertion characters (see documentation in spec).
152 -- Flag is the location at which the error is to be posted, which is used
153 -- to determine whether or not the # insertion needs a file name. The
154 -- variables Msg_Buffer, Msglen, Is_Style_Msg, Is_Warning_Msg, and
155 -- Is_Unconditional_Msg are set on return.
156
157 procedure Set_Posted (N : Node_Id);
158 -- Sets the Error_Posted flag on the given node, and all its parents
159 -- that are subexpressions and then on the parent non-subexpression
160 -- construct that contains the original expression (this reduces the
161 -- number of cascaded messages). Note that this call only has an effect
162 -- for a serious error. For a non-serious error, it has no effect.
163
164 procedure Set_Qualification (N : Nat; E : Entity_Id);
165 -- Outputs up to N levels of qualification for the given entity. For
166 -- example, the entity A.B.C.D will output B.C. if N = 2.
167
168 function Special_Msg_Delete
169 (Msg : String;
170 N : Node_Or_Entity_Id;
171 E : Node_Or_Entity_Id) return Boolean;
172 -- This function is called from Error_Msg_NEL, passing the message Msg,
173 -- node N on which the error is to be posted, and the entity or node E
174 -- to be used for an & insertion in the message if any. The job of this
175 -- procedure is to test for certain cascaded messages that we would like
176 -- to suppress. If the message is to be suppressed then we return True.
177 -- If the message should be generated (the normal case) False is returned.
178
179 procedure Unwind_Internal_Type (Ent : in out Entity_Id);
180 -- This procedure is given an entity id for an internal type, i.e. a type
181 -- with an internal name. It unwinds the type to try to get to something
182 -- reasonably printable, generating prefixes like "subtype of", "access
183 -- to", etc along the way in the buffer. The value in Ent on return is the
184 -- final name to be printed. Hopefully this is not an internal name, but in
185 -- some internal name cases, it is an internal name, and has to be printed
186 -- anyway (although in this case the message has been killed if possible).
187 -- The global variable Class_Flag is set to True if the resulting entity
188 -- should have 'Class appended to its name (see Add_Class procedure), and
189 -- is otherwise unchanged.
190
191 procedure VMS_Convert;
192 -- This procedure has no effect if called when the host is not OpenVMS. If
193 -- the host is indeed OpenVMS, then the error message stored in Msg_Buffer
194 -- is scanned for appearances of switch names which need converting to
195 -- corresponding VMS qualifier names. See Gnames/Vnames table in Errout
196 -- spec for precise definition of the conversion that is performed by this
197 -- routine in OpenVMS mode.
198
199 -----------------------
200 -- Change_Error_Text --
201 -----------------------
202
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;
206
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));
210
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.
215
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;
226
227 ------------------------
228 -- Compilation_Errors --
229 ------------------------
230
231 function Compilation_Errors return Boolean is
232 begin
233 if not Finalize_Called then
234 raise Program_Error;
235 else
236 return Erroutc.Compilation_Errors;
237 end if;
238 end Compilation_Errors;
239
240 ---------------
241 -- Error_Msg --
242 ---------------
243
244 -- Error_Msg posts a flag at the given location, except that if the
245 -- Flag_Location points within a generic template and corresponds to an
246 -- instantiation of this generic template, then the actual message will be
247 -- posted on the generic instantiation, along with additional messages
248 -- referencing the generic declaration.
249
250 procedure Error_Msg (Msg : String; Flag_Location : Source_Ptr) is
251 Sindex : Source_File_Index;
252 -- Source index for flag location
253
254 Orig_Loc : Source_Ptr;
255 -- Original location of Flag_Location (i.e. location in original
256 -- template in instantiation case, otherwise unchanged).
257
258 begin
259 -- It is a fatal error to issue an error message when scanning from the
260 -- internal source buffer (see Sinput for further documentation)
261
262 pragma Assert (Sinput.Source /= Internal_Source_Ptr);
263
264 -- Return if all errors are to be ignored
265
266 if Errors_Must_Be_Ignored then
267 return;
268 end if;
269
270 -- If we already have messages, and we are trying to place a message at
271 -- No_Location or in package Standard, then just ignore the attempt
272 -- since we assume that what is happening is some cascaded junk. Note
273 -- that this is safe in the sense that proceeding will surely bomb.
274
275 if Flag_Location < First_Source_Ptr
276 and then Total_Errors_Detected > 0
277 then
278 return;
279 end if;
280
281 -- Start of processing for new message
282
283 Sindex := Get_Source_File_Index (Flag_Location);
284 Test_Style_Warning_Serious_Msg (Msg);
285 Orig_Loc := Original_Location (Flag_Location);
286
287 -- If the current location is in an instantiation, the issue arises of
288 -- whether to post the message on the template or the instantiation.
289
290 -- The way we decide is to see if we have posted the same message on
291 -- the template when we compiled the template (the template is always
292 -- compiled before any instantiations). For this purpose, we use a
293 -- separate table of messages. The reason we do this is twofold:
294
295 -- First, the messages can get changed by various processing
296 -- including the insertion of tokens etc, making it hard to
297 -- do the comparison.
298
299 -- Second, we will suppress a warning on a template if it is not in
300 -- the current extended source unit. That's reasonable and means we
301 -- don't want the warning on the instantiation here either, but it
302 -- does mean that the main error table would not in any case include
303 -- the message.
304
305 if Flag_Location = Orig_Loc then
306 Non_Instance_Msgs.Append ((new String'(Msg), Flag_Location));
307 Warn_On_Instance := False;
308
309 -- Here we have an instance message
310
311 else
312 -- Delete if debug flag off, and this message duplicates a message
313 -- already posted on the corresponding template
314
315 if not Debug_Flag_GG then
316 for J in Non_Instance_Msgs.First .. Non_Instance_Msgs.Last loop
317 if Msg = Non_Instance_Msgs.Table (J).Msg.all
318 and then Non_Instance_Msgs.Table (J).Loc = Orig_Loc
319 then
320 return;
321 end if;
322 end loop;
323 end if;
324
325 -- No duplicate, so error/warning will be posted on instance
326
327 Warn_On_Instance := Is_Warning_Msg;
328 end if;
329
330 -- Ignore warning message that is suppressed for this location. Note
331 -- that style checks are not considered warning messages for this
332 -- purpose.
333
334 if Is_Warning_Msg and then Warnings_Suppressed (Orig_Loc) then
335 return;
336
337 -- For style messages, check too many messages so far
338
339 elsif Is_Style_Msg
340 and then Maximum_Messages /= 0
341 and then Warnings_Detected >= Maximum_Messages
342 then
343 return;
344 end if;
345
346 -- The idea at this stage is that we have two kinds of messages
347
348 -- First, we have those messages that are to be placed as requested at
349 -- Flag_Location. This includes messages that have nothing to do with
350 -- generics, and also messages placed on generic templates that reflect
351 -- an error in the template itself. For such messages we simply call
352 -- Error_Msg_Internal to place the message in the requested location.
353
354 if Instantiation (Sindex) = No_Location then
355 Error_Msg_Internal (Msg, Flag_Location, Flag_Location, False);
356 return;
357 end if;
358
359 -- If we are trying to flag an error in an instantiation, we may have
360 -- a generic contract violation. What we generate in this case is:
361
362 -- instantiation error at ...
363 -- original error message
364
365 -- or
366
367 -- warning: in instantiation at
368 -- warning: original warning message
369
370 -- All these messages are posted at the location of the top level
371 -- instantiation. If there are nested instantiations, then the
372 -- instantiation error message can be repeated, pointing to each
373 -- of the relevant instantiations.
374
375 -- Note: the instantiation mechanism is also shared for inlining of
376 -- subprogram bodies when front end inlining is done. In this case the
377 -- messages have the form:
378
379 -- in inlined body at ...
380 -- original error message
381
382 -- or
383
384 -- warning: in inlined body at
385 -- warning: original warning message
386
387 -- OK, here we have an instantiation error, and we need to generate the
388 -- error on the instantiation, rather than on the template.
389
390 declare
391 Actual_Error_Loc : Source_Ptr;
392 -- Location of outer level instantiation in instantiation case, or
393 -- just a copy of Flag_Location in the normal case. This is the
394 -- location where all error messages will actually be posted.
395
396 Save_Error_Msg_Sloc : constant Source_Ptr := Error_Msg_Sloc;
397 -- Save possible location set for caller's message. We need to use
398 -- Error_Msg_Sloc for the location of the instantiation error but we
399 -- have to preserve a possible original value.
400
401 X : Source_File_Index;
402
403 Msg_Cont_Status : Boolean;
404 -- Used to label continuation lines in instantiation case with
405 -- proper Msg_Cont status.
406
407 begin
408 -- Loop to find highest level instantiation, where all error
409 -- messages will be placed.
410
411 X := Sindex;
412 loop
413 Actual_Error_Loc := Instantiation (X);
414 X := Get_Source_File_Index (Actual_Error_Loc);
415 exit when Instantiation (X) = No_Location;
416 end loop;
417
418 -- Since we are generating the messages at the instantiation point in
419 -- any case, we do not want the references to the bad lines in the
420 -- instance to be annotated with the location of the instantiation.
421
422 Suppress_Instance_Location := True;
423 Msg_Cont_Status := False;
424
425 -- Loop to generate instantiation messages
426
427 Error_Msg_Sloc := Flag_Location;
428 X := Get_Source_File_Index (Flag_Location);
429 while Instantiation (X) /= No_Location loop
430
431 -- Suppress instantiation message on continuation lines
432
433 if Msg (Msg'First) /= '\' then
434
435 -- Case of inlined body
436
437 if Inlined_Body (X) then
438 if Is_Warning_Msg or else Is_Style_Msg then
439 Error_Msg_Internal
440 ("?in inlined body #",
441 Actual_Error_Loc, Flag_Location, Msg_Cont_Status);
442
443 else
444 Error_Msg_Internal
445 ("error in inlined body #",
446 Actual_Error_Loc, Flag_Location, Msg_Cont_Status);
447 end if;
448
449 -- Case of generic instantiation
450
451 else
452 if Is_Warning_Msg or else Is_Style_Msg then
453 Error_Msg_Internal
454 ("?in instantiation #",
455 Actual_Error_Loc, Flag_Location, Msg_Cont_Status);
456
457 else
458 Error_Msg_Internal
459 ("instantiation error #",
460 Actual_Error_Loc, Flag_Location, Msg_Cont_Status);
461 end if;
462 end if;
463 end if;
464
465 Error_Msg_Sloc := Instantiation (X);
466 X := Get_Source_File_Index (Error_Msg_Sloc);
467 Msg_Cont_Status := True;
468 end loop;
469
470 Suppress_Instance_Location := False;
471 Error_Msg_Sloc := Save_Error_Msg_Sloc;
472
473 -- Here we output the original message on the outer instantiation
474
475 Error_Msg_Internal
476 (Msg, Actual_Error_Loc, Flag_Location, Msg_Cont_Status);
477 end;
478 end Error_Msg;
479
480 ------------------
481 -- Error_Msg_AP --
482 ------------------
483
484 procedure Error_Msg_AP (Msg : String) is
485 S1 : Source_Ptr;
486 C : Character;
487
488 begin
489 -- If we had saved the Scan_Ptr value after scanning the previous
490 -- token, then we would have exactly the right place for putting
491 -- the flag immediately at hand. However, that would add at least
492 -- two instructions to a Scan call *just* to service the possibility
493 -- of an Error_Msg_AP call. So instead we reconstruct that value.
494
495 -- We have two possibilities, start with Prev_Token_Ptr and skip over
496 -- the current token, which is made harder by the possibility that this
497 -- token may be in error, or start with Token_Ptr and work backwards.
498 -- We used to take the second approach, but it's hard because of
499 -- comments, and harder still because things that look like comments
500 -- can appear inside strings. So now we take the first approach.
501
502 -- Note: in the case where there is no previous token, Prev_Token_Ptr
503 -- is set to Source_First, which is a reasonable position for the
504 -- error flag in this situation.
505
506 S1 := Prev_Token_Ptr;
507 C := Source (S1);
508
509 -- If the previous token is a string literal, we need a special approach
510 -- since there may be white space inside the literal and we don't want
511 -- to stop on that white space.
512
513 -- Note: since this is an error recovery issue anyway, it is not worth
514 -- worrying about special UTF_32 line terminator characters here.
515
516 if Prev_Token = Tok_String_Literal then
517 loop
518 S1 := S1 + 1;
519
520 if Source (S1) = C then
521 S1 := S1 + 1;
522 exit when Source (S1) /= C;
523 elsif Source (S1) in Line_Terminator then
524 exit;
525 end if;
526 end loop;
527
528 -- Character literal also needs special handling
529
530 elsif Prev_Token = Tok_Char_Literal then
531 S1 := S1 + 3;
532
533 -- Otherwise we search forward for the end of the current token, marked
534 -- by a line terminator, white space, a comment symbol or if we bump
535 -- into the following token (i.e. the current token).
536
537 -- Again, it is not worth worrying about UTF_32 special line terminator
538 -- characters in this context, since this is only for error recovery.
539
540 else
541 while Source (S1) not in Line_Terminator
542 and then Source (S1) /= ' '
543 and then Source (S1) /= ASCII.HT
544 and then (Source (S1) /= '-' or else Source (S1 + 1) /= '-')
545 and then S1 /= Token_Ptr
546 loop
547 S1 := S1 + 1;
548 end loop;
549 end if;
550
551 -- S1 is now set to the location for the flag
552
553 Error_Msg (Msg, S1);
554 end Error_Msg_AP;
555
556 ------------------
557 -- Error_Msg_BC --
558 ------------------
559
560 procedure Error_Msg_BC (Msg : String) is
561 begin
562 -- If we are at end of file, post the flag after the previous token
563
564 if Token = Tok_EOF then
565 Error_Msg_AP (Msg);
566
567 -- If we are at start of file, post the flag at the current token
568
569 elsif Token_Ptr = Source_First (Current_Source_File) then
570 Error_Msg_SC (Msg);
571
572 -- If the character before the current token is a space or a horizontal
573 -- tab, then we place the flag on this character (in the case of a tab
574 -- we would really like to place it in the "last" character of the tab
575 -- space, but that it too much trouble to worry about).
576
577 elsif Source (Token_Ptr - 1) = ' '
578 or else Source (Token_Ptr - 1) = ASCII.HT
579 then
580 Error_Msg (Msg, Token_Ptr - 1);
581
582 -- If there is no space or tab before the current token, then there is
583 -- no room to place the flag before the token, so we place it on the
584 -- token instead (this happens for example at the start of a line).
585
586 else
587 Error_Msg (Msg, Token_Ptr);
588 end if;
589 end Error_Msg_BC;
590
591 -------------------
592 -- Error_Msg_CRT --
593 -------------------
594
595 procedure Error_Msg_CRT (Feature : String; N : Node_Id) is
596 CNRT : constant String := " not allowed in no run time mode";
597 CCRT : constant String := " not supported by configuration>";
598
599 S : String (1 .. Feature'Length + 1 + CCRT'Length);
600 L : Natural;
601
602 begin
603 S (1) := '|';
604 S (2 .. Feature'Length + 1) := Feature;
605 L := Feature'Length + 2;
606
607 if No_Run_Time_Mode then
608 S (L .. L + CNRT'Length - 1) := CNRT;
609 L := L + CNRT'Length - 1;
610
611 else pragma Assert (Configurable_Run_Time_Mode);
612 S (L .. L + CCRT'Length - 1) := CCRT;
613 L := L + CCRT'Length - 1;
614 end if;
615
616 Error_Msg_N (S (1 .. L), N);
617 Configurable_Run_Time_Violations := Configurable_Run_Time_Violations + 1;
618 end Error_Msg_CRT;
619
620 -----------------
621 -- Error_Msg_F --
622 -----------------
623
624 procedure Error_Msg_F (Msg : String; N : Node_Id) is
625 begin
626 Error_Msg_NEL (Msg, N, N, Sloc (First_Node (N)));
627 end Error_Msg_F;
628
629 ------------------
630 -- Error_Msg_FE --
631 ------------------
632
633 procedure Error_Msg_FE
634 (Msg : String;
635 N : Node_Id;
636 E : Node_Or_Entity_Id)
637 is
638 begin
639 Error_Msg_NEL (Msg, N, E, Sloc (First_Node (N)));
640 end Error_Msg_FE;
641
642 ------------------------
643 -- Error_Msg_Internal --
644 ------------------------
645
646 procedure Error_Msg_Internal
647 (Msg : String;
648 Sptr : Source_Ptr;
649 Optr : Source_Ptr;
650 Msg_Cont : Boolean)
651 is
652 Next_Msg : Error_Msg_Id;
653 -- Pointer to next message at insertion point
654
655 Prev_Msg : Error_Msg_Id;
656 -- Pointer to previous message at insertion point
657
658 Temp_Msg : Error_Msg_Id;
659
660 procedure Handle_Serious_Error;
661 -- Internal procedure to do all error message handling for a serious
662 -- error message, other than bumping the error counts and arranging
663 -- for the message to be output.
664
665 --------------------------
666 -- Handle_Serious_Error --
667 --------------------------
668
669 procedure Handle_Serious_Error is
670 begin
671 -- Turn off code generation if not done already
672
673 if Operating_Mode = Generate_Code then
674 Operating_Mode := Check_Semantics;
675 Expander_Active := False;
676 end if;
677
678 -- Set the fatal error flag in the unit table unless we are in
679 -- Try_Semantics mode. This stops the semantics from being performed
680 -- if we find a serious error. This is skipped if we are currently
681 -- dealing with the configuration pragma file.
682
683 if not Try_Semantics and then Current_Source_Unit /= No_Unit then
684 Set_Fatal_Error (Get_Source_Unit (Sptr));
685 end if;
686 end Handle_Serious_Error;
687
688 -- Start of processing for Error_Msg_Internal
689
690 begin
691 if Raise_Exception_On_Error /= 0 then
692 raise Error_Msg_Exception;
693 end if;
694
695 Continuation := Msg_Cont;
696 Continuation_New_Line := False;
697 Suppress_Message := False;
698 Kill_Message := False;
699 Set_Msg_Text (Msg, Sptr);
700
701 -- Kill continuation if parent message killed
702
703 if Continuation and Last_Killed then
704 return;
705 end if;
706
707 -- Return without doing anything if message is suppressed
708
709 if Suppress_Message
710 and then not All_Errors_Mode
711 and then not Is_Warning_Msg
712 and then Msg (Msg'Last) /= '!'
713 then
714 if not Continuation then
715 Last_Killed := True;
716 end if;
717
718 return;
719 end if;
720
721 -- Return without doing anything if message is killed and this is not
722 -- the first error message. The philosophy is that if we get a weird
723 -- error message and we already have had a message, then we hope the
724 -- weird message is a junk cascaded message
725
726 if Kill_Message
727 and then not All_Errors_Mode
728 and then Total_Errors_Detected /= 0
729 then
730 if not Continuation then
731 Last_Killed := True;
732 end if;
733
734 return;
735 end if;
736
737 -- Special check for warning message to see if it should be output
738
739 if Is_Warning_Msg then
740
741 -- Immediate return if warning message and warnings are suppressed
742
743 if Warnings_Suppressed (Optr) or else Warnings_Suppressed (Sptr) then
744 Cur_Msg := No_Error_Msg;
745 return;
746 end if;
747
748 -- If the flag location is in the main extended source unit then for
749 -- sure we want the warning since it definitely belongs
750
751 if In_Extended_Main_Source_Unit (Sptr) then
752 null;
753
754 -- If the main unit has not been read yet. the warning must be on
755 -- a configuration file: gnat.adc or user-defined.
756
757 elsif No (Cunit (Main_Unit)) then
758 null;
759
760 -- If the flag location is not in the main extended source unit, then
761 -- we want to eliminate the warning, unless it is in the extended
762 -- main code unit and we want warnings on the instance.
763
764 elsif In_Extended_Main_Code_Unit (Sptr) and then Warn_On_Instance then
765 null;
766
767 -- Keep warning if debug flag G set
768
769 elsif Debug_Flag_GG then
770 null;
771
772 -- Keep warning if message text ends in !!
773
774 elsif Msg (Msg'Last) = '!' and then Msg (Msg'Last - 1) = '!' then
775 null;
776
777 -- Here is where we delete a warning from a with'ed unit
778
779 else
780 Cur_Msg := No_Error_Msg;
781
782 if not Continuation then
783 Last_Killed := True;
784 end if;
785
786 return;
787 end if;
788 end if;
789
790 -- If message is to be ignored in special ignore message mode, this is
791 -- where we do this special processing, bypassing message output.
792
793 if Ignore_Errors_Enable > 0 then
794 if Is_Serious_Error then
795 Handle_Serious_Error;
796 end if;
797
798 return;
799 end if;
800
801 -- If error message line length set, and this is a continuation message
802 -- then all we do is to append the text to the text of the last message
803 -- with a comma space separator (eliminating a possible (style) or
804 -- info prefix).
805
806 if Error_Msg_Line_Length /= 0
807 and then Continuation
808 then
809 Cur_Msg := Errors.Last;
810
811 declare
812 Oldm : String_Ptr := Errors.Table (Cur_Msg).Text;
813 Newm : String (1 .. Oldm'Last + 2 + Msglen);
814 Newl : Natural;
815 M : Natural;
816
817 begin
818 -- First copy old message to new one and free it
819
820 Newm (Oldm'Range) := Oldm.all;
821 Newl := Oldm'Length;
822 Free (Oldm);
823
824 -- Remove (style) or info: at start of message
825
826 if Msglen > 8 and then Msg_Buffer (1 .. 8) = "(style) " then
827 M := 9;
828
829 elsif Msglen > 6 and then Msg_Buffer (1 .. 6) = "info: " then
830 M := 7;
831
832 else
833 M := 1;
834 end if;
835
836 -- Now deal with separation between messages. Normally this is
837 -- simply comma space, but there are some special cases.
838
839 -- If continuation new line, then put actual NL character in msg
840
841 if Continuation_New_Line then
842 Newl := Newl + 1;
843 Newm (Newl) := ASCII.LF;
844
845 -- If continuation message is enclosed in parentheses, then
846 -- special treatment (don't need a comma, and we want to combine
847 -- successive parenthetical remarks into a single one with
848 -- separating commas).
849
850 elsif Msg_Buffer (M) = '(' and then Msg_Buffer (Msglen) = ')' then
851
852 -- Case where existing message ends in right paren, remove
853 -- and separate parenthetical remarks with a comma.
854
855 if Newm (Newl) = ')' then
856 Newm (Newl) := ',';
857 Msg_Buffer (M) := ' ';
858
859 -- Case where we are adding new parenthetical comment
860
861 else
862 Newl := Newl + 1;
863 Newm (Newl) := ' ';
864 end if;
865
866 -- Case where continuation not in parens and no new line
867
868 else
869 Newm (Newl + 1 .. Newl + 2) := ", ";
870 Newl := Newl + 2;
871 end if;
872
873 -- Append new message
874
875 Newm (Newl + 1 .. Newl + Msglen - M + 1) :=
876 Msg_Buffer (M .. Msglen);
877 Newl := Newl + Msglen - M + 1;
878 Errors.Table (Cur_Msg).Text := new String'(Newm (1 .. Newl));
879 end;
880
881 return;
882 end if;
883
884 -- Otherwise build error message object for new message
885
886 Errors.Append
887 ((Text => new String'(Msg_Buffer (1 .. Msglen)),
888 Next => No_Error_Msg,
889 Prev => No_Error_Msg,
890 Sptr => Sptr,
891 Optr => Optr,
892 Sfile => Get_Source_File_Index (Sptr),
893 Line => Get_Physical_Line_Number (Sptr),
894 Col => Get_Column_Number (Sptr),
895 Warn => Is_Warning_Msg,
896 Style => Is_Style_Msg,
897 Serious => Is_Serious_Error,
898 Uncond => Is_Unconditional_Msg,
899 Msg_Cont => Continuation,
900 Deleted => False));
901 Cur_Msg := Errors.Last;
902
903 -- If immediate errors mode set, output error message now. Also output
904 -- now if the -d1 debug flag is set (so node number message comes out
905 -- just before actual error message)
906
907 if Debug_Flag_OO or else Debug_Flag_1 then
908 Write_Eol;
909 Output_Source_Line
910 (Errors.Table (Cur_Msg).Line, Errors.Table (Cur_Msg).Sfile, True);
911 Temp_Msg := Cur_Msg;
912 Output_Error_Msgs (Temp_Msg);
913
914 -- If not in immediate errors mode, then we insert the message in the
915 -- error chain for later output by Finalize. The messages are sorted
916 -- first by unit (main unit comes first), and within a unit by source
917 -- location (earlier flag location first in the chain).
918
919 else
920 -- First a quick check, does this belong at the very end of the chain
921 -- of error messages. This saves a lot of time in the normal case if
922 -- there are lots of messages.
923
924 if Last_Error_Msg /= No_Error_Msg
925 and then Errors.Table (Cur_Msg).Sfile =
926 Errors.Table (Last_Error_Msg).Sfile
927 and then (Sptr > Errors.Table (Last_Error_Msg).Sptr
928 or else
929 (Sptr = Errors.Table (Last_Error_Msg).Sptr
930 and then
931 Optr > Errors.Table (Last_Error_Msg).Optr))
932 then
933 Prev_Msg := Last_Error_Msg;
934 Next_Msg := No_Error_Msg;
935
936 -- Otherwise do a full sequential search for the insertion point
937
938 else
939 Prev_Msg := No_Error_Msg;
940 Next_Msg := First_Error_Msg;
941 while Next_Msg /= No_Error_Msg loop
942 exit when
943 Errors.Table (Cur_Msg).Sfile < Errors.Table (Next_Msg).Sfile;
944
945 if Errors.Table (Cur_Msg).Sfile =
946 Errors.Table (Next_Msg).Sfile
947 then
948 exit when Sptr < Errors.Table (Next_Msg).Sptr
949 or else
950 (Sptr = Errors.Table (Next_Msg).Sptr
951 and then
952 Optr < Errors.Table (Next_Msg).Optr);
953 end if;
954
955 Prev_Msg := Next_Msg;
956 Next_Msg := Errors.Table (Next_Msg).Next;
957 end loop;
958 end if;
959
960 -- Now we insert the new message in the error chain. The insertion
961 -- point for the message is after Prev_Msg and before Next_Msg.
962
963 -- The possible insertion point for the new message is after Prev_Msg
964 -- and before Next_Msg. However, this is where we do a special check
965 -- for redundant parsing messages, defined as messages posted on the
966 -- same line. The idea here is that probably such messages are junk
967 -- from the parser recovering. In full errors mode, we don't do this
968 -- deletion, but otherwise such messages are discarded at this stage.
969
970 if Prev_Msg /= No_Error_Msg
971 and then Errors.Table (Prev_Msg).Line =
972 Errors.Table (Cur_Msg).Line
973 and then Errors.Table (Prev_Msg).Sfile =
974 Errors.Table (Cur_Msg).Sfile
975 and then Compiler_State = Parsing
976 and then not All_Errors_Mode
977 then
978 -- Don't delete unconditional messages and at this stage, don't
979 -- delete continuation lines (we attempted to delete those earlier
980 -- if the parent message was deleted.
981
982 if not Errors.Table (Cur_Msg).Uncond
983 and then not Continuation
984 then
985 -- Don't delete if prev msg is warning and new msg is an error.
986 -- This is because we don't want a real error masked by a
987 -- warning. In all other cases (that is parse errors for the
988 -- same line that are not unconditional) we do delete the
989 -- message. This helps to avoid junk extra messages from
990 -- cascaded parsing errors
991
992 if not (Errors.Table (Prev_Msg).Warn
993 or else
994 Errors.Table (Prev_Msg).Style)
995 or else
996 (Errors.Table (Cur_Msg).Warn
997 or else
998 Errors.Table (Cur_Msg).Style)
999 then
1000 -- All tests passed, delete the message by simply returning
1001 -- without any further processing.
1002
1003 if not Continuation then
1004 Last_Killed := True;
1005 end if;
1006
1007 return;
1008 end if;
1009 end if;
1010 end if;
1011
1012 -- Come here if message is to be inserted in the error chain
1013
1014 if not Continuation then
1015 Last_Killed := False;
1016 end if;
1017
1018 if Prev_Msg = No_Error_Msg then
1019 First_Error_Msg := Cur_Msg;
1020 else
1021 Errors.Table (Prev_Msg).Next := Cur_Msg;
1022 end if;
1023
1024 Errors.Table (Cur_Msg).Next := Next_Msg;
1025
1026 if Next_Msg = No_Error_Msg then
1027 Last_Error_Msg := Cur_Msg;
1028 end if;
1029 end if;
1030
1031 -- Bump appropriate statistics count
1032
1033 if Errors.Table (Cur_Msg).Warn or else Errors.Table (Cur_Msg).Style then
1034 Warnings_Detected := Warnings_Detected + 1;
1035
1036 else
1037 Total_Errors_Detected := Total_Errors_Detected + 1;
1038
1039 if Errors.Table (Cur_Msg).Serious then
1040 Serious_Errors_Detected := Serious_Errors_Detected + 1;
1041 Handle_Serious_Error;
1042 end if;
1043 end if;
1044
1045 -- If too many warnings turn off warnings
1046
1047 if Maximum_Messages /= 0 then
1048 if Warnings_Detected = Maximum_Messages then
1049 Warning_Mode := Suppress;
1050 end if;
1051
1052 -- If too many errors abandon compilation
1053
1054 if Total_Errors_Detected = Maximum_Messages then
1055 raise Unrecoverable_Error;
1056 end if;
1057 end if;
1058 end Error_Msg_Internal;
1059
1060 -----------------
1061 -- Error_Msg_N --
1062 -----------------
1063
1064 procedure Error_Msg_N (Msg : String; N : Node_Or_Entity_Id) is
1065 begin
1066 Error_Msg_NEL (Msg, N, N, Sloc (N));
1067 end Error_Msg_N;
1068
1069 ------------------
1070 -- Error_Msg_NE --
1071 ------------------
1072
1073 procedure Error_Msg_NE
1074 (Msg : String;
1075 N : Node_Or_Entity_Id;
1076 E : Node_Or_Entity_Id)
1077 is
1078 begin
1079 Error_Msg_NEL (Msg, N, E, Sloc (N));
1080 end Error_Msg_NE;
1081
1082 -------------------
1083 -- Error_Msg_NEL --
1084 -------------------
1085
1086 procedure Error_Msg_NEL
1087 (Msg : String;
1088 N : Node_Or_Entity_Id;
1089 E : Node_Or_Entity_Id;
1090 Flag_Location : Source_Ptr)
1091 is
1092 begin
1093 if Special_Msg_Delete (Msg, N, E) then
1094 return;
1095 end if;
1096
1097 Test_Style_Warning_Serious_Msg (Msg);
1098
1099 -- Special handling for warning messages
1100
1101 if Is_Warning_Msg then
1102
1103 -- Suppress if no warnings set for either entity or node
1104
1105 if No_Warnings (N) or else No_Warnings (E) then
1106
1107 -- Disable any continuation messages as well
1108
1109 Last_Killed := True;
1110 return;
1111 end if;
1112
1113 -- Suppress if inside loop that is known to be null or is probably
1114 -- null (case where loop executes only if invalid values present).
1115 -- In either case warnings in the loop are likely to be junk.
1116
1117 declare
1118 P : Node_Id;
1119
1120 begin
1121 P := Parent (N);
1122 while Present (P) loop
1123 if Nkind (P) = N_Loop_Statement
1124 and then Suppress_Loop_Warnings (P)
1125 then
1126 return;
1127 end if;
1128
1129 P := Parent (P);
1130 end loop;
1131 end;
1132 end if;
1133
1134 -- Test for message to be output
1135
1136 if All_Errors_Mode
1137 or else Msg (Msg'Last) = '!'
1138 or else Is_Warning_Msg
1139 or else OK_Node (N)
1140 or else (Msg (Msg'First) = '\' and then not Last_Killed)
1141 then
1142 Debug_Output (N);
1143 Error_Msg_Node_1 := E;
1144 Error_Msg (Msg, Flag_Location);
1145
1146 else
1147 Last_Killed := True;
1148 end if;
1149
1150 if not (Is_Warning_Msg or Is_Style_Msg) then
1151 Set_Posted (N);
1152 end if;
1153 end Error_Msg_NEL;
1154
1155 ------------------
1156 -- Error_Msg_NW --
1157 ------------------
1158
1159 procedure Error_Msg_NW
1160 (Eflag : Boolean;
1161 Msg : String;
1162 N : Node_Or_Entity_Id)
1163 is
1164 begin
1165 if Eflag
1166 and then In_Extended_Main_Source_Unit (N)
1167 and then Comes_From_Source (N)
1168 then
1169 Error_Msg_NEL (Msg, N, N, Sloc (N));
1170 end if;
1171 end Error_Msg_NW;
1172
1173 -----------------
1174 -- Error_Msg_S --
1175 -----------------
1176
1177 procedure Error_Msg_S (Msg : String) is
1178 begin
1179 Error_Msg (Msg, Scan_Ptr);
1180 end Error_Msg_S;
1181
1182 ------------------
1183 -- Error_Msg_SC --
1184 ------------------
1185
1186 procedure Error_Msg_SC (Msg : String) is
1187 begin
1188 -- If we are at end of file, post the flag after the previous token
1189
1190 if Token = Tok_EOF then
1191 Error_Msg_AP (Msg);
1192
1193 -- For all other cases the message is posted at the current token
1194 -- pointer position
1195
1196 else
1197 Error_Msg (Msg, Token_Ptr);
1198 end if;
1199 end Error_Msg_SC;
1200
1201 ------------------
1202 -- Error_Msg_SP --
1203 ------------------
1204
1205 procedure Error_Msg_SP (Msg : String) is
1206 begin
1207 -- Note: in the case where there is no previous token, Prev_Token_Ptr
1208 -- is set to Source_First, which is a reasonable position for the
1209 -- error flag in this situation
1210
1211 Error_Msg (Msg, Prev_Token_Ptr);
1212 end Error_Msg_SP;
1213
1214 --------------
1215 -- Finalize --
1216 --------------
1217
1218 procedure Finalize (Last_Call : Boolean) is
1219 Cur : Error_Msg_Id;
1220 Nxt : Error_Msg_Id;
1221 F : Error_Msg_Id;
1222
1223 procedure Delete_Warning (E : Error_Msg_Id);
1224 -- Delete a message if not already deleted and adjust warning count
1225
1226 --------------------
1227 -- Delete_Warning --
1228 --------------------
1229
1230 procedure Delete_Warning (E : Error_Msg_Id) is
1231 begin
1232 if not Errors.Table (E).Deleted then
1233 Errors.Table (E).Deleted := True;
1234 Warnings_Detected := Warnings_Detected - 1;
1235 end if;
1236 end Delete_Warning;
1237
1238 -- Start of message for Finalize
1239
1240 begin
1241 -- Set Prev pointers
1242
1243 Cur := First_Error_Msg;
1244 while Cur /= No_Error_Msg loop
1245 Nxt := Errors.Table (Cur).Next;
1246 exit when Nxt = No_Error_Msg;
1247 Errors.Table (Nxt).Prev := Cur;
1248 Cur := Nxt;
1249 end loop;
1250
1251 -- Eliminate any duplicated error messages from the list. This is
1252 -- done after the fact to avoid problems with Change_Error_Text.
1253
1254 Cur := First_Error_Msg;
1255 while Cur /= No_Error_Msg loop
1256 Nxt := Errors.Table (Cur).Next;
1257
1258 F := Nxt;
1259 while F /= No_Error_Msg
1260 and then Errors.Table (F).Sptr = Errors.Table (Cur).Sptr
1261 loop
1262 Check_Duplicate_Message (Cur, F);
1263 F := Errors.Table (F).Next;
1264 end loop;
1265
1266 Cur := Nxt;
1267 end loop;
1268
1269 -- Mark any messages suppressed by specific warnings as Deleted
1270
1271 Cur := First_Error_Msg;
1272 while Cur /= No_Error_Msg loop
1273 if not Errors.Table (Cur).Deleted
1274 and then Warning_Specifically_Suppressed
1275 (Errors.Table (Cur).Sptr, Errors.Table (Cur).Text)
1276 then
1277 Delete_Warning (Cur);
1278
1279 -- If this is a continuation, delete previous messages
1280
1281 F := Cur;
1282 while Errors.Table (F).Msg_Cont loop
1283 F := Errors.Table (F).Prev;
1284 Delete_Warning (F);
1285 end loop;
1286
1287 -- Delete any following continuations
1288
1289 F := Cur;
1290 loop
1291 F := Errors.Table (F).Next;
1292 exit when F = No_Error_Msg;
1293 exit when not Errors.Table (F).Msg_Cont;
1294 Delete_Warning (F);
1295 end loop;
1296 end if;
1297
1298 Cur := Errors.Table (Cur).Next;
1299 end loop;
1300
1301 Finalize_Called := True;
1302
1303 -- Check consistency of specific warnings (may add warnings). We only
1304 -- do this on the last call, after all possible warnings are posted.
1305
1306 if Last_Call then
1307 Validate_Specific_Warnings (Error_Msg'Access);
1308 end if;
1309 end Finalize;
1310
1311 ----------------
1312 -- First_Node --
1313 ----------------
1314
1315 function First_Node (C : Node_Id) return Node_Id is
1316 Orig : constant Node_Id := Original_Node (C);
1317 Loc : constant Source_Ptr := Sloc (Orig);
1318 Sfile : constant Source_File_Index := Get_Source_File_Index (Loc);
1319 Earliest : Node_Id;
1320 Eloc : Source_Ptr;
1321
1322 function Test_Earlier (N : Node_Id) return Traverse_Result;
1323 -- Function applied to every node in the construct
1324
1325 procedure Search_Tree_First is new Traverse_Proc (Test_Earlier);
1326 -- Create traversal procedure
1327
1328 ------------------
1329 -- Test_Earlier --
1330 ------------------
1331
1332 function Test_Earlier (N : Node_Id) return Traverse_Result is
1333 Norig : constant Node_Id := Original_Node (N);
1334 Loc : constant Source_Ptr := Sloc (Norig);
1335
1336 begin
1337 -- Check for earlier
1338
1339 if Loc < Eloc
1340
1341 -- Ignore nodes with no useful location information
1342
1343 and then Loc /= Standard_Location
1344 and then Loc /= No_Location
1345
1346 -- Ignore nodes from a different file. This ensures against cases
1347 -- of strange foreign code somehow being present. We don't want
1348 -- wild placement of messages if that happens.
1349
1350 and then Get_Source_File_Index (Loc) = Sfile
1351 then
1352 Earliest := Norig;
1353 Eloc := Loc;
1354 end if;
1355
1356 return OK_Orig;
1357 end Test_Earlier;
1358
1359 -- Start of processing for First_Node
1360
1361 begin
1362 if Nkind (Orig) in N_Subexpr then
1363 Earliest := Orig;
1364 Eloc := Loc;
1365 Search_Tree_First (Orig);
1366 return Earliest;
1367
1368 else
1369 return Orig;
1370 end if;
1371 end First_Node;
1372
1373 ----------------
1374 -- First_Sloc --
1375 ----------------
1376
1377 function First_Sloc (N : Node_Id) return Source_Ptr is
1378 SI : constant Source_File_Index := Source_Index (Get_Source_Unit (N));
1379 SF : constant Source_Ptr := Source_First (SI);
1380 F : Node_Id;
1381 S : Source_Ptr;
1382
1383 begin
1384 F := First_Node (N);
1385 S := Sloc (F);
1386
1387 -- The following circuit is a bit subtle. When we have parenthesized
1388 -- expressions, then the Sloc will not record the location of the paren,
1389 -- but we would like to post the flag on the paren. So what we do is to
1390 -- crawl up the tree from the First_Node, adjusting the Sloc value for
1391 -- any parentheses we know are present. Yes, we know this circuit is not
1392 -- 100% reliable (e.g. because we don't record all possible paren level
1393 -- values), but this is only for an error message so it is good enough.
1394
1395 Node_Loop : loop
1396 Paren_Loop : for J in 1 .. Paren_Count (F) loop
1397
1398 -- We don't look more than 12 characters behind the current
1399 -- location, and in any case not past the front of the source.
1400
1401 Search_Loop : for K in 1 .. 12 loop
1402 exit Search_Loop when S = SF;
1403
1404 if Source_Text (SI) (S - 1) = '(' then
1405 S := S - 1;
1406 exit Search_Loop;
1407
1408 elsif Source_Text (SI) (S - 1) <= ' ' then
1409 S := S - 1;
1410
1411 else
1412 exit Search_Loop;
1413 end if;
1414 end loop Search_Loop;
1415 end loop Paren_Loop;
1416
1417 exit Node_Loop when F = N;
1418 F := Parent (F);
1419 exit Node_Loop when Nkind (F) not in N_Subexpr;
1420 end loop Node_Loop;
1421
1422 return S;
1423 end First_Sloc;
1424
1425 ----------------
1426 -- Initialize --
1427 ----------------
1428
1429 procedure Initialize is
1430 begin
1431 Errors.Init;
1432 First_Error_Msg := No_Error_Msg;
1433 Last_Error_Msg := No_Error_Msg;
1434 Serious_Errors_Detected := 0;
1435 Total_Errors_Detected := 0;
1436 Warnings_Detected := 0;
1437 Cur_Msg := No_Error_Msg;
1438 List_Pragmas.Init;
1439
1440 -- Initialize warnings table, if all warnings are suppressed, supply an
1441 -- initial dummy entry covering all possible source locations.
1442
1443 Warnings.Init;
1444 Specific_Warnings.Init;
1445
1446 if Warning_Mode = Suppress then
1447 Warnings.Append
1448 ((Start => Source_Ptr'First, Stop => Source_Ptr'Last));
1449 end if;
1450 end Initialize;
1451
1452 -----------------
1453 -- No_Warnings --
1454 -----------------
1455
1456 function No_Warnings (N : Node_Or_Entity_Id) return Boolean is
1457 begin
1458 if Error_Posted (N) then
1459 return True;
1460
1461 elsif Nkind (N) in N_Entity and then Has_Warnings_Off (N) then
1462 return True;
1463
1464 elsif Is_Entity_Name (N)
1465 and then Present (Entity (N))
1466 and then Has_Warnings_Off (Entity (N))
1467 then
1468 return True;
1469
1470 else
1471 return False;
1472 end if;
1473 end No_Warnings;
1474
1475 -------------
1476 -- OK_Node --
1477 -------------
1478
1479 function OK_Node (N : Node_Id) return Boolean is
1480 K : constant Node_Kind := Nkind (N);
1481
1482 begin
1483 if Error_Posted (N) then
1484 return False;
1485
1486 elsif K in N_Has_Etype
1487 and then Present (Etype (N))
1488 and then Error_Posted (Etype (N))
1489 then
1490 return False;
1491
1492 elsif (K in N_Op
1493 or else K = N_Attribute_Reference
1494 or else K = N_Character_Literal
1495 or else K = N_Expanded_Name
1496 or else K = N_Identifier
1497 or else K = N_Operator_Symbol)
1498 and then Present (Entity (N))
1499 and then Error_Posted (Entity (N))
1500 then
1501 return False;
1502 else
1503 return True;
1504 end if;
1505 end OK_Node;
1506
1507 ---------------------
1508 -- Output_Messages --
1509 ---------------------
1510
1511 procedure Output_Messages is
1512 E : Error_Msg_Id;
1513 Err_Flag : Boolean;
1514
1515 procedure Write_Error_Summary;
1516 -- Write error summary
1517
1518 procedure Write_Header (Sfile : Source_File_Index);
1519 -- Write header line (compiling or checking given file)
1520
1521 procedure Write_Max_Errors;
1522 -- Write message if max errors reached
1523
1524 -------------------------
1525 -- Write_Error_Summary --
1526 -------------------------
1527
1528 procedure Write_Error_Summary is
1529 begin
1530 -- Extra blank line if error messages or source listing were output
1531
1532 if Total_Errors_Detected + Warnings_Detected > 0
1533 or else Full_List
1534 then
1535 Write_Eol;
1536 end if;
1537
1538 -- Message giving number of lines read and number of errors detected.
1539 -- This normally goes to Standard_Output. The exception is when brief
1540 -- mode is not set, verbose mode (or full list mode) is set, and
1541 -- there are errors. In this case we send the message to standard
1542 -- error to make sure that *something* appears on standard error in
1543 -- an error situation.
1544
1545 -- Formerly, only the "# errors" suffix was sent to stderr, whereas
1546 -- "# lines:" appeared on stdout. This caused problems on VMS when
1547 -- the stdout buffer was flushed, giving an extra line feed after
1548 -- the prefix.
1549
1550 if Total_Errors_Detected + Warnings_Detected /= 0
1551 and then not Brief_Output
1552 and then (Verbose_Mode or Full_List)
1553 then
1554 Set_Standard_Error;
1555 end if;
1556
1557 -- Message giving total number of lines
1558
1559 Write_Str (" ");
1560 Write_Int (Num_Source_Lines (Main_Source_File));
1561
1562 if Num_Source_Lines (Main_Source_File) = 1 then
1563 Write_Str (" line: ");
1564 else
1565 Write_Str (" lines: ");
1566 end if;
1567
1568 if Total_Errors_Detected = 0 then
1569 Write_Str ("No errors");
1570
1571 elsif Total_Errors_Detected = 1 then
1572 Write_Str ("1 error");
1573
1574 else
1575 Write_Int (Total_Errors_Detected);
1576 Write_Str (" errors");
1577 end if;
1578
1579 if Warnings_Detected /= 0 then
1580 Write_Str (", ");
1581 Write_Int (Warnings_Detected);
1582 Write_Str (" warning");
1583
1584 if Warnings_Detected /= 1 then
1585 Write_Char ('s');
1586 end if;
1587
1588 if Warning_Mode = Treat_As_Error then
1589 Write_Str (" (treated as error");
1590
1591 if Warnings_Detected /= 1 then
1592 Write_Char ('s');
1593 end if;
1594
1595 Write_Char (')');
1596 end if;
1597 end if;
1598
1599 Write_Eol;
1600 Set_Standard_Output;
1601 end Write_Error_Summary;
1602
1603 ------------------
1604 -- Write_Header --
1605 ------------------
1606
1607 procedure Write_Header (Sfile : Source_File_Index) is
1608 begin
1609 if Verbose_Mode or Full_List then
1610 if Original_Operating_Mode = Generate_Code then
1611 Write_Str ("Compiling: ");
1612 else
1613 Write_Str ("Checking: ");
1614 end if;
1615
1616 Write_Name (Full_File_Name (Sfile));
1617
1618 if not Debug_Flag_7 then
1619 Write_Str (" (source file time stamp: ");
1620 Write_Time_Stamp (Sfile);
1621 Write_Char (')');
1622 end if;
1623
1624 Write_Eol;
1625 end if;
1626 end Write_Header;
1627
1628 ----------------------
1629 -- Write_Max_Errors --
1630 ----------------------
1631
1632 procedure Write_Max_Errors is
1633 begin
1634 if Maximum_Messages /= 0 then
1635 if Warnings_Detected >= Maximum_Messages then
1636 Set_Standard_Error;
1637 Write_Line ("maximum number of warnings output");
1638 Write_Line ("any further warnings suppressed");
1639 Set_Standard_Output;
1640 end if;
1641
1642 -- If too many errors print message
1643
1644 if Total_Errors_Detected >= Maximum_Messages then
1645 Set_Standard_Error;
1646 Write_Line ("fatal error: maximum number of errors detected");
1647 Set_Standard_Output;
1648 end if;
1649 end if;
1650 end Write_Max_Errors;
1651
1652 -- Start of processing for Output_Messages
1653
1654 begin
1655 -- Error if Finalize has not been called
1656
1657 if not Finalize_Called then
1658 raise Program_Error;
1659 end if;
1660
1661 -- Reset current error source file if the main unit has a pragma
1662 -- Source_Reference. This ensures outputting the proper name of
1663 -- the source file in this situation.
1664
1665 if Main_Source_File = No_Source_File
1666 or else Num_SRef_Pragmas (Main_Source_File) /= 0
1667 then
1668 Current_Error_Source_File := No_Source_File;
1669 end if;
1670
1671 -- Brief Error mode
1672
1673 if Brief_Output or (not Full_List and not Verbose_Mode) then
1674 Set_Standard_Error;
1675
1676 E := First_Error_Msg;
1677 while E /= No_Error_Msg loop
1678 if not Errors.Table (E).Deleted and then not Debug_Flag_KK then
1679 if Full_Path_Name_For_Brief_Errors then
1680 Write_Name (Full_Ref_Name (Errors.Table (E).Sfile));
1681 else
1682 Write_Name (Reference_Name (Errors.Table (E).Sfile));
1683 end if;
1684
1685 Write_Char (':');
1686 Write_Int (Int (Physical_To_Logical
1687 (Errors.Table (E).Line,
1688 Errors.Table (E).Sfile)));
1689 Write_Char (':');
1690
1691 if Errors.Table (E).Col < 10 then
1692 Write_Char ('0');
1693 end if;
1694
1695 Write_Int (Int (Errors.Table (E).Col));
1696 Write_Str (": ");
1697 Output_Msg_Text (E);
1698 Write_Eol;
1699 end if;
1700
1701 E := Errors.Table (E).Next;
1702 end loop;
1703
1704 Set_Standard_Output;
1705 end if;
1706
1707 -- Full source listing case
1708
1709 if Full_List then
1710 List_Pragmas_Index := 1;
1711 List_Pragmas_Mode := True;
1712 E := First_Error_Msg;
1713
1714 -- Normal case, to stdout (copyright notice already output)
1715
1716 if Full_List_File_Name = null then
1717 if not Debug_Flag_7 then
1718 Write_Eol;
1719 end if;
1720
1721 -- Output to file
1722
1723 else
1724 Create_List_File_Access.all (Full_List_File_Name.all);
1725 Set_Special_Output (Write_List_Info_Access.all'Access);
1726
1727 -- Write copyright notice to file
1728
1729 if not Debug_Flag_7 then
1730 Write_Str ("GNAT ");
1731 Write_Str (Gnat_Version_String);
1732 Write_Eol;
1733 Write_Str ("Copyright 1992-" &
1734 Current_Year &
1735 ", Free Software Foundation, Inc.");
1736 Write_Eol;
1737 end if;
1738 end if;
1739
1740 -- First list extended main source file units with errors
1741
1742 for U in Main_Unit .. Last_Unit loop
1743 if In_Extended_Main_Source_Unit (Cunit_Entity (U))
1744
1745 -- If debug flag d.m is set, only the main source is listed
1746
1747 and then (U = Main_Unit or else not Debug_Flag_Dot_M)
1748
1749 -- If the unit of the entity does not come from source, it is
1750 -- an implicit subprogram declaration for a child subprogram.
1751 -- Do not emit errors for it, they are listed with the body.
1752
1753 and then
1754 (No (Cunit_Entity (U))
1755 or else Comes_From_Source (Cunit_Entity (U))
1756 or else not Is_Subprogram (Cunit_Entity (U)))
1757 then
1758 declare
1759 Sfile : constant Source_File_Index := Source_Index (U);
1760
1761 begin
1762 Write_Eol;
1763 Write_Header (Sfile);
1764 Write_Eol;
1765
1766 -- Normally, we don't want an "error messages from file"
1767 -- message when listing the entire file, so we set the
1768 -- current source file as the current error source file.
1769 -- However, the old style of doing things was to list this
1770 -- message if pragma Source_Reference is present, even for
1771 -- the main unit. Since the purpose of the -gnatd.m switch
1772 -- is to duplicate the old behavior, we skip the reset if
1773 -- this debug flag is set.
1774
1775 if not Debug_Flag_Dot_M then
1776 Current_Error_Source_File := Sfile;
1777 end if;
1778
1779 for N in 1 .. Last_Source_Line (Sfile) loop
1780 while E /= No_Error_Msg
1781 and then Errors.Table (E).Deleted
1782 loop
1783 E := Errors.Table (E).Next;
1784 end loop;
1785
1786 Err_Flag :=
1787 E /= No_Error_Msg
1788 and then Errors.Table (E).Line = N
1789 and then Errors.Table (E).Sfile = Sfile;
1790
1791 Output_Source_Line (N, Sfile, Err_Flag);
1792
1793 if Err_Flag then
1794 Output_Error_Msgs (E);
1795
1796 if not Debug_Flag_2 then
1797 Write_Eol;
1798 end if;
1799 end if;
1800 end loop;
1801 end;
1802 end if;
1803 end loop;
1804
1805 -- Then output errors, if any, for subsidiary units not in the
1806 -- main extended unit.
1807
1808 -- Note: if debug flag d.m set, include errors for any units other
1809 -- than the main unit in the extended source unit (e.g. spec and
1810 -- subunits for a body).
1811
1812 while E /= No_Error_Msg
1813 and then (not In_Extended_Main_Source_Unit (Errors.Table (E).Sptr)
1814 or else
1815 (Debug_Flag_Dot_M
1816 and then Get_Source_Unit
1817 (Errors.Table (E).Sptr) /= Main_Unit))
1818 loop
1819 if Errors.Table (E).Deleted then
1820 E := Errors.Table (E).Next;
1821
1822 else
1823 Write_Eol;
1824 Output_Source_Line
1825 (Errors.Table (E).Line, Errors.Table (E).Sfile, True);
1826 Output_Error_Msgs (E);
1827 end if;
1828 end loop;
1829
1830 -- If output to file, write extra copy of error summary to the
1831 -- output file, and then close it.
1832
1833 if Full_List_File_Name /= null then
1834 Write_Error_Summary;
1835 Write_Max_Errors;
1836 Close_List_File_Access.all;
1837 Cancel_Special_Output;
1838 end if;
1839 end if;
1840
1841 -- Verbose mode (error lines only with error flags). Normally this is
1842 -- ignored in full list mode, unless we are listing to a file, in which
1843 -- case we still generate -gnatv output to standard output.
1844
1845 if Verbose_Mode
1846 and then (not Full_List or else Full_List_File_Name /= null)
1847 then
1848 Write_Eol;
1849 Write_Header (Main_Source_File);
1850 E := First_Error_Msg;
1851
1852 -- Loop through error lines
1853
1854 while E /= No_Error_Msg loop
1855 if Errors.Table (E).Deleted then
1856 E := Errors.Table (E).Next;
1857 else
1858 Write_Eol;
1859 Output_Source_Line
1860 (Errors.Table (E).Line, Errors.Table (E).Sfile, True);
1861 Output_Error_Msgs (E);
1862 end if;
1863 end loop;
1864 end if;
1865
1866 -- Output error summary if verbose or full list mode
1867
1868 if Verbose_Mode or else Full_List then
1869 Write_Error_Summary;
1870 end if;
1871
1872 Write_Max_Errors;
1873
1874 if Warning_Mode = Treat_As_Error then
1875 Total_Errors_Detected := Total_Errors_Detected + Warnings_Detected;
1876 Warnings_Detected := 0;
1877 end if;
1878 end Output_Messages;
1879
1880 ------------------------
1881 -- Output_Source_Line --
1882 ------------------------
1883
1884 procedure Output_Source_Line
1885 (L : Physical_Line_Number;
1886 Sfile : Source_File_Index;
1887 Errs : Boolean)
1888 is
1889 S : Source_Ptr;
1890 C : Character;
1891
1892 Line_Number_Output : Boolean := False;
1893 -- Set True once line number is output
1894
1895 Empty_Line : Boolean := True;
1896 -- Set False if line includes at least one character
1897
1898 begin
1899 if Sfile /= Current_Error_Source_File then
1900 Write_Str ("==============Error messages for ");
1901
1902 case Sinput.File_Type (Sfile) is
1903 when Sinput.Src =>
1904 Write_Str ("source");
1905
1906 when Sinput.Config =>
1907 Write_Str ("configuration pragmas");
1908
1909 when Sinput.Def =>
1910 Write_Str ("symbol definition");
1911
1912 when Sinput.Preproc =>
1913 Write_Str ("preprocessing data");
1914 end case;
1915
1916 Write_Str (" file: ");
1917 Write_Name (Full_File_Name (Sfile));
1918 Write_Eol;
1919
1920 if Num_SRef_Pragmas (Sfile) > 0 then
1921 Write_Str ("--------------Line numbers from file: ");
1922 Write_Name (Full_Ref_Name (Sfile));
1923 Write_Str (" (starting at line ");
1924 Write_Int (Int (First_Mapped_Line (Sfile)));
1925 Write_Char (')');
1926 Write_Eol;
1927 end if;
1928
1929 Current_Error_Source_File := Sfile;
1930 end if;
1931
1932 if Errs or List_Pragmas_Mode then
1933 Output_Line_Number (Physical_To_Logical (L, Sfile));
1934 Line_Number_Output := True;
1935 end if;
1936
1937 S := Line_Start (L, Sfile);
1938
1939 loop
1940 C := Source_Text (Sfile) (S);
1941 exit when C = ASCII.LF or else C = ASCII.CR or else C = EOF;
1942
1943 -- Deal with matching entry in List_Pragmas table
1944
1945 if Full_List
1946 and then List_Pragmas_Index <= List_Pragmas.Last
1947 and then S = List_Pragmas.Table (List_Pragmas_Index).Ploc
1948 then
1949 case List_Pragmas.Table (List_Pragmas_Index).Ptyp is
1950 when Page =>
1951 Write_Char (C);
1952
1953 -- Ignore if on line with errors so that error flags
1954 -- get properly listed with the error line .
1955
1956 if not Errs then
1957 Write_Char (ASCII.FF);
1958 end if;
1959
1960 when List_On =>
1961 List_Pragmas_Mode := True;
1962
1963 if not Line_Number_Output then
1964 Output_Line_Number (Physical_To_Logical (L, Sfile));
1965 Line_Number_Output := True;
1966 end if;
1967
1968 Write_Char (C);
1969
1970 when List_Off =>
1971 Write_Char (C);
1972 List_Pragmas_Mode := False;
1973 end case;
1974
1975 List_Pragmas_Index := List_Pragmas_Index + 1;
1976
1977 -- Normal case (no matching entry in List_Pragmas table)
1978
1979 else
1980 if Errs or List_Pragmas_Mode then
1981 Write_Char (C);
1982 end if;
1983 end if;
1984
1985 Empty_Line := False;
1986 S := S + 1;
1987 end loop;
1988
1989 -- If we have output a source line, then add the line terminator, with
1990 -- training spaces preserved (so we output the line exactly as input).
1991
1992 if Line_Number_Output then
1993 if Empty_Line then
1994 Write_Eol;
1995 else
1996 Write_Eol_Keep_Blanks;
1997 end if;
1998 end if;
1999 end Output_Source_Line;
2000
2001 -----------------------------
2002 -- Remove_Warning_Messages --
2003 -----------------------------
2004
2005 procedure Remove_Warning_Messages (N : Node_Id) is
2006
2007 function Check_For_Warning (N : Node_Id) return Traverse_Result;
2008 -- This function checks one node for a possible warning message
2009
2010 function Check_All_Warnings is new Traverse_Func (Check_For_Warning);
2011 -- This defines the traversal operation
2012
2013 -----------------------
2014 -- Check_For_Warning --
2015 -----------------------
2016
2017 function Check_For_Warning (N : Node_Id) return Traverse_Result is
2018 Loc : constant Source_Ptr := Sloc (N);
2019 E : Error_Msg_Id;
2020
2021 function To_Be_Removed (E : Error_Msg_Id) return Boolean;
2022 -- Returns True for a message that is to be removed. Also adjusts
2023 -- warning count appropriately.
2024
2025 -------------------
2026 -- To_Be_Removed --
2027 -------------------
2028
2029 function To_Be_Removed (E : Error_Msg_Id) return Boolean is
2030 begin
2031 if E /= No_Error_Msg
2032
2033 -- Don't remove if location does not match
2034
2035 and then Errors.Table (E).Optr = Loc
2036
2037 -- Don't remove if not warning/info message. Note that we do
2038 -- not remove style messages here. They are warning messages
2039 -- but not ones we want removed in this context.
2040
2041 and then Errors.Table (E).Warn
2042
2043 -- Don't remove unconditional messages
2044
2045 and then not Errors.Table (E).Uncond
2046 then
2047 Warnings_Detected := Warnings_Detected - 1;
2048 return True;
2049
2050 -- No removal required
2051
2052 else
2053 return False;
2054 end if;
2055 end To_Be_Removed;
2056
2057 -- Start of processing for Check_For_Warnings
2058
2059 begin
2060 while To_Be_Removed (First_Error_Msg) loop
2061 First_Error_Msg := Errors.Table (First_Error_Msg).Next;
2062 end loop;
2063
2064 if First_Error_Msg = No_Error_Msg then
2065 Last_Error_Msg := No_Error_Msg;
2066 end if;
2067
2068 E := First_Error_Msg;
2069 while E /= No_Error_Msg loop
2070 while To_Be_Removed (Errors.Table (E).Next) loop
2071 Errors.Table (E).Next :=
2072 Errors.Table (Errors.Table (E).Next).Next;
2073
2074 if Errors.Table (E).Next = No_Error_Msg then
2075 Last_Error_Msg := E;
2076 end if;
2077 end loop;
2078
2079 E := Errors.Table (E).Next;
2080 end loop;
2081
2082 if Nkind (N) = N_Raise_Constraint_Error
2083 and then Original_Node (N) /= N
2084 and then No (Condition (N))
2085 then
2086 -- Warnings may have been posted on subexpressions of the original
2087 -- tree. We place the original node back on the tree to remove
2088 -- those warnings, whose sloc do not match those of any node in
2089 -- the current tree. Given that we are in unreachable code, this
2090 -- modification to the tree is harmless.
2091
2092 declare
2093 Status : Traverse_Final_Result;
2094
2095 begin
2096 if Is_List_Member (N) then
2097 Set_Condition (N, Original_Node (N));
2098 Status := Check_All_Warnings (Condition (N));
2099 else
2100 Rewrite (N, Original_Node (N));
2101 Status := Check_All_Warnings (N);
2102 end if;
2103
2104 return Status;
2105 end;
2106
2107 else
2108 return OK;
2109 end if;
2110 end Check_For_Warning;
2111
2112 -- Start of processing for Remove_Warning_Messages
2113
2114 begin
2115 if Warnings_Detected /= 0 then
2116 declare
2117 Discard : Traverse_Final_Result;
2118 pragma Warnings (Off, Discard);
2119
2120 begin
2121 Discard := Check_All_Warnings (N);
2122 end;
2123 end if;
2124 end Remove_Warning_Messages;
2125
2126 procedure Remove_Warning_Messages (L : List_Id) is
2127 Stat : Node_Id;
2128 begin
2129 if Is_Non_Empty_List (L) then
2130 Stat := First (L);
2131 while Present (Stat) loop
2132 Remove_Warning_Messages (Stat);
2133 Next (Stat);
2134 end loop;
2135 end if;
2136 end Remove_Warning_Messages;
2137
2138 ---------------------------
2139 -- Set_Identifier_Casing --
2140 ---------------------------
2141
2142 procedure Set_Identifier_Casing
2143 (Identifier_Name : System.Address;
2144 File_Name : System.Address)
2145 is
2146 Ident : constant Big_String_Ptr := To_Big_String_Ptr (Identifier_Name);
2147 File : constant Big_String_Ptr := To_Big_String_Ptr (File_Name);
2148 Flen : Natural;
2149
2150 Desired_Case : Casing_Type := Mixed_Case;
2151 -- Casing required for result. Default value of Mixed_Case is used if
2152 -- for some reason we cannot find the right file name in the table.
2153
2154 begin
2155 -- Get length of file name
2156
2157 Flen := 0;
2158 while File (Flen + 1) /= ASCII.NUL loop
2159 Flen := Flen + 1;
2160 end loop;
2161
2162 -- Loop through file names to find matching one. This is a bit slow, but
2163 -- we only do it in error situations so it is not so terrible. Note that
2164 -- if the loop does not exit, then the desired case will be left set to
2165 -- Mixed_Case, this can happen if the name was not in canonical form,
2166 -- and gets canonicalized on VMS. Possibly we could fix this by
2167 -- unconditionally canonicalizing these names ???
2168
2169 for J in 1 .. Last_Source_File loop
2170 Get_Name_String (Full_Debug_Name (J));
2171
2172 if Name_Len = Flen
2173 and then Name_Buffer (1 .. Name_Len) = String (File (1 .. Flen))
2174 then
2175 Desired_Case := Identifier_Casing (J);
2176 exit;
2177 end if;
2178 end loop;
2179
2180 -- Copy identifier as given to Name_Buffer
2181
2182 for J in Name_Buffer'Range loop
2183 Name_Buffer (J) := Ident (J);
2184
2185 if Name_Buffer (J) = ASCII.NUL then
2186 Name_Len := J - 1;
2187 exit;
2188 end if;
2189 end loop;
2190
2191 Set_Casing (Desired_Case);
2192 end Set_Identifier_Casing;
2193
2194 -----------------------
2195 -- Set_Ignore_Errors --
2196 -----------------------
2197
2198 procedure Set_Ignore_Errors (To : Boolean) is
2199 begin
2200 Errors_Must_Be_Ignored := To;
2201 end Set_Ignore_Errors;
2202
2203 ------------------------------
2204 -- Set_Msg_Insertion_Column --
2205 ------------------------------
2206
2207 procedure Set_Msg_Insertion_Column is
2208 begin
2209 if RM_Column_Check then
2210 Set_Msg_Str (" in column ");
2211 Set_Msg_Int (Int (Error_Msg_Col) + 1);
2212 end if;
2213 end Set_Msg_Insertion_Column;
2214
2215 ----------------------------
2216 -- Set_Msg_Insertion_Node --
2217 ----------------------------
2218
2219 procedure Set_Msg_Insertion_Node is
2220 K : Node_Kind;
2221
2222 begin
2223 Suppress_Message :=
2224 Error_Msg_Node_1 = Error
2225 or else Error_Msg_Node_1 = Any_Type;
2226
2227 if Error_Msg_Node_1 = Empty then
2228 Set_Msg_Blank_Conditional;
2229 Set_Msg_Str ("<empty>");
2230
2231 elsif Error_Msg_Node_1 = Error then
2232 Set_Msg_Blank;
2233 Set_Msg_Str ("<error>");
2234
2235 elsif Error_Msg_Node_1 = Standard_Void_Type then
2236 Set_Msg_Blank;
2237 Set_Msg_Str ("procedure name");
2238
2239 else
2240 Set_Msg_Blank_Conditional;
2241
2242 -- Output name
2243
2244 K := Nkind (Error_Msg_Node_1);
2245
2246 -- If we have operator case, skip quotes since name of operator
2247 -- itself will supply the required quotations. An operator can be an
2248 -- applied use in an expression or an explicit operator symbol, or an
2249 -- identifier whose name indicates it is an operator.
2250
2251 if K in N_Op
2252 or else K = N_Operator_Symbol
2253 or else K = N_Defining_Operator_Symbol
2254 or else ((K = N_Identifier or else K = N_Defining_Identifier)
2255 and then Is_Operator_Name (Chars (Error_Msg_Node_1)))
2256 then
2257 Set_Msg_Node (Error_Msg_Node_1);
2258
2259 -- Normal case, not an operator, surround with quotes
2260
2261 else
2262 Set_Msg_Quote;
2263 Set_Qualification (Error_Msg_Qual_Level, Error_Msg_Node_1);
2264 Set_Msg_Node (Error_Msg_Node_1);
2265 Set_Msg_Quote;
2266 end if;
2267 end if;
2268
2269 -- The following assignment ensures that a second ampersand insertion
2270 -- character will correspond to the Error_Msg_Node_2 parameter. We
2271 -- suppress possible validity checks in case operating in -gnatVa mode,
2272 -- and Error_Msg_Node_2 is not needed and has not been set.
2273
2274 declare
2275 pragma Suppress (Range_Check);
2276 begin
2277 Error_Msg_Node_1 := Error_Msg_Node_2;
2278 end;
2279 end Set_Msg_Insertion_Node;
2280
2281 --------------------------------------
2282 -- Set_Msg_Insertion_Type_Reference --
2283 --------------------------------------
2284
2285 procedure Set_Msg_Insertion_Type_Reference (Flag : Source_Ptr) is
2286 Ent : Entity_Id;
2287
2288 begin
2289 Set_Msg_Blank;
2290
2291 if Error_Msg_Node_1 = Standard_Void_Type then
2292 Set_Msg_Str ("package or procedure name");
2293 return;
2294
2295 elsif Error_Msg_Node_1 = Standard_Exception_Type then
2296 Set_Msg_Str ("exception name");
2297 return;
2298
2299 elsif Error_Msg_Node_1 = Any_Access
2300 or else Error_Msg_Node_1 = Any_Array
2301 or else Error_Msg_Node_1 = Any_Boolean
2302 or else Error_Msg_Node_1 = Any_Character
2303 or else Error_Msg_Node_1 = Any_Composite
2304 or else Error_Msg_Node_1 = Any_Discrete
2305 or else Error_Msg_Node_1 = Any_Fixed
2306 or else Error_Msg_Node_1 = Any_Integer
2307 or else Error_Msg_Node_1 = Any_Modular
2308 or else Error_Msg_Node_1 = Any_Numeric
2309 or else Error_Msg_Node_1 = Any_Real
2310 or else Error_Msg_Node_1 = Any_Scalar
2311 or else Error_Msg_Node_1 = Any_String
2312 then
2313 Get_Unqualified_Decoded_Name_String (Chars (Error_Msg_Node_1));
2314 Set_Msg_Name_Buffer;
2315 return;
2316
2317 elsif Error_Msg_Node_1 = Universal_Real then
2318 Set_Msg_Str ("type universal real");
2319 return;
2320
2321 elsif Error_Msg_Node_1 = Universal_Integer then
2322 Set_Msg_Str ("type universal integer");
2323 return;
2324
2325 elsif Error_Msg_Node_1 = Universal_Fixed then
2326 Set_Msg_Str ("type universal fixed");
2327 return;
2328 end if;
2329
2330 -- Special case of anonymous array
2331
2332 if Nkind (Error_Msg_Node_1) in N_Entity
2333 and then Is_Array_Type (Error_Msg_Node_1)
2334 and then Present (Related_Array_Object (Error_Msg_Node_1))
2335 then
2336 Set_Msg_Str ("type of ");
2337 Set_Msg_Node (Related_Array_Object (Error_Msg_Node_1));
2338 Set_Msg_Str (" declared");
2339 Set_Msg_Insertion_Line_Number
2340 (Sloc (Related_Array_Object (Error_Msg_Node_1)), Flag);
2341 return;
2342 end if;
2343
2344 -- If we fall through, it is not a special case, so first output
2345 -- the name of the type, preceded by private for a private type
2346
2347 if Is_Private_Type (Error_Msg_Node_1) then
2348 Set_Msg_Str ("private type ");
2349 else
2350 Set_Msg_Str ("type ");
2351 end if;
2352
2353 Ent := Error_Msg_Node_1;
2354
2355 if Is_Internal_Name (Chars (Ent)) then
2356 Unwind_Internal_Type (Ent);
2357 end if;
2358
2359 -- Types in Standard are displayed as "Standard.name"
2360
2361 if Sloc (Ent) <= Standard_Location then
2362 Set_Msg_Quote;
2363 Set_Msg_Str ("Standard.");
2364 Set_Msg_Node (Ent);
2365 Add_Class;
2366 Set_Msg_Quote;
2367
2368 -- Types in other language defined units are displayed as
2369 -- "package-name.type-name"
2370
2371 elsif
2372 Is_Predefined_File_Name (Unit_File_Name (Get_Source_Unit (Ent)))
2373 then
2374 Get_Unqualified_Decoded_Name_String
2375 (Unit_Name (Get_Source_Unit (Ent)));
2376 Name_Len := Name_Len - 2;
2377 Set_Msg_Quote;
2378 Set_Casing (Mixed_Case);
2379 Set_Msg_Name_Buffer;
2380 Set_Msg_Char ('.');
2381 Set_Casing (Mixed_Case);
2382 Set_Msg_Node (Ent);
2383 Add_Class;
2384 Set_Msg_Quote;
2385
2386 -- All other types display as "type name" defined at line xxx
2387 -- possibly qualified if qualification is requested.
2388
2389 else
2390 Set_Msg_Quote;
2391 Set_Qualification (Error_Msg_Qual_Level, Ent);
2392 Set_Msg_Node (Ent);
2393 Add_Class;
2394
2395 -- If Ent is an anonymous subprogram type, there is no name to print,
2396 -- so remove enclosing quotes.
2397
2398 if Buffer_Ends_With ("""") then
2399 Buffer_Remove ("""");
2400 else
2401 Set_Msg_Quote;
2402 end if;
2403 end if;
2404
2405 -- If the original type did not come from a predefined file, add the
2406 -- location where the type was defined.
2407
2408 if Sloc (Error_Msg_Node_1) > Standard_Location
2409 and then
2410 not Is_Predefined_File_Name
2411 (Unit_File_Name (Get_Source_Unit (Error_Msg_Node_1)))
2412 then
2413 Set_Msg_Str (" defined");
2414 Set_Msg_Insertion_Line_Number (Sloc (Error_Msg_Node_1), Flag);
2415
2416 -- If it did come from a predefined file, deal with the case where
2417 -- this was a file with a generic instantiation from elsewhere.
2418
2419 else
2420 if Sloc (Error_Msg_Node_1) > Standard_Location then
2421 declare
2422 Iloc : constant Source_Ptr :=
2423 Instantiation_Location (Sloc (Error_Msg_Node_1));
2424
2425 begin
2426 if Iloc /= No_Location
2427 and then not Suppress_Instance_Location
2428 then
2429 Set_Msg_Str (" from instance");
2430 Set_Msg_Insertion_Line_Number (Iloc, Flag);
2431 end if;
2432 end;
2433 end if;
2434 end if;
2435 end Set_Msg_Insertion_Type_Reference;
2436
2437 ---------------------------------
2438 -- Set_Msg_Insertion_Unit_Name --
2439 ---------------------------------
2440
2441 procedure Set_Msg_Insertion_Unit_Name (Suffix : Boolean := True) is
2442 begin
2443 if Error_Msg_Unit_1 = No_Unit_Name then
2444 null;
2445
2446 elsif Error_Msg_Unit_1 = Error_Unit_Name then
2447 Set_Msg_Blank;
2448 Set_Msg_Str ("<error>");
2449
2450 else
2451 Get_Unit_Name_String (Error_Msg_Unit_1, Suffix);
2452 Set_Msg_Blank;
2453 Set_Msg_Quote;
2454 Set_Msg_Name_Buffer;
2455 Set_Msg_Quote;
2456 end if;
2457
2458 -- The following assignment ensures that a second percent insertion
2459 -- character will correspond to the Error_Msg_Unit_2 parameter. We
2460 -- suppress possible validity checks in case operating in -gnatVa mode,
2461 -- and Error_Msg_Unit_2 is not needed and has not been set.
2462
2463 declare
2464 pragma Suppress (Range_Check);
2465 begin
2466 Error_Msg_Unit_1 := Error_Msg_Unit_2;
2467 end;
2468 end Set_Msg_Insertion_Unit_Name;
2469
2470 ------------------
2471 -- Set_Msg_Node --
2472 ------------------
2473
2474 procedure Set_Msg_Node (Node : Node_Id) is
2475 Ent : Entity_Id;
2476 Nam : Name_Id;
2477
2478 begin
2479 if Nkind (Node) = N_Designator then
2480 Set_Msg_Node (Name (Node));
2481 Set_Msg_Char ('.');
2482 Set_Msg_Node (Identifier (Node));
2483 return;
2484
2485 elsif Nkind (Node) = N_Defining_Program_Unit_Name then
2486 Set_Msg_Node (Name (Node));
2487 Set_Msg_Char ('.');
2488 Set_Msg_Node (Defining_Identifier (Node));
2489 return;
2490
2491 elsif Nkind (Node) = N_Selected_Component then
2492 Set_Msg_Node (Prefix (Node));
2493 Set_Msg_Char ('.');
2494 Set_Msg_Node (Selector_Name (Node));
2495 return;
2496 end if;
2497
2498 -- The only remaining possibilities are identifiers, defining
2499 -- identifiers, pragmas, and pragma argument associations.
2500
2501 if Nkind (Node) = N_Pragma then
2502 Nam := Pragma_Name (Node);
2503
2504 -- The other cases have Chars fields, and we want to test for possible
2505 -- internal names, which generally represent something gone wrong. An
2506 -- exception is the case of internal type names, where we try to find a
2507 -- reasonable external representation for the external name
2508
2509 elsif Is_Internal_Name (Chars (Node))
2510 and then
2511 ((Is_Entity_Name (Node)
2512 and then Present (Entity (Node))
2513 and then Is_Type (Entity (Node)))
2514 or else
2515 (Nkind (Node) = N_Defining_Identifier and then Is_Type (Node)))
2516 then
2517 if Nkind (Node) = N_Identifier then
2518 Ent := Entity (Node);
2519 else
2520 Ent := Node;
2521 end if;
2522
2523 -- If the type is the designated type of an access_to_subprogram,
2524 -- there is no name to provide in the call.
2525
2526 if Ekind (Ent) = E_Subprogram_Type then
2527 return;
2528 else
2529 Unwind_Internal_Type (Ent);
2530 Nam := Chars (Ent);
2531 end if;
2532
2533 -- If not internal name, just use name in Chars field
2534
2535 else
2536 Nam := Chars (Node);
2537 end if;
2538
2539 -- At this stage, the name to output is in Nam
2540
2541 Get_Unqualified_Decoded_Name_String (Nam);
2542
2543 -- Remove trailing upper case letters from the name (useful for
2544 -- dealing with some cases of internal names.
2545
2546 while Name_Len > 1 and then Name_Buffer (Name_Len) in 'A' .. 'Z' loop
2547 Name_Len := Name_Len - 1;
2548 end loop;
2549
2550 -- If we have any of the names from standard that start with the
2551 -- characters "any " (e.g. Any_Type), then kill the message since
2552 -- almost certainly it is a junk cascaded message.
2553
2554 if Name_Len > 4
2555 and then Name_Buffer (1 .. 4) = "any "
2556 then
2557 Kill_Message := True;
2558 end if;
2559
2560 -- Now we have to set the proper case. If we have a source location
2561 -- then do a check to see if the name in the source is the same name
2562 -- as the name in the Names table, except for possible differences
2563 -- in case, which is the case when we can copy from the source.
2564
2565 declare
2566 Src_Loc : constant Source_Ptr := Sloc (Node);
2567 Sbuffer : Source_Buffer_Ptr;
2568 Ref_Ptr : Integer;
2569 Src_Ptr : Source_Ptr;
2570
2571 begin
2572 Ref_Ptr := 1;
2573 Src_Ptr := Src_Loc;
2574
2575 -- For standard locations, always use mixed case
2576
2577 if Src_Loc <= No_Location
2578 or else Sloc (Node) <= No_Location
2579 then
2580 Set_Casing (Mixed_Case);
2581
2582 else
2583 -- Determine if the reference we are dealing with corresponds to
2584 -- text at the point of the error reference. This will often be
2585 -- the case for simple identifier references, and is the case
2586 -- where we can copy the spelling from the source.
2587
2588 Sbuffer := Source_Text (Get_Source_File_Index (Src_Loc));
2589
2590 while Ref_Ptr <= Name_Len loop
2591 exit when
2592 Fold_Lower (Sbuffer (Src_Ptr)) /=
2593 Fold_Lower (Name_Buffer (Ref_Ptr));
2594 Ref_Ptr := Ref_Ptr + 1;
2595 Src_Ptr := Src_Ptr + 1;
2596 end loop;
2597
2598 -- If we get through the loop without a mismatch, then output the
2599 -- name the way it is spelled in the source program
2600
2601 if Ref_Ptr > Name_Len then
2602 Src_Ptr := Src_Loc;
2603
2604 for J in 1 .. Name_Len loop
2605 Name_Buffer (J) := Sbuffer (Src_Ptr);
2606 Src_Ptr := Src_Ptr + 1;
2607 end loop;
2608
2609 -- Otherwise set the casing using the default identifier casing
2610
2611 else
2612 Set_Casing (Identifier_Casing (Flag_Source), Mixed_Case);
2613 end if;
2614 end if;
2615 end;
2616
2617 Set_Msg_Name_Buffer;
2618 Add_Class;
2619 end Set_Msg_Node;
2620
2621 ------------------
2622 -- Set_Msg_Text --
2623 ------------------
2624
2625 procedure Set_Msg_Text (Text : String; Flag : Source_Ptr) is
2626 C : Character; -- Current character
2627 P : Natural; -- Current index;
2628
2629 begin
2630 Manual_Quote_Mode := False;
2631 Is_Unconditional_Msg := False;
2632 Msglen := 0;
2633 Flag_Source := Get_Source_File_Index (Flag);
2634
2635 P := Text'First;
2636 while P <= Text'Last loop
2637 C := Text (P);
2638 P := P + 1;
2639
2640 -- Check for insertion character or sequence
2641
2642 case C is
2643 when '%' =>
2644 if P <= Text'Last and then Text (P) = '%' then
2645 P := P + 1;
2646 Set_Msg_Insertion_Name_Literal;
2647 else
2648 Set_Msg_Insertion_Name;
2649 end if;
2650
2651 when '$' =>
2652 if P <= Text'Last and then Text (P) = '$' then
2653 P := P + 1;
2654 Set_Msg_Insertion_Unit_Name (Suffix => False);
2655 else
2656 Set_Msg_Insertion_Unit_Name;
2657 end if;
2658
2659 when '{' =>
2660 Set_Msg_Insertion_File_Name;
2661
2662 when '}' =>
2663 Set_Msg_Insertion_Type_Reference (Flag);
2664
2665 when '*' =>
2666 Set_Msg_Insertion_Reserved_Name;
2667
2668 when '&' =>
2669 Set_Msg_Insertion_Node;
2670
2671 when '#' =>
2672 Set_Msg_Insertion_Line_Number (Error_Msg_Sloc, Flag);
2673
2674 when '\' =>
2675 Continuation := True;
2676
2677 if Text (P) = '\' then
2678 Continuation_New_Line := True;
2679 P := P + 1;
2680 end if;
2681
2682 when '@' =>
2683 Set_Msg_Insertion_Column;
2684
2685 when '>' =>
2686 Set_Msg_Insertion_Run_Time_Name;
2687
2688 when '^' =>
2689 Set_Msg_Insertion_Uint;
2690
2691 when '`' =>
2692 Manual_Quote_Mode := not Manual_Quote_Mode;
2693 Set_Msg_Char ('"');
2694
2695 when '!' =>
2696 Is_Unconditional_Msg := True;
2697
2698 when '?' =>
2699 null; -- already dealt with
2700
2701 when '<' =>
2702 null; -- already dealt with
2703
2704 when '|' =>
2705 null; -- already dealt with
2706
2707 when ''' =>
2708 Set_Msg_Char (Text (P));
2709 P := P + 1;
2710
2711 when '~' =>
2712 Set_Msg_Str (Error_Msg_String (1 .. Error_Msg_Strlen));
2713
2714 -- Upper case letter
2715
2716 when 'A' .. 'Z' =>
2717
2718 -- Start of reserved word if two or more
2719
2720 if P <= Text'Last and then Text (P) in 'A' .. 'Z' then
2721 P := P - 1;
2722 Set_Msg_Insertion_Reserved_Word (Text, P);
2723
2724 -- Single upper case letter is just inserted
2725
2726 else
2727 Set_Msg_Char (C);
2728 end if;
2729
2730 -- Normal character with no special treatment
2731
2732 when others =>
2733 Set_Msg_Char (C);
2734 end case;
2735 end loop;
2736
2737 VMS_Convert;
2738 end Set_Msg_Text;
2739
2740 ----------------
2741 -- Set_Posted --
2742 ----------------
2743
2744 procedure Set_Posted (N : Node_Id) is
2745 P : Node_Id;
2746
2747 begin
2748 if Is_Serious_Error then
2749
2750 -- We always set Error_Posted on the node itself
2751
2752 Set_Error_Posted (N);
2753
2754 -- If it is a subexpression, then set Error_Posted on parents up to
2755 -- and including the first non-subexpression construct. This helps
2756 -- avoid cascaded error messages within a single expression.
2757
2758 P := N;
2759 loop
2760 P := Parent (P);
2761 exit when No (P);
2762 Set_Error_Posted (P);
2763 exit when Nkind (P) not in N_Subexpr;
2764 end loop;
2765
2766 -- A special check, if we just posted an error on an attribute
2767 -- definition clause, then also set the entity involved as posted.
2768 -- For example, this stops complaining about the alignment after
2769 -- complaining about the size, which is likely to be useless.
2770
2771 if Nkind (P) = N_Attribute_Definition_Clause then
2772 if Is_Entity_Name (Name (P)) then
2773 Set_Error_Posted (Entity (Name (P)));
2774 end if;
2775 end if;
2776 end if;
2777 end Set_Posted;
2778
2779 -----------------------
2780 -- Set_Qualification --
2781 -----------------------
2782
2783 procedure Set_Qualification (N : Nat; E : Entity_Id) is
2784 begin
2785 if N /= 0 and then Scope (E) /= Standard_Standard then
2786 Set_Qualification (N - 1, Scope (E));
2787 Set_Msg_Node (Scope (E));
2788 Set_Msg_Char ('.');
2789 end if;
2790 end Set_Qualification;
2791
2792 ------------------------
2793 -- Special_Msg_Delete --
2794 ------------------------
2795
2796 -- Is it really right to have all this specialized knowledge in errout?
2797
2798 function Special_Msg_Delete
2799 (Msg : String;
2800 N : Node_Or_Entity_Id;
2801 E : Node_Or_Entity_Id) return Boolean
2802 is
2803 begin
2804 -- Never delete messages in -gnatdO mode
2805
2806 if Debug_Flag_OO then
2807 return False;
2808
2809 -- Processing for "atomic access cannot be guaranteed"
2810
2811 elsif Msg = "atomic access to & cannot be guaranteed" then
2812
2813 -- When an atomic object refers to a non-atomic type in the same
2814 -- scope, we implicitly make the type atomic. In the non-error case
2815 -- this is surely safe (and in fact prevents an error from occurring
2816 -- if the type is not atomic by default). But if the object cannot be
2817 -- made atomic, then we introduce an extra junk message by this
2818 -- manipulation, which we get rid of here.
2819
2820 -- We identify this case by the fact that it references a type for
2821 -- which Is_Atomic is set, but there is no Atomic pragma setting it.
2822
2823 if Is_Type (E)
2824 and then Is_Atomic (E)
2825 and then No (Get_Rep_Pragma (E, Name_Atomic))
2826 then
2827 return True;
2828 end if;
2829
2830 -- Processing for "Size too small" messages
2831
2832 elsif Msg = "size for& too small, minimum allowed is ^" then
2833
2834 -- Suppress "size too small" errors in CodePeer mode, since pragma
2835 -- Pack is also ignored in this configuration.
2836
2837 if CodePeer_Mode then
2838 return True;
2839
2840 -- When a size is wrong for a frozen type there is no explicit size
2841 -- clause, and other errors have occurred, suppress the message,
2842 -- since it is likely that this size error is a cascaded result of
2843 -- other errors. The reason we eliminate unfrozen types is that
2844 -- messages issued before the freeze type are for sure OK.
2845
2846 elsif Is_Frozen (E)
2847 and then Serious_Errors_Detected > 0
2848 and then Nkind (N) /= N_Component_Clause
2849 and then Nkind (Parent (N)) /= N_Component_Clause
2850 and then
2851 No (Get_Attribute_Definition_Clause (E, Attribute_Size))
2852 and then
2853 No (Get_Attribute_Definition_Clause (E, Attribute_Object_Size))
2854 and then
2855 No (Get_Attribute_Definition_Clause (E, Attribute_Value_Size))
2856 then
2857 return True;
2858 end if;
2859 end if;
2860
2861 -- All special tests complete, so go ahead with message
2862
2863 return False;
2864 end Special_Msg_Delete;
2865
2866 --------------------------
2867 -- Unwind_Internal_Type --
2868 --------------------------
2869
2870 procedure Unwind_Internal_Type (Ent : in out Entity_Id) is
2871 Derived : Boolean := False;
2872 Mchar : Character;
2873 Old_Ent : Entity_Id;
2874
2875 begin
2876 -- Undo placement of a quote, since we will put it back later
2877
2878 Mchar := Msg_Buffer (Msglen);
2879
2880 if Mchar = '"' then
2881 Msglen := Msglen - 1;
2882 end if;
2883
2884 -- The loop here deals with recursive types, we are trying to find a
2885 -- related entity that is not an implicit type. Note that the check with
2886 -- Old_Ent stops us from getting "stuck". Also, we don't output the
2887 -- "type derived from" message more than once in the case where we climb
2888 -- up multiple levels.
2889
2890 Find : loop
2891 Old_Ent := Ent;
2892
2893 -- Implicit access type, use directly designated type In Ada 2005,
2894 -- the designated type may be an anonymous access to subprogram, in
2895 -- which case we can only point to its definition.
2896
2897 if Is_Access_Type (Ent) then
2898 if Ekind (Ent) = E_Access_Subprogram_Type
2899 or else Ekind (Ent) = E_Anonymous_Access_Subprogram_Type
2900 or else Is_Access_Protected_Subprogram_Type (Ent)
2901 then
2902 Ent := Directly_Designated_Type (Ent);
2903
2904 if not Comes_From_Source (Ent) then
2905 if Buffer_Ends_With ("type ") then
2906 Buffer_Remove ("type ");
2907 end if;
2908
2909 if Is_Itype (Ent) then
2910 declare
2911 Assoc : constant Node_Id :=
2912 Associated_Node_For_Itype (Ent);
2913
2914 begin
2915 if Nkind (Assoc) in N_Subprogram_Specification then
2916
2917 -- Anonymous access to subprogram in a signature.
2918 -- Indicate the enclosing subprogram.
2919
2920 Ent :=
2921 Defining_Unit_Name
2922 (Associated_Node_For_Itype (Ent));
2923 Set_Msg_Str
2924 ("access to subprogram declared in profile of ");
2925
2926 else
2927 Set_Msg_Str ("access to subprogram with profile ");
2928 end if;
2929 end;
2930 end if;
2931
2932 elsif Ekind (Ent) = E_Function then
2933 Set_Msg_Str ("access to function ");
2934 else
2935 Set_Msg_Str ("access to procedure ");
2936 end if;
2937
2938 exit Find;
2939
2940 -- Type is access to object, named or anonymous
2941
2942 else
2943 Set_Msg_Str ("access to ");
2944 Ent := Directly_Designated_Type (Ent);
2945 end if;
2946
2947 -- Classwide type
2948
2949 elsif Is_Class_Wide_Type (Ent) then
2950 Class_Flag := True;
2951 Ent := Root_Type (Ent);
2952
2953 -- Use base type if this is a subtype
2954
2955 elsif Ent /= Base_Type (Ent) then
2956 Buffer_Remove ("type ");
2957
2958 -- Avoid duplication "subtype of subtype of", and also replace
2959 -- "derived from subtype of" simply by "derived from"
2960
2961 if not Buffer_Ends_With ("subtype of ")
2962 and then not Buffer_Ends_With ("derived from ")
2963 then
2964 Set_Msg_Str ("subtype of ");
2965 end if;
2966
2967 Ent := Base_Type (Ent);
2968
2969 -- If this is a base type with a first named subtype, use the first
2970 -- named subtype instead. This is not quite accurate in all cases,
2971 -- but it makes too much noise to be accurate and add 'Base in all
2972 -- cases. Note that we only do this is the first named subtype is not
2973 -- itself an internal name. This avoids the obvious loop (subtype ->
2974 -- basetype -> subtype) which would otherwise occur!)
2975
2976 else
2977 declare
2978 FST : constant Entity_Id := First_Subtype (Ent);
2979
2980 begin
2981 if not Is_Internal_Name (Chars (FST)) then
2982 Ent := FST;
2983 exit Find;
2984
2985 -- Otherwise use root type
2986
2987 else
2988 if not Derived then
2989 Buffer_Remove ("type ");
2990
2991 -- Test for "subtype of type derived from" which seems
2992 -- excessive and is replaced by "type derived from".
2993
2994 Buffer_Remove ("subtype of");
2995
2996 -- Avoid duplicated "type derived from type derived from"
2997
2998 if not Buffer_Ends_With ("type derived from ") then
2999 Set_Msg_Str ("type derived from ");
3000 end if;
3001
3002 Derived := True;
3003 end if;
3004 end if;
3005 end;
3006
3007 Ent := Etype (Ent);
3008 end if;
3009
3010 -- If we are stuck in a loop, get out and settle for the internal
3011 -- name after all. In this case we set to kill the message if it is
3012 -- not the first error message (we really try hard not to show the
3013 -- dirty laundry of the implementation to the poor user!)
3014
3015 if Ent = Old_Ent then
3016 Kill_Message := True;
3017 exit Find;
3018 end if;
3019
3020 -- Get out if we finally found a non-internal name to use
3021
3022 exit Find when not Is_Internal_Name (Chars (Ent));
3023 end loop Find;
3024
3025 if Mchar = '"' then
3026 Set_Msg_Char ('"');
3027 end if;
3028 end Unwind_Internal_Type;
3029
3030 -----------------
3031 -- VMS_Convert --
3032 -----------------
3033
3034 procedure VMS_Convert is
3035 P : Natural;
3036 L : Natural;
3037 N : Natural;
3038
3039 begin
3040 if not OpenVMS then
3041 return;
3042 end if;
3043
3044 P := Msg_Buffer'First;
3045 loop
3046 if P >= Msglen then
3047 return;
3048 end if;
3049
3050 if Msg_Buffer (P) = '-' then
3051 for G in Gnames'Range loop
3052 L := Gnames (G)'Length;
3053
3054 -- See if we have "-ggg switch", where ggg is Gnames entry
3055
3056 if P + L + 7 <= Msglen
3057 and then Msg_Buffer (P + 1 .. P + L) = Gnames (G).all
3058 and then Msg_Buffer (P + L + 1 .. P + L + 7) = " switch"
3059 then
3060 -- Replace by "/vvv qualifier", where vvv is Vnames entry
3061
3062 N := Vnames (G)'Length;
3063 Msg_Buffer (P + N + 11 .. Msglen + N - L + 3) :=
3064 Msg_Buffer (P + L + 8 .. Msglen);
3065 Msg_Buffer (P) := '/';
3066 Msg_Buffer (P + 1 .. P + N) := Vnames (G).all;
3067 Msg_Buffer (P + N + 1 .. P + N + 10) := " qualifier";
3068 P := P + N + 10;
3069 Msglen := Msglen + N - L + 3;
3070 exit;
3071 end if;
3072 end loop;
3073 end if;
3074
3075 P := P + 1;
3076 end loop;
3077 end VMS_Convert;
3078
3079 end Errout;