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