sem_ch3.adb, [...]: Remove the word kludge from ada sources.
[gcc.git] / gcc / ada / sem_warn.adb
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- S E M _ W A R N --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1999-2014, Free Software Foundation, Inc. --
10 -- --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING3. If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license. --
20 -- --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
23 -- --
24 ------------------------------------------------------------------------------
25
26 with Atree; use Atree;
27 with Debug; use Debug;
28 with Einfo; use Einfo;
29 with Errout; use Errout;
30 with Exp_Code; use Exp_Code;
31 with Fname; use Fname;
32 with Lib; use Lib;
33 with Lib.Xref; use Lib.Xref;
34 with Namet; use Namet;
35 with Nlists; use Nlists;
36 with Opt; use Opt;
37 with Par_SCO; use Par_SCO;
38 with Rtsfind; use Rtsfind;
39 with Sem; use Sem;
40 with Sem_Ch8; use Sem_Ch8;
41 with Sem_Aux; use Sem_Aux;
42 with Sem_Eval; use Sem_Eval;
43 with Sem_Util; use Sem_Util;
44 with Sinfo; use Sinfo;
45 with Sinput; use Sinput;
46 with Snames; use Snames;
47 with Stand; use Stand;
48 with Stringt; use Stringt;
49 with Uintp; use Uintp;
50
51 package body Sem_Warn is
52
53 -- The following table collects Id's of entities that are potentially
54 -- unreferenced. See Check_Unset_Reference for further details.
55 -- ??? Check_Unset_Reference has zero information about this table.
56
57 package Unreferenced_Entities is new Table.Table (
58 Table_Component_Type => Entity_Id,
59 Table_Index_Type => Nat,
60 Table_Low_Bound => 1,
61 Table_Initial => Alloc.Unreferenced_Entities_Initial,
62 Table_Increment => Alloc.Unreferenced_Entities_Increment,
63 Table_Name => "Unreferenced_Entities");
64
65 -- The following table collects potential warnings for IN OUT parameters
66 -- that are referenced but not modified. These warnings are processed when
67 -- the front end calls the procedure Output_Non_Modified_In_Out_Warnings.
68 -- The reason that we defer output of these messages is that we want to
69 -- detect the case where the relevant procedure is used as a generic actual
70 -- in an instantiation, since we suppress the warnings in this case. The
71 -- flag Used_As_Generic_Actual will be set in this case, but only at the
72 -- point of usage. Similarly, we suppress the message if the address of the
73 -- procedure is taken, where the flag Address_Taken may be set later.
74
75 package In_Out_Warnings is new Table.Table (
76 Table_Component_Type => Entity_Id,
77 Table_Index_Type => Nat,
78 Table_Low_Bound => 1,
79 Table_Initial => Alloc.In_Out_Warnings_Initial,
80 Table_Increment => Alloc.In_Out_Warnings_Increment,
81 Table_Name => "In_Out_Warnings");
82
83 --------------------------------------------------------
84 -- Handling of Warnings Off, Unmodified, Unreferenced --
85 --------------------------------------------------------
86
87 -- The functions Has_Warnings_Off, Has_Unmodified, Has_Unreferenced must
88 -- generally be used instead of Warnings_Off, Has_Pragma_Unmodified and
89 -- Has_Pragma_Unreferenced, as noted in the specs in Einfo.
90
91 -- In order to avoid losing warnings in -gnatw.w (warn on unnecessary
92 -- warnings off pragma) mode, i.e. to avoid false negatives, the code
93 -- must follow some important rules.
94
95 -- Call these functions as late as possible, after completing all other
96 -- tests, just before the warnings is given. For example, don't write:
97
98 -- if not Has_Warnings_Off (E)
99 -- and then some-other-predicate-on-E then ..
100
101 -- Instead the following is preferred
102
103 -- if some-other-predicate-on-E
104 -- and then Has_Warnings_Off (E)
105
106 -- This way if some-other-predicate is false, we avoid a false indication
107 -- that a Warnings (Off, E) pragma was useful in preventing a warning.
108
109 -- The second rule is that if both Has_Unmodified and Has_Warnings_Off, or
110 -- Has_Unreferenced and Has_Warnings_Off are called, make sure that the
111 -- call to Has_Unmodified/Has_Unreferenced comes first, this way we record
112 -- that the Warnings (Off) could have been Unreferenced or Unmodified. In
113 -- fact Has_Unmodified/Has_Unreferenced includes a test for Warnings Off,
114 -- and so a subsequent test is not needed anyway (though it is harmless).
115
116 -----------------------
117 -- Local Subprograms --
118 -----------------------
119
120 function Generic_Package_Spec_Entity (E : Entity_Id) return Boolean;
121 -- This returns true if the entity E is declared within a generic package.
122 -- The point of this is to detect variables which are not assigned within
123 -- the generic, but might be assigned outside the package for any given
124 -- instance. These are cases where we leave the warnings to be posted for
125 -- the instance, when we will know more.
126
127 function Goto_Spec_Entity (E : Entity_Id) return Entity_Id;
128 -- If E is a parameter entity for a subprogram body, then this function
129 -- returns the corresponding spec entity, if not, E is returned unchanged.
130
131 function Has_Pragma_Unmodified_Check_Spec (E : Entity_Id) return Boolean;
132 -- Tests Has_Pragma_Unmodified flag for entity E. If E is not a formal,
133 -- this is simply the setting of the flag Has_Pragma_Unmodified. If E is
134 -- a body formal, the setting of the flag in the corresponding spec is
135 -- also checked (and True returned if either flag is True).
136
137 function Has_Pragma_Unreferenced_Check_Spec (E : Entity_Id) return Boolean;
138 -- Tests Has_Pragma_Unreferenced flag for entity E. If E is not a formal,
139 -- this is simply the setting of the flag Has_Pragma_Unreferenced. If E is
140 -- a body formal, the setting of the flag in the corresponding spec is
141 -- also checked (and True returned if either flag is True).
142
143 function Never_Set_In_Source_Check_Spec (E : Entity_Id) return Boolean;
144 -- Tests Never_Set_In_Source status for entity E. If E is not a formal,
145 -- this is simply the setting of the flag Never_Set_In_Source. If E is
146 -- a body formal, the setting of the flag in the corresponding spec is
147 -- also checked (and False returned if either flag is False).
148
149 function Operand_Has_Warnings_Suppressed (N : Node_Id) return Boolean;
150 -- This function traverses the expression tree represented by the node N
151 -- and determines if any sub-operand is a reference to an entity for which
152 -- the Warnings_Off flag is set. True is returned if such an entity is
153 -- encountered, and False otherwise.
154
155 function Referenced_Check_Spec (E : Entity_Id) return Boolean;
156 -- Tests Referenced status for entity E. If E is not a formal, this is
157 -- simply the setting of the flag Referenced. If E is a body formal, the
158 -- setting of the flag in the corresponding spec is also checked (and True
159 -- returned if either flag is True).
160
161 function Referenced_As_LHS_Check_Spec (E : Entity_Id) return Boolean;
162 -- Tests Referenced_As_LHS status for entity E. If E is not a formal, this
163 -- is simply the setting of the flag Referenced_As_LHS. If E is a body
164 -- formal, the setting of the flag in the corresponding spec is also
165 -- checked (and True returned if either flag is True).
166
167 function Referenced_As_Out_Parameter_Check_Spec
168 (E : Entity_Id) return Boolean;
169 -- Tests Referenced_As_Out_Parameter status for entity E. If E is not a
170 -- formal, this is simply the setting of Referenced_As_Out_Parameter. If E
171 -- is a body formal, the setting of the flag in the corresponding spec is
172 -- also checked (and True returned if either flag is True).
173
174 procedure Warn_On_Unreferenced_Entity
175 (Spec_E : Entity_Id;
176 Body_E : Entity_Id := Empty);
177 -- Output warnings for unreferenced entity E. For the case of an entry
178 -- formal, Body_E is the corresponding body entity for a particular
179 -- accept statement, and the message is posted on Body_E. In all other
180 -- cases, Body_E is ignored and must be Empty.
181
182 function Warnings_Off_Check_Spec (E : Entity_Id) return Boolean;
183 -- Returns True if Warnings_Off is set for the entity E or (in the case
184 -- where there is a Spec_Entity), Warnings_Off is set for the Spec_Entity.
185
186 --------------------------
187 -- Check_Code_Statement --
188 --------------------------
189
190 procedure Check_Code_Statement (N : Node_Id) is
191 begin
192 -- If volatile, nothing to worry about
193
194 if Is_Asm_Volatile (N) then
195 return;
196 end if;
197
198 -- Warn if no input or no output
199
200 Setup_Asm_Inputs (N);
201
202 if No (Asm_Input_Value) then
203 Error_Msg_F
204 ("??code statement with no inputs should usually be Volatile!", N);
205 return;
206 end if;
207
208 Setup_Asm_Outputs (N);
209
210 if No (Asm_Output_Variable) then
211 Error_Msg_F
212 ("??code statement with no outputs should usually be Volatile!", N);
213 return;
214 end if;
215 end Check_Code_Statement;
216
217 ---------------------------------
218 -- Check_Infinite_Loop_Warning --
219 ---------------------------------
220
221 -- The case we look for is a while loop which tests a local variable, where
222 -- there is no obvious direct or possible indirect update of the variable
223 -- within the body of the loop.
224
225 procedure Check_Infinite_Loop_Warning (Loop_Statement : Node_Id) is
226 Expression : Node_Id := Empty;
227 -- Set to WHILE or EXIT WHEN condition to be tested
228
229 Ref : Node_Id := Empty;
230 -- Reference in Expression to variable that might not be modified
231 -- in loop, indicating a possible infinite loop.
232
233 Var : Entity_Id := Empty;
234 -- Corresponding entity (entity of Ref)
235
236 Function_Call_Found : Boolean := False;
237 -- True if Find_Var found a function call in the condition
238
239 procedure Find_Var (N : Node_Id);
240 -- Inspect condition to see if it depends on a single entity reference.
241 -- If so, Ref is set to point to the reference node, and Var is set to
242 -- the referenced Entity.
243
244 function Has_Indirection (T : Entity_Id) return Boolean;
245 -- If the controlling variable is an access type, or is a record type
246 -- with access components, assume that it is changed indirectly and
247 -- suppress the warning. As a concession to low-level programming, in
248 -- particular within Declib, we also suppress warnings on a record
249 -- type that contains components of type Address or Short_Address.
250
251 function Is_Suspicious_Function_Name (E : Entity_Id) return Boolean;
252 -- Given an entity name, see if the name appears to have something to
253 -- do with I/O or network stuff, and if so, return True. Used to kill
254 -- some false positives on a heuristic basis that such functions will
255 -- likely have some strange side effect dependencies. A rather strange
256 -- test, but warning messages are in the heuristics business.
257
258 function Test_Ref (N : Node_Id) return Traverse_Result;
259 -- Test for reference to variable in question. Returns Abandon if
260 -- matching reference found. Used in instantiation of No_Ref_Found.
261
262 function No_Ref_Found is new Traverse_Func (Test_Ref);
263 -- Function to traverse body of procedure. Returns Abandon if matching
264 -- reference found.
265
266 --------------
267 -- Find_Var --
268 --------------
269
270 procedure Find_Var (N : Node_Id) is
271 begin
272 -- Condition is a direct variable reference
273
274 if Is_Entity_Name (N) then
275 Ref := N;
276 Var := Entity (Ref);
277
278 -- Case of condition is a comparison with compile time known value
279
280 elsif Nkind (N) in N_Op_Compare then
281 if Compile_Time_Known_Value (Right_Opnd (N)) then
282 Find_Var (Left_Opnd (N));
283
284 elsif Compile_Time_Known_Value (Left_Opnd (N)) then
285 Find_Var (Right_Opnd (N));
286
287 -- Ignore any other comparison
288
289 else
290 return;
291 end if;
292
293 -- If condition is a negation, check its operand
294
295 elsif Nkind (N) = N_Op_Not then
296 Find_Var (Right_Opnd (N));
297
298 -- Case of condition is function call
299
300 elsif Nkind (N) = N_Function_Call then
301
302 Function_Call_Found := True;
303
304 -- Forget it if function name is not entity, who knows what
305 -- we might be calling?
306
307 if not Is_Entity_Name (Name (N)) then
308 return;
309
310 -- Forget it if function name is suspicious. A strange test
311 -- but warning generation is in the heuristics business.
312
313 elsif Is_Suspicious_Function_Name (Entity (Name (N))) then
314 return;
315
316 -- Forget it if warnings are suppressed on function entity
317
318 elsif Has_Warnings_Off (Entity (Name (N))) then
319 return;
320 end if;
321
322 -- OK, see if we have one argument
323
324 declare
325 PA : constant List_Id := Parameter_Associations (N);
326
327 begin
328 -- One argument, so check the argument
329
330 if Present (PA) and then List_Length (PA) = 1 then
331 if Nkind (First (PA)) = N_Parameter_Association then
332 Find_Var (Explicit_Actual_Parameter (First (PA)));
333 else
334 Find_Var (First (PA));
335 end if;
336
337 -- Not one argument
338
339 else
340 return;
341 end if;
342 end;
343
344 -- Any other kind of node is not something we warn for
345
346 else
347 return;
348 end if;
349 end Find_Var;
350
351 ---------------------
352 -- Has_Indirection --
353 ---------------------
354
355 function Has_Indirection (T : Entity_Id) return Boolean is
356 Comp : Entity_Id;
357 Rec : Entity_Id;
358
359 begin
360 if Is_Access_Type (T) then
361 return True;
362
363 elsif Is_Private_Type (T)
364 and then Present (Full_View (T))
365 and then Is_Access_Type (Full_View (T))
366 then
367 return True;
368
369 elsif Is_Record_Type (T) then
370 Rec := T;
371
372 elsif Is_Private_Type (T)
373 and then Present (Full_View (T))
374 and then Is_Record_Type (Full_View (T))
375 then
376 Rec := Full_View (T);
377 else
378 return False;
379 end if;
380
381 Comp := First_Component (Rec);
382 while Present (Comp) loop
383 if Is_Access_Type (Etype (Comp))
384 or else Is_Descendent_Of_Address (Etype (Comp))
385 then
386 return True;
387 end if;
388
389 Next_Component (Comp);
390 end loop;
391
392 return False;
393 end Has_Indirection;
394
395 ---------------------------------
396 -- Is_Suspicious_Function_Name --
397 ---------------------------------
398
399 function Is_Suspicious_Function_Name (E : Entity_Id) return Boolean is
400 S : Entity_Id;
401
402 function Substring_Present (S : String) return Boolean;
403 -- Returns True if name buffer has given string delimited by non-
404 -- alphabetic characters or by end of string. S is lower case.
405
406 -----------------------
407 -- Substring_Present --
408 -----------------------
409
410 function Substring_Present (S : String) return Boolean is
411 Len : constant Natural := S'Length;
412
413 begin
414 for J in 1 .. Name_Len - (Len - 1) loop
415 if Name_Buffer (J .. J + (Len - 1)) = S
416 and then (J = 1 or else Name_Buffer (J - 1) not in 'a' .. 'z')
417 and then
418 (J + Len > Name_Len
419 or else Name_Buffer (J + Len) not in 'a' .. 'z')
420 then
421 return True;
422 end if;
423 end loop;
424
425 return False;
426 end Substring_Present;
427
428 -- Start of processing for Is_Suspicious_Function_Name
429
430 begin
431 S := E;
432 while Present (S) and then S /= Standard_Standard loop
433 Get_Name_String (Chars (S));
434
435 if Substring_Present ("io")
436 or else Substring_Present ("file")
437 or else Substring_Present ("network")
438 then
439 return True;
440 else
441 S := Scope (S);
442 end if;
443 end loop;
444
445 return False;
446 end Is_Suspicious_Function_Name;
447
448 --------------
449 -- Test_Ref --
450 --------------
451
452 function Test_Ref (N : Node_Id) return Traverse_Result is
453 begin
454 -- Waste of time to look at the expression we are testing
455
456 if N = Expression then
457 return Skip;
458
459 -- Direct reference to variable in question
460
461 elsif Is_Entity_Name (N)
462 and then Present (Entity (N))
463 and then Entity (N) = Var
464 then
465 -- If this is an lvalue, then definitely abandon, since
466 -- this could be a direct modification of the variable.
467
468 if May_Be_Lvalue (N) then
469 return Abandon;
470 end if;
471
472 -- If the condition contains a function call, we consider it may
473 -- be modified by side-effects from a procedure call. Otherwise,
474 -- we consider the condition may not be modified, although that
475 -- might happen if Variable is itself a by-reference parameter,
476 -- and the procedure called modifies the global object referred to
477 -- by Variable, but we actually prefer to issue a warning in this
478 -- odd case. Note that the case where the procedure called has
479 -- visibility over Variable is treated in another case below.
480
481 if Function_Call_Found then
482 declare
483 P : Node_Id;
484
485 begin
486 P := N;
487 loop
488 P := Parent (P);
489 exit when P = Loop_Statement;
490
491 -- Abandon if at procedure call, or something strange is
492 -- going on (perhaps a node with no parent that should
493 -- have one but does not?) As always, for a warning we
494 -- prefer to just abandon the warning than get into the
495 -- business of complaining about the tree structure here.
496
497 if No (P)
498 or else Nkind (P) = N_Procedure_Call_Statement
499 then
500 return Abandon;
501 end if;
502 end loop;
503 end;
504 end if;
505
506 -- Reference to variable renaming variable in question
507
508 elsif Is_Entity_Name (N)
509 and then Present (Entity (N))
510 and then Ekind (Entity (N)) = E_Variable
511 and then Present (Renamed_Object (Entity (N)))
512 and then Is_Entity_Name (Renamed_Object (Entity (N)))
513 and then Entity (Renamed_Object (Entity (N))) = Var
514 and then May_Be_Lvalue (N)
515 then
516 return Abandon;
517
518 -- Call to subprogram
519
520 elsif Nkind (N) in N_Subprogram_Call then
521
522 -- If subprogram is within the scope of the entity we are dealing
523 -- with as the loop variable, then it could modify this parameter,
524 -- so we abandon in this case. In the case of a subprogram that is
525 -- not an entity we also abandon. The check for no entity being
526 -- present is a defense against previous errors.
527
528 if not Is_Entity_Name (Name (N))
529 or else No (Entity (Name (N)))
530 or else Scope_Within (Entity (Name (N)), Scope (Var))
531 then
532 return Abandon;
533 end if;
534
535 -- If any of the arguments are of type access to subprogram, then
536 -- we may have funny side effects, so no warning in this case.
537
538 declare
539 Actual : Node_Id;
540 begin
541 Actual := First_Actual (N);
542 while Present (Actual) loop
543 if Is_Access_Subprogram_Type (Etype (Actual)) then
544 return Abandon;
545 else
546 Next_Actual (Actual);
547 end if;
548 end loop;
549 end;
550
551 -- Declaration of the variable in question
552
553 elsif Nkind (N) = N_Object_Declaration
554 and then Defining_Identifier (N) = Var
555 then
556 return Abandon;
557 end if;
558
559 -- All OK, continue scan
560
561 return OK;
562 end Test_Ref;
563
564 -- Start of processing for Check_Infinite_Loop_Warning
565
566 begin
567 -- Skip processing if debug flag gnatd.w is set
568
569 if Debug_Flag_Dot_W then
570 return;
571 end if;
572
573 -- Deal with Iteration scheme present
574
575 declare
576 Iter : constant Node_Id := Iteration_Scheme (Loop_Statement);
577
578 begin
579 if Present (Iter) then
580
581 -- While iteration
582
583 if Present (Condition (Iter)) then
584
585 -- Skip processing for while iteration with conditions actions,
586 -- since they make it too complicated to get the warning right.
587
588 if Present (Condition_Actions (Iter)) then
589 return;
590 end if;
591
592 -- Capture WHILE condition
593
594 Expression := Condition (Iter);
595
596 -- For iteration, do not process, since loop will always terminate
597
598 elsif Present (Loop_Parameter_Specification (Iter)) then
599 return;
600 end if;
601 end if;
602 end;
603
604 -- Check chain of EXIT statements, we only process loops that have a
605 -- single exit condition (either a single EXIT WHEN statement, or a
606 -- WHILE loop not containing any EXIT WHEN statements).
607
608 declare
609 Ident : constant Node_Id := Identifier (Loop_Statement);
610 Exit_Stmt : Node_Id;
611
612 begin
613 -- If we don't have a proper chain set, ignore call entirely. This
614 -- happens because of previous errors.
615
616 if No (Entity (Ident))
617 or else Ekind (Entity (Ident)) /= E_Loop
618 then
619 Check_Error_Detected;
620 return;
621 end if;
622
623 -- Otherwise prepare to scan list of EXIT statements
624
625 Exit_Stmt := First_Exit_Statement (Entity (Ident));
626 while Present (Exit_Stmt) loop
627
628 -- Check for EXIT WHEN
629
630 if Present (Condition (Exit_Stmt)) then
631
632 -- Quit processing if EXIT WHEN in WHILE loop, or more than
633 -- one EXIT WHEN statement present in the loop.
634
635 if Present (Expression) then
636 return;
637
638 -- Otherwise capture condition from EXIT WHEN statement
639
640 else
641 Expression := Condition (Exit_Stmt);
642 end if;
643
644 -- If an unconditional exit statement is the last statement in the
645 -- loop, assume that no warning is needed, without any attempt at
646 -- checking whether the exit is reachable.
647
648 elsif Exit_Stmt = Last (Statements (Loop_Statement)) then
649 return;
650 end if;
651
652 Exit_Stmt := Next_Exit_Statement (Exit_Stmt);
653 end loop;
654 end;
655
656 -- Return if no condition to test
657
658 if No (Expression) then
659 return;
660 end if;
661
662 -- Initial conditions met, see if condition is of right form
663
664 Find_Var (Expression);
665
666 -- Nothing to do if local variable from source not found. If it's a
667 -- renaming, it is probably renaming something too complicated to deal
668 -- with here.
669
670 if No (Var)
671 or else Ekind (Var) /= E_Variable
672 or else Is_Library_Level_Entity (Var)
673 or else not Comes_From_Source (Var)
674 or else Nkind (Parent (Var)) = N_Object_Renaming_Declaration
675 then
676 return;
677
678 -- Nothing to do if there is some indirection involved (assume that the
679 -- designated variable might be modified in some way we don't see).
680 -- However, if no function call was found, then we don't care about
681 -- indirections, because the condition must be something like "while X
682 -- /= null loop", so we don't care if X.all is modified in the loop.
683
684 elsif Function_Call_Found and then Has_Indirection (Etype (Var)) then
685 return;
686
687 -- Same sort of thing for volatile variable, might be modified by
688 -- some other task or by the operating system in some way.
689
690 elsif Is_Volatile (Var) then
691 return;
692 end if;
693
694 -- Filter out case of original statement sequence starting with delay.
695 -- We assume this is a multi-tasking program and that the condition
696 -- is affected by other threads (some kind of busy wait).
697
698 declare
699 Fstm : constant Node_Id :=
700 Original_Node (First (Statements (Loop_Statement)));
701 begin
702 if Nkind (Fstm) = N_Delay_Relative_Statement
703 or else Nkind (Fstm) = N_Delay_Until_Statement
704 then
705 return;
706 end if;
707 end;
708
709 -- We have a variable reference of the right form, now we scan the loop
710 -- body to see if it looks like it might not be modified
711
712 if No_Ref_Found (Loop_Statement) = OK then
713 Error_Msg_NE
714 ("??variable& is not modified in loop body!", Ref, Var);
715 Error_Msg_N
716 ("\??possible infinite loop!", Ref);
717 end if;
718 end Check_Infinite_Loop_Warning;
719
720 ----------------------------
721 -- Check_Low_Bound_Tested --
722 ----------------------------
723
724 procedure Check_Low_Bound_Tested (Expr : Node_Id) is
725 begin
726 if Comes_From_Source (Expr) then
727 declare
728 L : constant Node_Id := Left_Opnd (Expr);
729 R : constant Node_Id := Right_Opnd (Expr);
730 begin
731 if Nkind (L) = N_Attribute_Reference
732 and then Attribute_Name (L) = Name_First
733 and then Is_Entity_Name (Prefix (L))
734 and then Is_Formal (Entity (Prefix (L)))
735 then
736 Set_Low_Bound_Tested (Entity (Prefix (L)));
737 end if;
738
739 if Nkind (R) = N_Attribute_Reference
740 and then Attribute_Name (R) = Name_First
741 and then Is_Entity_Name (Prefix (R))
742 and then Is_Formal (Entity (Prefix (R)))
743 then
744 Set_Low_Bound_Tested (Entity (Prefix (R)));
745 end if;
746 end;
747 end if;
748 end Check_Low_Bound_Tested;
749
750 ----------------------
751 -- Check_References --
752 ----------------------
753
754 procedure Check_References (E : Entity_Id; Anod : Node_Id := Empty) is
755 E1 : Entity_Id;
756 E1T : Entity_Id;
757 UR : Node_Id;
758
759 function Body_Formal
760 (E : Entity_Id;
761 Accept_Statement : Node_Id) return Entity_Id;
762 -- For an entry formal entity from an entry declaration, find the
763 -- corresponding body formal from the given accept statement.
764
765 procedure May_Need_Initialized_Actual (Ent : Entity_Id);
766 -- If an entity of a generic type has default initialization, then the
767 -- corresponding actual type should be fully initialized, or else there
768 -- will be uninitialized components in the instantiation, that might go
769 -- unreported. This routine marks the type of the uninitialized variable
770 -- appropriately to allow the compiler to emit an appropriate warning
771 -- in the instance. In a sense, the use of a type that requires full
772 -- initialization is a weak part of the generic contract.
773
774 function Missing_Subunits return Boolean;
775 -- We suppress warnings when there are missing subunits, because this
776 -- may generate too many false positives: entities in a parent may only
777 -- be referenced in one of the subunits. We make an exception for
778 -- subunits that contain no other stubs.
779
780 procedure Output_Reference_Error (M : String);
781 -- Used to output an error message. Deals with posting the error on the
782 -- body formal in the accept case.
783
784 function Publicly_Referenceable (Ent : Entity_Id) return Boolean;
785 -- This is true if the entity in question is potentially referenceable
786 -- from another unit. This is true for entities in packages that are at
787 -- the library level.
788
789 function Warnings_Off_E1 return Boolean;
790 -- Return True if Warnings_Off is set for E1, or for its Etype (E1T),
791 -- or for the base type of E1T.
792
793 -----------------
794 -- Body_Formal --
795 -----------------
796
797 function Body_Formal
798 (E : Entity_Id;
799 Accept_Statement : Node_Id) return Entity_Id
800 is
801 Body_Param : Node_Id;
802 Body_E : Entity_Id;
803
804 begin
805 -- Loop to find matching parameter in accept statement
806
807 Body_Param := First (Parameter_Specifications (Accept_Statement));
808 while Present (Body_Param) loop
809 Body_E := Defining_Identifier (Body_Param);
810
811 if Chars (Body_E) = Chars (E) then
812 return Body_E;
813 end if;
814
815 Next (Body_Param);
816 end loop;
817
818 -- Should never fall through, should always find a match
819
820 raise Program_Error;
821 end Body_Formal;
822
823 -----------------------------------
824 -- May_Need_Initialized_Actual --
825 -----------------------------------
826
827 procedure May_Need_Initialized_Actual (Ent : Entity_Id) is
828 T : constant Entity_Id := Etype (Ent);
829 Par : constant Node_Id := Parent (T);
830
831 begin
832 if not Is_Generic_Type (T) then
833 null;
834
835 elsif (Nkind (Par)) = N_Private_Extension_Declaration then
836
837 -- We only indicate the first such variable in the generic.
838
839 if No (Uninitialized_Variable (Par)) then
840 Set_Uninitialized_Variable (Par, Ent);
841 end if;
842
843 elsif (Nkind (Par)) = N_Formal_Type_Declaration
844 and then Nkind (Formal_Type_Definition (Par)) =
845 N_Formal_Private_Type_Definition
846 then
847 if No (Uninitialized_Variable (Formal_Type_Definition (Par))) then
848 Set_Uninitialized_Variable (Formal_Type_Definition (Par), Ent);
849 end if;
850 end if;
851 end May_Need_Initialized_Actual;
852
853 ----------------------
854 -- Missing_Subunits --
855 ----------------------
856
857 function Missing_Subunits return Boolean is
858 D : Node_Id;
859
860 begin
861 if not Unloaded_Subunits then
862
863 -- Normal compilation, all subunits are present
864
865 return False;
866
867 elsif E /= Main_Unit_Entity then
868
869 -- No warnings on a stub that is not the main unit
870
871 return True;
872
873 elsif Nkind (Unit_Declaration_Node (E)) in N_Proper_Body then
874 D := First (Declarations (Unit_Declaration_Node (E)));
875 while Present (D) loop
876
877 -- No warnings if the proper body contains nested stubs
878
879 if Nkind (D) in N_Body_Stub then
880 return True;
881 end if;
882
883 Next (D);
884 end loop;
885
886 return False;
887
888 else
889 -- Missing stubs elsewhere
890
891 return True;
892 end if;
893 end Missing_Subunits;
894
895 ----------------------------
896 -- Output_Reference_Error --
897 ----------------------------
898
899 procedure Output_Reference_Error (M : String) is
900 begin
901 -- Never issue messages for internal names, nor for renamings
902
903 if Is_Internal_Name (Chars (E1))
904 or else Nkind (Parent (E1)) = N_Object_Renaming_Declaration
905 then
906 return;
907 end if;
908
909 -- Don't output message for IN OUT formal unless we have the warning
910 -- flag specifically set. It is a bit odd to distinguish IN OUT
911 -- formals from other cases. This distinction is historical in
912 -- nature. Warnings for IN OUT formals were added fairly late.
913
914 if Ekind (E1) = E_In_Out_Parameter
915 and then not Check_Unreferenced_Formals
916 then
917 return;
918 end if;
919
920 -- Other than accept case, post error on defining identifier
921
922 if No (Anod) then
923 Error_Msg_N (M, E1);
924
925 -- Accept case, find body formal to post the message
926
927 else
928 Error_Msg_NE (M, Body_Formal (E1, Accept_Statement => Anod), E1);
929
930 end if;
931 end Output_Reference_Error;
932
933 ----------------------------
934 -- Publicly_Referenceable --
935 ----------------------------
936
937 function Publicly_Referenceable (Ent : Entity_Id) return Boolean is
938 P : Node_Id;
939 Prev : Node_Id;
940
941 begin
942 -- A formal parameter is never referenceable outside the body of its
943 -- subprogram or entry.
944
945 if Is_Formal (Ent) then
946 return False;
947 end if;
948
949 -- Examine parents to look for a library level package spec. But if
950 -- we find a body or block or other similar construct along the way,
951 -- we cannot be referenced.
952
953 Prev := Ent;
954 P := Parent (Ent);
955 loop
956 case Nkind (P) is
957
958 -- If we get to top of tree, then publicly referenceable
959
960 when N_Empty =>
961 return True;
962
963 -- If we reach a generic package declaration, then always
964 -- consider this referenceable, since any instantiation will
965 -- have access to the entities in the generic package. Note
966 -- that the package itself may not be instantiated, but then
967 -- we will get a warning for the package entity.
968
969 -- Note that generic formal parameters are themselves not
970 -- publicly referenceable in an instance, and warnings on them
971 -- are useful.
972
973 when N_Generic_Package_Declaration =>
974 return
975 not Is_List_Member (Prev)
976 or else List_Containing (Prev) /=
977 Generic_Formal_Declarations (P);
978
979 -- Similarly, the generic formals of a generic subprogram are
980 -- not accessible.
981
982 when N_Generic_Subprogram_Declaration =>
983 if Is_List_Member (Prev)
984 and then List_Containing (Prev) =
985 Generic_Formal_Declarations (P)
986 then
987 return False;
988 else
989 P := Parent (P);
990 end if;
991
992 -- If we reach a subprogram body, entity is not referenceable
993 -- unless it is the defining entity of the body. This will
994 -- happen, e.g. when a function is an attribute renaming that
995 -- is rewritten as a body.
996
997 when N_Subprogram_Body =>
998 if Ent /= Defining_Entity (P) then
999 return False;
1000 else
1001 P := Parent (P);
1002 end if;
1003
1004 -- If we reach any other body, definitely not referenceable
1005
1006 when N_Package_Body |
1007 N_Task_Body |
1008 N_Entry_Body |
1009 N_Protected_Body |
1010 N_Block_Statement |
1011 N_Subunit =>
1012 return False;
1013
1014 -- For all other cases, keep looking up tree
1015
1016 when others =>
1017 Prev := P;
1018 P := Parent (P);
1019 end case;
1020 end loop;
1021 end Publicly_Referenceable;
1022
1023 ---------------------
1024 -- Warnings_Off_E1 --
1025 ---------------------
1026
1027 function Warnings_Off_E1 return Boolean is
1028 begin
1029 return Has_Warnings_Off (E1T)
1030 or else Has_Warnings_Off (Base_Type (E1T))
1031 or else Warnings_Off_Check_Spec (E1);
1032 end Warnings_Off_E1;
1033
1034 -- Start of processing for Check_References
1035
1036 begin
1037 Process_Deferred_References;
1038
1039 -- No messages if warnings are suppressed, or if we have detected any
1040 -- real errors so far (this last check avoids junk messages resulting
1041 -- from errors, e.g. a subunit that is not loaded).
1042
1043 if Warning_Mode = Suppress or else Serious_Errors_Detected /= 0 then
1044 return;
1045 end if;
1046
1047 -- We also skip the messages if any subunits were not loaded (see
1048 -- comment in Sem_Ch10 to understand how this is set, and why it is
1049 -- necessary to suppress the warnings in this case).
1050
1051 if Missing_Subunits then
1052 return;
1053 end if;
1054
1055 -- Otherwise loop through entities, looking for suspicious stuff
1056
1057 E1 := First_Entity (E);
1058 while Present (E1) loop
1059 E1T := Etype (E1);
1060
1061 -- We are only interested in source entities. We also don't issue
1062 -- warnings within instances, since the proper place for such
1063 -- warnings is on the template when it is compiled.
1064
1065 if Comes_From_Source (E1)
1066 and then Instantiation_Location (Sloc (E1)) = No_Location
1067 then
1068 -- We are interested in variables and out/in-out parameters, but
1069 -- we exclude protected types, too complicated to worry about.
1070
1071 if Ekind (E1) = E_Variable
1072 or else
1073 (Ekind_In (E1, E_Out_Parameter, E_In_Out_Parameter)
1074 and then not Is_Protected_Type (Current_Scope))
1075 then
1076 -- Case of an unassigned variable
1077
1078 -- First gather any Unset_Reference indication for E1. In the
1079 -- case of a parameter, it is the Spec_Entity that is relevant.
1080
1081 if Ekind (E1) = E_Out_Parameter
1082 and then Present (Spec_Entity (E1))
1083 then
1084 UR := Unset_Reference (Spec_Entity (E1));
1085 else
1086 UR := Unset_Reference (E1);
1087 end if;
1088
1089 -- Special processing for access types
1090
1091 if Present (UR) and then Is_Access_Type (E1T) then
1092
1093 -- For access types, the only time we made a UR entry was
1094 -- for a dereference, and so we post the appropriate warning
1095 -- here (note that the dereference may not be explicit in
1096 -- the source, for example in the case of a dispatching call
1097 -- with an anonymous access controlling formal, or of an
1098 -- assignment of a pointer involving discriminant check on
1099 -- the designated object).
1100
1101 if not Warnings_Off_E1 then
1102 Error_Msg_NE ("??& may be null!", UR, E1);
1103 end if;
1104
1105 goto Continue;
1106
1107 -- Case of variable that could be a constant. Note that we
1108 -- never signal such messages for generic package entities,
1109 -- since a given instance could have modifications outside
1110 -- the package.
1111
1112 elsif Warn_On_Constant
1113 and then (Ekind (E1) = E_Variable
1114 and then Has_Initial_Value (E1))
1115 and then Never_Set_In_Source_Check_Spec (E1)
1116 and then not Address_Taken (E1)
1117 and then not Generic_Package_Spec_Entity (E1)
1118 then
1119 -- A special case, if this variable is volatile and not
1120 -- imported, it is not helpful to tell the programmer
1121 -- to mark the variable as constant, since this would be
1122 -- illegal by virtue of RM C.6(13).
1123
1124 if (Is_Volatile (E1) or else Has_Volatile_Components (E1))
1125 and then not Is_Imported (E1)
1126 then
1127 Error_Msg_N
1128 ("?k?& is not modified, volatile has no effect!", E1);
1129
1130 -- Another special case, Exception_Occurrence, this catches
1131 -- the case of exception choice (and a bit more too, but not
1132 -- worth doing more investigation here).
1133
1134 elsif Is_RTE (E1T, RE_Exception_Occurrence) then
1135 null;
1136
1137 -- Here we give the warning if referenced and no pragma
1138 -- Unreferenced or Unmodified is present.
1139
1140 else
1141 -- Variable case
1142
1143 if Ekind (E1) = E_Variable then
1144 if Referenced_Check_Spec (E1)
1145 and then not Has_Pragma_Unreferenced_Check_Spec (E1)
1146 and then not Has_Pragma_Unmodified_Check_Spec (E1)
1147 then
1148 if not Warnings_Off_E1 then
1149 Error_Msg_N -- CODEFIX
1150 ("?k?& is not modified, "
1151 & "could be declared constant!",
1152 E1);
1153 end if;
1154 end if;
1155 end if;
1156 end if;
1157
1158 -- Other cases of a variable or parameter never set in source
1159
1160 elsif Never_Set_In_Source_Check_Spec (E1)
1161
1162 -- No warning if warning for this case turned off
1163
1164 and then Warn_On_No_Value_Assigned
1165
1166 -- No warning if address taken somewhere
1167
1168 and then not Address_Taken (E1)
1169
1170 -- No warning if explicit initial value
1171
1172 and then not Has_Initial_Value (E1)
1173
1174 -- No warning for generic package spec entities, since we
1175 -- might set them in a child unit or something like that
1176
1177 and then not Generic_Package_Spec_Entity (E1)
1178
1179 -- No warning if fully initialized type, except that for
1180 -- this purpose we do not consider access types to qualify
1181 -- as fully initialized types (relying on an access type
1182 -- variable being null when it is never set is a bit odd).
1183
1184 -- Also we generate warning for an out parameter that is
1185 -- never referenced, since again it seems odd to rely on
1186 -- default initialization to set an out parameter value.
1187
1188 and then (Is_Access_Type (E1T)
1189 or else Ekind (E1) = E_Out_Parameter
1190 or else not Is_Fully_Initialized_Type (E1T))
1191 then
1192 -- Do not output complaint about never being assigned a
1193 -- value if a pragma Unmodified applies to the variable
1194 -- we are examining, or if it is a parameter, if there is
1195 -- a pragma Unreferenced for the corresponding spec, or
1196 -- if the type is marked as having unreferenced objects.
1197 -- The last is a little peculiar, but better too few than
1198 -- too many warnings in this situation.
1199
1200 if Has_Pragma_Unreferenced_Objects (E1T)
1201 or else Has_Pragma_Unmodified_Check_Spec (E1)
1202 then
1203 null;
1204
1205 -- IN OUT parameter case where parameter is referenced. We
1206 -- separate this out, since this is the case where we delay
1207 -- output of the warning until more information is available
1208 -- (about use in an instantiation or address being taken).
1209
1210 elsif Ekind (E1) = E_In_Out_Parameter
1211 and then Referenced_Check_Spec (E1)
1212 then
1213 -- Suppress warning if private type, and the procedure
1214 -- has a separate declaration in a different unit. This
1215 -- is the case where the client of a package sees only
1216 -- the private type, and it may be quite reasonable
1217 -- for the logical view to be IN OUT, even if the
1218 -- implementation ends up using access types or some
1219 -- other method to achieve the local effect of a
1220 -- modification. On the other hand if the spec and body
1221 -- are in the same unit, we are in the package body and
1222 -- there we have less excuse for a junk IN OUT parameter.
1223
1224 if Has_Private_Declaration (E1T)
1225 and then Present (Spec_Entity (E1))
1226 and then not In_Same_Source_Unit (E1, Spec_Entity (E1))
1227 then
1228 null;
1229
1230 -- Suppress warning for any parameter of a dispatching
1231 -- operation, since it is quite reasonable to have an
1232 -- operation that is overridden, and for some subclasses
1233 -- needs the formal to be IN OUT and for others happens
1234 -- not to assign it.
1235
1236 elsif Is_Dispatching_Operation
1237 (Scope (Goto_Spec_Entity (E1)))
1238 then
1239 null;
1240
1241 -- Suppress warning if composite type contains any access
1242 -- component, since the logical effect of modifying a
1243 -- parameter may be achieved by modifying a referenced
1244 -- object.
1245
1246 elsif Is_Composite_Type (E1T)
1247 and then Has_Access_Values (E1T)
1248 then
1249 null;
1250
1251 -- Suppress warning on formals of an entry body. All
1252 -- references are attached to the formal in the entry
1253 -- declaration, which are marked Is_Entry_Formal.
1254
1255 elsif Ekind (Scope (E1)) = E_Entry
1256 and then not Is_Entry_Formal (E1)
1257 then
1258 null;
1259
1260 -- OK, looks like warning for an IN OUT parameter that
1261 -- could be IN makes sense, but we delay the output of
1262 -- the warning, pending possibly finding out later on
1263 -- that the associated subprogram is used as a generic
1264 -- actual, or its address/access is taken. In these two
1265 -- cases, we suppress the warning because the context may
1266 -- force use of IN OUT, even if in this particular case
1267 -- the formal is not modified.
1268
1269 else
1270 In_Out_Warnings.Append (E1);
1271 end if;
1272
1273 -- Other cases of formals
1274
1275 elsif Is_Formal (E1) then
1276 if not Is_Trivial_Subprogram (Scope (E1)) then
1277 if Referenced_Check_Spec (E1) then
1278 if not Has_Pragma_Unmodified_Check_Spec (E1)
1279 and then not Warnings_Off_E1
1280 then
1281 Output_Reference_Error
1282 ("?f?formal parameter& is read but "
1283 & "never assigned!");
1284 end if;
1285
1286 elsif not Has_Pragma_Unreferenced_Check_Spec (E1)
1287 and then not Warnings_Off_E1
1288 then
1289 Output_Reference_Error
1290 ("?f?formal parameter& is not referenced!");
1291 end if;
1292 end if;
1293
1294 -- Case of variable
1295
1296 else
1297 if Referenced (E1) then
1298 if not Has_Unmodified (E1)
1299 and then not Warnings_Off_E1
1300 and then not Is_Junk_Name (Chars (E1))
1301 then
1302 Output_Reference_Error
1303 ("?v?variable& is read but never assigned!");
1304 May_Need_Initialized_Actual (E1);
1305 end if;
1306
1307 elsif not Has_Unreferenced (E1)
1308 and then not Warnings_Off_E1
1309 and then not Is_Junk_Name (Chars (E1))
1310 then
1311 Output_Reference_Error -- CODEFIX
1312 ("?v?variable& is never read and never assigned!");
1313 end if;
1314
1315 -- Deal with special case where this variable is hidden
1316 -- by a loop variable.
1317
1318 if Ekind (E1) = E_Variable
1319 and then Present (Hiding_Loop_Variable (E1))
1320 and then not Warnings_Off_E1
1321 then
1322 Error_Msg_N
1323 ("?v?for loop implicitly declares loop variable!",
1324 Hiding_Loop_Variable (E1));
1325
1326 Error_Msg_Sloc := Sloc (E1);
1327 Error_Msg_N
1328 ("\?v?declaration hides & declared#!",
1329 Hiding_Loop_Variable (E1));
1330 end if;
1331 end if;
1332
1333 goto Continue;
1334 end if;
1335
1336 -- Check for unset reference
1337
1338 if Warn_On_No_Value_Assigned and then Present (UR) then
1339
1340 -- For other than access type, go back to original node to
1341 -- deal with case where original unset reference has been
1342 -- rewritten during expansion.
1343
1344 -- In some cases, the original node may be a type conversion
1345 -- or qualification, and in this case we want the object
1346 -- entity inside.
1347
1348 UR := Original_Node (UR);
1349 while Nkind (UR) = N_Type_Conversion
1350 or else Nkind (UR) = N_Qualified_Expression
1351 or else Nkind (UR) = N_Expression_With_Actions
1352 loop
1353 UR := Expression (UR);
1354 end loop;
1355
1356 -- Don't issue warning if appearing inside Initial_Condition
1357 -- pragma or aspect, since that expression is not evaluated
1358 -- at the point where it occurs in the source.
1359
1360 if In_Pragma_Expression (UR, Name_Initial_Condition) then
1361 goto Continue;
1362 end if;
1363
1364 -- Here we issue the warning, all checks completed
1365
1366 -- If we have a return statement, this was a case of an OUT
1367 -- parameter not being set at the time of the return. (Note:
1368 -- it can't be N_Extended_Return_Statement, because those
1369 -- are only for functions, and functions do not allow OUT
1370 -- parameters.)
1371
1372 if not Is_Trivial_Subprogram (Scope (E1)) then
1373 if Nkind (UR) = N_Simple_Return_Statement
1374 and then not Has_Pragma_Unmodified_Check_Spec (E1)
1375 then
1376 if not Warnings_Off_E1 then
1377 Error_Msg_NE
1378 ("?v?OUT parameter& not set before return",
1379 UR, E1);
1380 end if;
1381
1382 -- If the unset reference is a selected component
1383 -- prefix from source, mention the component as well.
1384 -- If the selected component comes from expansion, all
1385 -- we know is that the entity is not fully initialized
1386 -- at the point of the reference. Locate a random
1387 -- uninitialized component to get a better message.
1388
1389 elsif Nkind (Parent (UR)) = N_Selected_Component then
1390 Error_Msg_Node_2 := Selector_Name (Parent (UR));
1391
1392 if not Comes_From_Source (Parent (UR)) then
1393 declare
1394 Comp : Entity_Id;
1395
1396 begin
1397 Comp := First_Entity (E1T);
1398 while Present (Comp) loop
1399 if Ekind (Comp) = E_Component
1400 and then Nkind (Parent (Comp)) =
1401 N_Component_Declaration
1402 and then No (Expression (Parent (Comp)))
1403 then
1404 Error_Msg_Node_2 := Comp;
1405 exit;
1406 end if;
1407
1408 Next_Entity (Comp);
1409 end loop;
1410 end;
1411 end if;
1412
1413 -- Issue proper warning. This is a case of referencing
1414 -- a variable before it has been explicitly assigned.
1415 -- For access types, UR was only set for dereferences,
1416 -- so the issue is that the value may be null.
1417
1418 if not Is_Trivial_Subprogram (Scope (E1)) then
1419 if not Warnings_Off_E1 then
1420 if Is_Access_Type (Etype (Parent (UR))) then
1421 Error_Msg_N ("??`&.&` may be null!", UR);
1422 else
1423 Error_Msg_N
1424 ("??`&.&` may be referenced before "
1425 & "it has a value!", UR);
1426 end if;
1427 end if;
1428 end if;
1429
1430 -- All other cases of unset reference active
1431
1432 elsif not Warnings_Off_E1 then
1433 Error_Msg_N
1434 ("??& may be referenced before it has a value!", UR);
1435 end if;
1436 end if;
1437
1438 goto Continue;
1439
1440 end if;
1441 end if;
1442
1443 -- Then check for unreferenced entities. Note that we are only
1444 -- interested in entities whose Referenced flag is not set.
1445
1446 if not Referenced_Check_Spec (E1)
1447
1448 -- If Referenced_As_LHS is set, then that's still interesting
1449 -- (potential "assigned but never read" case), but not if we
1450 -- have pragma Unreferenced, which cancels this warning.
1451
1452 and then (not Referenced_As_LHS_Check_Spec (E1)
1453 or else not Has_Unreferenced (E1))
1454
1455 -- Check that warnings on unreferenced entities are enabled
1456
1457 and then
1458 ((Check_Unreferenced and then not Is_Formal (E1))
1459
1460 -- Case of warning on unreferenced formal
1461
1462 or else (Check_Unreferenced_Formals and then Is_Formal (E1))
1463
1464 -- Case of warning on unread variables modified by an
1465 -- assignment, or an OUT parameter if it is the only one.
1466
1467 or else (Warn_On_Modified_Unread
1468 and then Referenced_As_LHS_Check_Spec (E1))
1469
1470 -- Case of warning on any unread OUT parameter (note such
1471 -- indications are only set if the appropriate warning
1472 -- options were set, so no need to recheck here.)
1473
1474 or else Referenced_As_Out_Parameter_Check_Spec (E1))
1475
1476 -- All other entities, including local packages that cannot be
1477 -- referenced from elsewhere, including those declared within a
1478 -- package body.
1479
1480 and then (Is_Object (E1)
1481 or else Is_Type (E1)
1482 or else Ekind (E1) = E_Label
1483 or else Ekind_In (E1, E_Exception,
1484 E_Named_Integer,
1485 E_Named_Real)
1486 or else Is_Overloadable (E1)
1487
1488 -- Package case, if the main unit is a package spec
1489 -- or generic package spec, then there may be a
1490 -- corresponding body that references this package
1491 -- in some other file. Otherwise we can be sure
1492 -- that there is no other reference.
1493
1494 or else
1495 (Ekind (E1) = E_Package
1496 and then
1497 not Is_Package_Or_Generic_Package
1498 (Cunit_Entity (Current_Sem_Unit))))
1499
1500 -- Exclude instantiations, since there is no reason why every
1501 -- entity in an instantiation should be referenced.
1502
1503 and then Instantiation_Location (Sloc (E1)) = No_Location
1504
1505 -- Exclude formal parameters from bodies if the corresponding
1506 -- spec entity has been referenced in the case where there is
1507 -- a separate spec.
1508
1509 and then not (Is_Formal (E1)
1510 and then Ekind (Scope (E1)) = E_Subprogram_Body
1511 and then Present (Spec_Entity (E1))
1512 and then Referenced (Spec_Entity (E1)))
1513
1514 -- Consider private type referenced if full view is referenced.
1515 -- If there is not full view, this is a generic type on which
1516 -- warnings are also useful.
1517
1518 and then
1519 not (Is_Private_Type (E1)
1520 and then Present (Full_View (E1))
1521 and then Referenced (Full_View (E1)))
1522
1523 -- Don't worry about full view, only about private type
1524
1525 and then not Has_Private_Declaration (E1)
1526
1527 -- Eliminate dispatching operations from consideration, we
1528 -- cannot tell if these are referenced or not in any easy
1529 -- manner (note this also catches Adjust/Finalize/Initialize).
1530
1531 and then not Is_Dispatching_Operation (E1)
1532
1533 -- Check entity that can be publicly referenced (we do not give
1534 -- messages for such entities, since there could be other
1535 -- units, not involved in this compilation, that contain
1536 -- relevant references.
1537
1538 and then not Publicly_Referenceable (E1)
1539
1540 -- Class wide types are marked as source entities, but they are
1541 -- not really source entities, and are always created, so we do
1542 -- not care if they are not referenced.
1543
1544 and then Ekind (E1) /= E_Class_Wide_Type
1545
1546 -- Objects other than parameters of task types are allowed to
1547 -- be non-referenced, since they start up tasks.
1548
1549 and then ((Ekind (E1) /= E_Variable
1550 and then Ekind (E1) /= E_Constant
1551 and then Ekind (E1) /= E_Component)
1552 or else not Is_Task_Type (E1T))
1553
1554 -- For subunits, only place warnings on the main unit itself,
1555 -- since parent units are not completely compiled.
1556
1557 and then (Nkind (Unit (Cunit (Main_Unit))) /= N_Subunit
1558 or else Get_Source_Unit (E1) = Main_Unit)
1559
1560 -- No warning on a return object, because these are often
1561 -- created with a single expression and an implicit return.
1562 -- If the object is a variable there will be a warning
1563 -- indicating that it could be declared constant.
1564
1565 and then not
1566 (Ekind (E1) = E_Constant and then Is_Return_Object (E1))
1567 then
1568 -- Suppress warnings in internal units if not in -gnatg mode
1569 -- (these would be junk warnings for an applications program,
1570 -- since they refer to problems in internal units).
1571
1572 if GNAT_Mode
1573 or else not Is_Internal_File_Name
1574 (Unit_File_Name (Get_Source_Unit (E1)))
1575 then
1576 -- We do not immediately flag the error. This is because we
1577 -- have not expanded generic bodies yet, and they may have
1578 -- the missing reference. So instead we park the entity on a
1579 -- list, for later processing. However for the case of an
1580 -- accept statement we want to output messages now, since
1581 -- we know we already have all information at hand, and we
1582 -- also want to have separate warnings for each accept
1583 -- statement for the same entry.
1584
1585 if Present (Anod) then
1586 pragma Assert (Is_Formal (E1));
1587
1588 -- The unreferenced entity is E1, but post the warning
1589 -- on the body entity for this accept statement.
1590
1591 if not Warnings_Off_E1 then
1592 Warn_On_Unreferenced_Entity
1593 (E1, Body_Formal (E1, Accept_Statement => Anod));
1594 end if;
1595
1596 elsif not Warnings_Off_E1 then
1597 Unreferenced_Entities.Append (E1);
1598 end if;
1599 end if;
1600
1601 -- Generic units are referenced in the generic body, but if they
1602 -- are not public and never instantiated we want to force a
1603 -- warning on them. We treat them as redundant constructs to
1604 -- minimize noise.
1605
1606 elsif Is_Generic_Subprogram (E1)
1607 and then not Is_Instantiated (E1)
1608 and then not Publicly_Referenceable (E1)
1609 and then Instantiation_Depth (Sloc (E1)) = 0
1610 and then Warn_On_Redundant_Constructs
1611 then
1612 if not Warnings_Off_E1 then
1613 Unreferenced_Entities.Append (E1);
1614
1615 -- Force warning on entity
1616
1617 Set_Referenced (E1, False);
1618 end if;
1619 end if;
1620 end if;
1621
1622 -- Recurse into nested package or block. Do not recurse into a formal
1623 -- package, because the corresponding body is not analyzed.
1624
1625 <<Continue>>
1626 if (Is_Package_Or_Generic_Package (E1)
1627 and then Nkind (Parent (E1)) = N_Package_Specification
1628 and then
1629 Nkind (Original_Node (Unit_Declaration_Node (E1))) /=
1630 N_Formal_Package_Declaration)
1631
1632 or else Ekind (E1) = E_Block
1633 then
1634 Check_References (E1);
1635 end if;
1636
1637 Next_Entity (E1);
1638 end loop;
1639 end Check_References;
1640
1641 ---------------------------
1642 -- Check_Unset_Reference --
1643 ---------------------------
1644
1645 procedure Check_Unset_Reference (N : Node_Id) is
1646 Typ : constant Entity_Id := Etype (N);
1647
1648 function Is_OK_Fully_Initialized return Boolean;
1649 -- This function returns true if the given node N is fully initialized
1650 -- so that the reference is safe as far as this routine is concerned.
1651 -- Safe generally means that the type of N is a fully initialized type.
1652 -- The one special case is that for access types, which are always fully
1653 -- initialized, we don't consider a dereference OK since it will surely
1654 -- be dereferencing a null value, which won't do.
1655
1656 function Prefix_Has_Dereference (Pref : Node_Id) return Boolean;
1657 -- Used to test indexed or selected component or slice to see if the
1658 -- evaluation of the prefix depends on a dereference, and if so, returns
1659 -- True, in which case we always check the prefix, even if we know that
1660 -- the referenced component is initialized. Pref is the prefix to test.
1661
1662 -----------------------------
1663 -- Is_OK_Fully_Initialized --
1664 -----------------------------
1665
1666 function Is_OK_Fully_Initialized return Boolean is
1667 begin
1668 if Is_Access_Type (Typ) and then Is_Dereferenced (N) then
1669 return False;
1670 else
1671 return Is_Fully_Initialized_Type (Typ);
1672 end if;
1673 end Is_OK_Fully_Initialized;
1674
1675 ----------------------------
1676 -- Prefix_Has_Dereference --
1677 ----------------------------
1678
1679 function Prefix_Has_Dereference (Pref : Node_Id) return Boolean is
1680 begin
1681 -- If prefix is of an access type, it certainly needs a dereference
1682
1683 if Is_Access_Type (Etype (Pref)) then
1684 return True;
1685
1686 -- If prefix is explicit dereference, that's a dereference for sure
1687
1688 elsif Nkind (Pref) = N_Explicit_Dereference then
1689 return True;
1690
1691 -- If prefix is itself a component reference or slice check prefix
1692
1693 elsif Nkind (Pref) = N_Slice
1694 or else Nkind (Pref) = N_Indexed_Component
1695 or else Nkind (Pref) = N_Selected_Component
1696 then
1697 return Prefix_Has_Dereference (Prefix (Pref));
1698
1699 -- All other cases do not involve a dereference
1700
1701 else
1702 return False;
1703 end if;
1704 end Prefix_Has_Dereference;
1705
1706 -- Start of processing for Check_Unset_Reference
1707
1708 begin
1709 -- Nothing to do if warnings suppressed
1710
1711 if Warning_Mode = Suppress then
1712 return;
1713 end if;
1714
1715 -- Nothing to do for numeric or string literal. Do this test early to
1716 -- save time in a common case (it does not matter that we do not include
1717 -- character literal here, since that will be caught later on in the
1718 -- when others branch of the case statement).
1719
1720 if Nkind (N) in N_Numeric_Or_String_Literal then
1721 return;
1722 end if;
1723
1724 -- Ignore reference unless it comes from source. Almost always if we
1725 -- have a reference from generated code, it is bogus (e.g. calls to init
1726 -- procs to set default discriminant values).
1727
1728 if not Comes_From_Source (N) then
1729 return;
1730 end if;
1731
1732 -- Otherwise see what kind of node we have. If the entity already has an
1733 -- unset reference, it is not necessarily the earliest in the text,
1734 -- because resolution of the prefix of selected components is completed
1735 -- before the resolution of the selected component itself. As a result,
1736 -- given (R /= null and then R.X > 0), the occurrences of R are examined
1737 -- in right-to-left order. If there is already an unset reference, we
1738 -- check whether N is earlier before proceeding.
1739
1740 case Nkind (N) is
1741
1742 -- For identifier or expanded name, examine the entity involved
1743
1744 when N_Identifier | N_Expanded_Name =>
1745 declare
1746 E : constant Entity_Id := Entity (N);
1747
1748 begin
1749 if Ekind_In (E, E_Variable, E_Out_Parameter)
1750 and then Never_Set_In_Source_Check_Spec (E)
1751 and then not Has_Initial_Value (E)
1752 and then (No (Unset_Reference (E))
1753 or else
1754 Earlier_In_Extended_Unit
1755 (Sloc (N), Sloc (Unset_Reference (E))))
1756 and then not Has_Pragma_Unmodified_Check_Spec (E)
1757 and then not Warnings_Off_Check_Spec (E)
1758 then
1759 -- We may have an unset reference. The first test is whether
1760 -- this is an access to a discriminant of a record or a
1761 -- component with default initialization. Both of these
1762 -- cases can be ignored, since the actual object that is
1763 -- referenced is definitely initialized. Note that this
1764 -- covers the case of reading discriminants of an OUT
1765 -- parameter, which is OK even in Ada 83.
1766
1767 -- Note that we are only interested in a direct reference to
1768 -- a record component here. If the reference is through an
1769 -- access type, then the access object is being referenced,
1770 -- not the record, and still deserves an unset reference.
1771
1772 if Nkind (Parent (N)) = N_Selected_Component
1773 and not Is_Access_Type (Typ)
1774 then
1775 declare
1776 ES : constant Entity_Id :=
1777 Entity (Selector_Name (Parent (N)));
1778 begin
1779 if Ekind (ES) = E_Discriminant
1780 or else
1781 (Present (Declaration_Node (ES))
1782 and then
1783 Present (Expression (Declaration_Node (ES))))
1784 then
1785 return;
1786 end if;
1787 end;
1788 end if;
1789
1790 -- Exclude fully initialized types
1791
1792 if Is_OK_Fully_Initialized then
1793 return;
1794 end if;
1795
1796 -- Here we have a potential unset reference. But before we
1797 -- get worried about it, we have to make sure that the
1798 -- entity declaration is in the same procedure as the
1799 -- reference, since if they are in separate procedures, then
1800 -- we have no idea about sequential execution.
1801
1802 -- The tests in the loop below catch all such cases, but do
1803 -- allow the reference to appear in a loop, block, or
1804 -- package spec that is nested within the declaring scope.
1805 -- As always, it is possible to construct cases where the
1806 -- warning is wrong, that is why it is a warning.
1807
1808 Potential_Unset_Reference : declare
1809 SR : Entity_Id;
1810 SE : constant Entity_Id := Scope (E);
1811
1812 function Within_Postcondition return Boolean;
1813 -- Returns True if N is within a Postcondition, a
1814 -- Refined_Post, an Ensures component in a Test_Case,
1815 -- or a Contract_Cases.
1816
1817 --------------------------
1818 -- Within_Postcondition --
1819 --------------------------
1820
1821 function Within_Postcondition return Boolean is
1822 Nod, P : Node_Id;
1823
1824 begin
1825 Nod := Parent (N);
1826 while Present (Nod) loop
1827 if Nkind (Nod) = N_Pragma
1828 and then Nam_In (Pragma_Name (Nod),
1829 Name_Postcondition,
1830 Name_Refined_Post,
1831 Name_Contract_Cases)
1832 then
1833 return True;
1834
1835 elsif Present (Parent (Nod)) then
1836 P := Parent (Nod);
1837
1838 if Nkind (P) = N_Pragma
1839 and then Pragma_Name (P) = Name_Test_Case
1840 and then Nod = Get_Ensures_From_CTC_Pragma (P)
1841 then
1842 return True;
1843 end if;
1844 end if;
1845
1846 Nod := Parent (Nod);
1847 end loop;
1848
1849 return False;
1850 end Within_Postcondition;
1851
1852 -- Start of processing for Potential_Unset_Reference
1853
1854 begin
1855 SR := Current_Scope;
1856 while SR /= SE loop
1857 if SR = Standard_Standard
1858 or else Is_Subprogram (SR)
1859 or else Is_Concurrent_Body (SR)
1860 or else Is_Concurrent_Type (SR)
1861 then
1862 return;
1863 end if;
1864
1865 SR := Scope (SR);
1866 end loop;
1867
1868 -- Case of reference has an access type. This is a
1869 -- special case since access types are always set to null
1870 -- so cannot be truly uninitialized, but we still want to
1871 -- warn about cases of obvious null dereference.
1872
1873 if Is_Access_Type (Typ) then
1874 Access_Type_Case : declare
1875 P : Node_Id;
1876
1877 function Process
1878 (N : Node_Id) return Traverse_Result;
1879 -- Process function for instantiation of Traverse
1880 -- below. Checks if N contains reference to E other
1881 -- than a dereference.
1882
1883 function Ref_In (Nod : Node_Id) return Boolean;
1884 -- Determines whether Nod contains a reference to
1885 -- the entity E that is not a dereference.
1886
1887 -------------
1888 -- Process --
1889 -------------
1890
1891 function Process
1892 (N : Node_Id) return Traverse_Result
1893 is
1894 begin
1895 if Is_Entity_Name (N)
1896 and then Entity (N) = E
1897 and then not Is_Dereferenced (N)
1898 then
1899 return Abandon;
1900 else
1901 return OK;
1902 end if;
1903 end Process;
1904
1905 ------------
1906 -- Ref_In --
1907 ------------
1908
1909 function Ref_In (Nod : Node_Id) return Boolean is
1910 function Traverse is new Traverse_Func (Process);
1911 begin
1912 return Traverse (Nod) = Abandon;
1913 end Ref_In;
1914
1915 -- Start of processing for Access_Type_Case
1916
1917 begin
1918 -- Don't bother if we are inside an instance, since
1919 -- the compilation of the generic template is where
1920 -- the warning should be issued.
1921
1922 if In_Instance then
1923 return;
1924 end if;
1925
1926 -- Don't bother if this is not the main unit. If we
1927 -- try to give this warning for with'ed units, we
1928 -- get some false positives, since we do not record
1929 -- references in other units.
1930
1931 if not In_Extended_Main_Source_Unit (E)
1932 or else
1933 not In_Extended_Main_Source_Unit (N)
1934 then
1935 return;
1936 end if;
1937
1938 -- We are only interested in dereferences
1939
1940 if not Is_Dereferenced (N) then
1941 return;
1942 end if;
1943
1944 -- One more check, don't bother with references
1945 -- that are inside conditional statements or WHILE
1946 -- loops if the condition references the entity in
1947 -- question. This avoids most false positives.
1948
1949 P := Parent (N);
1950 loop
1951 P := Parent (P);
1952 exit when No (P);
1953
1954 if Nkind_In (P, N_If_Statement, N_Elsif_Part)
1955 and then Ref_In (Condition (P))
1956 then
1957 return;
1958
1959 elsif Nkind (P) = N_Loop_Statement
1960 and then Present (Iteration_Scheme (P))
1961 and then
1962 Ref_In (Condition (Iteration_Scheme (P)))
1963 then
1964 return;
1965 end if;
1966 end loop;
1967 end Access_Type_Case;
1968 end if;
1969
1970 -- One more check, don't bother if we are within a
1971 -- postcondition, since the expression occurs in a
1972 -- place unrelated to the actual test.
1973
1974 if not Within_Postcondition then
1975
1976 -- Here we definitely have a case for giving a warning
1977 -- for a reference to an unset value. But we don't
1978 -- give the warning now. Instead set Unset_Reference
1979 -- in the identifier involved. The reason for this is
1980 -- that if we find the variable is never ever assigned
1981 -- a value then that warning is more important and
1982 -- there is no point in giving the reference warning.
1983
1984 -- If this is an identifier, set the field directly
1985
1986 if Nkind (N) = N_Identifier then
1987 Set_Unset_Reference (E, N);
1988
1989 -- Otherwise it is an expanded name, so set the field
1990 -- of the actual identifier for the reference.
1991
1992 else
1993 Set_Unset_Reference (E, Selector_Name (N));
1994 end if;
1995 end if;
1996 end Potential_Unset_Reference;
1997 end if;
1998 end;
1999
2000 -- Indexed component or slice
2001
2002 when N_Indexed_Component | N_Slice =>
2003
2004 -- If prefix does not involve dereferencing an access type, then
2005 -- we know we are OK if the component type is fully initialized,
2006 -- since the component will have been set as part of the default
2007 -- initialization.
2008
2009 if not Prefix_Has_Dereference (Prefix (N))
2010 and then Is_OK_Fully_Initialized
2011 then
2012 return;
2013
2014 -- Look at prefix in access type case, or if the component is not
2015 -- fully initialized.
2016
2017 else
2018 Check_Unset_Reference (Prefix (N));
2019 end if;
2020
2021 -- Record component
2022
2023 when N_Selected_Component =>
2024 declare
2025 Pref : constant Node_Id := Prefix (N);
2026 Ent : constant Entity_Id := Entity (Selector_Name (N));
2027
2028 begin
2029 -- If prefix involves dereferencing an access type, always
2030 -- check the prefix, since the issue then is whether this
2031 -- access value is null.
2032
2033 if Prefix_Has_Dereference (Pref) then
2034 null;
2035
2036 -- Always go to prefix if no selector entity is set. Can this
2037 -- happen in the normal case? Not clear, but it definitely can
2038 -- happen in error cases.
2039
2040 elsif No (Ent) then
2041 null;
2042
2043 -- For a record component, check some cases where we have
2044 -- reasonable cause to consider that the component is known to
2045 -- be or probably is initialized. In this case, we don't care
2046 -- if the prefix itself was explicitly initialized.
2047
2048 -- Discriminants are always considered initialized
2049
2050 elsif Ekind (Ent) = E_Discriminant then
2051 return;
2052
2053 -- An explicitly initialized component is certainly initialized
2054
2055 elsif Nkind (Parent (Ent)) = N_Component_Declaration
2056 and then Present (Expression (Parent (Ent)))
2057 then
2058 return;
2059
2060 -- A fully initialized component is initialized
2061
2062 elsif Is_OK_Fully_Initialized then
2063 return;
2064 end if;
2065
2066 -- If none of those cases apply, check the record type prefix
2067
2068 Check_Unset_Reference (Pref);
2069 end;
2070
2071 -- For type conversions, qualifications, or expressions with actions,
2072 -- examine the expression.
2073
2074 when N_Type_Conversion |
2075 N_Qualified_Expression |
2076 N_Expression_With_Actions =>
2077 Check_Unset_Reference (Expression (N));
2078
2079 -- For explicit dereference, always check prefix, which will generate
2080 -- an unset reference (since this is a case of dereferencing null).
2081
2082 when N_Explicit_Dereference =>
2083 Check_Unset_Reference (Prefix (N));
2084
2085 -- All other cases are not cases of an unset reference
2086
2087 when others =>
2088 null;
2089
2090 end case;
2091 end Check_Unset_Reference;
2092
2093 ------------------------
2094 -- Check_Unused_Withs --
2095 ------------------------
2096
2097 procedure Check_Unused_Withs (Spec_Unit : Unit_Number_Type := No_Unit) is
2098 Cnode : Node_Id;
2099 Item : Node_Id;
2100 Lunit : Node_Id;
2101 Ent : Entity_Id;
2102
2103 Munite : constant Entity_Id := Cunit_Entity (Main_Unit);
2104 -- This is needed for checking the special renaming case
2105
2106 procedure Check_One_Unit (Unit : Unit_Number_Type);
2107 -- Subsidiary procedure, performs checks for specified unit
2108
2109 --------------------
2110 -- Check_One_Unit --
2111 --------------------
2112
2113 procedure Check_One_Unit (Unit : Unit_Number_Type) is
2114 Is_Visible_Renaming : Boolean := False;
2115 Pack : Entity_Id;
2116
2117 procedure Check_Inner_Package (Pack : Entity_Id);
2118 -- Pack is a package local to a unit in a with_clause. Both the unit
2119 -- and Pack are referenced. If none of the entities in Pack are
2120 -- referenced, then the only occurrence of Pack is in a USE clause
2121 -- or a pragma, and a warning is worthwhile as well.
2122
2123 function Check_System_Aux return Boolean;
2124 -- Before giving a warning on a with_clause for System, check whether
2125 -- a system extension is present.
2126
2127 function Find_Package_Renaming
2128 (P : Entity_Id;
2129 L : Entity_Id) return Entity_Id;
2130 -- The only reference to a context unit may be in a renaming
2131 -- declaration. If this renaming declares a visible entity, do not
2132 -- warn that the context clause could be moved to the body, because
2133 -- the renaming may be intended to re-export the unit.
2134
2135 function Has_Visible_Entities (P : Entity_Id) return Boolean;
2136 -- This function determines if a package has any visible entities.
2137 -- True is returned if there is at least one declared visible entity,
2138 -- otherwise False is returned (e.g. case of only pragmas present).
2139
2140 -------------------------
2141 -- Check_Inner_Package --
2142 -------------------------
2143
2144 procedure Check_Inner_Package (Pack : Entity_Id) is
2145 E : Entity_Id;
2146 Un : constant Node_Id := Sinfo.Unit (Cnode);
2147
2148 function Check_Use_Clause (N : Node_Id) return Traverse_Result;
2149 -- If N is a use_clause for Pack, emit warning
2150
2151 procedure Check_Use_Clauses is new
2152 Traverse_Proc (Check_Use_Clause);
2153
2154 ----------------------
2155 -- Check_Use_Clause --
2156 ----------------------
2157
2158 function Check_Use_Clause (N : Node_Id) return Traverse_Result is
2159 Nam : Node_Id;
2160
2161 begin
2162 if Nkind (N) = N_Use_Package_Clause then
2163 Nam := First (Names (N));
2164 while Present (Nam) loop
2165 if Entity (Nam) = Pack then
2166
2167 -- Suppress message if any serious errors detected
2168 -- that turn off expansion, and thus result in false
2169 -- positives for this warning.
2170
2171 if Serious_Errors_Detected = 0 then
2172 Error_Msg_Qual_Level := 1;
2173 Error_Msg_NE -- CODEFIX
2174 ("?u?no entities of package& are referenced!",
2175 Nam, Pack);
2176 Error_Msg_Qual_Level := 0;
2177 end if;
2178 end if;
2179
2180 Next (Nam);
2181 end loop;
2182 end if;
2183
2184 return OK;
2185 end Check_Use_Clause;
2186
2187 -- Start of processing for Check_Inner_Package
2188
2189 begin
2190 E := First_Entity (Pack);
2191 while Present (E) loop
2192 if Referenced_Check_Spec (E) then
2193 return;
2194 end if;
2195
2196 Next_Entity (E);
2197 end loop;
2198
2199 -- No entities of the package are referenced. Check whether the
2200 -- reference to the package itself is a use clause, and if so
2201 -- place a warning on it.
2202
2203 Check_Use_Clauses (Un);
2204 end Check_Inner_Package;
2205
2206 ----------------------
2207 -- Check_System_Aux --
2208 ----------------------
2209
2210 function Check_System_Aux return Boolean is
2211 Ent : Entity_Id;
2212
2213 begin
2214 if Chars (Lunit) = Name_System
2215 and then Scope (Lunit) = Standard_Standard
2216 and then Present_System_Aux
2217 then
2218 Ent := First_Entity (System_Aux_Id);
2219 while Present (Ent) loop
2220 if Referenced_Check_Spec (Ent) then
2221 return True;
2222 end if;
2223
2224 Next_Entity (Ent);
2225 end loop;
2226 end if;
2227
2228 return False;
2229 end Check_System_Aux;
2230
2231 ---------------------------
2232 -- Find_Package_Renaming --
2233 ---------------------------
2234
2235 function Find_Package_Renaming
2236 (P : Entity_Id;
2237 L : Entity_Id) return Entity_Id
2238 is
2239 E1 : Entity_Id;
2240 R : Entity_Id;
2241
2242 begin
2243 Is_Visible_Renaming := False;
2244
2245 E1 := First_Entity (P);
2246 while Present (E1) loop
2247 if Ekind (E1) = E_Package and then Renamed_Object (E1) = L then
2248 Is_Visible_Renaming := not Is_Hidden (E1);
2249 return E1;
2250
2251 elsif Ekind (E1) = E_Package
2252 and then No (Renamed_Object (E1))
2253 and then not Is_Generic_Instance (E1)
2254 then
2255 R := Find_Package_Renaming (E1, L);
2256
2257 if Present (R) then
2258 Is_Visible_Renaming := not Is_Hidden (R);
2259 return R;
2260 end if;
2261 end if;
2262
2263 Next_Entity (E1);
2264 end loop;
2265
2266 return Empty;
2267 end Find_Package_Renaming;
2268
2269 --------------------------
2270 -- Has_Visible_Entities --
2271 --------------------------
2272
2273 function Has_Visible_Entities (P : Entity_Id) return Boolean is
2274 E : Entity_Id;
2275
2276 begin
2277 -- If unit in context is not a package, it is a subprogram that
2278 -- is not called or a generic unit that is not instantiated
2279 -- in the current unit, and warning is appropriate.
2280
2281 if Ekind (P) /= E_Package then
2282 return True;
2283 end if;
2284
2285 -- If unit comes from a limited_with clause, look for declaration
2286 -- of shadow entities.
2287
2288 if Present (Limited_View (P)) then
2289 E := First_Entity (Limited_View (P));
2290 else
2291 E := First_Entity (P);
2292 end if;
2293
2294 while Present (E) and then E /= First_Private_Entity (P) loop
2295 if Comes_From_Source (E) or else Present (Limited_View (P)) then
2296 return True;
2297 end if;
2298
2299 Next_Entity (E);
2300 end loop;
2301
2302 return False;
2303 end Has_Visible_Entities;
2304
2305 -- Start of processing for Check_One_Unit
2306
2307 begin
2308 Cnode := Cunit (Unit);
2309
2310 -- Only do check in units that are part of the extended main unit.
2311 -- This is actually a necessary restriction, because in the case of
2312 -- subprogram acting as its own specification, there can be with's in
2313 -- subunits that we will not see.
2314
2315 if not In_Extended_Main_Source_Unit (Cnode) then
2316 return;
2317
2318 -- In configurable run time mode, we remove the bodies of non-inlined
2319 -- subprograms, which may lead to spurious warnings, which are
2320 -- clearly undesirable.
2321
2322 elsif Configurable_Run_Time_Mode
2323 and then Is_Predefined_File_Name (Unit_File_Name (Unit))
2324 then
2325 return;
2326 end if;
2327
2328 -- Loop through context items in this unit
2329
2330 Item := First (Context_Items (Cnode));
2331 while Present (Item) loop
2332 if Nkind (Item) = N_With_Clause
2333 and then not Implicit_With (Item)
2334 and then In_Extended_Main_Source_Unit (Item)
2335 then
2336 Lunit := Entity (Name (Item));
2337
2338 -- Check if this unit is referenced (skip the check if this
2339 -- is explicitly marked by a pragma Unreferenced).
2340
2341 if not Referenced (Lunit) and then not Has_Unreferenced (Lunit)
2342 then
2343 -- Suppress warnings in internal units if not in -gnatg mode
2344 -- (these would be junk warnings for an application program,
2345 -- since they refer to problems in internal units).
2346
2347 if GNAT_Mode
2348 or else not Is_Internal_File_Name (Unit_File_Name (Unit))
2349 then
2350 -- Here we definitely have a non-referenced unit. If it
2351 -- is the special call for a spec unit, then just set the
2352 -- flag to be read later.
2353
2354 if Unit = Spec_Unit then
2355 Set_Unreferenced_In_Spec (Item);
2356
2357 -- Otherwise simple unreferenced message, but skip this
2358 -- if no visible entities, because that is most likely a
2359 -- case where warning would be false positive (e.g. a
2360 -- package with only a linker options pragma and nothing
2361 -- else or a pragma elaborate with a body library task).
2362
2363 elsif Has_Visible_Entities (Entity (Name (Item))) then
2364 Error_Msg_N -- CODEFIX
2365 ("?u?unit& is not referenced!", Name (Item));
2366 end if;
2367 end if;
2368
2369 -- If main unit is a renaming of this unit, then we consider
2370 -- the with to be OK (obviously it is needed in this case).
2371 -- This may be transitive: the unit in the with_clause may
2372 -- itself be a renaming, in which case both it and the main
2373 -- unit rename the same ultimate package.
2374
2375 elsif Present (Renamed_Entity (Munite))
2376 and then
2377 (Renamed_Entity (Munite) = Lunit
2378 or else Renamed_Entity (Munite) = Renamed_Entity (Lunit))
2379 then
2380 null;
2381
2382 -- If this unit is referenced, and it is a package, we do
2383 -- another test, to see if any of the entities in the package
2384 -- are referenced. If none of the entities are referenced, we
2385 -- still post a warning. This occurs if the only use of the
2386 -- package is in a use clause, or in a package renaming
2387 -- declaration. This check is skipped for packages that are
2388 -- renamed in a spec, since the entities in such a package are
2389 -- visible to clients via the renaming.
2390
2391 elsif Ekind (Lunit) = E_Package
2392 and then not Renamed_In_Spec (Lunit)
2393 then
2394 -- If Is_Instantiated is set, it means that the package is
2395 -- implicitly instantiated (this is the case of parent
2396 -- instance or an actual for a generic package formal), and
2397 -- this counts as a reference.
2398
2399 if Is_Instantiated (Lunit) then
2400 null;
2401
2402 -- If no entities in package, and there is a pragma
2403 -- Elaborate_Body present, then assume that this with is
2404 -- done for purposes of this elaboration.
2405
2406 elsif No (First_Entity (Lunit))
2407 and then Has_Pragma_Elaborate_Body (Lunit)
2408 then
2409 null;
2410
2411 -- Otherwise see if any entities have been referenced
2412
2413 else
2414 if Limited_Present (Item) then
2415 Ent := First_Entity (Limited_View (Lunit));
2416 else
2417 Ent := First_Entity (Lunit);
2418 end if;
2419
2420 loop
2421 -- No more entities, and we did not find one that was
2422 -- referenced. Means we have a definite case of a with
2423 -- none of whose entities was referenced.
2424
2425 if No (Ent) then
2426
2427 -- If in spec, just set the flag
2428
2429 if Unit = Spec_Unit then
2430 Set_No_Entities_Ref_In_Spec (Item);
2431
2432 elsif Check_System_Aux then
2433 null;
2434
2435 -- Else give the warning
2436
2437 else
2438 -- Warn if we unreferenced flag set and we have
2439 -- not had serious errors. The reason we inhibit
2440 -- the message if there are errors is to prevent
2441 -- false positives from disabling expansion.
2442
2443 if not Has_Unreferenced (Entity (Name (Item)))
2444 and then Serious_Errors_Detected = 0
2445 then
2446 Error_Msg_N -- CODEFIX
2447 ("?u?no entities of & are referenced!",
2448 Name (Item));
2449 end if;
2450
2451 -- Look for renamings of this package, and flag
2452 -- them as well. If the original package has
2453 -- warnings off, we suppress the warning on the
2454 -- renaming as well.
2455
2456 Pack := Find_Package_Renaming (Munite, Lunit);
2457
2458 if Present (Pack)
2459 and then not Has_Warnings_Off (Lunit)
2460 and then not Has_Unreferenced (Pack)
2461 then
2462 Error_Msg_NE -- CODEFIX
2463 ("?u?no entities of & are referenced!",
2464 Unit_Declaration_Node (Pack),
2465 Pack);
2466 end if;
2467 end if;
2468
2469 exit;
2470
2471 -- Case of entity being referenced. The reference may
2472 -- come from a limited_with_clause, in which case the
2473 -- limited view of the entity carries the flag.
2474
2475 elsif Referenced_Check_Spec (Ent)
2476 or else Referenced_As_LHS_Check_Spec (Ent)
2477 or else Referenced_As_Out_Parameter_Check_Spec (Ent)
2478 or else
2479 (From_Limited_With (Ent)
2480 and then Is_Incomplete_Type (Ent)
2481 and then Present (Non_Limited_View (Ent))
2482 and then Referenced (Non_Limited_View (Ent)))
2483 then
2484 -- This means that the with is indeed fine, in that
2485 -- it is definitely needed somewhere, and we can
2486 -- quit worrying about this one...
2487
2488 -- Except for one little detail: if either of the
2489 -- flags was set during spec processing, this is
2490 -- where we complain that the with could be moved
2491 -- from the spec. If the spec contains a visible
2492 -- renaming of the package, inhibit warning to move
2493 -- with_clause to body.
2494
2495 if Ekind (Munite) = E_Package_Body then
2496 Pack :=
2497 Find_Package_Renaming
2498 (Spec_Entity (Munite), Lunit);
2499 else
2500 Pack := Empty;
2501 end if;
2502
2503 -- If a renaming is present in the spec do not warn
2504 -- because the body or child unit may depend on it.
2505
2506 if Present (Pack)
2507 and then Renamed_Entity (Pack) = Lunit
2508 then
2509 exit;
2510
2511 elsif Unreferenced_In_Spec (Item) then
2512 Error_Msg_N -- CODEFIX
2513 ("?u?unit& is not referenced in spec!",
2514 Name (Item));
2515
2516 elsif No_Entities_Ref_In_Spec (Item) then
2517 Error_Msg_N -- CODEFIX
2518 ("?u?no entities of & are referenced in spec!",
2519 Name (Item));
2520
2521 else
2522 if Ekind (Ent) = E_Package then
2523 Check_Inner_Package (Ent);
2524 end if;
2525
2526 exit;
2527 end if;
2528
2529 if not Is_Visible_Renaming then
2530 Error_Msg_N -- CODEFIX
2531 ("\?u?with clause might be moved to body!",
2532 Name (Item));
2533 end if;
2534
2535 exit;
2536
2537 -- Move to next entity to continue search
2538
2539 else
2540 Next_Entity (Ent);
2541 end if;
2542 end loop;
2543 end if;
2544
2545 -- For a generic package, the only interesting kind of
2546 -- reference is an instantiation, since entities cannot be
2547 -- referenced directly.
2548
2549 elsif Is_Generic_Unit (Lunit) then
2550
2551 -- Unit was never instantiated, set flag for case of spec
2552 -- call, or give warning for normal call.
2553
2554 if not Is_Instantiated (Lunit) then
2555 if Unit = Spec_Unit then
2556 Set_Unreferenced_In_Spec (Item);
2557 else
2558 Error_Msg_N -- CODEFIX
2559 ("?u?unit& is never instantiated!", Name (Item));
2560 end if;
2561
2562 -- If unit was indeed instantiated, make sure that flag is
2563 -- not set showing it was uninstantiated in the spec, and if
2564 -- so, give warning.
2565
2566 elsif Unreferenced_In_Spec (Item) then
2567 Error_Msg_N
2568 ("?u?unit& is not instantiated in spec!", Name (Item));
2569 Error_Msg_N -- CODEFIX
2570 ("\?u?with clause can be moved to body!", Name (Item));
2571 end if;
2572 end if;
2573 end if;
2574
2575 Next (Item);
2576 end loop;
2577 end Check_One_Unit;
2578
2579 -- Start of processing for Check_Unused_Withs
2580
2581 begin
2582 -- Immediate return if no semantics or warning flag not set
2583
2584 if not Opt.Check_Withs or else Operating_Mode = Check_Syntax then
2585 return;
2586 end if;
2587
2588 Process_Deferred_References;
2589
2590 -- Flag any unused with clauses. For a subunit, check only the units
2591 -- in its context, not those of the parent, which may be needed by other
2592 -- subunits. We will get the full warnings when we compile the parent,
2593 -- but the following is helpful when compiling a subunit by itself.
2594
2595 if Nkind (Unit (Cunit (Main_Unit))) = N_Subunit then
2596 if Current_Sem_Unit = Main_Unit then
2597 Check_One_Unit (Main_Unit);
2598 end if;
2599
2600 return;
2601 end if;
2602
2603 -- Process specified units
2604
2605 if Spec_Unit = No_Unit then
2606
2607 -- For main call, check all units
2608
2609 for Unit in Main_Unit .. Last_Unit loop
2610 Check_One_Unit (Unit);
2611 end loop;
2612
2613 else
2614 -- For call for spec, check only the spec
2615
2616 Check_One_Unit (Spec_Unit);
2617 end if;
2618 end Check_Unused_Withs;
2619
2620 ---------------------------------
2621 -- Generic_Package_Spec_Entity --
2622 ---------------------------------
2623
2624 function Generic_Package_Spec_Entity (E : Entity_Id) return Boolean is
2625 S : Entity_Id;
2626
2627 begin
2628 if Is_Package_Body_Entity (E) then
2629 return False;
2630
2631 else
2632 S := Scope (E);
2633 loop
2634 if S = Standard_Standard then
2635 return False;
2636
2637 elsif Ekind (S) = E_Generic_Package then
2638 return True;
2639
2640 elsif Ekind (S) = E_Package then
2641 S := Scope (S);
2642
2643 else
2644 return False;
2645 end if;
2646 end loop;
2647 end if;
2648 end Generic_Package_Spec_Entity;
2649
2650 ----------------------
2651 -- Goto_Spec_Entity --
2652 ----------------------
2653
2654 function Goto_Spec_Entity (E : Entity_Id) return Entity_Id is
2655 begin
2656 if Is_Formal (E) and then Present (Spec_Entity (E)) then
2657 return Spec_Entity (E);
2658 else
2659 return E;
2660 end if;
2661 end Goto_Spec_Entity;
2662
2663 --------------------------------------
2664 -- Has_Pragma_Unmodified_Check_Spec --
2665 --------------------------------------
2666
2667 function Has_Pragma_Unmodified_Check_Spec
2668 (E : Entity_Id) return Boolean
2669 is
2670 begin
2671 if Is_Formal (E) and then Present (Spec_Entity (E)) then
2672
2673 -- Note: use of OR instead of OR ELSE here is deliberate, we want
2674 -- to mess with Unmodified flags on both body and spec entities.
2675
2676 return Has_Unmodified (E)
2677 or
2678 Has_Unmodified (Spec_Entity (E));
2679
2680 else
2681 return Has_Unmodified (E);
2682 end if;
2683 end Has_Pragma_Unmodified_Check_Spec;
2684
2685 ----------------------------------------
2686 -- Has_Pragma_Unreferenced_Check_Spec --
2687 ----------------------------------------
2688
2689 function Has_Pragma_Unreferenced_Check_Spec
2690 (E : Entity_Id) return Boolean
2691 is
2692 begin
2693 if Is_Formal (E) and then Present (Spec_Entity (E)) then
2694
2695 -- Note: use of OR here instead of OR ELSE is deliberate, we want
2696 -- to mess with flags on both entities.
2697
2698 return Has_Unreferenced (E)
2699 or
2700 Has_Unreferenced (Spec_Entity (E));
2701
2702 else
2703 return Has_Unreferenced (E);
2704 end if;
2705 end Has_Pragma_Unreferenced_Check_Spec;
2706
2707 ----------------
2708 -- Initialize --
2709 ----------------
2710
2711 procedure Initialize is
2712 begin
2713 Warnings_Off_Pragmas.Init;
2714 Unreferenced_Entities.Init;
2715 In_Out_Warnings.Init;
2716 end Initialize;
2717
2718 ------------------------------------
2719 -- Never_Set_In_Source_Check_Spec --
2720 ------------------------------------
2721
2722 function Never_Set_In_Source_Check_Spec (E : Entity_Id) return Boolean is
2723 begin
2724 if Is_Formal (E) and then Present (Spec_Entity (E)) then
2725 return Never_Set_In_Source (E)
2726 and then
2727 Never_Set_In_Source (Spec_Entity (E));
2728 else
2729 return Never_Set_In_Source (E);
2730 end if;
2731 end Never_Set_In_Source_Check_Spec;
2732
2733 -------------------------------------
2734 -- Operand_Has_Warnings_Suppressed --
2735 -------------------------------------
2736
2737 function Operand_Has_Warnings_Suppressed (N : Node_Id) return Boolean is
2738
2739 function Check_For_Warnings (N : Node_Id) return Traverse_Result;
2740 -- Function used to check one node to see if it is or was originally
2741 -- a reference to an entity for which Warnings are off. If so, Abandon
2742 -- is returned, otherwise OK_Orig is returned to continue the traversal
2743 -- of the original expression.
2744
2745 function Traverse is new Traverse_Func (Check_For_Warnings);
2746 -- Function used to traverse tree looking for warnings
2747
2748 ------------------------
2749 -- Check_For_Warnings --
2750 ------------------------
2751
2752 function Check_For_Warnings (N : Node_Id) return Traverse_Result is
2753 R : constant Node_Id := Original_Node (N);
2754
2755 begin
2756 if Nkind (R) in N_Has_Entity
2757 and then Present (Entity (R))
2758 and then Has_Warnings_Off (Entity (R))
2759 then
2760 return Abandon;
2761 else
2762 return OK_Orig;
2763 end if;
2764 end Check_For_Warnings;
2765
2766 -- Start of processing for Operand_Has_Warnings_Suppressed
2767
2768 begin
2769 return Traverse (N) = Abandon;
2770
2771 -- If any exception occurs, then something has gone wrong, and this is
2772 -- only a minor aesthetic issue anyway, so just say we did not find what
2773 -- we are looking for, rather than blow up.
2774
2775 exception
2776 when others =>
2777 return False;
2778 end Operand_Has_Warnings_Suppressed;
2779
2780 -----------------------------------------
2781 -- Output_Non_Modified_In_Out_Warnings --
2782 -----------------------------------------
2783
2784 procedure Output_Non_Modified_In_Out_Warnings is
2785
2786 function No_Warn_On_In_Out (E : Entity_Id) return Boolean;
2787 -- Given a formal parameter entity E, determines if there is a reason to
2788 -- suppress IN OUT warnings (not modified, could be IN) for formals of
2789 -- the subprogram. We suppress these warnings if Warnings Off is set, or
2790 -- if we have seen the address of the subprogram being taken, or if the
2791 -- subprogram is used as a generic actual (in the latter cases the
2792 -- context may force use of IN OUT, even if the parameter is not
2793 -- modifies for this particular case.
2794
2795 -----------------------
2796 -- No_Warn_On_In_Out --
2797 -----------------------
2798
2799 function No_Warn_On_In_Out (E : Entity_Id) return Boolean is
2800 S : constant Entity_Id := Scope (E);
2801 SE : constant Entity_Id := Spec_Entity (E);
2802
2803 begin
2804 -- Do not warn if address is taken, since funny business may be going
2805 -- on in treating the parameter indirectly as IN OUT.
2806
2807 if Address_Taken (S)
2808 or else (Present (SE) and then Address_Taken (Scope (SE)))
2809 then
2810 return True;
2811
2812 -- Do not warn if used as a generic actual, since the generic may be
2813 -- what is forcing the use of an "unnecessary" IN OUT.
2814
2815 elsif Used_As_Generic_Actual (S)
2816 or else (Present (SE) and then Used_As_Generic_Actual (Scope (SE)))
2817 then
2818 return True;
2819
2820 -- Else test warnings off
2821
2822 elsif Warnings_Off_Check_Spec (S) then
2823 return True;
2824
2825 -- All tests for suppressing warning failed
2826
2827 else
2828 return False;
2829 end if;
2830 end No_Warn_On_In_Out;
2831
2832 -- Start of processing for Output_Non_Modified_In_Out_Warnings
2833
2834 begin
2835 -- Loop through entities for which a warning may be needed
2836
2837 for J in In_Out_Warnings.First .. In_Out_Warnings.Last loop
2838 declare
2839 E1 : constant Entity_Id := In_Out_Warnings.Table (J);
2840
2841 begin
2842 -- Suppress warning in specific cases (see details in comments for
2843 -- No_Warn_On_In_Out), or if there is a pragma Unmodified.
2844
2845 if Has_Pragma_Unmodified_Check_Spec (E1)
2846 or else No_Warn_On_In_Out (E1)
2847 then
2848 null;
2849
2850 -- Here we generate the warning
2851
2852 else
2853 -- If -gnatwc is set then output message that we could be IN
2854
2855 if not Is_Trivial_Subprogram (Scope (E1)) then
2856 if Warn_On_Constant then
2857 Error_Msg_N
2858 ("?u?formal parameter & is not modified!", E1);
2859 Error_Msg_N
2860 ("\?u?mode could be IN instead of `IN OUT`!", E1);
2861
2862 -- We do not generate warnings for IN OUT parameters
2863 -- unless we have at least -gnatwu. This is deliberately
2864 -- inconsistent with the treatment of variables, but
2865 -- otherwise we get too many unexpected warnings in
2866 -- default mode.
2867
2868 elsif Check_Unreferenced then
2869 Error_Msg_N
2870 ("?u?formal parameter& is read but "
2871 & "never assigned!", E1);
2872 end if;
2873 end if;
2874
2875 -- Kill any other warnings on this entity, since this is the
2876 -- one that should dominate any other unreferenced warning.
2877
2878 Set_Warnings_Off (E1);
2879 end if;
2880 end;
2881 end loop;
2882 end Output_Non_Modified_In_Out_Warnings;
2883
2884 ----------------------------------------
2885 -- Output_Obsolescent_Entity_Warnings --
2886 ----------------------------------------
2887
2888 procedure Output_Obsolescent_Entity_Warnings (N : Node_Id; E : Entity_Id) is
2889 P : constant Node_Id := Parent (N);
2890 S : Entity_Id;
2891
2892 begin
2893 S := Current_Scope;
2894
2895 -- Do not output message if we are the scope of standard. This means
2896 -- we have a reference from a context clause from when it is originally
2897 -- processed, and that's too early to tell whether it is an obsolescent
2898 -- unit doing the with'ing. In Sem_Ch10.Analyze_Compilation_Unit we make
2899 -- sure that we have a later call when the scope is available. This test
2900 -- also eliminates all messages for use clauses, which is fine (we do
2901 -- not want messages for use clauses, since they are always redundant
2902 -- with respect to the associated with clause).
2903
2904 if S = Standard_Standard then
2905 return;
2906 end if;
2907
2908 -- Do not output message if we are in scope of an obsolescent package
2909 -- or subprogram.
2910
2911 loop
2912 if Is_Obsolescent (S) then
2913 return;
2914 end if;
2915
2916 S := Scope (S);
2917 exit when S = Standard_Standard;
2918 end loop;
2919
2920 -- Here we will output the message
2921
2922 Error_Msg_Sloc := Sloc (E);
2923
2924 -- Case of with clause
2925
2926 if Nkind (P) = N_With_Clause then
2927 if Ekind (E) = E_Package then
2928 Error_Msg_NE
2929 ("?j?with of obsolescent package& declared#", N, E);
2930 elsif Ekind (E) = E_Procedure then
2931 Error_Msg_NE
2932 ("?j?with of obsolescent procedure& declared#", N, E);
2933 else
2934 Error_Msg_NE
2935 ("??with of obsolescent function& declared#", N, E);
2936 end if;
2937
2938 -- If we do not have a with clause, then ignore any reference to an
2939 -- obsolescent package name. We only want to give the one warning of
2940 -- withing the package, not one each time it is used to qualify.
2941
2942 elsif Ekind (E) = E_Package then
2943 return;
2944
2945 -- Procedure call statement
2946
2947 elsif Nkind (P) = N_Procedure_Call_Statement then
2948 Error_Msg_NE
2949 ("??call to obsolescent procedure& declared#", N, E);
2950
2951 -- Function call
2952
2953 elsif Nkind (P) = N_Function_Call then
2954 Error_Msg_NE
2955 ("??call to obsolescent function& declared#", N, E);
2956
2957 -- Reference to obsolescent type
2958
2959 elsif Is_Type (E) then
2960 Error_Msg_NE
2961 ("??reference to obsolescent type& declared#", N, E);
2962
2963 -- Reference to obsolescent component
2964
2965 elsif Ekind_In (E, E_Component, E_Discriminant) then
2966 Error_Msg_NE
2967 ("??reference to obsolescent component& declared#", N, E);
2968
2969 -- Reference to obsolescent variable
2970
2971 elsif Ekind (E) = E_Variable then
2972 Error_Msg_NE
2973 ("??reference to obsolescent variable& declared#", N, E);
2974
2975 -- Reference to obsolescent constant
2976
2977 elsif Ekind (E) = E_Constant or else Ekind (E) in Named_Kind then
2978 Error_Msg_NE
2979 ("??reference to obsolescent constant& declared#", N, E);
2980
2981 -- Reference to obsolescent enumeration literal
2982
2983 elsif Ekind (E) = E_Enumeration_Literal then
2984 Error_Msg_NE
2985 ("??reference to obsolescent enumeration literal& declared#", N, E);
2986
2987 -- Generic message for any other case we missed
2988
2989 else
2990 Error_Msg_NE
2991 ("??reference to obsolescent entity& declared#", N, E);
2992 end if;
2993
2994 -- Output additional warning if present
2995
2996 for J in Obsolescent_Warnings.First .. Obsolescent_Warnings.Last loop
2997 if Obsolescent_Warnings.Table (J).Ent = E then
2998 String_To_Name_Buffer (Obsolescent_Warnings.Table (J).Msg);
2999 Error_Msg_Strlen := Name_Len;
3000 Error_Msg_String (1 .. Name_Len) := Name_Buffer (1 .. Name_Len);
3001 Error_Msg_N ("\\??~", N);
3002 exit;
3003 end if;
3004 end loop;
3005 end Output_Obsolescent_Entity_Warnings;
3006
3007 ----------------------------------
3008 -- Output_Unreferenced_Messages --
3009 ----------------------------------
3010
3011 procedure Output_Unreferenced_Messages is
3012 begin
3013 for J in Unreferenced_Entities.First ..
3014 Unreferenced_Entities.Last
3015 loop
3016 Warn_On_Unreferenced_Entity (Unreferenced_Entities.Table (J));
3017 end loop;
3018 end Output_Unreferenced_Messages;
3019
3020 -----------------------------------------
3021 -- Output_Unused_Warnings_Off_Warnings --
3022 -----------------------------------------
3023
3024 procedure Output_Unused_Warnings_Off_Warnings is
3025 begin
3026 for J in Warnings_Off_Pragmas.First .. Warnings_Off_Pragmas.Last loop
3027 declare
3028 Wentry : Warnings_Off_Entry renames Warnings_Off_Pragmas.Table (J);
3029 N : Node_Id renames Wentry.N;
3030 E : Node_Id renames Wentry.E;
3031
3032 begin
3033 -- Turn off Warnings_Off, or we won't get the warning
3034
3035 Set_Warnings_Off (E, False);
3036
3037 -- Nothing to do if pragma was used to suppress a general warning
3038
3039 if Warnings_Off_Used (E) then
3040 null;
3041
3042 -- If pragma was used both in unmodified and unreferenced contexts
3043 -- then that's as good as the general case, no warning.
3044
3045 elsif Warnings_Off_Used_Unmodified (E)
3046 and
3047 Warnings_Off_Used_Unreferenced (E)
3048 then
3049 null;
3050
3051 -- Used only in context where Unmodified would have worked
3052
3053 elsif Warnings_Off_Used_Unmodified (E) then
3054 Error_Msg_NE
3055 ("?W?could use Unmodified instead of "
3056 & "Warnings Off for &", Pragma_Identifier (N), E);
3057
3058 -- Used only in context where Unreferenced would have worked
3059
3060 elsif Warnings_Off_Used_Unreferenced (E) then
3061 Error_Msg_NE
3062 ("?W?could use Unreferenced instead of "
3063 & "Warnings Off for &", Pragma_Identifier (N), E);
3064
3065 -- Not used at all
3066
3067 else
3068 Error_Msg_NE
3069 ("?W?pragma Warnings Off for & unused, "
3070 & "could be omitted", N, E);
3071 end if;
3072 end;
3073 end loop;
3074 end Output_Unused_Warnings_Off_Warnings;
3075
3076 ---------------------------
3077 -- Referenced_Check_Spec --
3078 ---------------------------
3079
3080 function Referenced_Check_Spec (E : Entity_Id) return Boolean is
3081 begin
3082 if Is_Formal (E) and then Present (Spec_Entity (E)) then
3083 return Referenced (E) or else Referenced (Spec_Entity (E));
3084 else
3085 return Referenced (E);
3086 end if;
3087 end Referenced_Check_Spec;
3088
3089 ----------------------------------
3090 -- Referenced_As_LHS_Check_Spec --
3091 ----------------------------------
3092
3093 function Referenced_As_LHS_Check_Spec (E : Entity_Id) return Boolean is
3094 begin
3095 if Is_Formal (E) and then Present (Spec_Entity (E)) then
3096 return Referenced_As_LHS (E)
3097 or else Referenced_As_LHS (Spec_Entity (E));
3098 else
3099 return Referenced_As_LHS (E);
3100 end if;
3101 end Referenced_As_LHS_Check_Spec;
3102
3103 --------------------------------------------
3104 -- Referenced_As_Out_Parameter_Check_Spec --
3105 --------------------------------------------
3106
3107 function Referenced_As_Out_Parameter_Check_Spec
3108 (E : Entity_Id) return Boolean
3109 is
3110 begin
3111 if Is_Formal (E) and then Present (Spec_Entity (E)) then
3112 return Referenced_As_Out_Parameter (E)
3113 or else Referenced_As_Out_Parameter (Spec_Entity (E));
3114 else
3115 return Referenced_As_Out_Parameter (E);
3116 end if;
3117 end Referenced_As_Out_Parameter_Check_Spec;
3118
3119 -----------------------------
3120 -- Warn_On_Known_Condition --
3121 -----------------------------
3122
3123 procedure Warn_On_Known_Condition (C : Node_Id) is
3124 P : Node_Id;
3125 Orig : constant Node_Id := Original_Node (C);
3126 Test_Result : Boolean;
3127
3128 function Is_Known_Branch return Boolean;
3129 -- If the type of the condition is Boolean, the constant value of the
3130 -- condition is a boolean literal. If the type is a derived boolean
3131 -- type, the constant is wrapped in a type conversion of the derived
3132 -- literal. If the value of the condition is not a literal, no warnings
3133 -- can be produced. This function returns True if the result can be
3134 -- determined, and Test_Result is set True/False accordingly. Otherwise
3135 -- False is returned, and Test_Result is unchanged.
3136
3137 procedure Track (N : Node_Id; Loc : Node_Id);
3138 -- Adds continuation warning(s) pointing to reason (assignment or test)
3139 -- for the operand of the conditional having a known value (or at least
3140 -- enough is known about the value to issue the warning). N is the node
3141 -- which is judged to have a known value. Loc is the warning location.
3142
3143 ---------------------
3144 -- Is_Known_Branch --
3145 ---------------------
3146
3147 function Is_Known_Branch return Boolean is
3148 begin
3149 if Etype (C) = Standard_Boolean
3150 and then Is_Entity_Name (C)
3151 and then
3152 (Entity (C) = Standard_False or else Entity (C) = Standard_True)
3153 then
3154 Test_Result := Entity (C) = Standard_True;
3155 return True;
3156
3157 elsif Is_Boolean_Type (Etype (C))
3158 and then Nkind (C) = N_Unchecked_Type_Conversion
3159 and then Is_Entity_Name (Expression (C))
3160 and then Ekind (Entity (Expression (C))) = E_Enumeration_Literal
3161 then
3162 Test_Result :=
3163 Chars (Entity (Expression (C))) = Chars (Standard_True);
3164 return True;
3165
3166 else
3167 return False;
3168 end if;
3169 end Is_Known_Branch;
3170
3171 -----------
3172 -- Track --
3173 -----------
3174
3175 procedure Track (N : Node_Id; Loc : Node_Id) is
3176 Nod : constant Node_Id := Original_Node (N);
3177
3178 begin
3179 if Nkind (Nod) in N_Op_Compare then
3180 Track (Left_Opnd (Nod), Loc);
3181 Track (Right_Opnd (Nod), Loc);
3182
3183 elsif Is_Entity_Name (Nod) and then Is_Object (Entity (Nod)) then
3184 declare
3185 CV : constant Node_Id := Current_Value (Entity (Nod));
3186
3187 begin
3188 if Present (CV) then
3189 Error_Msg_Sloc := Sloc (CV);
3190
3191 if Nkind (CV) not in N_Subexpr then
3192 Error_Msg_N ("\\??(see test #)", Loc);
3193
3194 elsif Nkind (Parent (CV)) =
3195 N_Case_Statement_Alternative
3196 then
3197 Error_Msg_N ("\\??(see case alternative #)", Loc);
3198
3199 else
3200 Error_Msg_N ("\\??(see assignment #)", Loc);
3201 end if;
3202 end if;
3203 end;
3204 end if;
3205 end Track;
3206
3207 -- Start of processing for Warn_On_Known_Condition
3208
3209 begin
3210 -- Adjust SCO condition if from source
3211
3212 if Generate_SCO
3213 and then Comes_From_Source (Orig)
3214 and then Is_Known_Branch
3215 then
3216 declare
3217 Atrue : Boolean;
3218
3219 begin
3220 Atrue := Test_Result;
3221
3222 if Present (Parent (C)) and then Nkind (Parent (C)) = N_Op_Not then
3223 Atrue := not Atrue;
3224 end if;
3225
3226 Set_SCO_Condition (Orig, Atrue);
3227 end;
3228 end if;
3229
3230 -- Argument replacement in an inlined body can make conditions static.
3231 -- Do not emit warnings in this case.
3232
3233 if In_Inlined_Body then
3234 return;
3235 end if;
3236
3237 if Constant_Condition_Warnings
3238 and then Is_Known_Branch
3239 and then Comes_From_Source (Orig)
3240 and then not In_Instance
3241 then
3242 -- Don't warn if comparison of result of attribute against a constant
3243 -- value, since this is likely legitimate conditional compilation.
3244
3245 if Nkind (Orig) in N_Op_Compare
3246 and then Compile_Time_Known_Value (Right_Opnd (Orig))
3247 and then Nkind (Original_Node (Left_Opnd (Orig))) =
3248 N_Attribute_Reference
3249 then
3250 return;
3251 end if;
3252
3253 -- See if this is in a statement or a declaration
3254
3255 P := Parent (C);
3256 loop
3257 -- If tree is not attached, do not issue warning (this is very
3258 -- peculiar, and probably arises from some other error condition)
3259
3260 if No (P) then
3261 return;
3262
3263 -- If we are in a declaration, then no warning, since in practice
3264 -- conditionals in declarations are used for intended tests which
3265 -- may be known at compile time, e.g. things like
3266
3267 -- x : constant Integer := 2 + (Word'Size = 32);
3268
3269 -- And a warning is annoying in such cases
3270
3271 elsif Nkind (P) in N_Declaration
3272 or else
3273 Nkind (P) in N_Later_Decl_Item
3274 then
3275 return;
3276
3277 -- Don't warn in assert or check pragma, since presumably tests in
3278 -- such a context are very definitely intended, and might well be
3279 -- known at compile time. Note that we have to test the original
3280 -- node, since assert pragmas get rewritten at analysis time.
3281
3282 elsif Nkind (Original_Node (P)) = N_Pragma
3283 and then Nam_In (Pragma_Name (Original_Node (P)), Name_Assert,
3284 Name_Check)
3285 then
3286 return;
3287 end if;
3288
3289 exit when Is_Statement (P);
3290 P := Parent (P);
3291 end loop;
3292
3293 -- Here we issue the warning unless some sub-operand has warnings
3294 -- set off, in which case we suppress the warning for the node. If
3295 -- the original expression is an inequality, it has been expanded
3296 -- into a negation, and the value of the original expression is the
3297 -- negation of the equality. If the expression is an entity that
3298 -- appears within a negation, it is clearer to flag the negation
3299 -- itself, and report on its constant value.
3300
3301 if not Operand_Has_Warnings_Suppressed (C) then
3302 declare
3303 True_Branch : Boolean := Test_Result;
3304 Cond : Node_Id := C;
3305
3306 begin
3307 if Present (Parent (C)) and then Nkind (Parent (C)) = N_Op_Not
3308 then
3309 True_Branch := not True_Branch;
3310 Cond := Parent (C);
3311 end if;
3312
3313 if True_Branch then
3314 if Is_Entity_Name (Original_Node (C))
3315 and then Nkind (Cond) /= N_Op_Not
3316 then
3317 Error_Msg_NE
3318 ("object & is always True?c?", Cond, Original_Node (C));
3319 Track (Original_Node (C), Cond);
3320
3321 else
3322 Error_Msg_N ("condition is always True?c?", Cond);
3323 Track (Cond, Cond);
3324 end if;
3325
3326 else
3327 Error_Msg_N ("condition is always False?c?", Cond);
3328 Track (Cond, Cond);
3329 end if;
3330 end;
3331 end if;
3332 end if;
3333 end Warn_On_Known_Condition;
3334
3335 ---------------------------------------
3336 -- Warn_On_Modified_As_Out_Parameter --
3337 ---------------------------------------
3338
3339 function Warn_On_Modified_As_Out_Parameter (E : Entity_Id) return Boolean is
3340 begin
3341 return
3342 (Warn_On_Modified_Unread and then Is_Only_Out_Parameter (E))
3343 or else Warn_On_All_Unread_Out_Parameters;
3344 end Warn_On_Modified_As_Out_Parameter;
3345
3346 ---------------------------------
3347 -- Warn_On_Overlapping_Actuals --
3348 ---------------------------------
3349
3350 procedure Warn_On_Overlapping_Actuals (Subp : Entity_Id; N : Node_Id) is
3351 Act1, Act2 : Node_Id;
3352 Form1, Form2 : Entity_Id;
3353
3354 function Is_Covered_Formal (Formal : Node_Id) return Boolean;
3355 -- Return True if Formal is covered by the rule
3356
3357 function Refer_Same_Object (Act1, Act2 : Node_Id) return Boolean;
3358 -- Two names are known to refer to the same object if the two names
3359 -- are known to denote the same object; or one of the names is a
3360 -- selected_component, indexed_component, or slice and its prefix is
3361 -- known to refer to the same object as the other name; or one of the
3362 -- two names statically denotes a renaming declaration whose renamed
3363 -- object_name is known to refer to the same object as the other name
3364 -- (RM 6.4.1(6.11/3))
3365
3366 -----------------------
3367 -- Refer_Same_Object --
3368 -----------------------
3369
3370 function Refer_Same_Object (Act1, Act2 : Node_Id) return Boolean is
3371 begin
3372 return Denotes_Same_Object (Act1, Act2)
3373 or else Denotes_Same_Prefix (Act1, Act2);
3374 end Refer_Same_Object;
3375
3376 -----------------------
3377 -- Is_Covered_Formal --
3378 -----------------------
3379
3380 function Is_Covered_Formal (Formal : Node_Id) return Boolean is
3381 begin
3382 return
3383 Ekind_In (Formal, E_Out_Parameter, E_In_Out_Parameter)
3384 and then (Is_Elementary_Type (Etype (Formal))
3385 or else Is_Record_Type (Etype (Formal))
3386 or else Is_Array_Type (Etype (Formal)));
3387 end Is_Covered_Formal;
3388
3389 begin
3390 if Ada_Version < Ada_2012 and then not Warn_On_Overlap then
3391 return;
3392 end if;
3393
3394 -- Exclude calls rewritten as enumeration literals
3395
3396 if Nkind (N) not in N_Subprogram_Call
3397 and then Nkind (N) /= N_Entry_Call_Statement
3398 then
3399 return;
3400 end if;
3401
3402 -- If a call C has two or more parameters of mode in out or out that are
3403 -- of an elementary type, then the call is legal only if for each name
3404 -- N that is passed as a parameter of mode in out or out to the call C,
3405 -- there is no other name among the other parameters of mode in out or
3406 -- out to C that is known to denote the same object (RM 6.4.1(6.15/3))
3407
3408 -- If appropriate warning switch is set, we also report warnings on
3409 -- overlapping parameters that are record types or array types.
3410
3411 Form1 := First_Formal (Subp);
3412 Act1 := First_Actual (N);
3413 while Present (Form1) and then Present (Act1) loop
3414 if Is_Covered_Formal (Form1) then
3415 Form2 := First_Formal (Subp);
3416 Act2 := First_Actual (N);
3417 while Present (Form2) and then Present (Act2) loop
3418 if Form1 /= Form2
3419 and then Is_Covered_Formal (Form2)
3420 and then Refer_Same_Object (Act1, Act2)
3421 then
3422 -- Guard against previous errors
3423
3424 if Error_Posted (N)
3425 or else No (Etype (Act1))
3426 or else No (Etype (Act2))
3427 then
3428 null;
3429
3430 -- If the actual is a function call in prefix notation,
3431 -- there is no real overlap.
3432
3433 elsif Nkind (Act2) = N_Function_Call then
3434 null;
3435
3436 -- If type is not by-copy, assume that aliasing is intended
3437
3438 elsif
3439 Present (Underlying_Type (Etype (Form1)))
3440 and then
3441 (Is_By_Reference_Type (Underlying_Type (Etype (Form1)))
3442 or else
3443 Convention (Underlying_Type (Etype (Form1))) =
3444 Convention_Ada_Pass_By_Reference)
3445 then
3446 null;
3447
3448 -- Under Ada 2012 we only report warnings on overlapping
3449 -- arrays and record types if switch is set.
3450
3451 elsif Ada_Version >= Ada_2012
3452 and then not Is_Elementary_Type (Etype (Form1))
3453 and then not Warn_On_Overlap
3454 then
3455 null;
3456
3457 -- Here we may need to issue overlap message
3458
3459 else
3460 Error_Msg_Warn :=
3461
3462 -- Overlap checking is an error only in Ada 2012. For
3463 -- earlier versions of Ada, this is a warning.
3464
3465 Ada_Version < Ada_2012
3466
3467 -- Overlap is only illegal in Ada 2012 in the case of
3468 -- elementary types (passed by copy). For other types,
3469 -- we always have a warning in all Ada versions.
3470
3471 or else not Is_Elementary_Type (Etype (Form1))
3472
3473 -- Finally, debug flag -gnatd.E changes the error to a
3474 -- warning even in Ada 2012 mode.
3475
3476 or else Error_To_Warning;
3477
3478 declare
3479 Act : Node_Id;
3480 Form : Entity_Id;
3481
3482 begin
3483 -- Find matching actual
3484
3485 Act := First_Actual (N);
3486 Form := First_Formal (Subp);
3487 while Act /= Act2 loop
3488 Next_Formal (Form);
3489 Next_Actual (Act);
3490 end loop;
3491
3492 if Is_Elementary_Type (Etype (Act1))
3493 and then Ekind (Form2) = E_In_Parameter
3494 then
3495 null; -- No real aliasing
3496
3497 elsif Is_Elementary_Type (Etype (Act2))
3498 and then Ekind (Form2) = E_In_Parameter
3499 then
3500 null; -- Ditto
3501
3502 -- If the call was written in prefix notation, and
3503 -- thus its prefix before rewriting was a selected
3504 -- component, count only visible actuals in the call.
3505
3506 elsif Is_Entity_Name (First_Actual (N))
3507 and then Nkind (Original_Node (N)) = Nkind (N)
3508 and then Nkind (Name (Original_Node (N))) =
3509 N_Selected_Component
3510 and then
3511 Is_Entity_Name (Prefix (Name (Original_Node (N))))
3512 and then
3513 Entity (Prefix (Name (Original_Node (N)))) =
3514 Entity (First_Actual (N))
3515 then
3516 if Act1 = First_Actual (N) then
3517 Error_Msg_FE
3518 ("<<`IN OUT` prefix overlaps with "
3519 & "actual for&", Act1, Form);
3520
3521 else
3522 -- For greater clarity, give name of formal
3523
3524 Error_Msg_Node_2 := Form;
3525 Error_Msg_FE
3526 ("<<writable actual for & overlaps with "
3527 & "actual for&", Act1, Form);
3528 end if;
3529
3530 else
3531 -- For greater clarity, give name of formal
3532
3533 Error_Msg_Node_2 := Form;
3534
3535 -- This is one of the messages
3536
3537 Error_Msg_FE
3538 ("<<writable actual for & overlaps with "
3539 & "actual for&", Act1, Form1);
3540 end if;
3541 end;
3542 end if;
3543
3544 return;
3545 end if;
3546
3547 Next_Formal (Form2);
3548 Next_Actual (Act2);
3549 end loop;
3550 end if;
3551
3552 Next_Formal (Form1);
3553 Next_Actual (Act1);
3554 end loop;
3555 end Warn_On_Overlapping_Actuals;
3556
3557 ------------------------------
3558 -- Warn_On_Suspicious_Index --
3559 ------------------------------
3560
3561 procedure Warn_On_Suspicious_Index (Name : Entity_Id; X : Node_Id) is
3562
3563 Low_Bound : Uint;
3564 -- Set to lower bound for a suspicious type
3565
3566 Ent : Entity_Id;
3567 -- Entity for array reference
3568
3569 Typ : Entity_Id;
3570 -- Array type
3571
3572 function Is_Suspicious_Type (Typ : Entity_Id) return Boolean;
3573 -- Tests to see if Typ is a type for which we may have a suspicious
3574 -- index, namely an unconstrained array type, whose lower bound is
3575 -- either zero or one. If so, True is returned, and Low_Bound is set
3576 -- to this lower bound. If not, False is returned, and Low_Bound is
3577 -- undefined on return.
3578 --
3579 -- For now, we limit this to standard string types, so any other
3580 -- unconstrained types return False. We may change our minds on this
3581 -- later on, but strings seem the most important case.
3582
3583 procedure Test_Suspicious_Index;
3584 -- Test if index is of suspicious type and if so, generate warning
3585
3586 ------------------------
3587 -- Is_Suspicious_Type --
3588 ------------------------
3589
3590 function Is_Suspicious_Type (Typ : Entity_Id) return Boolean is
3591 LB : Node_Id;
3592
3593 begin
3594 if Is_Array_Type (Typ)
3595 and then not Is_Constrained (Typ)
3596 and then Number_Dimensions (Typ) = 1
3597 and then (Root_Type (Typ) = Standard_String
3598 or else
3599 Root_Type (Typ) = Standard_Wide_String
3600 or else
3601 Root_Type (Typ) = Standard_Wide_Wide_String)
3602 and then not Has_Warnings_Off (Typ)
3603 then
3604 LB := Type_Low_Bound (Etype (First_Index (Typ)));
3605
3606 if Compile_Time_Known_Value (LB) then
3607 Low_Bound := Expr_Value (LB);
3608 return Low_Bound = Uint_0 or else Low_Bound = Uint_1;
3609 end if;
3610 end if;
3611
3612 return False;
3613 end Is_Suspicious_Type;
3614
3615 ---------------------------
3616 -- Test_Suspicious_Index --
3617 ---------------------------
3618
3619 procedure Test_Suspicious_Index is
3620
3621 function Length_Reference (N : Node_Id) return Boolean;
3622 -- Check if node N is of the form Name'Length
3623
3624 procedure Warn1;
3625 -- Generate first warning line
3626
3627 ----------------------
3628 -- Length_Reference --
3629 ----------------------
3630
3631 function Length_Reference (N : Node_Id) return Boolean is
3632 R : constant Node_Id := Original_Node (N);
3633 begin
3634 return
3635 Nkind (R) = N_Attribute_Reference
3636 and then Attribute_Name (R) = Name_Length
3637 and then Is_Entity_Name (Prefix (R))
3638 and then Entity (Prefix (R)) = Ent;
3639 end Length_Reference;
3640
3641 -----------
3642 -- Warn1 --
3643 -----------
3644
3645 procedure Warn1 is
3646 begin
3647 Error_Msg_Uint_1 := Low_Bound;
3648 Error_Msg_FE -- CODEFIX
3649 ("?w?index for& may assume lower bound of^", X, Ent);
3650 end Warn1;
3651
3652 -- Start of processing for Test_Suspicious_Index
3653
3654 begin
3655 -- Nothing to do if subscript does not come from source (we don't
3656 -- want to give garbage warnings on compiler expanded code, e.g. the
3657 -- loops generated for slice assignments. Such junk warnings would
3658 -- be placed on source constructs with no subscript in sight).
3659
3660 if not Comes_From_Source (Original_Node (X)) then
3661 return;
3662 end if;
3663
3664 -- Case where subscript is a constant integer
3665
3666 if Nkind (X) = N_Integer_Literal then
3667 Warn1;
3668
3669 -- Case where original form of subscript is an integer literal
3670
3671 if Nkind (Original_Node (X)) = N_Integer_Literal then
3672 if Intval (X) = Low_Bound then
3673 Error_Msg_FE -- CODEFIX
3674 ("\?w?suggested replacement: `&''First`", X, Ent);
3675 else
3676 Error_Msg_Uint_1 := Intval (X) - Low_Bound;
3677 Error_Msg_FE -- CODEFIX
3678 ("\?w?suggested replacement: `&''First + ^`", X, Ent);
3679
3680 end if;
3681
3682 -- Case where original form of subscript is more complex
3683
3684 else
3685 -- Build string X'First - 1 + expression where the expression
3686 -- is the original subscript. If the expression starts with "1
3687 -- + ", then the "- 1 + 1" is elided.
3688
3689 Error_Msg_String (1 .. 13) := "'First - 1 + ";
3690 Error_Msg_Strlen := 13;
3691
3692 declare
3693 Sref : Source_Ptr := Sloc (First_Node (Original_Node (X)));
3694 Tref : constant Source_Buffer_Ptr :=
3695 Source_Text (Get_Source_File_Index (Sref));
3696 -- Tref (Sref) is used to scan the subscript
3697
3698 Pctr : Natural;
3699 -- Parentheses counter when scanning subscript
3700
3701 begin
3702 -- Tref (Sref) points to start of subscript
3703
3704 -- Elide - 1 if subscript starts with 1 +
3705
3706 if Tref (Sref .. Sref + 2) = "1 +" then
3707 Error_Msg_Strlen := Error_Msg_Strlen - 6;
3708 Sref := Sref + 2;
3709
3710 elsif Tref (Sref .. Sref + 1) = "1+" then
3711 Error_Msg_Strlen := Error_Msg_Strlen - 6;
3712 Sref := Sref + 1;
3713 end if;
3714
3715 -- Now we will copy the subscript to the string buffer
3716
3717 Pctr := 0;
3718 loop
3719 -- Count parens, exit if terminating right paren. Note
3720 -- check to ignore paren appearing as character literal.
3721
3722 if Tref (Sref + 1) = '''
3723 and then
3724 Tref (Sref - 1) = '''
3725 then
3726 null;
3727 else
3728 if Tref (Sref) = '(' then
3729 Pctr := Pctr + 1;
3730 elsif Tref (Sref) = ')' then
3731 exit when Pctr = 0;
3732 Pctr := Pctr - 1;
3733 end if;
3734 end if;
3735
3736 -- Done if terminating double dot (slice case)
3737
3738 exit when Pctr = 0
3739 and then (Tref (Sref .. Sref + 1) = ".."
3740 or else
3741 Tref (Sref .. Sref + 2) = " ..");
3742
3743 -- Quit if we have hit EOF character, something wrong
3744
3745 if Tref (Sref) = EOF then
3746 return;
3747 end if;
3748
3749 -- String literals are too much of a pain to handle
3750
3751 if Tref (Sref) = '"' or else Tref (Sref) = '%' then
3752 return;
3753 end if;
3754
3755 -- If we have a 'Range reference, then this is a case
3756 -- where we cannot easily give a replacement. Don't try.
3757
3758 if Tref (Sref .. Sref + 4) = "range"
3759 and then Tref (Sref - 1) < 'A'
3760 and then Tref (Sref + 5) < 'A'
3761 then
3762 return;
3763 end if;
3764
3765 -- Else store next character
3766
3767 Error_Msg_Strlen := Error_Msg_Strlen + 1;
3768 Error_Msg_String (Error_Msg_Strlen) := Tref (Sref);
3769 Sref := Sref + 1;
3770
3771 -- If we get more than 40 characters then the expression
3772 -- is too long to copy, or something has gone wrong. In
3773 -- either case, just skip the attempt at a suggested fix.
3774
3775 if Error_Msg_Strlen > 40 then
3776 return;
3777 end if;
3778 end loop;
3779 end;
3780
3781 -- Replacement subscript is now in string buffer
3782
3783 Error_Msg_FE -- CODEFIX
3784 ("\?w?suggested replacement: `&~`", Original_Node (X), Ent);
3785 end if;
3786
3787 -- Case where subscript is of the form X'Length
3788
3789 elsif Length_Reference (X) then
3790 Warn1;
3791 Error_Msg_Node_2 := Ent;
3792 Error_Msg_FE
3793 ("\?w?suggest replacement of `&''Length` by `&''Last`",
3794 X, Ent);
3795
3796 -- Case where subscript is of the form X'Length - expression
3797
3798 elsif Nkind (X) = N_Op_Subtract
3799 and then Length_Reference (Left_Opnd (X))
3800 then
3801 Warn1;
3802 Error_Msg_Node_2 := Ent;
3803 Error_Msg_FE
3804 ("\?w?suggest replacement of `&''Length` by `&''Last`",
3805 Left_Opnd (X), Ent);
3806 end if;
3807 end Test_Suspicious_Index;
3808
3809 -- Start of processing for Warn_On_Suspicious_Index
3810
3811 begin
3812 -- Only process if warnings activated
3813
3814 if Warn_On_Assumed_Low_Bound then
3815
3816 -- Test if array is simple entity name
3817
3818 if Is_Entity_Name (Name) then
3819
3820 -- Test if array is parameter of unconstrained string type
3821
3822 Ent := Entity (Name);
3823 Typ := Etype (Ent);
3824
3825 if Is_Formal (Ent)
3826 and then Is_Suspicious_Type (Typ)
3827 and then not Low_Bound_Tested (Ent)
3828 then
3829 Test_Suspicious_Index;
3830 end if;
3831 end if;
3832 end if;
3833 end Warn_On_Suspicious_Index;
3834
3835 --------------------------------------
3836 -- Warn_On_Unassigned_Out_Parameter --
3837 --------------------------------------
3838
3839 procedure Warn_On_Unassigned_Out_Parameter
3840 (Return_Node : Node_Id;
3841 Scope_Id : Entity_Id)
3842 is
3843 Form : Entity_Id;
3844 Form2 : Entity_Id;
3845
3846 begin
3847 -- Ignore if procedure or return statement does not come from source
3848
3849 if not Comes_From_Source (Scope_Id)
3850 or else not Comes_From_Source (Return_Node)
3851 then
3852 return;
3853 end if;
3854
3855 -- Loop through formals
3856
3857 Form := First_Formal (Scope_Id);
3858 while Present (Form) loop
3859
3860 -- We are only interested in OUT parameters that come from source
3861 -- and are never set in the source, and furthermore only in scalars
3862 -- since non-scalars generate too many false positives.
3863
3864 if Ekind (Form) = E_Out_Parameter
3865 and then Never_Set_In_Source_Check_Spec (Form)
3866 and then Is_Scalar_Type (Etype (Form))
3867 and then not Present (Unset_Reference (Form))
3868 then
3869 -- Before we issue the warning, an add ad hoc defence against the
3870 -- most common case of false positives with this warning which is
3871 -- the case where there is a Boolean OUT parameter that has been
3872 -- set, and whose meaning is "ignore the values of the other
3873 -- parameters". We can't of course reliably tell this case at
3874 -- compile time, but the following test kills a lot of false
3875 -- positives, without generating a significant number of false
3876 -- negatives (missed real warnings).
3877
3878 Form2 := First_Formal (Scope_Id);
3879 while Present (Form2) loop
3880 if Ekind (Form2) = E_Out_Parameter
3881 and then Root_Type (Etype (Form2)) = Standard_Boolean
3882 and then not Never_Set_In_Source_Check_Spec (Form2)
3883 then
3884 return;
3885 end if;
3886
3887 Next_Formal (Form2);
3888 end loop;
3889
3890 -- Here all conditions are met, record possible unset reference
3891
3892 Set_Unset_Reference (Form, Return_Node);
3893 end if;
3894
3895 Next_Formal (Form);
3896 end loop;
3897 end Warn_On_Unassigned_Out_Parameter;
3898
3899 ---------------------------------
3900 -- Warn_On_Unreferenced_Entity --
3901 ---------------------------------
3902
3903 procedure Warn_On_Unreferenced_Entity
3904 (Spec_E : Entity_Id;
3905 Body_E : Entity_Id := Empty)
3906 is
3907 E : Entity_Id := Spec_E;
3908
3909 begin
3910 if not Referenced_Check_Spec (E)
3911 and then not Has_Pragma_Unreferenced_Check_Spec (E)
3912 and then not Warnings_Off_Check_Spec (E)
3913 and then not Is_Junk_Name (Chars (Spec_E))
3914 then
3915 case Ekind (E) is
3916 when E_Variable =>
3917
3918 -- Case of variable that is assigned but not read. We suppress
3919 -- the message if the variable is volatile, has an address
3920 -- clause, is aliased, or is a renaming, or is imported.
3921
3922 if Referenced_As_LHS_Check_Spec (E)
3923 and then No (Address_Clause (E))
3924 and then not Is_Volatile (E)
3925 then
3926 if Warn_On_Modified_Unread
3927 and then not Is_Imported (E)
3928 and then not Is_Aliased (E)
3929 and then No (Renamed_Object (E))
3930 then
3931 if not Has_Pragma_Unmodified_Check_Spec (E) then
3932 Error_Msg_N -- CODEFIX
3933 ("?u?variable & is assigned but never read!", E);
3934 end if;
3935
3936 Set_Last_Assignment (E, Empty);
3937 end if;
3938
3939 -- Normal case of neither assigned nor read (exclude variables
3940 -- referenced as out parameters, since we already generated
3941 -- appropriate warnings at the call point in this case).
3942
3943 elsif not Referenced_As_Out_Parameter (E) then
3944
3945 -- We suppress the message for types for which a valid
3946 -- pragma Unreferenced_Objects has been given, otherwise
3947 -- we go ahead and give the message.
3948
3949 if not Has_Pragma_Unreferenced_Objects (Etype (E)) then
3950
3951 -- Distinguish renamed case in message
3952
3953 if Present (Renamed_Object (E))
3954 and then Comes_From_Source (Renamed_Object (E))
3955 then
3956 Error_Msg_N -- CODEFIX
3957 ("?u?renamed variable & is not referenced!", E);
3958 else
3959 Error_Msg_N -- CODEFIX
3960 ("?u?variable & is not referenced!", E);
3961 end if;
3962 end if;
3963 end if;
3964
3965 when E_Constant =>
3966 if Present (Renamed_Object (E))
3967 and then Comes_From_Source (Renamed_Object (E))
3968 then
3969 Error_Msg_N -- CODEFIX
3970 ("?u?renamed constant & is not referenced!", E);
3971 else
3972 Error_Msg_N -- CODEFIX
3973 ("?u?constant & is not referenced!", E);
3974 end if;
3975
3976 when E_In_Parameter |
3977 E_In_Out_Parameter =>
3978
3979 -- Do not emit message for formals of a renaming, because
3980 -- they are never referenced explicitly.
3981
3982 if Nkind (Original_Node (Unit_Declaration_Node (Scope (E)))) /=
3983 N_Subprogram_Renaming_Declaration
3984 then
3985 -- Suppress this message for an IN OUT parameter of a
3986 -- non-scalar type, since it is normal to have only an
3987 -- assignment in such a case.
3988
3989 if Ekind (E) = E_In_Parameter
3990 or else not Referenced_As_LHS_Check_Spec (E)
3991 or else Is_Scalar_Type (Etype (E))
3992 then
3993 if Present (Body_E) then
3994 E := Body_E;
3995 end if;
3996
3997 if not Is_Trivial_Subprogram (Scope (E)) then
3998 Error_Msg_NE -- CODEFIX
3999 ("?u?formal parameter & is not referenced!",
4000 E, Spec_E);
4001 end if;
4002 end if;
4003 end if;
4004
4005 when E_Out_Parameter =>
4006 null;
4007
4008 when E_Discriminant =>
4009 Error_Msg_N ("?u?discriminant & is not referenced!", E);
4010
4011 when E_Named_Integer |
4012 E_Named_Real =>
4013 Error_Msg_N -- CODEFIX
4014 ("?u?named number & is not referenced!", E);
4015
4016 when Formal_Object_Kind =>
4017 Error_Msg_N -- CODEFIX
4018 ("?u?formal object & is not referenced!", E);
4019
4020 when E_Enumeration_Literal =>
4021 Error_Msg_N -- CODEFIX
4022 ("?u?literal & is not referenced!", E);
4023
4024 when E_Function =>
4025 Error_Msg_N -- CODEFIX
4026 ("?u?function & is not referenced!", E);
4027
4028 when E_Procedure =>
4029 Error_Msg_N -- CODEFIX
4030 ("?u?procedure & is not referenced!", E);
4031
4032 when E_Package =>
4033 Error_Msg_N -- CODEFIX
4034 ("?u?package & is not referenced!", E);
4035
4036 when E_Exception =>
4037 Error_Msg_N -- CODEFIX
4038 ("?u?exception & is not referenced!", E);
4039
4040 when E_Label =>
4041 Error_Msg_N -- CODEFIX
4042 ("?u?label & is not referenced!", E);
4043
4044 when E_Generic_Procedure =>
4045 Error_Msg_N -- CODEFIX
4046 ("?u?generic procedure & is never instantiated!", E);
4047
4048 when E_Generic_Function =>
4049 Error_Msg_N -- CODEFIX
4050 ("?u?generic function & is never instantiated!", E);
4051
4052 when Type_Kind =>
4053 Error_Msg_N -- CODEFIX
4054 ("?u?type & is not referenced!", E);
4055
4056 when others =>
4057 Error_Msg_N -- CODEFIX
4058 ("?u?& is not referenced!", E);
4059 end case;
4060
4061 -- Kill warnings on the entity on which the message has been posted
4062
4063 Set_Warnings_Off (E);
4064 end if;
4065 end Warn_On_Unreferenced_Entity;
4066
4067 --------------------------------
4068 -- Warn_On_Useless_Assignment --
4069 --------------------------------
4070
4071 procedure Warn_On_Useless_Assignment
4072 (Ent : Entity_Id;
4073 N : Node_Id := Empty)
4074 is
4075 P : Node_Id;
4076 X : Node_Id;
4077
4078 function Check_Ref (N : Node_Id) return Traverse_Result;
4079 -- Used to instantiate Traverse_Func. Returns Abandon if a reference to
4080 -- the entity in question is found.
4081
4082 function Test_No_Refs is new Traverse_Func (Check_Ref);
4083
4084 ---------------
4085 -- Check_Ref --
4086 ---------------
4087
4088 function Check_Ref (N : Node_Id) return Traverse_Result is
4089 begin
4090 -- Check reference to our identifier. We use name equality here
4091 -- because the exception handlers have not yet been analyzed. This
4092 -- is not quite right, but it really does not matter that we fail
4093 -- to output the warning in some obscure cases of name clashes.
4094
4095 if Nkind (N) = N_Identifier and then Chars (N) = Chars (Ent) then
4096 return Abandon;
4097 else
4098 return OK;
4099 end if;
4100 end Check_Ref;
4101
4102 -- Start of processing for Warn_On_Useless_Assignment
4103
4104 begin
4105 -- Check if this is a case we want to warn on, a scalar or access
4106 -- variable with the last assignment field set, with warnings enabled,
4107 -- and which is not imported or exported. We also check that it is OK
4108 -- to capture the value. We are not going to capture any value, but
4109 -- the warning message depends on the same kind of conditions.
4110
4111 if Is_Assignable (Ent)
4112 and then not Is_Return_Object (Ent)
4113 and then Present (Last_Assignment (Ent))
4114 and then not Is_Imported (Ent)
4115 and then not Is_Exported (Ent)
4116 and then Safe_To_Capture_Value (N, Ent)
4117 and then not Has_Pragma_Unreferenced_Check_Spec (Ent)
4118 and then not Is_Junk_Name (Chars (Ent))
4119 then
4120 -- Before we issue the message, check covering exception handlers.
4121 -- Search up tree for enclosing statement sequences and handlers.
4122
4123 P := Parent (Last_Assignment (Ent));
4124 while Present (P) loop
4125
4126 -- Something is really wrong if we don't find a handled statement
4127 -- sequence, so just suppress the warning.
4128
4129 if No (P) then
4130 Set_Last_Assignment (Ent, Empty);
4131 return;
4132
4133 -- When we hit a package/subprogram body, issue warning and exit
4134
4135 elsif Nkind (P) = N_Subprogram_Body
4136 or else Nkind (P) = N_Package_Body
4137 then
4138 -- Case of assigned value never referenced
4139
4140 if No (N) then
4141 declare
4142 LA : constant Node_Id := Last_Assignment (Ent);
4143
4144 begin
4145 -- Don't give this for OUT and IN OUT formals, since
4146 -- clearly caller may reference the assigned value. Also
4147 -- never give such warnings for internal variables.
4148
4149 if Ekind (Ent) = E_Variable
4150 and then not Is_Internal_Name (Chars (Ent))
4151 then
4152 -- Give appropriate message, distinguishing between
4153 -- assignment statements and out parameters.
4154
4155 if Nkind_In (Parent (LA), N_Procedure_Call_Statement,
4156 N_Parameter_Association)
4157 then
4158 Error_Msg_NE
4159 ("?m?& modified by call, but value never "
4160 & "referenced", LA, Ent);
4161
4162 else
4163 Error_Msg_NE -- CODEFIX
4164 ("?m?useless assignment to&, value never "
4165 & "referenced!", LA, Ent);
4166 end if;
4167 end if;
4168 end;
4169
4170 -- Case of assigned value overwritten
4171
4172 else
4173 declare
4174 LA : constant Node_Id := Last_Assignment (Ent);
4175
4176 begin
4177 Error_Msg_Sloc := Sloc (N);
4178
4179 -- Give appropriate message, distinguishing between
4180 -- assignment statements and out parameters.
4181
4182 if Nkind_In (Parent (LA), N_Procedure_Call_Statement,
4183 N_Parameter_Association)
4184 then
4185 Error_Msg_NE
4186 ("?m?& modified by call, but value overwritten #!",
4187 LA, Ent);
4188 else
4189 Error_Msg_NE -- CODEFIX
4190 ("?m?useless assignment to&, value overwritten #!",
4191 LA, Ent);
4192 end if;
4193 end;
4194 end if;
4195
4196 -- Clear last assignment indication and we are done
4197
4198 Set_Last_Assignment (Ent, Empty);
4199 return;
4200
4201 -- Enclosing handled sequence of statements
4202
4203 elsif Nkind (P) = N_Handled_Sequence_Of_Statements then
4204
4205 -- Check exception handlers present
4206
4207 if Present (Exception_Handlers (P)) then
4208
4209 -- If we are not at the top level, we regard an inner
4210 -- exception handler as a decisive indicator that we should
4211 -- not generate the warning, since the variable in question
4212 -- may be accessed after an exception in the outer block.
4213
4214 if Nkind (Parent (P)) /= N_Subprogram_Body
4215 and then Nkind (Parent (P)) /= N_Package_Body
4216 then
4217 Set_Last_Assignment (Ent, Empty);
4218 return;
4219
4220 -- Otherwise we are at the outer level. An exception
4221 -- handler is significant only if it references the
4222 -- variable in question, or if the entity in question
4223 -- is an OUT or IN OUT parameter, which which case
4224 -- the caller can reference it after the exception
4225 -- handler completes.
4226
4227 else
4228 if Is_Formal (Ent) then
4229 Set_Last_Assignment (Ent, Empty);
4230 return;
4231
4232 else
4233 X := First (Exception_Handlers (P));
4234 while Present (X) loop
4235 if Test_No_Refs (X) = Abandon then
4236 Set_Last_Assignment (Ent, Empty);
4237 return;
4238 end if;
4239
4240 X := Next (X);
4241 end loop;
4242 end if;
4243 end if;
4244 end if;
4245 end if;
4246
4247 P := Parent (P);
4248 end loop;
4249 end if;
4250 end Warn_On_Useless_Assignment;
4251
4252 ---------------------------------
4253 -- Warn_On_Useless_Assignments --
4254 ---------------------------------
4255
4256 procedure Warn_On_Useless_Assignments (E : Entity_Id) is
4257 Ent : Entity_Id;
4258
4259 begin
4260 Process_Deferred_References;
4261
4262 if Warn_On_Modified_Unread
4263 and then In_Extended_Main_Source_Unit (E)
4264 then
4265 Ent := First_Entity (E);
4266 while Present (Ent) loop
4267 Warn_On_Useless_Assignment (Ent);
4268 Next_Entity (Ent);
4269 end loop;
4270 end if;
4271 end Warn_On_Useless_Assignments;
4272
4273 -----------------------------
4274 -- Warnings_Off_Check_Spec --
4275 -----------------------------
4276
4277 function Warnings_Off_Check_Spec (E : Entity_Id) return Boolean is
4278 begin
4279 if Is_Formal (E) and then Present (Spec_Entity (E)) then
4280
4281 -- Note: use of OR here instead of OR ELSE is deliberate, we want
4282 -- to mess with flags on both entities.
4283
4284 return Has_Warnings_Off (E)
4285 or
4286 Has_Warnings_Off (Spec_Entity (E));
4287
4288 else
4289 return Has_Warnings_Off (E);
4290 end if;
4291 end Warnings_Off_Check_Spec;
4292
4293 end Sem_Warn;