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