[multiple changes]
[gcc.git] / gcc / ada / errout.adb
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- E R R O U T --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-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. Don't give this message if
1620 -- the Main_Source line is unknown (this happens in error situations,
1621 -- e.g. when integrated preprocessing fails).
1622
1623 if Main_Source_File /= No_Source_File then
1624 Write_Str (" ");
1625 Write_Int (Num_Source_Lines (Main_Source_File));
1626
1627 if Num_Source_Lines (Main_Source_File) = 1 then
1628 Write_Str (" line: ");
1629 else
1630 Write_Str (" lines: ");
1631 end if;
1632 end if;
1633
1634 if Total_Errors_Detected = 0 then
1635 Write_Str ("No errors");
1636
1637 elsif Total_Errors_Detected = 1 then
1638 Write_Str ("1 error");
1639
1640 else
1641 Write_Int (Total_Errors_Detected);
1642 Write_Str (" errors");
1643 end if;
1644
1645 if Warnings_Detected /= 0 then
1646 Write_Str (", ");
1647 Write_Int (Warnings_Detected);
1648 Write_Str (" warning");
1649
1650 if Warnings_Detected /= 1 then
1651 Write_Char ('s');
1652 end if;
1653
1654 if Warning_Mode = Treat_As_Error then
1655 Write_Str (" (treated as error");
1656
1657 if Warnings_Detected /= 1 then
1658 Write_Char ('s');
1659 end if;
1660
1661 Write_Char (')');
1662 end if;
1663 end if;
1664
1665 Write_Eol;
1666 Set_Standard_Output;
1667 end Write_Error_Summary;
1668
1669 ------------------
1670 -- Write_Header --
1671 ------------------
1672
1673 procedure Write_Header (Sfile : Source_File_Index) is
1674 begin
1675 if Verbose_Mode or Full_List then
1676 if Original_Operating_Mode = Generate_Code then
1677 Write_Str ("Compiling: ");
1678 else
1679 Write_Str ("Checking: ");
1680 end if;
1681
1682 Write_Name (Full_File_Name (Sfile));
1683
1684 if not Debug_Flag_7 then
1685 Write_Str (" (source file time stamp: ");
1686 Write_Time_Stamp (Sfile);
1687 Write_Char (')');
1688 end if;
1689
1690 Write_Eol;
1691 end if;
1692 end Write_Header;
1693
1694 ----------------------
1695 -- Write_Max_Errors --
1696 ----------------------
1697
1698 procedure Write_Max_Errors is
1699 begin
1700 if Maximum_Messages /= 0 then
1701 if Warnings_Detected >= Maximum_Messages then
1702 Set_Standard_Error;
1703 Write_Line ("maximum number of warnings output");
1704 Write_Line ("any further warnings suppressed");
1705 Set_Standard_Output;
1706 end if;
1707
1708 -- If too many errors print message
1709
1710 if Total_Errors_Detected >= Maximum_Messages then
1711 Set_Standard_Error;
1712 Write_Line ("fatal error: maximum number of errors detected");
1713 Set_Standard_Output;
1714 end if;
1715 end if;
1716 end Write_Max_Errors;
1717
1718 -- Start of processing for Output_Messages
1719
1720 begin
1721 -- Error if Finalize has not been called
1722
1723 if not Finalize_Called then
1724 raise Program_Error;
1725 end if;
1726
1727 -- Reset current error source file if the main unit has a pragma
1728 -- Source_Reference. This ensures outputting the proper name of
1729 -- the source file in this situation.
1730
1731 if Main_Source_File = No_Source_File
1732 or else Num_SRef_Pragmas (Main_Source_File) /= 0
1733 then
1734 Current_Error_Source_File := No_Source_File;
1735 end if;
1736
1737 -- Brief Error mode
1738
1739 if Brief_Output or (not Full_List and not Verbose_Mode) then
1740 Set_Standard_Error;
1741
1742 E := First_Error_Msg;
1743 while E /= No_Error_Msg loop
1744 if not Errors.Table (E).Deleted and then not Debug_Flag_KK then
1745 if Full_Path_Name_For_Brief_Errors then
1746 Write_Name (Full_Ref_Name (Errors.Table (E).Sfile));
1747 else
1748 Write_Name (Reference_Name (Errors.Table (E).Sfile));
1749 end if;
1750
1751 Write_Char (':');
1752 Write_Int (Int (Physical_To_Logical
1753 (Errors.Table (E).Line,
1754 Errors.Table (E).Sfile)));
1755 Write_Char (':');
1756
1757 if Errors.Table (E).Col < 10 then
1758 Write_Char ('0');
1759 end if;
1760
1761 Write_Int (Int (Errors.Table (E).Col));
1762 Write_Str (": ");
1763 Output_Msg_Text (E);
1764 Write_Eol;
1765 end if;
1766
1767 E := Errors.Table (E).Next;
1768 end loop;
1769
1770 Set_Standard_Output;
1771 end if;
1772
1773 -- Full source listing case
1774
1775 if Full_List then
1776 List_Pragmas_Index := 1;
1777 List_Pragmas_Mode := True;
1778 E := First_Error_Msg;
1779
1780 -- Normal case, to stdout (copyright notice already output)
1781
1782 if Full_List_File_Name = null then
1783 if not Debug_Flag_7 then
1784 Write_Eol;
1785 end if;
1786
1787 -- Output to file
1788
1789 else
1790 Create_List_File_Access.all (Full_List_File_Name.all);
1791 Set_Special_Output (Write_List_Info_Access.all'Access);
1792
1793 -- Write copyright notice to file
1794
1795 if not Debug_Flag_7 then
1796 Write_Str ("GNAT ");
1797 Write_Str (Gnat_Version_String);
1798 Write_Eol;
1799 Write_Str ("Copyright 1992-" &
1800 Current_Year &
1801 ", Free Software Foundation, Inc.");
1802 Write_Eol;
1803 end if;
1804 end if;
1805
1806 -- First list extended main source file units with errors
1807
1808 for U in Main_Unit .. Last_Unit loop
1809 if In_Extended_Main_Source_Unit (Cunit_Entity (U))
1810
1811 -- If debug flag d.m is set, only the main source is listed
1812
1813 and then (U = Main_Unit or else not Debug_Flag_Dot_M)
1814
1815 -- If the unit of the entity does not come from source, it is
1816 -- an implicit subprogram declaration for a child subprogram.
1817 -- Do not emit errors for it, they are listed with the body.
1818
1819 and then
1820 (No (Cunit_Entity (U))
1821 or else Comes_From_Source (Cunit_Entity (U))
1822 or else not Is_Subprogram (Cunit_Entity (U)))
1823 then
1824 declare
1825 Sfile : constant Source_File_Index := Source_Index (U);
1826
1827 begin
1828 Write_Eol;
1829
1830 -- Only write the header if Sfile is known
1831
1832 if Sfile /= No_Source_File then
1833 Write_Header (Sfile);
1834 Write_Eol;
1835 end if;
1836
1837 -- Normally, we don't want an "error messages from file"
1838 -- message when listing the entire file, so we set the
1839 -- current source file as the current error source file.
1840 -- However, the old style of doing things was to list this
1841 -- message if pragma Source_Reference is present, even for
1842 -- the main unit. Since the purpose of the -gnatd.m switch
1843 -- is to duplicate the old behavior, we skip the reset if
1844 -- this debug flag is set.
1845
1846 if not Debug_Flag_Dot_M then
1847 Current_Error_Source_File := Sfile;
1848 end if;
1849
1850 -- Only output the listing if Sfile is known, to avoid
1851 -- crashing the compiler.
1852
1853 if Sfile /= No_Source_File then
1854 for N in 1 .. Last_Source_Line (Sfile) loop
1855 while E /= No_Error_Msg
1856 and then Errors.Table (E).Deleted
1857 loop
1858 E := Errors.Table (E).Next;
1859 end loop;
1860
1861 Err_Flag :=
1862 E /= No_Error_Msg
1863 and then Errors.Table (E).Line = N
1864 and then Errors.Table (E).Sfile = Sfile;
1865
1866 Output_Source_Line (N, Sfile, Err_Flag);
1867
1868 if Err_Flag then
1869 Output_Error_Msgs (E);
1870
1871 if not Debug_Flag_2 then
1872 Write_Eol;
1873 end if;
1874 end if;
1875 end loop;
1876 end if;
1877 end;
1878 end if;
1879 end loop;
1880
1881 -- Then output errors, if any, for subsidiary units not in the
1882 -- main extended unit.
1883
1884 -- Note: if debug flag d.m set, include errors for any units other
1885 -- than the main unit in the extended source unit (e.g. spec and
1886 -- subunits for a body).
1887
1888 while E /= No_Error_Msg
1889 and then (not In_Extended_Main_Source_Unit (Errors.Table (E).Sptr)
1890 or else
1891 (Debug_Flag_Dot_M
1892 and then Get_Source_Unit
1893 (Errors.Table (E).Sptr) /= Main_Unit))
1894 loop
1895 if Errors.Table (E).Deleted then
1896 E := Errors.Table (E).Next;
1897
1898 else
1899 Write_Eol;
1900 Output_Source_Line
1901 (Errors.Table (E).Line, Errors.Table (E).Sfile, True);
1902 Output_Error_Msgs (E);
1903 end if;
1904 end loop;
1905
1906 -- If output to file, write extra copy of error summary to the
1907 -- output file, and then close it.
1908
1909 if Full_List_File_Name /= null then
1910 Write_Error_Summary;
1911 Write_Max_Errors;
1912 Close_List_File_Access.all;
1913 Cancel_Special_Output;
1914 end if;
1915 end if;
1916
1917 -- Verbose mode (error lines only with error flags). Normally this is
1918 -- ignored in full list mode, unless we are listing to a file, in which
1919 -- case we still generate -gnatv output to standard output.
1920
1921 if Verbose_Mode
1922 and then (not Full_List or else Full_List_File_Name /= null)
1923 then
1924 Write_Eol;
1925
1926 -- Output the header only when Main_Source_File is known
1927
1928 if Main_Source_File /= No_Source_File then
1929 Write_Header (Main_Source_File);
1930 end if;
1931
1932 E := First_Error_Msg;
1933
1934 -- Loop through error lines
1935
1936 while E /= No_Error_Msg loop
1937 if Errors.Table (E).Deleted then
1938 E := Errors.Table (E).Next;
1939 else
1940 Write_Eol;
1941 Output_Source_Line
1942 (Errors.Table (E).Line, Errors.Table (E).Sfile, True);
1943 Output_Error_Msgs (E);
1944 end if;
1945 end loop;
1946 end if;
1947
1948 -- Output error summary if verbose or full list mode
1949
1950 if Verbose_Mode or else Full_List then
1951 Write_Error_Summary;
1952 end if;
1953
1954 Write_Max_Errors;
1955
1956 if Warning_Mode = Treat_As_Error then
1957 Total_Errors_Detected := Total_Errors_Detected + Warnings_Detected;
1958 Warnings_Detected := 0;
1959 end if;
1960 end Output_Messages;
1961
1962 ------------------------
1963 -- Output_Source_Line --
1964 ------------------------
1965
1966 procedure Output_Source_Line
1967 (L : Physical_Line_Number;
1968 Sfile : Source_File_Index;
1969 Errs : Boolean)
1970 is
1971 S : Source_Ptr;
1972 C : Character;
1973
1974 Line_Number_Output : Boolean := False;
1975 -- Set True once line number is output
1976
1977 Empty_Line : Boolean := True;
1978 -- Set False if line includes at least one character
1979
1980 begin
1981 if Sfile /= Current_Error_Source_File then
1982 Write_Str ("==============Error messages for ");
1983
1984 case Sinput.File_Type (Sfile) is
1985 when Sinput.Src =>
1986 Write_Str ("source");
1987
1988 when Sinput.Config =>
1989 Write_Str ("configuration pragmas");
1990
1991 when Sinput.Def =>
1992 Write_Str ("symbol definition");
1993
1994 when Sinput.Preproc =>
1995 Write_Str ("preprocessing data");
1996 end case;
1997
1998 Write_Str (" file: ");
1999 Write_Name (Full_File_Name (Sfile));
2000 Write_Eol;
2001
2002 if Num_SRef_Pragmas (Sfile) > 0 then
2003 Write_Str ("--------------Line numbers from file: ");
2004 Write_Name (Full_Ref_Name (Sfile));
2005 Write_Str (" (starting at line ");
2006 Write_Int (Int (First_Mapped_Line (Sfile)));
2007 Write_Char (')');
2008 Write_Eol;
2009 end if;
2010
2011 Current_Error_Source_File := Sfile;
2012 end if;
2013
2014 if Errs or List_Pragmas_Mode then
2015 Output_Line_Number (Physical_To_Logical (L, Sfile));
2016 Line_Number_Output := True;
2017 end if;
2018
2019 S := Line_Start (L, Sfile);
2020
2021 loop
2022 C := Source_Text (Sfile) (S);
2023 exit when C = ASCII.LF or else C = ASCII.CR or else C = EOF;
2024
2025 -- Deal with matching entry in List_Pragmas table
2026
2027 if Full_List
2028 and then List_Pragmas_Index <= List_Pragmas.Last
2029 and then S = List_Pragmas.Table (List_Pragmas_Index).Ploc
2030 then
2031 case List_Pragmas.Table (List_Pragmas_Index).Ptyp is
2032 when Page =>
2033 Write_Char (C);
2034
2035 -- Ignore if on line with errors so that error flags
2036 -- get properly listed with the error line .
2037
2038 if not Errs then
2039 Write_Char (ASCII.FF);
2040 end if;
2041
2042 when List_On =>
2043 List_Pragmas_Mode := True;
2044
2045 if not Line_Number_Output then
2046 Output_Line_Number (Physical_To_Logical (L, Sfile));
2047 Line_Number_Output := True;
2048 end if;
2049
2050 Write_Char (C);
2051
2052 when List_Off =>
2053 Write_Char (C);
2054 List_Pragmas_Mode := False;
2055 end case;
2056
2057 List_Pragmas_Index := List_Pragmas_Index + 1;
2058
2059 -- Normal case (no matching entry in List_Pragmas table)
2060
2061 else
2062 if Errs or List_Pragmas_Mode then
2063 Write_Char (C);
2064 end if;
2065 end if;
2066
2067 Empty_Line := False;
2068 S := S + 1;
2069 end loop;
2070
2071 -- If we have output a source line, then add the line terminator, with
2072 -- training spaces preserved (so we output the line exactly as input).
2073
2074 if Line_Number_Output then
2075 if Empty_Line then
2076 Write_Eol;
2077 else
2078 Write_Eol_Keep_Blanks;
2079 end if;
2080 end if;
2081 end Output_Source_Line;
2082
2083 -----------------------------
2084 -- Remove_Warning_Messages --
2085 -----------------------------
2086
2087 procedure Remove_Warning_Messages (N : Node_Id) is
2088
2089 function Check_For_Warning (N : Node_Id) return Traverse_Result;
2090 -- This function checks one node for a possible warning message
2091
2092 function Check_All_Warnings is new Traverse_Func (Check_For_Warning);
2093 -- This defines the traversal operation
2094
2095 -----------------------
2096 -- Check_For_Warning --
2097 -----------------------
2098
2099 function Check_For_Warning (N : Node_Id) return Traverse_Result is
2100 Loc : constant Source_Ptr := Sloc (N);
2101 E : Error_Msg_Id;
2102
2103 function To_Be_Removed (E : Error_Msg_Id) return Boolean;
2104 -- Returns True for a message that is to be removed. Also adjusts
2105 -- warning count appropriately.
2106
2107 -------------------
2108 -- To_Be_Removed --
2109 -------------------
2110
2111 function To_Be_Removed (E : Error_Msg_Id) return Boolean is
2112 begin
2113 if E /= No_Error_Msg
2114
2115 -- Don't remove if location does not match
2116
2117 and then Errors.Table (E).Optr = Loc
2118
2119 -- Don't remove if not warning/info message. Note that we do
2120 -- not remove style messages here. They are warning messages
2121 -- but not ones we want removed in this context.
2122
2123 and then Errors.Table (E).Warn
2124
2125 -- Don't remove unconditional messages
2126
2127 and then not Errors.Table (E).Uncond
2128 then
2129 Warnings_Detected := Warnings_Detected - 1;
2130 return True;
2131
2132 -- No removal required
2133
2134 else
2135 return False;
2136 end if;
2137 end To_Be_Removed;
2138
2139 -- Start of processing for Check_For_Warnings
2140
2141 begin
2142 while To_Be_Removed (First_Error_Msg) loop
2143 First_Error_Msg := Errors.Table (First_Error_Msg).Next;
2144 end loop;
2145
2146 if First_Error_Msg = No_Error_Msg then
2147 Last_Error_Msg := No_Error_Msg;
2148 end if;
2149
2150 E := First_Error_Msg;
2151 while E /= No_Error_Msg loop
2152 while To_Be_Removed (Errors.Table (E).Next) loop
2153 Errors.Table (E).Next :=
2154 Errors.Table (Errors.Table (E).Next).Next;
2155
2156 if Errors.Table (E).Next = No_Error_Msg then
2157 Last_Error_Msg := E;
2158 end if;
2159 end loop;
2160
2161 E := Errors.Table (E).Next;
2162 end loop;
2163
2164 if Nkind (N) = N_Raise_Constraint_Error
2165 and then Original_Node (N) /= N
2166 and then No (Condition (N))
2167 then
2168 -- Warnings may have been posted on subexpressions of the original
2169 -- tree. We place the original node back on the tree to remove
2170 -- those warnings, whose sloc do not match those of any node in
2171 -- the current tree. Given that we are in unreachable code, this
2172 -- modification to the tree is harmless.
2173
2174 declare
2175 Status : Traverse_Final_Result;
2176
2177 begin
2178 if Is_List_Member (N) then
2179 Set_Condition (N, Original_Node (N));
2180 Status := Check_All_Warnings (Condition (N));
2181 else
2182 Rewrite (N, Original_Node (N));
2183 Status := Check_All_Warnings (N);
2184 end if;
2185
2186 return Status;
2187 end;
2188
2189 else
2190 return OK;
2191 end if;
2192 end Check_For_Warning;
2193
2194 -- Start of processing for Remove_Warning_Messages
2195
2196 begin
2197 if Warnings_Detected /= 0 then
2198 declare
2199 Discard : Traverse_Final_Result;
2200 pragma Warnings (Off, Discard);
2201
2202 begin
2203 Discard := Check_All_Warnings (N);
2204 end;
2205 end if;
2206 end Remove_Warning_Messages;
2207
2208 procedure Remove_Warning_Messages (L : List_Id) is
2209 Stat : Node_Id;
2210 begin
2211 if Is_Non_Empty_List (L) then
2212 Stat := First (L);
2213 while Present (Stat) loop
2214 Remove_Warning_Messages (Stat);
2215 Next (Stat);
2216 end loop;
2217 end if;
2218 end Remove_Warning_Messages;
2219
2220 ---------------------------
2221 -- Set_Identifier_Casing --
2222 ---------------------------
2223
2224 procedure Set_Identifier_Casing
2225 (Identifier_Name : System.Address;
2226 File_Name : System.Address)
2227 is
2228 Ident : constant Big_String_Ptr := To_Big_String_Ptr (Identifier_Name);
2229 File : constant Big_String_Ptr := To_Big_String_Ptr (File_Name);
2230 Flen : Natural;
2231
2232 Desired_Case : Casing_Type := Mixed_Case;
2233 -- Casing required for result. Default value of Mixed_Case is used if
2234 -- for some reason we cannot find the right file name in the table.
2235
2236 begin
2237 -- Get length of file name
2238
2239 Flen := 0;
2240 while File (Flen + 1) /= ASCII.NUL loop
2241 Flen := Flen + 1;
2242 end loop;
2243
2244 -- Loop through file names to find matching one. This is a bit slow, but
2245 -- we only do it in error situations so it is not so terrible. Note that
2246 -- if the loop does not exit, then the desired case will be left set to
2247 -- Mixed_Case, this can happen if the name was not in canonical form,
2248 -- and gets canonicalized on VMS. Possibly we could fix this by
2249 -- unconditionally canonicalizing these names ???
2250
2251 for J in 1 .. Last_Source_File loop
2252 Get_Name_String (Full_Debug_Name (J));
2253
2254 if Name_Len = Flen
2255 and then Name_Buffer (1 .. Name_Len) = String (File (1 .. Flen))
2256 then
2257 Desired_Case := Identifier_Casing (J);
2258 exit;
2259 end if;
2260 end loop;
2261
2262 -- Copy identifier as given to Name_Buffer
2263
2264 for J in Name_Buffer'Range loop
2265 Name_Buffer (J) := Ident (J);
2266
2267 if Name_Buffer (J) = ASCII.NUL then
2268 Name_Len := J - 1;
2269 exit;
2270 end if;
2271 end loop;
2272
2273 Set_Casing (Desired_Case);
2274 end Set_Identifier_Casing;
2275
2276 -----------------------
2277 -- Set_Ignore_Errors --
2278 -----------------------
2279
2280 procedure Set_Ignore_Errors (To : Boolean) is
2281 begin
2282 Errors_Must_Be_Ignored := To;
2283 end Set_Ignore_Errors;
2284
2285 ------------------------------
2286 -- Set_Msg_Insertion_Column --
2287 ------------------------------
2288
2289 procedure Set_Msg_Insertion_Column is
2290 begin
2291 if RM_Column_Check then
2292 Set_Msg_Str (" in column ");
2293 Set_Msg_Int (Int (Error_Msg_Col) + 1);
2294 end if;
2295 end Set_Msg_Insertion_Column;
2296
2297 ----------------------------
2298 -- Set_Msg_Insertion_Node --
2299 ----------------------------
2300
2301 procedure Set_Msg_Insertion_Node is
2302 K : Node_Kind;
2303
2304 begin
2305 Suppress_Message :=
2306 Error_Msg_Node_1 = Error
2307 or else Error_Msg_Node_1 = Any_Type;
2308
2309 if Error_Msg_Node_1 = Empty then
2310 Set_Msg_Blank_Conditional;
2311 Set_Msg_Str ("<empty>");
2312
2313 elsif Error_Msg_Node_1 = Error then
2314 Set_Msg_Blank;
2315 Set_Msg_Str ("<error>");
2316
2317 elsif Error_Msg_Node_1 = Standard_Void_Type then
2318 Set_Msg_Blank;
2319 Set_Msg_Str ("procedure name");
2320
2321 else
2322 Set_Msg_Blank_Conditional;
2323
2324 -- Output name
2325
2326 K := Nkind (Error_Msg_Node_1);
2327
2328 -- If we have operator case, skip quotes since name of operator
2329 -- itself will supply the required quotations. An operator can be an
2330 -- applied use in an expression or an explicit operator symbol, or an
2331 -- identifier whose name indicates it is an operator.
2332
2333 if K in N_Op
2334 or else K = N_Operator_Symbol
2335 or else K = N_Defining_Operator_Symbol
2336 or else ((K = N_Identifier or else K = N_Defining_Identifier)
2337 and then Is_Operator_Name (Chars (Error_Msg_Node_1)))
2338 then
2339 Set_Msg_Node (Error_Msg_Node_1);
2340
2341 -- Normal case, not an operator, surround with quotes
2342
2343 else
2344 Set_Msg_Quote;
2345 Set_Qualification (Error_Msg_Qual_Level, Error_Msg_Node_1);
2346 Set_Msg_Node (Error_Msg_Node_1);
2347 Set_Msg_Quote;
2348 end if;
2349 end if;
2350
2351 -- The following assignment ensures that a second ampersand insertion
2352 -- character will correspond to the Error_Msg_Node_2 parameter. We
2353 -- suppress possible validity checks in case operating in -gnatVa mode,
2354 -- and Error_Msg_Node_2 is not needed and has not been set.
2355
2356 declare
2357 pragma Suppress (Range_Check);
2358 begin
2359 Error_Msg_Node_1 := Error_Msg_Node_2;
2360 end;
2361 end Set_Msg_Insertion_Node;
2362
2363 --------------------------------------
2364 -- Set_Msg_Insertion_Type_Reference --
2365 --------------------------------------
2366
2367 procedure Set_Msg_Insertion_Type_Reference (Flag : Source_Ptr) is
2368 Ent : Entity_Id;
2369
2370 begin
2371 Set_Msg_Blank;
2372
2373 if Error_Msg_Node_1 = Standard_Void_Type then
2374 Set_Msg_Str ("package or procedure name");
2375 return;
2376
2377 elsif Error_Msg_Node_1 = Standard_Exception_Type then
2378 Set_Msg_Str ("exception name");
2379 return;
2380
2381 elsif Error_Msg_Node_1 = Any_Access
2382 or else Error_Msg_Node_1 = Any_Array
2383 or else Error_Msg_Node_1 = Any_Boolean
2384 or else Error_Msg_Node_1 = Any_Character
2385 or else Error_Msg_Node_1 = Any_Composite
2386 or else Error_Msg_Node_1 = Any_Discrete
2387 or else Error_Msg_Node_1 = Any_Fixed
2388 or else Error_Msg_Node_1 = Any_Integer
2389 or else Error_Msg_Node_1 = Any_Modular
2390 or else Error_Msg_Node_1 = Any_Numeric
2391 or else Error_Msg_Node_1 = Any_Real
2392 or else Error_Msg_Node_1 = Any_Scalar
2393 or else Error_Msg_Node_1 = Any_String
2394 then
2395 Get_Unqualified_Decoded_Name_String (Chars (Error_Msg_Node_1));
2396 Set_Msg_Name_Buffer;
2397 return;
2398
2399 elsif Error_Msg_Node_1 = Universal_Real then
2400 Set_Msg_Str ("type universal real");
2401 return;
2402
2403 elsif Error_Msg_Node_1 = Universal_Integer then
2404 Set_Msg_Str ("type universal integer");
2405 return;
2406
2407 elsif Error_Msg_Node_1 = Universal_Fixed then
2408 Set_Msg_Str ("type universal fixed");
2409 return;
2410 end if;
2411
2412 -- Special case of anonymous array
2413
2414 if Nkind (Error_Msg_Node_1) in N_Entity
2415 and then Is_Array_Type (Error_Msg_Node_1)
2416 and then Present (Related_Array_Object (Error_Msg_Node_1))
2417 then
2418 Set_Msg_Str ("type of ");
2419 Set_Msg_Node (Related_Array_Object (Error_Msg_Node_1));
2420 Set_Msg_Str (" declared");
2421 Set_Msg_Insertion_Line_Number
2422 (Sloc (Related_Array_Object (Error_Msg_Node_1)), Flag);
2423 return;
2424 end if;
2425
2426 -- If we fall through, it is not a special case, so first output
2427 -- the name of the type, preceded by private for a private type
2428
2429 if Is_Private_Type (Error_Msg_Node_1) then
2430 Set_Msg_Str ("private type ");
2431 else
2432 Set_Msg_Str ("type ");
2433 end if;
2434
2435 Ent := Error_Msg_Node_1;
2436
2437 if Is_Internal_Name (Chars (Ent)) then
2438 Unwind_Internal_Type (Ent);
2439 end if;
2440
2441 -- Types in Standard are displayed as "Standard.name"
2442
2443 if Sloc (Ent) <= Standard_Location then
2444 Set_Msg_Quote;
2445 Set_Msg_Str ("Standard.");
2446 Set_Msg_Node (Ent);
2447 Add_Class;
2448 Set_Msg_Quote;
2449
2450 -- Types in other language defined units are displayed as
2451 -- "package-name.type-name"
2452
2453 elsif
2454 Is_Predefined_File_Name (Unit_File_Name (Get_Source_Unit (Ent)))
2455 then
2456 Get_Unqualified_Decoded_Name_String
2457 (Unit_Name (Get_Source_Unit (Ent)));
2458 Name_Len := Name_Len - 2;
2459 Set_Msg_Quote;
2460 Set_Casing (Mixed_Case);
2461 Set_Msg_Name_Buffer;
2462 Set_Msg_Char ('.');
2463 Set_Casing (Mixed_Case);
2464 Set_Msg_Node (Ent);
2465 Add_Class;
2466 Set_Msg_Quote;
2467
2468 -- All other types display as "type name" defined at line xxx
2469 -- possibly qualified if qualification is requested.
2470
2471 else
2472 Set_Msg_Quote;
2473 Set_Qualification (Error_Msg_Qual_Level, Ent);
2474 Set_Msg_Node (Ent);
2475 Add_Class;
2476
2477 -- If Ent is an anonymous subprogram type, there is no name to print,
2478 -- so remove enclosing quotes.
2479
2480 if Buffer_Ends_With ("""") then
2481 Buffer_Remove ("""");
2482 else
2483 Set_Msg_Quote;
2484 end if;
2485 end if;
2486
2487 -- If the original type did not come from a predefined file, add the
2488 -- location where the type was defined.
2489
2490 if Sloc (Error_Msg_Node_1) > Standard_Location
2491 and then
2492 not Is_Predefined_File_Name
2493 (Unit_File_Name (Get_Source_Unit (Error_Msg_Node_1)))
2494 then
2495 Set_Msg_Str (" defined");
2496 Set_Msg_Insertion_Line_Number (Sloc (Error_Msg_Node_1), Flag);
2497
2498 -- If it did come from a predefined file, deal with the case where
2499 -- this was a file with a generic instantiation from elsewhere.
2500
2501 else
2502 if Sloc (Error_Msg_Node_1) > Standard_Location then
2503 declare
2504 Iloc : constant Source_Ptr :=
2505 Instantiation_Location (Sloc (Error_Msg_Node_1));
2506
2507 begin
2508 if Iloc /= No_Location
2509 and then not Suppress_Instance_Location
2510 then
2511 Set_Msg_Str (" from instance");
2512 Set_Msg_Insertion_Line_Number (Iloc, Flag);
2513 end if;
2514 end;
2515 end if;
2516 end if;
2517 end Set_Msg_Insertion_Type_Reference;
2518
2519 ---------------------------------
2520 -- Set_Msg_Insertion_Unit_Name --
2521 ---------------------------------
2522
2523 procedure Set_Msg_Insertion_Unit_Name (Suffix : Boolean := True) is
2524 begin
2525 if Error_Msg_Unit_1 = No_Unit_Name then
2526 null;
2527
2528 elsif Error_Msg_Unit_1 = Error_Unit_Name then
2529 Set_Msg_Blank;
2530 Set_Msg_Str ("<error>");
2531
2532 else
2533 Get_Unit_Name_String (Error_Msg_Unit_1, Suffix);
2534 Set_Msg_Blank;
2535 Set_Msg_Quote;
2536 Set_Msg_Name_Buffer;
2537 Set_Msg_Quote;
2538 end if;
2539
2540 -- The following assignment ensures that a second percent insertion
2541 -- character will correspond to the Error_Msg_Unit_2 parameter. We
2542 -- suppress possible validity checks in case operating in -gnatVa mode,
2543 -- and Error_Msg_Unit_2 is not needed and has not been set.
2544
2545 declare
2546 pragma Suppress (Range_Check);
2547 begin
2548 Error_Msg_Unit_1 := Error_Msg_Unit_2;
2549 end;
2550 end Set_Msg_Insertion_Unit_Name;
2551
2552 ------------------
2553 -- Set_Msg_Node --
2554 ------------------
2555
2556 procedure Set_Msg_Node (Node : Node_Id) is
2557 Ent : Entity_Id;
2558 Nam : Name_Id;
2559
2560 begin
2561 case Nkind (Node) is
2562 when N_Designator =>
2563 Set_Msg_Node (Name (Node));
2564 Set_Msg_Char ('.');
2565 Set_Msg_Node (Identifier (Node));
2566 return;
2567
2568 when N_Defining_Program_Unit_Name =>
2569 Set_Msg_Node (Name (Node));
2570 Set_Msg_Char ('.');
2571 Set_Msg_Node (Defining_Identifier (Node));
2572 return;
2573
2574 when N_Selected_Component | N_Expanded_Name =>
2575 Set_Msg_Node (Prefix (Node));
2576 Set_Msg_Char ('.');
2577 Set_Msg_Node (Selector_Name (Node));
2578 return;
2579
2580 when others =>
2581 null;
2582 end case;
2583
2584 -- The only remaining possibilities are identifiers, defining
2585 -- identifiers, pragmas, and pragma argument associations.
2586
2587 if Nkind (Node) = N_Pragma then
2588 Nam := Pragma_Name (Node);
2589
2590 -- The other cases have Chars fields, and we want to test for possible
2591 -- internal names, which generally represent something gone wrong. An
2592 -- exception is the case of internal type names, where we try to find a
2593 -- reasonable external representation for the external name
2594
2595 elsif Is_Internal_Name (Chars (Node))
2596 and then
2597 ((Is_Entity_Name (Node)
2598 and then Present (Entity (Node))
2599 and then Is_Type (Entity (Node)))
2600 or else
2601 (Nkind (Node) = N_Defining_Identifier and then Is_Type (Node)))
2602 then
2603 if Nkind (Node) = N_Identifier then
2604 Ent := Entity (Node);
2605 else
2606 Ent := Node;
2607 end if;
2608
2609 -- If the type is the designated type of an access_to_subprogram,
2610 -- there is no name to provide in the call.
2611
2612 if Ekind (Ent) = E_Subprogram_Type then
2613 return;
2614 else
2615 Unwind_Internal_Type (Ent);
2616 Nam := Chars (Ent);
2617 end if;
2618
2619 -- If not internal name, just use name in Chars field
2620
2621 else
2622 Nam := Chars (Node);
2623 end if;
2624
2625 -- At this stage, the name to output is in Nam
2626
2627 Get_Unqualified_Decoded_Name_String (Nam);
2628
2629 -- Remove trailing upper case letters from the name (useful for
2630 -- dealing with some cases of internal names.
2631
2632 while Name_Len > 1 and then Name_Buffer (Name_Len) in 'A' .. 'Z' loop
2633 Name_Len := Name_Len - 1;
2634 end loop;
2635
2636 -- If we have any of the names from standard that start with the
2637 -- characters "any " (e.g. Any_Type), then kill the message since
2638 -- almost certainly it is a junk cascaded message.
2639
2640 if Name_Len > 4
2641 and then Name_Buffer (1 .. 4) = "any "
2642 then
2643 Kill_Message := True;
2644 end if;
2645
2646 -- Now we have to set the proper case. If we have a source location
2647 -- then do a check to see if the name in the source is the same name
2648 -- as the name in the Names table, except for possible differences
2649 -- in case, which is the case when we can copy from the source.
2650
2651 declare
2652 Src_Loc : constant Source_Ptr := Sloc (Node);
2653 Sbuffer : Source_Buffer_Ptr;
2654 Ref_Ptr : Integer;
2655 Src_Ptr : Source_Ptr;
2656
2657 begin
2658 Ref_Ptr := 1;
2659 Src_Ptr := Src_Loc;
2660
2661 -- For standard locations, always use mixed case
2662
2663 if Src_Loc <= No_Location
2664 or else Sloc (Node) <= No_Location
2665 then
2666 Set_Casing (Mixed_Case);
2667
2668 else
2669 -- Determine if the reference we are dealing with corresponds to
2670 -- text at the point of the error reference. This will often be
2671 -- the case for simple identifier references, and is the case
2672 -- where we can copy the spelling from the source.
2673
2674 Sbuffer := Source_Text (Get_Source_File_Index (Src_Loc));
2675
2676 while Ref_Ptr <= Name_Len loop
2677 exit when
2678 Fold_Lower (Sbuffer (Src_Ptr)) /=
2679 Fold_Lower (Name_Buffer (Ref_Ptr));
2680 Ref_Ptr := Ref_Ptr + 1;
2681 Src_Ptr := Src_Ptr + 1;
2682 end loop;
2683
2684 -- If we get through the loop without a mismatch, then output the
2685 -- name the way it is spelled in the source program
2686
2687 if Ref_Ptr > Name_Len then
2688 Src_Ptr := Src_Loc;
2689
2690 for J in 1 .. Name_Len loop
2691 Name_Buffer (J) := Sbuffer (Src_Ptr);
2692 Src_Ptr := Src_Ptr + 1;
2693 end loop;
2694
2695 -- Otherwise set the casing using the default identifier casing
2696
2697 else
2698 Set_Casing (Identifier_Casing (Flag_Source), Mixed_Case);
2699 end if;
2700 end if;
2701 end;
2702
2703 Set_Msg_Name_Buffer;
2704 Add_Class;
2705 end Set_Msg_Node;
2706
2707 ------------------
2708 -- Set_Msg_Text --
2709 ------------------
2710
2711 procedure Set_Msg_Text (Text : String; Flag : Source_Ptr) is
2712 C : Character; -- Current character
2713 P : Natural; -- Current index;
2714
2715 procedure Set_Msg_Insertion_Warning;
2716 -- Deal with ? ?? ?x? ?X? insertion sequences (also < <? <x? <X?). The
2717 -- caller has already bumped the pointer past the initial ? or <.
2718
2719 -------------------------------
2720 -- Set_Msg_Insertion_Warning --
2721 -------------------------------
2722
2723 procedure Set_Msg_Insertion_Warning is
2724 begin
2725 Warning_Msg_Char := ' ';
2726
2727 if P <= Text'Last and then Text (P) = '?' then
2728 if Warning_Doc_Switch then
2729 Warning_Msg_Char := '?';
2730 end if;
2731
2732 P := P + 1;
2733
2734 elsif P + 1 <= Text'Last
2735 and then (Text (P) in 'a' .. 'z'
2736 or else
2737 Text (P) in 'A' .. 'Z')
2738 and then Text (P + 1) = '?'
2739 then
2740 if Warning_Doc_Switch then
2741 Warning_Msg_Char := Text (P);
2742 end if;
2743
2744 P := P + 2;
2745 end if;
2746 end Set_Msg_Insertion_Warning;
2747
2748 -- Start of processing for Set_Msg_Text
2749
2750 begin
2751 Manual_Quote_Mode := False;
2752 Msglen := 0;
2753 Flag_Source := Get_Source_File_Index (Flag);
2754
2755 P := Text'First;
2756 while P <= Text'Last loop
2757 C := Text (P);
2758 P := P + 1;
2759
2760 -- Check for insertion character or sequence
2761
2762 case C is
2763 when '%' =>
2764 if P <= Text'Last and then Text (P) = '%' then
2765 P := P + 1;
2766 Set_Msg_Insertion_Name_Literal;
2767 else
2768 Set_Msg_Insertion_Name;
2769 end if;
2770
2771 when '$' =>
2772 if P <= Text'Last and then Text (P) = '$' then
2773 P := P + 1;
2774 Set_Msg_Insertion_Unit_Name (Suffix => False);
2775 else
2776 Set_Msg_Insertion_Unit_Name;
2777 end if;
2778
2779 when '{' =>
2780 Set_Msg_Insertion_File_Name;
2781
2782 when '}' =>
2783 Set_Msg_Insertion_Type_Reference (Flag);
2784
2785 when '*' =>
2786 Set_Msg_Insertion_Reserved_Name;
2787
2788 when '&' =>
2789 Set_Msg_Insertion_Node;
2790
2791 when '#' =>
2792 Set_Msg_Insertion_Line_Number (Error_Msg_Sloc, Flag);
2793
2794 when '\' =>
2795 Continuation := True;
2796
2797 if Text (P) = '\' then
2798 Continuation_New_Line := True;
2799 P := P + 1;
2800 end if;
2801
2802 when '@' =>
2803 Set_Msg_Insertion_Column;
2804
2805 when '>' =>
2806 Set_Msg_Insertion_Run_Time_Name;
2807
2808 when '^' =>
2809 Set_Msg_Insertion_Uint;
2810
2811 when '`' =>
2812 Manual_Quote_Mode := not Manual_Quote_Mode;
2813 Set_Msg_Char ('"');
2814
2815 when '!' =>
2816 null; -- already dealt with
2817
2818 when '?' =>
2819 Set_Msg_Insertion_Warning;
2820
2821 when '<' =>
2822
2823 -- Note: the prescan already set Is_Warning_Msg True if and
2824 -- only if Error_Msg_Warn is set to True. If Error_Msg_Warn
2825 -- is False, the call to Set_Msg_Insertion_Warning here does
2826 -- no harm, since Warning_Msg_Char is ignored in that case.
2827
2828 Set_Msg_Insertion_Warning;
2829
2830 when '|' =>
2831 null; -- already dealt with
2832
2833 when ''' =>
2834 Set_Msg_Char (Text (P));
2835 P := P + 1;
2836
2837 when '~' =>
2838 Set_Msg_Str (Error_Msg_String (1 .. Error_Msg_Strlen));
2839
2840 -- Upper case letter
2841
2842 when 'A' .. 'Z' =>
2843
2844 -- Start of reserved word if two or more
2845
2846 if P <= Text'Last and then Text (P) in 'A' .. 'Z' then
2847 P := P - 1;
2848 Set_Msg_Insertion_Reserved_Word (Text, P);
2849
2850 -- Single upper case letter is just inserted
2851
2852 else
2853 Set_Msg_Char (C);
2854 end if;
2855
2856 -- Normal character with no special treatment
2857
2858 when others =>
2859 Set_Msg_Char (C);
2860 end case;
2861 end loop;
2862
2863 VMS_Convert;
2864 end Set_Msg_Text;
2865
2866 ----------------
2867 -- Set_Posted --
2868 ----------------
2869
2870 procedure Set_Posted (N : Node_Id) is
2871 P : Node_Id;
2872
2873 begin
2874 if Is_Serious_Error then
2875
2876 -- We always set Error_Posted on the node itself
2877
2878 Set_Error_Posted (N);
2879
2880 -- If it is a subexpression, then set Error_Posted on parents up to
2881 -- and including the first non-subexpression construct. This helps
2882 -- avoid cascaded error messages within a single expression.
2883
2884 P := N;
2885 loop
2886 P := Parent (P);
2887 exit when No (P);
2888 Set_Error_Posted (P);
2889 exit when Nkind (P) not in N_Subexpr;
2890 end loop;
2891
2892 -- A special check, if we just posted an error on an attribute
2893 -- definition clause, then also set the entity involved as posted.
2894 -- For example, this stops complaining about the alignment after
2895 -- complaining about the size, which is likely to be useless.
2896
2897 if Nkind (P) = N_Attribute_Definition_Clause then
2898 if Is_Entity_Name (Name (P)) then
2899 Set_Error_Posted (Entity (Name (P)));
2900 end if;
2901 end if;
2902 end if;
2903 end Set_Posted;
2904
2905 -----------------------
2906 -- Set_Qualification --
2907 -----------------------
2908
2909 procedure Set_Qualification (N : Nat; E : Entity_Id) is
2910 begin
2911 if N /= 0 and then Scope (E) /= Standard_Standard then
2912 Set_Qualification (N - 1, Scope (E));
2913 Set_Msg_Node (Scope (E));
2914 Set_Msg_Char ('.');
2915 end if;
2916 end Set_Qualification;
2917
2918 ------------------------
2919 -- Special_Msg_Delete --
2920 ------------------------
2921
2922 -- Is it really right to have all this specialized knowledge in errout?
2923
2924 function Special_Msg_Delete
2925 (Msg : String;
2926 N : Node_Or_Entity_Id;
2927 E : Node_Or_Entity_Id) return Boolean
2928 is
2929 begin
2930 -- Never delete messages in -gnatdO mode
2931
2932 if Debug_Flag_OO then
2933 return False;
2934
2935 -- Processing for "atomic access cannot be guaranteed"
2936
2937 elsif Msg = "atomic access to & cannot be guaranteed" then
2938
2939 -- When an atomic object refers to a non-atomic type in the same
2940 -- scope, we implicitly make the type atomic. In the non-error case
2941 -- this is surely safe (and in fact prevents an error from occurring
2942 -- if the type is not atomic by default). But if the object cannot be
2943 -- made atomic, then we introduce an extra junk message by this
2944 -- manipulation, which we get rid of here.
2945
2946 -- We identify this case by the fact that it references a type for
2947 -- which Is_Atomic is set, but there is no Atomic pragma setting it.
2948
2949 if Is_Type (E)
2950 and then Is_Atomic (E)
2951 and then No (Get_Rep_Pragma (E, Name_Atomic))
2952 then
2953 return True;
2954 end if;
2955
2956 -- Processing for "Size too small" messages
2957
2958 elsif Msg = "size for& too small, minimum allowed is ^" then
2959
2960 -- Suppress "size too small" errors in CodePeer mode and SPARK mode,
2961 -- since pragma Pack is also ignored in these configurations.
2962
2963 if CodePeer_Mode or GNATprove_Mode then
2964 return True;
2965
2966 -- When a size is wrong for a frozen type there is no explicit size
2967 -- clause, and other errors have occurred, suppress the message,
2968 -- since it is likely that this size error is a cascaded result of
2969 -- other errors. The reason we eliminate unfrozen types is that
2970 -- messages issued before the freeze type are for sure OK.
2971
2972 elsif Is_Frozen (E)
2973 and then Serious_Errors_Detected > 0
2974 and then Nkind (N) /= N_Component_Clause
2975 and then Nkind (Parent (N)) /= N_Component_Clause
2976 and then
2977 No (Get_Attribute_Definition_Clause (E, Attribute_Size))
2978 and then
2979 No (Get_Attribute_Definition_Clause (E, Attribute_Object_Size))
2980 and then
2981 No (Get_Attribute_Definition_Clause (E, Attribute_Value_Size))
2982 then
2983 return True;
2984 end if;
2985 end if;
2986
2987 -- All special tests complete, so go ahead with message
2988
2989 return False;
2990 end Special_Msg_Delete;
2991
2992 --------------------------
2993 -- Unwind_Internal_Type --
2994 --------------------------
2995
2996 procedure Unwind_Internal_Type (Ent : in out Entity_Id) is
2997 Derived : Boolean := False;
2998 Mchar : Character;
2999 Old_Ent : Entity_Id;
3000
3001 begin
3002 -- Undo placement of a quote, since we will put it back later
3003
3004 Mchar := Msg_Buffer (Msglen);
3005
3006 if Mchar = '"' then
3007 Msglen := Msglen - 1;
3008 end if;
3009
3010 -- The loop here deals with recursive types, we are trying to find a
3011 -- related entity that is not an implicit type. Note that the check with
3012 -- Old_Ent stops us from getting "stuck". Also, we don't output the
3013 -- "type derived from" message more than once in the case where we climb
3014 -- up multiple levels.
3015
3016 Find : loop
3017 Old_Ent := Ent;
3018
3019 -- Implicit access type, use directly designated type In Ada 2005,
3020 -- the designated type may be an anonymous access to subprogram, in
3021 -- which case we can only point to its definition.
3022
3023 if Is_Access_Type (Ent) then
3024 if Ekind (Ent) = E_Access_Subprogram_Type
3025 or else Ekind (Ent) = E_Anonymous_Access_Subprogram_Type
3026 or else Is_Access_Protected_Subprogram_Type (Ent)
3027 then
3028 Ent := Directly_Designated_Type (Ent);
3029
3030 if not Comes_From_Source (Ent) then
3031 if Buffer_Ends_With ("type ") then
3032 Buffer_Remove ("type ");
3033 end if;
3034
3035 if Is_Itype (Ent) then
3036 declare
3037 Assoc : constant Node_Id :=
3038 Associated_Node_For_Itype (Ent);
3039
3040 begin
3041 if Nkind (Assoc) in N_Subprogram_Specification then
3042
3043 -- Anonymous access to subprogram in a signature.
3044 -- Indicate the enclosing subprogram.
3045
3046 Ent :=
3047 Defining_Unit_Name
3048 (Associated_Node_For_Itype (Ent));
3049 Set_Msg_Str
3050 ("access to subprogram declared in profile of ");
3051
3052 else
3053 Set_Msg_Str ("access to subprogram with profile ");
3054 end if;
3055 end;
3056 end if;
3057
3058 elsif Ekind (Ent) = E_Function then
3059 Set_Msg_Str ("access to function ");
3060 else
3061 Set_Msg_Str ("access to procedure ");
3062 end if;
3063
3064 exit Find;
3065
3066 -- Type is access to object, named or anonymous
3067
3068 else
3069 Set_Msg_Str ("access to ");
3070 Ent := Directly_Designated_Type (Ent);
3071 end if;
3072
3073 -- Classwide type
3074
3075 elsif Is_Class_Wide_Type (Ent) then
3076 Class_Flag := True;
3077 Ent := Root_Type (Ent);
3078
3079 -- Use base type if this is a subtype
3080
3081 elsif Ent /= Base_Type (Ent) then
3082 Buffer_Remove ("type ");
3083
3084 -- Avoid duplication "subtype of subtype of", and also replace
3085 -- "derived from subtype of" simply by "derived from"
3086
3087 if not Buffer_Ends_With ("subtype of ")
3088 and then not Buffer_Ends_With ("derived from ")
3089 then
3090 Set_Msg_Str ("subtype of ");
3091 end if;
3092
3093 Ent := Base_Type (Ent);
3094
3095 -- If this is a base type with a first named subtype, use the first
3096 -- named subtype instead. This is not quite accurate in all cases,
3097 -- but it makes too much noise to be accurate and add 'Base in all
3098 -- cases. Note that we only do this is the first named subtype is not
3099 -- itself an internal name. This avoids the obvious loop (subtype ->
3100 -- basetype -> subtype) which would otherwise occur!)
3101
3102 else
3103 declare
3104 FST : constant Entity_Id := First_Subtype (Ent);
3105
3106 begin
3107 if not Is_Internal_Name (Chars (FST)) then
3108 Ent := FST;
3109 exit Find;
3110
3111 -- Otherwise use root type
3112
3113 else
3114 if not Derived then
3115 Buffer_Remove ("type ");
3116
3117 -- Test for "subtype of type derived from" which seems
3118 -- excessive and is replaced by "type derived from".
3119
3120 Buffer_Remove ("subtype of");
3121
3122 -- Avoid duplicated "type derived from type derived from"
3123
3124 if not Buffer_Ends_With ("type derived from ") then
3125 Set_Msg_Str ("type derived from ");
3126 end if;
3127
3128 Derived := True;
3129 end if;
3130 end if;
3131 end;
3132
3133 Ent := Etype (Ent);
3134 end if;
3135
3136 -- If we are stuck in a loop, get out and settle for the internal
3137 -- name after all. In this case we set to kill the message if it is
3138 -- not the first error message (we really try hard not to show the
3139 -- dirty laundry of the implementation to the poor user!)
3140
3141 if Ent = Old_Ent then
3142 Kill_Message := True;
3143 exit Find;
3144 end if;
3145
3146 -- Get out if we finally found a non-internal name to use
3147
3148 exit Find when not Is_Internal_Name (Chars (Ent));
3149 end loop Find;
3150
3151 if Mchar = '"' then
3152 Set_Msg_Char ('"');
3153 end if;
3154 end Unwind_Internal_Type;
3155
3156 -----------------
3157 -- VMS_Convert --
3158 -----------------
3159
3160 procedure VMS_Convert is
3161 P : Natural;
3162 L : Natural;
3163 N : Natural;
3164
3165 begin
3166 if not OpenVMS then
3167 return;
3168 end if;
3169
3170 P := Msg_Buffer'First;
3171 loop
3172 if P >= Msglen then
3173 return;
3174 end if;
3175
3176 if Msg_Buffer (P) = '-' then
3177 for G in Gnames'Range loop
3178 L := Gnames (G)'Length;
3179
3180 -- See if we have "-ggg switch", where ggg is Gnames entry
3181
3182 if P + L + 7 <= Msglen
3183 and then Msg_Buffer (P + 1 .. P + L) = Gnames (G).all
3184 and then Msg_Buffer (P + L + 1 .. P + L + 7) = " switch"
3185 then
3186 -- Replace by "/vvv qualifier", where vvv is Vnames entry
3187
3188 N := Vnames (G)'Length;
3189 Msg_Buffer (P + N + 11 .. Msglen + N - L + 3) :=
3190 Msg_Buffer (P + L + 8 .. Msglen);
3191 Msg_Buffer (P) := '/';
3192 Msg_Buffer (P + 1 .. P + N) := Vnames (G).all;
3193 Msg_Buffer (P + N + 1 .. P + N + 10) := " qualifier";
3194 P := P + N + 10;
3195 Msglen := Msglen + N - L + 3;
3196 exit;
3197 end if;
3198 end loop;
3199 end if;
3200
3201 P := P + 1;
3202 end loop;
3203 end VMS_Convert;
3204
3205 end Errout;