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