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