ada: Spurious reference warning on qualified expression
[official-gcc.git] / gcc / ada / sem_warn.adb
blob8317b4490219e3ef57a10b29faada1cdc79fd886
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-2024, 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 ------------------------------------------------------------------------------
26 with Accessibility; use Accessibility;
27 with Atree; use Atree;
28 with Debug; use Debug;
29 with Einfo; use Einfo;
30 with Einfo.Entities; use Einfo.Entities;
31 with Einfo.Utils; use Einfo.Utils;
32 with Errout; use Errout;
33 with Exp_Code; use Exp_Code;
34 with Lib; use Lib;
35 with Namet; use Namet;
36 with Nlists; use Nlists;
37 with Opt; use Opt;
38 with Par_SCO; use Par_SCO;
39 with Rtsfind; use Rtsfind;
40 with Sem; use Sem;
41 with Sem_Ch8; use Sem_Ch8;
42 with Sem_Aux; use Sem_Aux;
43 with Sem_Eval; use Sem_Eval;
44 with Sem_Prag; use Sem_Prag;
45 with Sem_Util; use Sem_Util;
46 with Sinfo; use Sinfo;
47 with Sinfo.Nodes; use Sinfo.Nodes;
48 with Sinfo.Utils; use Sinfo.Utils;
49 with Sinput; use Sinput;
50 with Snames; use Snames;
51 with Stand; use Stand;
52 with Stringt; use Stringt;
53 with Tbuild; use Tbuild;
54 with Uintp; use Uintp;
55 with Warnsw; use Warnsw;
57 package body Sem_Warn is
59 -- The following table collects Id's of entities that are potentially
60 -- unreferenced. See Check_Unset_Reference for further details.
61 -- ??? Check_Unset_Reference has zero information about this table.
63 package Unreferenced_Entities is new Table.Table (
64 Table_Component_Type => Entity_Id,
65 Table_Index_Type => Nat,
66 Table_Low_Bound => 1,
67 Table_Initial => Alloc.Unreferenced_Entities_Initial,
68 Table_Increment => Alloc.Unreferenced_Entities_Increment,
69 Table_Name => "Unreferenced_Entities");
71 -- The following table collects potential warnings for IN OUT parameters
72 -- that are referenced but not modified. These warnings are processed when
73 -- the front end calls the procedure Output_Non_Modified_In_Out_Warnings.
74 -- The reason that we defer output of these messages is that we want to
75 -- detect the case where the relevant procedure is used as a generic actual
76 -- in an instantiation, since we suppress the warnings in this case. The
77 -- flag Used_As_Generic_Actual will be set in this case, but only at the
78 -- point of usage. Similarly, we suppress the message if the address of the
79 -- procedure is taken, where the flag Address_Taken may be set later.
81 package In_Out_Warnings is new Table.Table (
82 Table_Component_Type => Entity_Id,
83 Table_Index_Type => Nat,
84 Table_Low_Bound => 1,
85 Table_Initial => Alloc.In_Out_Warnings_Initial,
86 Table_Increment => Alloc.In_Out_Warnings_Increment,
87 Table_Name => "In_Out_Warnings");
89 --------------------------------------------------------
90 -- Handling of Warnings Off, Unmodified, Unreferenced --
91 --------------------------------------------------------
93 -- The functions Has_Warnings_Off, Has_Unmodified, Has_Unreferenced must
94 -- generally be used instead of Warnings_Off, Has_Pragma_Unmodified and
95 -- Has_Pragma_Unreferenced, as noted in the specs in Einfo.
97 -- In order to avoid losing warnings in -gnatw.w (warn on unnecessary
98 -- warnings off pragma) mode, i.e. to avoid false negatives, the code
99 -- must follow some important rules.
101 -- Call these functions as late as possible, after completing all other
102 -- tests, just before the warnings is given. For example, don't write:
104 -- if not Has_Warnings_Off (E)
105 -- and then some-other-predicate-on-E then ..
107 -- Instead the following is preferred
109 -- if some-other-predicate-on-E
110 -- and then Has_Warnings_Off (E)
112 -- This way if some-other-predicate is false, we avoid a false indication
113 -- that a Warnings (Off, E) pragma was useful in preventing a warning.
115 -- The second rule is that if both Has_Unmodified and Has_Warnings_Off, or
116 -- Has_Unreferenced and Has_Warnings_Off are called, make sure that the
117 -- call to Has_Unmodified/Has_Unreferenced comes first, this way we record
118 -- that the Warnings (Off) could have been Unreferenced or Unmodified. In
119 -- fact Has_Unmodified/Has_Unreferenced includes a test for Warnings Off,
120 -- and so a subsequent test is not needed anyway (though it is harmless).
122 -----------------------
123 -- Local Subprograms --
124 -----------------------
126 function Generic_Package_Spec_Entity (E : Entity_Id) return Boolean;
127 -- This returns true if the entity E is declared within a generic package.
128 -- The point of this is to detect variables which are not assigned within
129 -- the generic, but might be assigned outside the package for any given
130 -- instance. These are cases where we leave the warnings to be posted for
131 -- the instance, when we will know more.
133 function Goto_Spec_Entity (E : Entity_Id) return Entity_Id;
134 -- If E is a parameter entity for a subprogram body, then this function
135 -- returns the corresponding spec entity, if not, E is returned unchanged.
137 function Has_Pragma_Unmodified_Check_Spec (E : Entity_Id) return Boolean;
138 -- Tests Has_Pragma_Unmodified flag for entity E. If E is not a formal,
139 -- this is simply the setting of the flag Has_Pragma_Unmodified. 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).
143 function Has_Pragma_Unreferenced_Check_Spec (E : Entity_Id) return Boolean;
144 -- Tests Has_Pragma_Unreferenced flag for entity E. If E is not a formal,
145 -- this is simply the setting of the flag Has_Pragma_Unreferenced. If E is
146 -- a body formal, the setting of the flag in the corresponding spec is
147 -- also checked (and True returned if either flag is True).
149 function Is_Attribute_And_Known_Value_Comparison
150 (Op : Node_Id) return Boolean;
151 -- Determine whether operator Op denotes a comparison where the left
152 -- operand is an attribute reference and the value of the right operand is
153 -- known at compile time.
155 function Never_Set_In_Source_Check_Spec (E : Entity_Id) return Boolean;
156 -- Tests Never_Set_In_Source status for entity E. If E is not a formal,
157 -- this is simply the setting of the flag Never_Set_In_Source. If E is
158 -- a body formal, the setting of the flag in the corresponding spec is
159 -- also checked (and False returned if either flag is False).
161 function Operand_Has_Warnings_Suppressed (N : Node_Id) return Boolean;
162 -- This function traverses the expression tree represented by the node N
163 -- and determines if any sub-operand is a reference to an entity for which
164 -- the Warnings_Off flag is set. True is returned if such an entity is
165 -- encountered, and False otherwise.
167 function Referenced_Check_Spec (E : Entity_Id) return Boolean;
168 -- Tests Referenced status for entity E. If E is not a formal, this is
169 -- simply the setting of the flag Referenced. If E is a body formal, the
170 -- setting of the flag in the corresponding spec is also checked (and True
171 -- returned if either flag is True).
173 function Referenced_As_LHS_Check_Spec (E : Entity_Id) return Boolean;
174 -- Tests Referenced_As_LHS status for entity E. If E is not a formal, this
175 -- is simply the setting of the flag Referenced_As_LHS. If E is a body
176 -- formal, the setting of the flag in the corresponding spec is also
177 -- checked (and True returned if either flag is True).
179 function Referenced_As_Out_Parameter_Check_Spec
180 (E : Entity_Id) return Boolean;
181 -- Tests Referenced_As_Out_Parameter status for entity E. If E is not a
182 -- formal, this is simply the setting of Referenced_As_Out_Parameter. If E
183 -- is a body formal, the setting of the flag in the corresponding spec is
184 -- also checked (and True returned if either flag is True).
186 procedure Warn_On_Unreferenced_Entity
187 (Spec_E : Entity_Id;
188 Body_E : Entity_Id := Empty);
189 -- Output warnings for unreferenced entity E. For the case of an entry
190 -- formal, Body_E is the corresponding body entity for a particular
191 -- accept statement, and the message is posted on Body_E. In all other
192 -- cases, Body_E is ignored and must be Empty.
194 function Warnings_Off_Check_Spec (E : Entity_Id) return Boolean;
195 -- Returns True if Warnings_Off is set for the entity E or (in the case
196 -- where there is a Spec_Entity), Warnings_Off is set for the Spec_Entity.
198 --------------------------
199 -- Check_Code_Statement --
200 --------------------------
202 procedure Check_Code_Statement (N : Node_Id) is
203 begin
204 -- If volatile, nothing to worry about
206 if Is_Asm_Volatile (N) then
207 return;
208 end if;
210 -- Warn if no input or no output
212 Setup_Asm_Inputs (N);
214 if No (Asm_Input_Value) then
215 Error_Msg_F
216 ("??code statement with no inputs should usually be Volatile!", N);
217 return;
218 end if;
220 Setup_Asm_Outputs (N);
222 if No (Asm_Output_Variable) then
223 Error_Msg_F
224 ("??code statement with no outputs should usually be Volatile!", N);
225 return;
226 end if;
227 end Check_Code_Statement;
229 ---------------------------------
230 -- Check_Infinite_Loop_Warning --
231 ---------------------------------
233 -- The case we look for is a while loop which tests a local variable, where
234 -- there is no obvious direct or possible indirect update of the variable
235 -- within the body of the loop.
237 procedure Check_Infinite_Loop_Warning (Loop_Statement : Node_Id) is
238 Expression : Node_Id := Empty;
239 -- Set to WHILE or EXIT WHEN condition to be tested
241 Ref : Node_Id := Empty;
242 -- Reference in Expression to variable that might not be modified
243 -- in loop, indicating a possible infinite loop.
245 Var : Entity_Id := Empty;
246 -- Corresponding entity (entity of Ref)
248 Function_Call_Found : Boolean := False;
249 -- True if Find_Var found a function call in the condition
251 procedure Find_Var (N : Node_Id);
252 -- Inspect condition to see if it depends on a single entity reference.
253 -- If so, Ref is set to point to the reference node, and Var is set to
254 -- the referenced Entity.
256 function Has_Condition_Actions (Iter : Node_Id) return Boolean;
257 -- Determine whether iteration scheme Iter has meaningful condition
258 -- actions.
260 function Has_Indirection (T : Entity_Id) return Boolean;
261 -- If the controlling variable is an access type, or is a record type
262 -- with access components, assume that it is changed indirectly and
263 -- suppress the warning. As a concession to low-level programming, in
264 -- particular within Declib, we also suppress warnings on a record
265 -- type that contains components of type Address or Short_Address.
267 function Is_Suspicious_Function_Name (E : Entity_Id) return Boolean;
268 -- Given an entity name, see if the name appears to have something to
269 -- do with I/O or network stuff, and if so, return True. Used to kill
270 -- some false positives on a heuristic basis that such functions will
271 -- likely have some strange side effect dependencies. A rather strange
272 -- test, but warning messages are in the heuristics business.
274 function Test_Ref (N : Node_Id) return Traverse_Result;
275 -- Test for reference to variable in question. Returns Abandon if
276 -- matching reference found. Used in instantiation of No_Ref_Found.
278 function No_Ref_Found is new Traverse_Func (Test_Ref);
279 -- Function to traverse body of procedure. Returns Abandon if matching
280 -- reference found.
282 --------------
283 -- Find_Var --
284 --------------
286 procedure Find_Var (N : Node_Id) is
287 begin
288 -- Expression is a direct variable reference
290 if Is_Entity_Name (N) then
291 Ref := N;
292 Var := Entity (Ref);
294 -- If expression is an operator, check its operands
296 elsif Nkind (N) in N_Binary_Op then
297 if Compile_Time_Known_Value (Right_Opnd (N)) then
298 Find_Var (Left_Opnd (N));
300 elsif Compile_Time_Known_Value (Left_Opnd (N)) then
301 Find_Var (Right_Opnd (N));
303 -- Ignore any other comparison
305 else
306 return;
307 end if;
309 -- If expression is a unary operator, check its operand
311 elsif Nkind (N) in N_Unary_Op then
312 Find_Var (Right_Opnd (N));
314 -- Case of condition is function call
316 elsif Nkind (N) = N_Function_Call then
318 Function_Call_Found := True;
320 -- Forget it if function name is not entity, who knows what
321 -- we might be calling?
323 if not Is_Entity_Name (Name (N)) then
324 return;
326 -- Forget it if function name is suspicious. A strange test
327 -- but warning generation is in the heuristics business.
329 elsif Is_Suspicious_Function_Name (Entity (Name (N))) then
330 return;
332 -- Forget it if function is marked Volatile_Function
334 elsif Is_Volatile_Function (Entity (Name (N))) then
335 return;
337 -- Forget it if warnings are suppressed on function entity
339 elsif Has_Warnings_Off (Entity (Name (N))) then
340 return;
342 -- Forget it if the parameter is not In
344 elsif Has_Out_Or_In_Out_Parameter (Entity (Name (N))) then
345 return;
346 end if;
348 -- OK, see if we have one argument
350 declare
351 PA : constant List_Id := Parameter_Associations (N);
353 begin
354 -- One argument, so check the argument
356 if List_Length (PA) = 1 then
357 if Nkind (First (PA)) = N_Parameter_Association then
358 Find_Var (Explicit_Actual_Parameter (First (PA)));
359 else
360 Find_Var (First (PA));
361 end if;
363 -- Not one argument
365 else
366 return;
367 end if;
368 end;
370 -- Any other kind of node is not something we warn for
372 else
373 return;
374 end if;
375 end Find_Var;
377 ---------------------------
378 -- Has_Condition_Actions --
379 ---------------------------
381 function Has_Condition_Actions (Iter : Node_Id) return Boolean is
382 Action : Node_Id;
384 begin
385 -- A call marker is not considered a meaningful action because it
386 -- acts as an annotation and has no runtime semantics.
388 Action := First (Condition_Actions (Iter));
389 while Present (Action) loop
390 if Nkind (Action) /= N_Call_Marker then
391 return True;
392 end if;
394 Next (Action);
395 end loop;
397 return False;
398 end Has_Condition_Actions;
400 ---------------------
401 -- Has_Indirection --
402 ---------------------
404 function Has_Indirection (T : Entity_Id) return Boolean is
405 Comp : Entity_Id;
406 Rec : Entity_Id;
408 begin
409 if Is_Access_Type (T) then
410 return True;
412 elsif Is_Private_Type (T)
413 and then Present (Full_View (T))
414 and then Is_Access_Type (Full_View (T))
415 then
416 return True;
418 elsif Is_Record_Type (T) then
419 Rec := T;
421 elsif Is_Private_Type (T)
422 and then Present (Full_View (T))
423 and then Is_Record_Type (Full_View (T))
424 then
425 Rec := Full_View (T);
426 else
427 return False;
428 end if;
430 Comp := First_Component (Rec);
431 while Present (Comp) loop
432 if Is_Access_Type (Etype (Comp))
433 or else Is_Descendant_Of_Address (Etype (Comp))
434 then
435 return True;
436 end if;
438 Next_Component (Comp);
439 end loop;
441 return False;
442 end Has_Indirection;
444 ---------------------------------
445 -- Is_Suspicious_Function_Name --
446 ---------------------------------
448 function Is_Suspicious_Function_Name (E : Entity_Id) return Boolean is
449 function Substring_Present (S : String) return Boolean;
450 -- Returns True if name buffer has given string delimited by non-
451 -- alphabetic characters or by end of string. S is lower case.
453 -----------------------
454 -- Substring_Present --
455 -----------------------
457 function Substring_Present (S : String) return Boolean is
458 Len : constant Natural := S'Length;
460 begin
461 for J in 1 .. Name_Len - (Len - 1) loop
462 if Name_Buffer (J .. J + (Len - 1)) = S
463 and then (J = 1 or else Name_Buffer (J - 1) not in 'a' .. 'z')
464 and then
465 (J + Len > Name_Len
466 or else Name_Buffer (J + Len) not in 'a' .. 'z')
467 then
468 return True;
469 end if;
470 end loop;
472 return False;
473 end Substring_Present;
475 -- Local variables
477 S : Entity_Id;
479 -- Start of processing for Is_Suspicious_Function_Name
481 begin
482 S := E;
483 while Present (S) and then S /= Standard_Standard loop
484 Get_Name_String (Chars (S));
486 if Substring_Present ("io")
487 or else Substring_Present ("file")
488 or else Substring_Present ("network")
489 then
490 return True;
491 else
492 S := Scope (S);
493 end if;
494 end loop;
496 return False;
497 end Is_Suspicious_Function_Name;
499 --------------
500 -- Test_Ref --
501 --------------
503 function Test_Ref (N : Node_Id) return Traverse_Result is
504 begin
505 -- Waste of time to look at the expression we are testing
507 if N = Expression then
508 return Skip;
510 -- Direct reference to variable in question
512 elsif Is_Entity_Name (N)
513 and then Present (Entity (N))
514 and then Entity (N) = Var
515 then
516 -- If this is an lvalue, then definitely abandon, since
517 -- this could be a direct modification of the variable.
519 if Known_To_Be_Assigned (N) then
520 return Abandon;
521 end if;
523 -- If the condition contains a function call, we consider it may
524 -- be modified by side effects from a procedure call. Otherwise,
525 -- we consider the condition may not be modified, although that
526 -- might happen if Variable is itself a by-reference parameter,
527 -- and the procedure called modifies the global object referred to
528 -- by Variable, but we actually prefer to issue a warning in this
529 -- odd case. Note that the case where the procedure called has
530 -- visibility over Variable is treated in another case below.
532 if Function_Call_Found then
533 declare
534 P : Node_Id;
536 begin
537 P := N;
538 loop
539 P := Parent (P);
540 exit when P = Loop_Statement;
542 -- Abandon if at procedure call, or something strange is
543 -- going on (perhaps a node with no parent that should
544 -- have one but does not?) As always, for a warning we
545 -- prefer to just abandon the warning than get into the
546 -- business of complaining about the tree structure here.
548 if No (P)
549 or else Nkind (P) = N_Procedure_Call_Statement
550 then
551 return Abandon;
552 end if;
553 end loop;
554 end;
555 end if;
557 -- Reference to variable renaming variable in question
559 elsif Is_Entity_Name (N)
560 and then Present (Entity (N))
561 and then Ekind (Entity (N)) = E_Variable
562 and then Present (Renamed_Object (Entity (N)))
563 and then Is_Entity_Name (Renamed_Object (Entity (N)))
564 and then Entity (Renamed_Object (Entity (N))) = Var
565 and then Known_To_Be_Assigned (N)
566 then
567 return Abandon;
569 -- Call to subprogram
571 elsif Nkind (N) in N_Subprogram_Call then
573 -- If subprogram is within the scope of the entity we are dealing
574 -- with as the loop variable, then it could modify this parameter,
575 -- so we abandon in this case. In the case of a subprogram that is
576 -- not an entity we also abandon. The check for no entity being
577 -- present is a defense against previous errors.
579 if not Is_Entity_Name (Name (N))
580 or else No (Entity (Name (N)))
581 or else Scope_Within (Entity (Name (N)), Scope (Var))
582 then
583 return Abandon;
584 end if;
586 -- If any of the arguments are of type access to subprogram, then
587 -- we may have funny side effects, so no warning in this case.
589 declare
590 Actual : Node_Id;
591 begin
592 Actual := First_Actual (N);
593 while Present (Actual) loop
594 if No (Etype (Actual))
595 or else Is_Access_Subprogram_Type (Etype (Actual))
596 then
597 return Abandon;
598 else
599 Next_Actual (Actual);
600 end if;
601 end loop;
602 end;
604 -- Declaration of the variable in question
606 elsif Nkind (N) = N_Object_Declaration
607 and then Defining_Identifier (N) = Var
608 then
609 return Abandon;
610 end if;
612 -- All OK, continue scan
614 return OK;
615 end Test_Ref;
617 -- Start of processing for Check_Infinite_Loop_Warning
619 begin
620 -- Skip processing if debug flag gnatd.w is set
622 if Debug_Flag_Dot_W then
623 return;
624 end if;
626 -- Deal with Iteration scheme present
628 declare
629 Iter : constant Node_Id := Iteration_Scheme (Loop_Statement);
631 begin
632 if Present (Iter) then
634 -- While iteration
636 if Present (Condition (Iter)) then
638 -- Skip processing for while iteration with conditions actions,
639 -- since they make it too complicated to get the warning right.
641 if Has_Condition_Actions (Iter) then
642 return;
643 end if;
645 -- Capture WHILE condition
647 Expression := Condition (Iter);
649 -- For Loop_Parameter_Specification, do not process, since loop
650 -- will always terminate. For Iterator_Specification, also do not
651 -- process. Either it will always terminate (e.g. "for X of
652 -- Some_Array ..."), or we can't tell if it's going to terminate
653 -- without looking at the iterator, so any warning here would be
654 -- noise.
656 elsif Present (Loop_Parameter_Specification (Iter))
657 or else Present (Iterator_Specification (Iter))
658 then
659 return;
660 end if;
661 end if;
662 end;
664 -- Check chain of EXIT statements, we only process loops that have a
665 -- single exit condition (either a single EXIT WHEN statement, or a
666 -- WHILE loop not containing any EXIT WHEN statements).
668 declare
669 Ident : constant Node_Id := Identifier (Loop_Statement);
670 Exit_Stmt : Node_Id;
672 begin
673 -- If we don't have a proper chain set, ignore call entirely. This
674 -- happens because of previous errors.
676 if No (Entity (Ident))
677 or else Ekind (Entity (Ident)) /= E_Loop
678 then
679 Check_Error_Detected;
680 return;
681 end if;
683 -- Otherwise prepare to scan list of EXIT statements
685 Exit_Stmt := First_Exit_Statement (Entity (Ident));
686 while Present (Exit_Stmt) loop
688 -- Check for EXIT WHEN
690 if Present (Condition (Exit_Stmt)) then
692 -- Quit processing if EXIT WHEN in WHILE loop, or more than
693 -- one EXIT WHEN statement present in the loop.
695 if Present (Expression) then
696 return;
698 -- Otherwise capture condition from EXIT WHEN statement
700 else
701 Expression := Condition (Exit_Stmt);
702 end if;
704 -- If an unconditional exit statement is the last statement in the
705 -- loop, assume that no warning is needed, without any attempt at
706 -- checking whether the exit is reachable.
708 elsif Exit_Stmt = Last (Statements (Loop_Statement)) then
709 return;
710 end if;
712 Exit_Stmt := Next_Exit_Statement (Exit_Stmt);
713 end loop;
714 end;
716 -- Return if no condition to test
718 if No (Expression) then
719 return;
720 end if;
722 -- Initial conditions met, see if condition is of right form
724 Find_Var (Expression);
726 -- Nothing to do if local variable from source not found. If it's a
727 -- renaming, it is probably renaming something too complicated to deal
728 -- with here.
730 if No (Var)
731 or else Ekind (Var) /= E_Variable
732 or else Is_Library_Level_Entity (Var)
733 or else not Comes_From_Source (Var)
734 or else Nkind (Parent (Var)) = N_Object_Renaming_Declaration
735 then
736 return;
738 -- Nothing to do if there is some indirection involved (assume that the
739 -- designated variable might be modified in some way we don't see).
740 -- However, if no function call was found, then we don't care about
741 -- indirections, because the condition must be something like "while X
742 -- /= null loop", so we don't care if X.all is modified in the loop.
744 elsif Function_Call_Found and then Has_Indirection (Etype (Var)) then
745 return;
747 -- Same sort of thing for volatile variable, might be modified by
748 -- some other task or by the operating system in some way.
750 elsif Is_Volatile (Var) then
751 return;
752 end if;
754 -- Filter out case of original statement sequence starting with delay.
755 -- We assume this is a multi-tasking program and that the condition
756 -- is affected by other threads (some kind of busy wait).
758 declare
759 Fstm : constant Node_Id :=
760 Original_Node (First (Statements (Loop_Statement)));
761 begin
762 if Nkind (Fstm) in N_Delay_Statement then
763 return;
764 end if;
765 end;
767 -- We have a variable reference of the right form, now we scan the loop
768 -- body to see if it looks like it might not be modified
770 if No_Ref_Found (Loop_Statement) = OK then
771 Error_Msg_NE
772 ("??variable& is not modified in loop body!", Ref, Var);
773 Error_Msg_N
774 ("\??possible infinite loop!", Ref);
775 end if;
776 end Check_Infinite_Loop_Warning;
778 ----------------------------
779 -- Check_Low_Bound_Tested --
780 ----------------------------
782 procedure Check_Low_Bound_Tested (Expr : Node_Id) is
783 procedure Check_Low_Bound_Tested_For (Opnd : Node_Id);
784 -- Determine whether operand Opnd denotes attribute 'First whose prefix
785 -- is a formal parameter. If this is the case, mark the entity of the
786 -- prefix as having its low bound tested.
788 --------------------------------
789 -- Check_Low_Bound_Tested_For --
790 --------------------------------
792 procedure Check_Low_Bound_Tested_For (Opnd : Node_Id) is
793 begin
794 if Nkind (Opnd) = N_Attribute_Reference
795 and then Attribute_Name (Opnd) = Name_First
796 and then Is_Entity_Name (Prefix (Opnd))
797 and then Present (Entity (Prefix (Opnd)))
798 and then Is_Formal (Entity (Prefix (Opnd)))
799 then
800 Set_Low_Bound_Tested (Entity (Prefix (Opnd)));
801 end if;
802 end Check_Low_Bound_Tested_For;
804 -- Start of processing for Check_Low_Bound_Tested
806 begin
807 if Comes_From_Source (Expr) then
808 Check_Low_Bound_Tested_For (Left_Opnd (Expr));
809 Check_Low_Bound_Tested_For (Right_Opnd (Expr));
810 end if;
811 end Check_Low_Bound_Tested;
813 ----------------------
814 -- Check_References --
815 ----------------------
817 procedure Check_References (E : Entity_Id; Anod : Node_Id := Empty) is
818 E1 : Entity_Id;
819 E1T : Entity_Id;
820 UR : Node_Id;
822 function Body_Formal
823 (E : Entity_Id;
824 Accept_Statement : Node_Id) return Entity_Id;
825 -- For an entry formal entity from an entry declaration, find the
826 -- corresponding body formal from the given accept statement.
828 function Generic_Body_Formal (E : Entity_Id) return Entity_Id;
829 -- Warnings on unused formals of subprograms are placed on the entity
830 -- in the subprogram body, which seems preferable because it suggests
831 -- a better codefix for GNAT Studio. The analysis of generic subprogram
832 -- bodies uses a different circuitry, so the choice for the proper
833 -- placement of the warning in the generic case takes place here, by
834 -- finding the body entity that corresponds to a formal in a spec.
836 procedure May_Need_Initialized_Actual (Ent : Entity_Id);
837 -- If an entity of a generic type has default initialization, then the
838 -- corresponding actual type should be fully initialized, or else there
839 -- will be uninitialized components in the instantiation, that might go
840 -- unreported. This routine marks the type of the uninitialized variable
841 -- appropriately to allow the compiler to emit an appropriate warning
842 -- in the instance. In a sense, the use of a type that requires full
843 -- initialization is a weak part of the generic contract.
845 function Missing_Subunits return Boolean;
846 -- We suppress warnings when there are missing subunits, because this
847 -- may generate too many false positives: entities in a parent may only
848 -- be referenced in one of the subunits. We make an exception for
849 -- subunits that contain no other stubs.
851 procedure Output_Reference_Error (M : String);
852 -- Used to output an error message. Deals with posting the error on the
853 -- body formal in the accept case.
855 function Publicly_Referenceable (Ent : Entity_Id) return Boolean;
856 -- This is true if the entity in question is potentially referenceable
857 -- from another unit. This is true for entities in packages that are at
858 -- the library level.
860 function Type_OK_For_No_Value_Assigned (T : Entity_Id) return Boolean;
861 -- Return True if it is OK for an object of type T to be referenced
862 -- without having been assigned a value in the source.
864 function Warnings_Off_E1 return Boolean;
865 -- Return True if Warnings_Off is set for E1, or for its Etype (E1T),
866 -- or for the base type of E1T.
868 -----------------
869 -- Body_Formal --
870 -----------------
872 function Body_Formal
873 (E : Entity_Id;
874 Accept_Statement : Node_Id) return Entity_Id
876 Body_Param : Node_Id;
877 Body_E : Entity_Id;
879 begin
880 -- Loop to find matching parameter in accept statement
882 Body_Param := First (Parameter_Specifications (Accept_Statement));
883 while Present (Body_Param) loop
884 Body_E := Defining_Identifier (Body_Param);
886 if Chars (Body_E) = Chars (E) then
887 return Body_E;
888 end if;
890 Next (Body_Param);
891 end loop;
893 -- Should never fall through, should always find a match
895 raise Program_Error;
896 end Body_Formal;
898 -------------------------
899 -- Generic_Body_Formal --
900 -------------------------
902 function Generic_Body_Formal (E : Entity_Id) return Entity_Id is
903 Gen_Decl : constant Node_Id := Unit_Declaration_Node (Scope (E));
904 Gen_Body : constant Entity_Id := Corresponding_Body (Gen_Decl);
905 Form : Entity_Id;
907 begin
908 if No (Gen_Body) then
909 return E;
911 else
912 Form := First_Entity (Gen_Body);
913 while Present (Form) loop
914 if Chars (Form) = Chars (E) then
915 return Form;
916 end if;
918 Next_Entity (Form);
919 end loop;
920 end if;
922 -- Should never fall through, should always find a match
924 raise Program_Error;
925 end Generic_Body_Formal;
927 ---------------------------------
928 -- May_Need_Initialized_Actual --
929 ---------------------------------
931 procedure May_Need_Initialized_Actual (Ent : Entity_Id) is
932 T : constant Entity_Id := Etype (Ent);
933 Par : constant Node_Id := Parent (T);
935 begin
936 if not Is_Generic_Type (T) then
937 null;
939 elsif Nkind (Par) = N_Private_Extension_Declaration then
941 -- We only indicate the first such variable in the generic.
943 if No (Uninitialized_Variable (Par)) then
944 Set_Uninitialized_Variable (Par, Ent);
945 end if;
947 elsif Nkind (Par) = N_Formal_Type_Declaration
948 and then Nkind (Formal_Type_Definition (Par)) =
949 N_Formal_Private_Type_Definition
950 then
951 if No (Uninitialized_Variable (Formal_Type_Definition (Par))) then
952 Set_Uninitialized_Variable (Formal_Type_Definition (Par), Ent);
953 end if;
954 end if;
955 end May_Need_Initialized_Actual;
957 ----------------------
958 -- Missing_Subunits --
959 ----------------------
961 function Missing_Subunits return Boolean is
962 D : Node_Id;
964 begin
965 if not Unloaded_Subunits then
967 -- Normal compilation, all subunits are present
969 return False;
971 elsif E /= Main_Unit_Entity then
973 -- No warnings on a stub that is not the main unit
975 return True;
977 elsif Nkind (Unit_Declaration_Node (E)) in N_Proper_Body then
978 D := First (Declarations (Unit_Declaration_Node (E)));
979 while Present (D) loop
981 -- No warnings if the proper body contains nested stubs
983 if Nkind (D) in N_Body_Stub then
984 return True;
985 end if;
987 Next (D);
988 end loop;
990 return False;
992 else
993 -- Missing stubs elsewhere
995 return True;
996 end if;
997 end Missing_Subunits;
999 ----------------------------
1000 -- Output_Reference_Error --
1001 ----------------------------
1003 procedure Output_Reference_Error (M : String) is
1004 begin
1005 -- Never issue messages for internal names or renamings
1007 if Is_Internal_Name (Chars (E1))
1008 or else Nkind (Parent (E1)) = N_Object_Renaming_Declaration
1009 then
1010 return;
1011 end if;
1013 -- Don't output message for IN OUT formal unless we have the warning
1014 -- flag specifically set. It is a bit odd to distinguish IN OUT
1015 -- formals from other cases. This distinction is historical in
1016 -- nature. Warnings for IN OUT formals were added fairly late.
1018 if Ekind (E1) = E_In_Out_Parameter
1019 and then not Check_Unreferenced_Formals
1020 then
1021 return;
1022 end if;
1024 -- Other than accept case, post error on defining identifier
1026 if No (Anod) then
1027 Error_Msg_N (M, E1);
1029 -- Accept case, find body formal to post the message
1031 else
1032 Error_Msg_NE (M, Body_Formal (E1, Accept_Statement => Anod), E1);
1034 end if;
1035 end Output_Reference_Error;
1037 ----------------------------
1038 -- Publicly_Referenceable --
1039 ----------------------------
1041 function Publicly_Referenceable (Ent : Entity_Id) return Boolean is
1042 P : Node_Id;
1043 Prev : Node_Id;
1045 begin
1046 -- A formal parameter is never referenceable outside the body of its
1047 -- subprogram or entry.
1049 if Is_Formal (Ent) then
1050 return False;
1051 end if;
1053 -- Examine parents to look for a library level package spec. But if
1054 -- we find a body or block or other similar construct along the way,
1055 -- we cannot be referenced.
1057 Prev := Ent;
1058 P := Parent (Ent);
1059 loop
1060 case Nkind (P) is
1062 -- If we get to top of tree, then publicly referenceable
1064 when N_Empty =>
1065 return True;
1067 -- If we reach a generic package declaration, then always
1068 -- consider this referenceable, since any instantiation will
1069 -- have access to the entities in the generic package. Note
1070 -- that the package itself may not be instantiated, but then
1071 -- we will get a warning for the package entity.
1073 -- Note that generic formal parameters are themselves not
1074 -- publicly referenceable in an instance, and warnings on them
1075 -- are useful.
1077 when N_Generic_Package_Declaration =>
1078 return
1079 not Is_List_Member (Prev)
1080 or else List_Containing (Prev) /=
1081 Generic_Formal_Declarations (P);
1083 -- Similarly, the generic formals of a generic subprogram are
1084 -- not accessible.
1086 when N_Generic_Subprogram_Declaration =>
1087 if Is_List_Member (Prev)
1088 and then List_Containing (Prev) =
1089 Generic_Formal_Declarations (P)
1090 then
1091 return False;
1092 else
1093 P := Parent (P);
1094 end if;
1096 -- If we reach a subprogram body, entity is not referenceable
1097 -- unless it is the defining entity of the body. This will
1098 -- happen, e.g. when a function is an attribute renaming that
1099 -- is rewritten as a body.
1101 when N_Subprogram_Body =>
1102 if Ent /= Defining_Entity (P) then
1103 return False;
1104 else
1105 P := Parent (P);
1106 end if;
1108 -- If we reach any other body, definitely not referenceable
1110 when N_Block_Statement
1111 | N_Entry_Body
1112 | N_Package_Body
1113 | N_Protected_Body
1114 | N_Subunit
1115 | N_Task_Body
1117 return False;
1119 -- For all other cases, keep looking up tree
1121 when others =>
1122 Prev := P;
1123 P := Parent (P);
1124 end case;
1125 end loop;
1126 end Publicly_Referenceable;
1128 -----------------------------------
1129 -- Type_OK_For_No_Value_Assigned --
1130 -----------------------------------
1132 function Type_OK_For_No_Value_Assigned (T : Entity_Id) return Boolean is
1133 begin
1134 -- No information for generic types, so be conservative
1136 if Is_Generic_Type (T) then
1137 return False;
1138 end if;
1140 -- Even if objects of access types are implicitly initialized to null
1142 if Is_Access_Type (T) then
1143 return False;
1144 end if;
1146 -- The criterion is whether the type is (partially) initialized in
1147 -- the source, in other words we disregard implicit default values.
1148 -- But we do not require full initialization for by-reference types
1149 -- because they are complex and it may not be possible to have it.
1151 if Is_By_Reference_Type (T) then
1152 return
1153 Is_Partially_Initialized_Type (T, Include_Implicit => False);
1154 else
1155 return Is_Fully_Initialized_Type (T);
1156 end if;
1157 end Type_OK_For_No_Value_Assigned;
1159 ---------------------
1160 -- Warnings_Off_E1 --
1161 ---------------------
1163 function Warnings_Off_E1 return Boolean is
1164 begin
1165 return Has_Warnings_Off (E1T)
1166 or else Has_Warnings_Off (Base_Type (E1T))
1167 or else Warnings_Off_Check_Spec (E1);
1168 end Warnings_Off_E1;
1170 -- Start of processing for Check_References
1172 begin
1173 -- No messages if warnings are suppressed, or if we have detected any
1174 -- real errors so far (this last check avoids junk messages resulting
1175 -- from errors, e.g. a subunit that is not loaded).
1177 if Warning_Mode = Suppress or else Serious_Errors_Detected /= 0 then
1178 return;
1179 end if;
1181 -- We also skip the messages if any subunits were not loaded (see
1182 -- comment in Sem_Ch10 to understand how this is set, and why it is
1183 -- necessary to suppress the warnings in this case).
1185 if Missing_Subunits then
1186 return;
1187 end if;
1189 -- Otherwise loop through entities, looking for suspicious stuff
1191 E1 := First_Entity (E);
1192 while Present (E1) loop
1193 -- We are only interested in source entities. We also don't issue
1194 -- warnings within instances, since the proper place for such
1195 -- warnings is on the template when it is compiled, and we don't
1196 -- issue warnings for variables with names like Junk, Discard etc.
1198 if Comes_From_Source (E1)
1199 and then Instantiation_Location (Sloc (E1)) = No_Location
1200 then
1201 E1T := Etype (E1);
1203 -- We are interested in variables and out/in-out parameters, but
1204 -- we exclude protected types, too complicated to worry about.
1206 if Ekind (E1) = E_Variable
1207 or else
1208 (Ekind (E1) in E_Out_Parameter | E_In_Out_Parameter
1209 and then not Is_Protected_Type (Current_Scope))
1210 then
1211 -- If the formal has a class-wide type, retrieve its type
1212 -- because checks below depend on its private nature.
1214 if Is_Class_Wide_Type (E1T) then
1215 E1T := Etype (E1T);
1216 end if;
1218 -- Case of an unassigned variable
1220 -- First gather any Unset_Reference indication for E1. In the
1221 -- case of an 'out' parameter, it is the Spec_Entity that is
1222 -- relevant.
1224 if Ekind (E1) = E_Out_Parameter
1225 and then Present (Spec_Entity (E1))
1226 then
1227 UR := Unset_Reference (Spec_Entity (E1));
1228 else
1229 UR := Unset_Reference (E1);
1230 end if;
1232 -- Special processing for access types
1234 if Present (UR) and then Is_Access_Type (E1T) then
1236 -- For access types, the only time we made a UR entry was
1237 -- for a dereference, and so we post the appropriate warning
1238 -- here (note that the dereference may not be explicit in
1239 -- the source, for example in the case of a dispatching call
1240 -- with an anonymous access controlling formal, or of an
1241 -- assignment of a pointer involving discriminant check on
1242 -- the designated object).
1244 if not Warnings_Off_E1 then
1245 Error_Msg_NE ("??& may be null!", UR, E1);
1246 end if;
1248 goto Continue;
1250 -- Case of variable that could be a constant. Note that we
1251 -- never signal such messages for generic package entities,
1252 -- since a given instance could have modifications outside
1253 -- the package.
1255 -- Note that we used to check Address_Taken here, but we don't
1256 -- want to do that since it can be set for non-source cases,
1257 -- e.g. the Unrestricted_Access from a valid attribute, and
1258 -- the wanted effect is included in Never_Set_In_Source.
1260 elsif Warn_On_Constant
1261 and then Ekind (E1) = E_Variable
1262 and then Has_Initial_Value (E1)
1263 and then Never_Set_In_Source (E1)
1264 and then not Generic_Package_Spec_Entity (E1)
1265 then
1266 -- A special case, if this variable is volatile and not
1267 -- imported, it is not helpful to tell the programmer
1268 -- to mark the variable as constant, since this would be
1269 -- illegal by virtue of RM C.6(13). Instead we suggest
1270 -- using pragma Export (can't be Import because of the
1271 -- initial value).
1273 if (Is_Volatile (E1) or else Has_Volatile_Components (E1))
1274 and then not Is_Imported (E1)
1275 then
1276 Error_Msg_N
1277 ("?k?& is not modified, consider pragma Export for "
1278 & "volatile variable!", E1);
1280 -- Another special case, Exception_Occurrence, this catches
1281 -- the case of exception choice (and a bit more too, but not
1282 -- worth doing more investigation here).
1284 elsif Is_RTE (E1T, RE_Exception_Occurrence) then
1285 null;
1287 -- Here we give the warning if referenced and no pragma
1288 -- Unreferenced or Unmodified is present.
1290 elsif Referenced (E1)
1291 and then not Has_Unreferenced (E1)
1292 and then not Has_Unmodified (E1)
1293 and then not Warnings_Off_E1
1294 and then not Has_Junk_Name (E1)
1295 then
1296 Error_Msg_N -- CODEFIX
1297 ("?k?& is not modified, could be declared constant!",
1298 E1);
1299 end if;
1301 -- Other cases of a variable or parameter never set in source
1303 elsif Never_Set_In_Source_Check_Spec (E1)
1305 -- No warning if address taken somewhere
1307 and then not Address_Taken (E1)
1309 -- No warning if explicit initial value
1311 and then not Has_Initial_Value (E1)
1313 -- No warning for generic package spec entities, since we
1314 -- might set them in a child unit or something like that
1316 and then not Generic_Package_Spec_Entity (E1)
1318 -- No warning if fully initialized type, except that for
1319 -- this purpose we do not consider access types to qualify
1320 -- as fully initialized types (relying on an access type
1321 -- variable being null when it is never set is a bit odd).
1323 -- Also we generate warning for an out parameter that is
1324 -- never referenced, since again it seems odd to rely on
1325 -- default initialization to set an out parameter value.
1327 and then (Is_Access_Type (E1T)
1328 or else Ekind (E1) = E_Out_Parameter
1329 or else not Is_Fully_Initialized_Type (E1T))
1330 then
1331 -- Do not output complaint about never being assigned a
1332 -- value if a pragma Unmodified applies to the variable
1333 -- we are examining, or if it is a parameter, if there is
1334 -- a pragma Unreferenced for the corresponding spec, or
1335 -- if the type is marked as having unreferenced objects.
1336 -- The last is a little peculiar, but better too few than
1337 -- too many warnings in this situation.
1339 if Has_Pragma_Unreferenced_Objects (E1T)
1340 or else Has_Pragma_Unmodified_Check_Spec (E1)
1341 then
1342 null;
1344 -- IN OUT parameter case where parameter is referenced. We
1345 -- separate this out, since this is the case where we delay
1346 -- output of the warning until more information is available
1347 -- (about use in an instantiation or address being taken).
1349 elsif Ekind (E1) = E_In_Out_Parameter
1350 and then Referenced_Check_Spec (E1)
1351 then
1352 -- Suppress warning if private type, and the procedure
1353 -- has a separate declaration in a different unit. This
1354 -- is the case where the client of a package sees only
1355 -- the private type, and it may be quite reasonable
1356 -- for the logical view to be IN OUT, even if the
1357 -- implementation ends up using access types or some
1358 -- other method to achieve the local effect of a
1359 -- modification. On the other hand if the spec and body
1360 -- are in the same unit, we are in the package body and
1361 -- there we have less excuse for a junk IN OUT parameter.
1363 if Has_Private_Declaration (E1T)
1364 and then Present (Spec_Entity (E1))
1365 and then not In_Same_Source_Unit (E1, Spec_Entity (E1))
1366 then
1367 null;
1369 -- Suppress warning for any parameter of a dispatching
1370 -- operation, since it is quite reasonable to have an
1371 -- operation that is overridden, and for some subclasses
1372 -- needs the formal to be IN OUT and for others happens
1373 -- not to assign it.
1375 elsif Is_Dispatching_Operation
1376 (Scope (Goto_Spec_Entity (E1)))
1377 then
1378 null;
1380 -- Suppress warning if composite type contains any access
1381 -- component, since the logical effect of modifying a
1382 -- parameter may be achieved by modifying a referenced
1383 -- object. This rationale does not apply to private
1384 -- types, so we warn in that case.
1386 elsif Is_Composite_Type (E1T)
1387 and then not Is_Private_Type (E1T)
1388 and then Has_Access_Values (E1T)
1389 then
1390 null;
1392 -- Suppress warning on formals of an entry body. All
1393 -- references are attached to the formal in the entry
1394 -- declaration, which are marked Is_Entry_Formal.
1396 elsif Ekind (Scope (E1)) = E_Entry
1397 and then not Is_Entry_Formal (E1)
1398 then
1399 null;
1401 -- OK, looks like warning for an IN OUT parameter that
1402 -- could be IN makes sense, but we delay the output of
1403 -- the warning, pending possibly finding out later on
1404 -- that the associated subprogram is used as a generic
1405 -- actual, or its address/access is taken. In these two
1406 -- cases, we suppress the warning because the context may
1407 -- force use of IN OUT, even if in this particular case
1408 -- the formal is not modified.
1410 elsif Warn_On_No_Value_Assigned then
1411 -- Suppress the warnings for a junk name
1413 if not Has_Junk_Name (E1) then
1414 In_Out_Warnings.Append (E1);
1415 end if;
1416 end if;
1418 -- Other cases of formals
1420 elsif Is_Formal (E1) then
1421 if not Is_Trivial_Subprogram (Scope (E1)) then
1422 if Referenced_Check_Spec (E1) then
1423 if not Has_Pragma_Unmodified_Check_Spec (E1)
1424 and then not Warnings_Off_E1
1425 and then not Has_Junk_Name (E1)
1426 and then Warn_On_No_Value_Assigned
1427 then
1428 Output_Reference_Error
1429 ("?v?formal parameter& is read but "
1430 & "never assigned!");
1431 end if;
1433 elsif not Has_Pragma_Unreferenced_Check_Spec (E1)
1434 and then not Warnings_Off_E1
1435 and then not Has_Junk_Name (E1)
1436 and then Check_Unreferenced_Formals
1437 then
1438 Output_Reference_Error
1439 ("?f?formal parameter& is not referenced!");
1440 end if;
1441 end if;
1443 -- Case of variable
1445 else
1446 if Referenced (E1) then
1447 if Warn_On_No_Value_Assigned
1448 and then not Has_Unmodified (E1)
1449 and then not Warnings_Off_E1
1450 and then not Has_Junk_Name (E1)
1451 then
1452 if not Type_OK_For_No_Value_Assigned (E1T) then
1453 Output_Reference_Error
1454 ("?v?variable& is read but never assigned!");
1455 end if;
1457 May_Need_Initialized_Actual (E1);
1458 end if;
1460 elsif Check_Unreferenced
1461 and then not Has_Unreferenced (E1)
1462 and then not Warnings_Off_E1
1463 and then not Has_Junk_Name (E1)
1464 then
1465 Output_Reference_Error -- CODEFIX
1466 ("?u?variable& is never read and never assigned!");
1467 end if;
1469 -- Deal with special case where this variable is hidden
1470 -- by a loop variable.
1472 if Ekind (E1) = E_Variable
1473 and then Present (Hiding_Loop_Variable (E1))
1474 and then not Warnings_Off_E1
1475 and then Warn_On_Hiding
1476 then
1477 Error_Msg_N
1478 ("?h?for loop implicitly declares loop variable!",
1479 Hiding_Loop_Variable (E1));
1481 Error_Msg_Sloc := Sloc (E1);
1482 Error_Msg_N
1483 ("\?h?declaration hides & declared#!",
1484 Hiding_Loop_Variable (E1));
1485 end if;
1486 end if;
1488 goto Continue;
1489 end if;
1491 -- Check for unset reference
1493 if Warn_On_No_Value_Assigned
1494 and then Present (UR)
1495 and then not Type_OK_For_No_Value_Assigned (E1T)
1496 then
1497 -- Don't issue warning if appearing inside Initial_Condition
1498 -- pragma or aspect, since that expression is not evaluated
1499 -- at the point where it occurs in the source.
1501 if In_Pragma_Expression (UR, Name_Initial_Condition) then
1502 goto Continue;
1503 end if;
1505 -- Here we issue the warning, all checks completed
1507 -- If we have a return statement, this was a case of an OUT
1508 -- parameter not being set at the time of the return. (Note:
1509 -- it can't be N_Extended_Return_Statement, because those
1510 -- are only for functions, and functions do not allow OUT
1511 -- parameters.)
1513 if not Is_Trivial_Subprogram (Scope (E1)) then
1514 if Nkind (UR) = N_Simple_Return_Statement
1515 and then not Has_Pragma_Unmodified_Check_Spec (E1)
1516 then
1517 if not Warnings_Off_E1
1518 and then not Has_Junk_Name (E1)
1519 then
1520 Error_Msg_NE
1521 ("?v?OUT parameter& not set before return",
1522 UR, E1);
1523 end if;
1525 -- If the unset reference is a selected component
1526 -- prefix from source, mention the component as well.
1527 -- If the selected component comes from expansion, all
1528 -- we know is that the entity is not fully initialized
1529 -- at the point of the reference. Locate a random
1530 -- uninitialized component to get a better message.
1532 elsif Nkind (Parent (UR)) = N_Selected_Component then
1533 -- Suppress possibly superfluous warning if component
1534 -- is known to exist and is partially initialized.
1536 if not Has_Discriminants (Etype (E1))
1537 and then
1538 Is_Partially_Initialized_Type
1539 (Etype (Parent (UR)), False)
1540 then
1541 goto Continue;
1542 end if;
1544 Error_Msg_Node_2 := Selector_Name (Parent (UR));
1546 if not Comes_From_Source (Parent (UR)) then
1547 declare
1548 Comp : Entity_Id;
1550 begin
1551 Comp := First_Component (E1T);
1552 while Present (Comp) loop
1553 if Nkind (Parent (Comp)) =
1554 N_Component_Declaration
1555 and then No (Expression (Parent (Comp)))
1556 then
1557 Error_Msg_Node_2 := Comp;
1558 exit;
1559 end if;
1561 Next_Component (Comp);
1562 end loop;
1563 end;
1564 end if;
1566 -- Issue proper warning. This is a case of referencing
1567 -- a variable before it has been explicitly assigned.
1568 -- For access types, UR was only set for dereferences,
1569 -- so the issue is that the value may be null.
1571 if not Warnings_Off_E1 then
1572 if Is_Access_Type (Etype (Parent (UR))) then
1573 Error_Msg_N ("??`&.&` may be null!", UR);
1574 else
1575 Error_Msg_N
1576 ("??`&.&` may be referenced before "
1577 & "it has a value!", UR);
1578 end if;
1579 end if;
1581 -- All other cases of unset reference active
1583 elsif not Warnings_Off_E1 then
1584 Error_Msg_N
1585 ("??& may be referenced before it has a value!", UR);
1586 end if;
1587 end if;
1589 goto Continue;
1591 end if;
1592 end if;
1594 -- Then check for unreferenced entities. Note that we are only
1595 -- interested in entities whose Referenced flag is not set.
1597 if not Referenced_Check_Spec (E1)
1599 -- If Referenced_As_LHS is set, then that's still interesting
1600 -- (potential "assigned but never read" case), but not if we
1601 -- have pragma Unreferenced, which cancels this warning.
1603 and then (not Referenced_As_LHS_Check_Spec (E1)
1604 or else not Has_Unreferenced (E1))
1606 -- Check that warnings on unreferenced entities are enabled
1608 and then
1609 ((Check_Unreferenced and then not Is_Formal (E1))
1611 -- Case of warning on unreferenced formal
1613 or else (Check_Unreferenced_Formals and then Is_Formal (E1))
1615 -- Case of warning on unread variables modified by an
1616 -- assignment, or an OUT parameter if it is the only one.
1618 or else (Warn_On_Modified_Unread
1619 and then Referenced_As_LHS_Check_Spec (E1))
1621 -- Case of warning on any unread OUT parameter (note such
1622 -- indications are only set if the appropriate warning
1623 -- options were set, so no need to recheck here.)
1625 or else Referenced_As_Out_Parameter_Check_Spec (E1))
1627 -- All other entities, including local packages that cannot be
1628 -- referenced from elsewhere, including those declared within a
1629 -- package body.
1631 and then (Is_Object (E1)
1632 or else Is_Type (E1)
1633 or else Ekind (E1) = E_Label
1634 or else Ekind (E1) in E_Exception
1635 | E_Named_Integer
1636 | E_Named_Real
1637 or else Is_Overloadable (E1)
1639 -- Package case, if the main unit is a package spec
1640 -- or generic package spec, then there may be a
1641 -- corresponding body that references this package
1642 -- in some other file. Otherwise we can be sure
1643 -- that there is no other reference.
1645 or else
1646 (Ekind (E1) = E_Package
1647 and then
1648 not Is_Package_Or_Generic_Package
1649 (Cunit_Entity (Current_Sem_Unit))))
1651 -- Consider private type referenced if full view is referenced.
1652 -- If there is not full view, this is a generic type on which
1653 -- warnings are also useful.
1655 and then
1656 not (Is_Private_Type (E1)
1657 and then Present (Full_View (E1))
1658 and then Referenced (Full_View (E1)))
1660 -- Don't worry about full view, only about private type
1662 and then not Has_Private_Declaration (E1)
1664 -- Eliminate dispatching operations from consideration, we
1665 -- cannot tell if these are referenced or not in any easy
1666 -- manner (note this also catches Adjust/Finalize/Initialize).
1668 and then not Is_Dispatching_Operation (E1)
1670 -- Check entity that can be publicly referenced (we do not give
1671 -- messages for such entities, since there could be other
1672 -- units, not involved in this compilation, that contain
1673 -- relevant references.
1675 and then not Publicly_Referenceable (E1)
1677 -- Class wide types are marked as source entities, but they are
1678 -- not really source entities, and are always created, so we do
1679 -- not care if they are not referenced.
1681 and then Ekind (E1) /= E_Class_Wide_Type
1683 -- Objects other than parameters of task types are allowed to
1684 -- be non-referenced, since they start up tasks.
1686 and then ((Ekind (E1) /= E_Variable
1687 and then Ekind (E1) /= E_Constant
1688 and then Ekind (E1) /= E_Component)
1690 -- Check that E1T is not a task or a composite type
1691 -- with a task component.
1693 or else not Has_Task (E1T))
1695 -- For subunits, only place warnings on the main unit itself,
1696 -- since parent units are not completely compiled.
1698 and then (Nkind (Unit (Cunit (Main_Unit))) /= N_Subunit
1699 or else Get_Source_Unit (E1) = Main_Unit)
1701 -- No warning on a return object, because these are often
1702 -- created with a single expression and an implicit return.
1703 -- If the object is a variable there will be a warning
1704 -- indicating that it could be declared constant.
1706 and then not
1707 (Ekind (E1) = E_Constant and then Is_Return_Object (E1))
1708 then
1709 -- Suppress warnings in internal units if not in -gnatg mode
1710 -- (these would be junk warnings for an applications program,
1711 -- since they refer to problems in internal units).
1713 if GNAT_Mode or else not In_Internal_Unit (E1) then
1714 -- We do not immediately flag the error. This is because we
1715 -- have not expanded generic bodies yet, and they may have
1716 -- the missing reference. So instead we park the entity on a
1717 -- list, for later processing. However for the case of an
1718 -- accept statement we want to output messages now, since
1719 -- we know we already have all information at hand, and we
1720 -- also want to have separate warnings for each accept
1721 -- statement for the same entry.
1723 if Present (Anod) then
1724 pragma Assert (Is_Formal (E1));
1726 -- The unreferenced entity is E1, but post the warning
1727 -- on the body entity for this accept statement.
1729 if not Warnings_Off_E1 then
1730 Warn_On_Unreferenced_Entity
1731 (E1, Body_Formal (E1, Accept_Statement => Anod));
1732 end if;
1734 elsif not Warnings_Off_E1
1735 and then not Has_Junk_Name (E1)
1736 then
1737 if Is_Formal (E1)
1738 and then Nkind (Unit_Declaration_Node (Scope (E1)))
1739 = N_Generic_Subprogram_Declaration
1740 then
1741 Unreferenced_Entities.Append
1742 (Generic_Body_Formal (E1));
1743 else
1744 Unreferenced_Entities.Append (E1);
1745 end if;
1746 end if;
1747 end if;
1749 -- Generic units are referenced in the generic body, but if they
1750 -- are not public and never instantiated we want to force a
1751 -- warning on them. We treat them as redundant constructs to
1752 -- minimize noise.
1754 elsif Is_Generic_Subprogram (E1)
1755 and then not Is_Instantiated (E1)
1756 and then not Publicly_Referenceable (E1)
1757 and then Warn_On_Redundant_Constructs
1758 then
1759 if not Warnings_Off_E1 and then not Has_Junk_Name (E1) then
1760 Unreferenced_Entities.Append (E1);
1762 -- Force warning on entity
1764 Set_Referenced (E1, False);
1765 end if;
1766 end if;
1767 end if;
1769 -- Recurse into nested package or block. Do not recurse into a formal
1770 -- package, because the corresponding body is not analyzed.
1772 <<Continue>>
1773 if (Is_Package_Or_Generic_Package (E1)
1774 and then Nkind (Parent (E1)) = N_Package_Specification
1775 and then
1776 Nkind (Original_Node (Unit_Declaration_Node (E1))) /=
1777 N_Formal_Package_Declaration)
1779 or else Ekind (E1) = E_Block
1780 then
1781 Check_References (E1);
1782 end if;
1784 Next_Entity (E1);
1785 end loop;
1786 end Check_References;
1788 ---------------------------
1789 -- Check_Unset_Reference --
1790 ---------------------------
1792 procedure Check_Unset_Reference (N : Node_Id) is
1793 Typ : constant Entity_Id := Etype (N);
1795 function Is_OK_Fully_Initialized return Boolean;
1796 -- This function returns true if the given node N is fully initialized
1797 -- so that the reference is safe as far as this routine is concerned.
1798 -- Safe generally means that the type of N is a fully initialized type.
1799 -- The one special case is that for access types, which are always fully
1800 -- initialized, we don't consider a dereference OK since it will surely
1801 -- be dereferencing a null value, which won't do.
1803 function Prefix_Has_Dereference (Pref : Node_Id) return Boolean;
1804 -- Used to test indexed or selected component or slice to see if the
1805 -- evaluation of the prefix depends on a dereference, and if so, returns
1806 -- True, in which case we always check the prefix, even if we know that
1807 -- the referenced component is initialized. Pref is the prefix to test.
1809 -----------------------------
1810 -- Is_OK_Fully_Initialized --
1811 -----------------------------
1813 function Is_OK_Fully_Initialized return Boolean is
1814 begin
1815 if Is_Access_Type (Typ) and then Is_Dereferenced (N) then
1816 return False;
1818 -- A type subject to pragma Default_Initial_Condition may be fully
1819 -- default initialized depending on inheritance and the argument of
1820 -- the pragma (SPARK RM 3.1 and SPARK RM 7.3.3).
1822 elsif Has_Fully_Default_Initializing_DIC_Pragma (Typ) then
1823 return True;
1825 else
1826 return Is_Fully_Initialized_Type (Typ);
1827 end if;
1828 end Is_OK_Fully_Initialized;
1830 ----------------------------
1831 -- Prefix_Has_Dereference --
1832 ----------------------------
1834 function Prefix_Has_Dereference (Pref : Node_Id) return Boolean is
1835 begin
1836 -- If prefix is of an access type, it certainly needs a dereference
1838 if Is_Access_Type (Etype (Pref)) then
1839 return True;
1841 -- If prefix is explicit dereference, that's a dereference for sure
1843 elsif Nkind (Pref) = N_Explicit_Dereference then
1844 return True;
1846 -- If prefix is itself a component reference or slice check prefix
1848 elsif Nkind (Pref) = N_Slice
1849 or else Nkind (Pref) = N_Indexed_Component
1850 or else Nkind (Pref) = N_Selected_Component
1851 then
1852 return Prefix_Has_Dereference (Prefix (Pref));
1854 -- All other cases do not involve a dereference
1856 else
1857 return False;
1858 end if;
1859 end Prefix_Has_Dereference;
1861 -- Start of processing for Check_Unset_Reference
1863 begin
1864 -- Nothing to do if warnings suppressed
1866 if Warning_Mode = Suppress then
1867 return;
1868 end if;
1870 -- Ignore reference unless it comes from source. Almost always if we
1871 -- have a reference from generated code, it is bogus (e.g. calls to init
1872 -- procs to set default discriminant values).
1874 if not Comes_From_Source (Original_Node (N)) then
1875 return;
1876 end if;
1878 -- Otherwise see what kind of node we have. If the entity already has an
1879 -- unset reference, it is not necessarily the earliest in the text,
1880 -- because resolution of the prefix of selected components is completed
1881 -- before the resolution of the selected component itself. As a result,
1882 -- given (R /= null and then R.X > 0), the occurrences of R are examined
1883 -- in right-to-left order. If there is already an unset reference, we
1884 -- check whether N is earlier before proceeding.
1886 case Nkind (N) is
1888 -- For identifier or expanded name, examine the entity involved
1890 when N_Expanded_Name
1891 | N_Identifier
1893 declare
1894 E : constant Entity_Id := Entity (N);
1896 begin
1897 if Ekind (E) in E_Variable | E_Out_Parameter
1898 and then Never_Set_In_Source_Check_Spec (E)
1899 and then not Has_Initial_Value (E)
1900 and then (No (Unset_Reference (E))
1901 or else
1902 Earlier_In_Extended_Unit
1903 (N, Unset_Reference (E)))
1904 and then not Has_Pragma_Unmodified_Check_Spec (E)
1905 and then not Warnings_Off_Check_Spec (E)
1906 and then not Has_Junk_Name (E)
1907 then
1908 -- We may have an unset reference. The first test is whether
1909 -- this is an access to a discriminant of a record or a
1910 -- component with default initialization. Both of these
1911 -- cases can be ignored, since the actual object that is
1912 -- referenced is definitely initialized. Note that this
1913 -- covers the case of reading discriminants of an OUT
1914 -- parameter, which is OK even in Ada 83.
1916 -- Note that we are only interested in a direct reference to
1917 -- a record component here. If the reference is through an
1918 -- access type, then the access object is being referenced,
1919 -- not the record, and still deserves an unset reference.
1921 if Nkind (Parent (N)) = N_Selected_Component
1922 and not Is_Access_Type (Typ)
1923 then
1924 declare
1925 ES : constant Entity_Id :=
1926 Entity (Selector_Name (Parent (N)));
1927 begin
1928 if Ekind (ES) = E_Discriminant
1929 or else
1930 (Present (Declaration_Node (ES))
1931 and then
1932 Present (Expression (Declaration_Node (ES))))
1933 then
1934 return;
1935 end if;
1936 end;
1937 end if;
1939 -- Exclude fully initialized types
1941 if Is_OK_Fully_Initialized then
1942 return;
1943 end if;
1945 -- Here we have a potential unset reference. But before we
1946 -- get worried about it, we have to make sure that the
1947 -- entity declaration is in the same procedure as the
1948 -- reference, since if they are in separate procedures, then
1949 -- we have no idea about sequential execution.
1951 -- The tests in the loop below catch all such cases, but do
1952 -- allow the reference to appear in a loop, block, or
1953 -- package spec that is nested within the declaring scope.
1954 -- As always, it is possible to construct cases where the
1955 -- warning is wrong, that is why it is a warning.
1957 Potential_Unset_Reference : declare
1958 SR : Entity_Id;
1959 SE : constant Entity_Id := Scope (E);
1961 function Within_Contract_Or_Predicate return Boolean;
1962 -- Returns True if N is within a contract or predicate,
1963 -- an Ensures component in a Test_Case, or a
1964 -- Contract_Cases.
1966 ----------------------------------
1967 -- Within_Contract_Or_Predicate --
1968 ----------------------------------
1970 function Within_Contract_Or_Predicate return Boolean is
1971 Nod, P : Node_Id;
1973 begin
1974 Nod := Parent (N);
1975 while Present (Nod) loop
1976 if Nkind (Nod) = N_Pragma
1977 and then
1978 Pragma_Name_Unmapped (Nod)
1979 in Name_Postcondition
1980 | Name_Refined_Post
1981 | Name_Contract_Cases
1982 then
1983 return True;
1985 -- Verify we are not within a generated predicate
1986 -- function call.
1988 elsif Nkind (Nod) = N_Function_Call
1989 and then Is_Entity_Name (Name (Nod))
1990 and then Is_Predicate_Function
1991 (Entity (Name (Nod)))
1992 then
1993 return True;
1995 elsif Present (Parent (Nod)) then
1996 P := Parent (Nod);
1998 if Nkind (P) = N_Pragma
1999 and then Pragma_Name (P) = Name_Test_Case
2000 and then Nod = Test_Case_Arg (P, Name_Ensures)
2001 then
2002 return True;
2003 end if;
2005 -- Prevent the search from going too far
2007 elsif Is_Body_Or_Package_Declaration (Nod) then
2008 exit;
2009 end if;
2011 Nod := Parent (Nod);
2012 end loop;
2014 return False;
2015 end Within_Contract_Or_Predicate;
2017 -- Start of processing for Potential_Unset_Reference
2019 begin
2020 SR := Current_Scope;
2021 while SR /= SE loop
2022 if SR = Standard_Standard
2023 or else Is_Subprogram (SR)
2024 or else Is_Concurrent_Body (SR)
2025 or else Is_Concurrent_Type (SR)
2026 then
2027 return;
2028 end if;
2030 SR := Scope (SR);
2031 end loop;
2033 -- Case of reference has an access type. This is a
2034 -- special case since access types are always set to null
2035 -- so cannot be truly uninitialized, but we still want to
2036 -- warn about cases of obvious null dereference.
2038 if Is_Access_Type (Typ) then
2039 Access_Type_Case : declare
2040 P : Node_Id;
2042 function Process
2043 (N : Node_Id) return Traverse_Result;
2044 -- Process function for instantiation of Traverse
2045 -- below. Checks if N contains reference to E other
2046 -- than a dereference.
2048 function Ref_In (Nod : Node_Id) return Boolean;
2049 -- Determines whether Nod contains a reference to
2050 -- the entity E that is not a dereference.
2052 -------------
2053 -- Process --
2054 -------------
2056 function Process
2057 (N : Node_Id) return Traverse_Result
2059 begin
2060 if Is_Entity_Name (N)
2061 and then Entity (N) = E
2062 and then not Is_Dereferenced (N)
2063 then
2064 return Abandon;
2065 else
2066 return OK;
2067 end if;
2068 end Process;
2070 ------------
2071 -- Ref_In --
2072 ------------
2074 function Ref_In (Nod : Node_Id) return Boolean is
2075 function Traverse is new Traverse_Func (Process);
2076 begin
2077 return Traverse (Nod) = Abandon;
2078 end Ref_In;
2080 -- Start of processing for Access_Type_Case
2082 begin
2083 -- Don't bother if we are inside an instance, since
2084 -- the compilation of the generic template is where
2085 -- the warning should be issued.
2087 if In_Instance then
2088 return;
2089 end if;
2091 -- Don't bother if this is not the main unit. If we
2092 -- try to give this warning for with'ed units, we
2093 -- get some false positives, since we do not record
2094 -- references in other units.
2096 if not In_Extended_Main_Source_Unit (E)
2097 or else
2098 not In_Extended_Main_Source_Unit (N)
2099 then
2100 return;
2101 end if;
2103 -- We are only interested in dereferences
2105 if not Is_Dereferenced (N) then
2106 return;
2107 end if;
2109 -- One more check, don't bother with references
2110 -- that are inside conditional statements or WHILE
2111 -- loops if the condition references the entity in
2112 -- question. This avoids most false positives.
2114 P := Parent (N);
2115 loop
2116 P := Parent (P);
2117 exit when No (P);
2119 if Nkind (P) in N_If_Statement | N_Elsif_Part
2120 and then Ref_In (Condition (P))
2121 then
2122 return;
2124 elsif Nkind (P) = N_Loop_Statement
2125 and then Present (Iteration_Scheme (P))
2126 and then
2127 Ref_In (Condition (Iteration_Scheme (P)))
2128 then
2129 return;
2130 end if;
2131 end loop;
2132 end Access_Type_Case;
2133 end if;
2135 -- One more check, don't bother if we are within a
2136 -- postcondition, since the expression occurs in a
2137 -- place unrelated to the actual test.
2139 if not Within_Contract_Or_Predicate then
2141 -- Here we definitely have a case for giving a warning
2142 -- for a reference to an unset value. But we don't
2143 -- give the warning now. Instead set Unset_Reference
2144 -- in the identifier involved. The reason for this is
2145 -- that if we find the variable is never ever assigned
2146 -- a value then that warning is more important and
2147 -- there is no point in giving the reference warning.
2149 -- If this is an identifier, set the field directly
2151 if Nkind (N) = N_Identifier then
2152 Set_Unset_Reference (E, N);
2154 -- Otherwise it is an expanded name, so set the field
2155 -- of the actual identifier for the reference.
2157 else
2158 Set_Unset_Reference (E, Selector_Name (N));
2159 end if;
2160 end if;
2161 end Potential_Unset_Reference;
2162 end if;
2163 end;
2165 -- Indexed component or slice
2167 when N_Indexed_Component
2168 | N_Slice
2170 -- If prefix does not involve dereferencing an access type, then
2171 -- we know we are OK if the component type is fully initialized,
2172 -- since the component will have been set as part of the default
2173 -- initialization.
2175 if not Prefix_Has_Dereference (Prefix (N))
2176 and then Is_OK_Fully_Initialized
2177 then
2178 return;
2180 -- Look at prefix in access type case, or if the component is not
2181 -- fully initialized.
2183 else
2184 Check_Unset_Reference (Prefix (N));
2185 end if;
2187 -- Record component
2189 when N_Selected_Component =>
2190 declare
2191 Pref : constant Node_Id := Prefix (N);
2192 Ent : constant Entity_Id := Entity (Selector_Name (N));
2194 begin
2195 -- If prefix involves dereferencing an access type, always
2196 -- check the prefix, since the issue then is whether this
2197 -- access value is null.
2199 if Prefix_Has_Dereference (Pref) then
2200 null;
2202 -- Always go to prefix if no selector entity is set. Can this
2203 -- happen in the normal case? Not clear, but it definitely can
2204 -- happen in error cases.
2206 elsif No (Ent) then
2207 null;
2209 -- For a record component, check some cases where we have
2210 -- reasonable cause to consider that the component is known to
2211 -- be or probably is initialized. In this case, we don't care
2212 -- if the prefix itself was explicitly initialized.
2214 -- Discriminants are always considered initialized
2216 elsif Ekind (Ent) = E_Discriminant then
2217 return;
2219 -- An explicitly initialized component is certainly initialized
2221 elsif Nkind (Parent (Ent)) = N_Component_Declaration
2222 and then Present (Expression (Parent (Ent)))
2223 then
2224 return;
2226 -- A fully initialized component is initialized
2228 elsif Is_OK_Fully_Initialized then
2229 return;
2230 end if;
2232 -- If none of those cases apply, check the record type prefix
2234 Check_Unset_Reference (Pref);
2235 end;
2237 -- Type conversions can appear in assignment statements both
2238 -- as variable names and as expressions. We examine their own
2239 -- expressions only when processing their parent node.
2241 when N_Type_Conversion =>
2242 Check_Unset_Reference (Expression (N));
2244 -- For explicit dereference, always check prefix, which will generate
2245 -- an unset reference (since this is a case of dereferencing null).
2247 when N_Explicit_Dereference =>
2248 Check_Unset_Reference (Prefix (N));
2250 -- All other cases are not cases of an unset reference
2252 when others =>
2253 null;
2254 end case;
2255 end Check_Unset_Reference;
2257 ------------------------
2258 -- Check_Unused_Withs --
2259 ------------------------
2261 procedure Check_Unused_Withs (Spec_Unit : Unit_Number_Type := No_Unit) is
2263 Munite : constant Entity_Id := Cunit_Entity (Main_Unit);
2264 -- This is needed for checking the special renaming case
2266 procedure Check_One_Unit (Unit : Unit_Number_Type);
2267 -- Subsidiary procedure, performs checks for specified unit
2269 --------------------
2270 -- Check_One_Unit --
2271 --------------------
2273 procedure Check_One_Unit (Unit : Unit_Number_Type) is
2274 Cnode : constant Node_Id := Cunit (Unit);
2276 Is_Visible_Renaming : Boolean := False;
2278 procedure Check_Inner_Package (Pack : Entity_Id);
2279 -- Pack is a package local to a unit in a with_clause. Both the unit
2280 -- and Pack are referenced. If none of the entities in Pack are
2281 -- referenced, then the only occurrence of Pack is in a USE clause
2282 -- or a pragma, and a warning is worthwhile as well.
2284 function Check_System_Aux (Lunit : Entity_Id) return Boolean;
2285 -- Before giving a warning on a with_clause for System, check whether
2286 -- a system extension is present.
2288 function Find_Package_Renaming
2289 (P : Entity_Id;
2290 L : Entity_Id) return Entity_Id;
2291 -- The only reference to a context unit may be in a renaming
2292 -- declaration. If this renaming declares a visible entity, do not
2293 -- warn that the context clause could be moved to the body, because
2294 -- the renaming may be intended to re-export the unit.
2296 function Has_Visible_Entities (P : Entity_Id) return Boolean;
2297 -- This function determines if a package has any visible entities.
2298 -- True is returned if there is at least one declared visible entity,
2299 -- otherwise False is returned (e.g. case of only pragmas present).
2301 -------------------------
2302 -- Check_Inner_Package --
2303 -------------------------
2305 procedure Check_Inner_Package (Pack : Entity_Id) is
2306 E : Entity_Id;
2307 Un : constant Node_Id := Sinfo.Nodes.Unit (Cnode);
2309 function Check_Use_Clause (N : Node_Id) return Traverse_Result;
2310 -- If N is a use_clause for Pack, emit warning
2312 procedure Check_Use_Clauses is new
2313 Traverse_Proc (Check_Use_Clause);
2315 ----------------------
2316 -- Check_Use_Clause --
2317 ----------------------
2319 function Check_Use_Clause (N : Node_Id) return Traverse_Result is
2320 begin
2321 if Nkind (N) = N_Use_Package_Clause
2322 and then Entity (Name (N)) = Pack
2323 then
2324 -- Suppress message if any serious errors detected that turn
2325 -- off expansion, and thus result in false positives for
2326 -- this warning.
2328 if Serious_Errors_Detected = 0 then
2329 Error_Msg_Qual_Level := 1;
2330 Error_Msg_NE -- CODEFIX
2331 ("?u?no entities of package& are referenced!",
2332 Name (N), Pack);
2333 Error_Msg_Qual_Level := 0;
2334 end if;
2335 end if;
2337 return OK;
2338 end Check_Use_Clause;
2340 -- Start of processing for Check_Inner_Package
2342 begin
2343 E := First_Entity (Pack);
2344 while Present (E) loop
2345 if Referenced_Check_Spec (E) then
2346 return;
2347 end if;
2349 Next_Entity (E);
2350 end loop;
2352 -- No entities of the package are referenced. Check whether the
2353 -- reference to the package itself is a use clause, and if so
2354 -- place a warning on it.
2356 Check_Use_Clauses (Un);
2357 end Check_Inner_Package;
2359 ----------------------
2360 -- Check_System_Aux --
2361 ----------------------
2363 function Check_System_Aux (Lunit : Entity_Id) return Boolean is
2364 Ent : Entity_Id;
2366 begin
2367 if Chars (Lunit) = Name_System
2368 and then Scope (Lunit) = Standard_Standard
2369 and then Present_System_Aux
2370 then
2371 Ent := First_Entity (System_Aux_Id);
2372 while Present (Ent) loop
2373 if Referenced_Check_Spec (Ent) then
2374 return True;
2375 end if;
2377 Next_Entity (Ent);
2378 end loop;
2379 end if;
2381 return False;
2382 end Check_System_Aux;
2384 ---------------------------
2385 -- Find_Package_Renaming --
2386 ---------------------------
2388 function Find_Package_Renaming
2389 (P : Entity_Id;
2390 L : Entity_Id) return Entity_Id
2392 E1 : Entity_Id;
2393 R : Entity_Id;
2395 begin
2396 Is_Visible_Renaming := False;
2398 E1 := First_Entity (P);
2399 while Present (E1) loop
2400 if Ekind (E1) = E_Package and then Renamed_Entity (E1) = L then
2401 Is_Visible_Renaming := not Is_Hidden (E1);
2402 return E1;
2404 elsif Ekind (E1) = E_Package
2405 and then No (Renamed_Entity (E1))
2406 and then not Is_Generic_Instance (E1)
2407 then
2408 R := Find_Package_Renaming (E1, L);
2410 if Present (R) then
2411 Is_Visible_Renaming := not Is_Hidden (R);
2412 return R;
2413 end if;
2414 end if;
2416 Next_Entity (E1);
2417 end loop;
2419 return Empty;
2420 end Find_Package_Renaming;
2422 --------------------------
2423 -- Has_Visible_Entities --
2424 --------------------------
2426 function Has_Visible_Entities (P : Entity_Id) return Boolean is
2427 E : Entity_Id;
2429 begin
2430 -- If unit in context is not a package, it is a subprogram that
2431 -- is not called or a generic unit that is not instantiated
2432 -- in the current unit, and warning is appropriate.
2434 if Ekind (P) /= E_Package then
2435 return True;
2436 end if;
2438 -- If unit comes from a limited_with clause, look for declaration
2439 -- of shadow entities.
2441 if Present (Limited_View (P)) then
2442 E := First_Entity (Limited_View (P));
2443 else
2444 E := First_Entity (P);
2445 end if;
2447 while Present (E) and then E /= First_Private_Entity (P) loop
2448 if Comes_From_Source (E) or else Present (Limited_View (P)) then
2449 return True;
2450 end if;
2452 Next_Entity (E);
2453 end loop;
2455 return False;
2456 end Has_Visible_Entities;
2458 -- Local variables
2460 Ent : Entity_Id;
2461 Item : Node_Id;
2462 Lunit : Entity_Id;
2463 Pack : Entity_Id;
2465 -- Start of processing for Check_One_Unit
2467 begin
2468 -- Only do check in units that are part of the extended main unit.
2469 -- This is actually a necessary restriction, because in the case of
2470 -- subprogram acting as its own specification, there can be with's in
2471 -- subunits that we will not see.
2473 if not In_Extended_Main_Source_Unit (Cnode) then
2474 return;
2475 end if;
2477 -- Loop through context items in this unit
2479 Item := First (Context_Items (Cnode));
2480 while Present (Item) loop
2481 if Nkind (Item) = N_With_Clause
2482 and then not Implicit_With (Item)
2483 and then In_Extended_Main_Source_Unit (Item)
2485 -- Guard for no entity present. Not clear under what conditions
2486 -- this happens, but it does occur, and since this is only a
2487 -- warning, we just suppress the warning in this case.
2489 and then Nkind (Name (Item)) in N_Has_Entity
2490 and then Present (Entity (Name (Item)))
2491 then
2492 Lunit := Entity (Name (Item));
2494 -- Check if this unit is referenced (skip the check if this
2495 -- is explicitly marked by a pragma Unreferenced).
2497 if not Referenced (Lunit) and then not Has_Unreferenced (Lunit)
2498 then
2499 -- Suppress warnings in internal units if not in -gnatg mode
2500 -- (these would be junk warnings for an application program,
2501 -- since they refer to problems in internal units).
2503 if GNAT_Mode or else not Is_Internal_Unit (Unit) then
2504 -- Here we definitely have a non-referenced unit. If it
2505 -- is the special call for a spec unit, then just set the
2506 -- flag to be read later.
2508 if Unit = Spec_Unit then
2509 Set_Unreferenced_In_Spec (Item);
2511 -- Otherwise simple unreferenced message, but skip this
2512 -- if no visible entities, because that is most likely a
2513 -- case where warning would be false positive (e.g. a
2514 -- package with only a linker options pragma and nothing
2515 -- else or a pragma elaborate with a body library task).
2517 elsif Has_Visible_Entities (Lunit) then
2518 Error_Msg_N -- CODEFIX
2519 ("?u?unit& is not referenced!", Name (Item));
2520 end if;
2521 end if;
2523 -- If main unit is a renaming of this unit, then we consider
2524 -- the with to be OK (obviously it is needed in this case).
2525 -- This may be transitive: the unit in the with_clause may
2526 -- itself be a renaming, in which case both it and the main
2527 -- unit rename the same ultimate package.
2529 elsif Present (Renamed_Entity (Munite))
2530 and then
2531 (Renamed_Entity (Munite) = Lunit
2532 or else Renamed_Entity (Munite) = Renamed_Entity (Lunit))
2533 then
2534 null;
2536 -- If this unit is referenced, and it is a package, we do
2537 -- another test, to see if any of the entities in the package
2538 -- are referenced. If none of the entities are referenced, we
2539 -- still post a warning. This occurs if the only use of the
2540 -- package is in a use clause, or in a package renaming
2541 -- declaration. This check is skipped for packages that are
2542 -- renamed in a spec, since the entities in such a package are
2543 -- visible to clients via the renaming.
2545 elsif Ekind (Lunit) = E_Package
2546 and then not Renamed_In_Spec (Lunit)
2547 then
2548 -- If Is_Instantiated is set, it means that the package is
2549 -- implicitly instantiated (this is the case of parent
2550 -- instance or an actual for a generic package formal), and
2551 -- this counts as a reference.
2553 if Is_Instantiated (Lunit) then
2554 null;
2556 -- If no entities in package, and there is a pragma
2557 -- Elaborate_Body present, then assume that this with is
2558 -- done for purposes of this elaboration.
2560 elsif No (First_Entity (Lunit))
2561 and then Has_Pragma_Elaborate_Body (Lunit)
2562 then
2563 null;
2565 -- Otherwise see if any entities have been referenced
2567 else
2568 if Limited_Present (Item) then
2569 Ent := First_Entity (Limited_View (Lunit));
2570 else
2571 Ent := First_Entity (Lunit);
2572 end if;
2574 loop
2575 -- No more entities, and we did not find one that was
2576 -- referenced. Means we have a definite case of a with
2577 -- none of whose entities was referenced.
2579 if No (Ent) then
2581 -- If in spec, just set the flag
2583 if Unit = Spec_Unit then
2584 Set_No_Entities_Ref_In_Spec (Item);
2586 elsif Check_System_Aux (Lunit) then
2587 null;
2589 -- Else the warning may be needed
2591 else
2592 -- Warn if we unreferenced flag set and we have
2593 -- not had serious errors. The reason we inhibit
2594 -- the message if there are errors is to prevent
2595 -- false positives from disabling expansion.
2597 if not Has_Unreferenced (Lunit)
2598 and then Serious_Errors_Detected = 0
2599 then
2600 -- Get possible package renaming
2602 Pack := Find_Package_Renaming (Munite, Lunit);
2604 -- No warning if either the package or its
2605 -- renaming is used as a generic actual.
2607 if Used_As_Generic_Actual (Lunit)
2608 or else
2609 (Present (Pack)
2610 and then
2611 Used_As_Generic_Actual (Pack))
2612 then
2613 exit;
2614 end if;
2616 -- Here we give the warning
2618 Error_Msg_N -- CODEFIX
2619 ("?u?no entities of & are referenced!",
2620 Name (Item));
2622 -- Flag renaming of package as well. If
2623 -- the original package has warnings off,
2624 -- we suppress the warning on the renaming
2625 -- as well.
2627 if Present (Pack)
2628 and then not Has_Warnings_Off (Lunit)
2629 and then not Has_Unreferenced (Pack)
2630 then
2631 Error_Msg_NE -- CODEFIX
2632 ("?u?no entities of& are referenced!",
2633 Unit_Declaration_Node (Pack), Pack);
2634 end if;
2635 end if;
2636 end if;
2638 exit;
2640 -- Case of entity being referenced. The reference may
2641 -- come from a limited_with_clause, in which case the
2642 -- limited view of the entity carries the flag.
2644 elsif Referenced_Check_Spec (Ent)
2645 or else Referenced_As_LHS_Check_Spec (Ent)
2646 or else Referenced_As_Out_Parameter_Check_Spec (Ent)
2647 or else
2648 (From_Limited_With (Ent)
2649 and then Is_Incomplete_Type (Ent)
2650 and then Present (Non_Limited_View (Ent))
2651 and then Referenced (Non_Limited_View (Ent)))
2652 then
2653 -- This means that the with is indeed fine, in that
2654 -- it is definitely needed somewhere, and we can
2655 -- quit worrying about this one...
2657 -- Except for one little detail: if either of the
2658 -- flags was set during spec processing, this is
2659 -- where we complain that the with could be moved
2660 -- from the spec. If the spec contains a visible
2661 -- renaming of the package, inhibit warning to move
2662 -- with_clause to body.
2664 if Ekind (Munite) = E_Package_Body then
2665 Pack :=
2666 Find_Package_Renaming
2667 (Spec_Entity (Munite), Lunit);
2668 else
2669 Pack := Empty;
2670 end if;
2672 -- If a renaming is present in the spec do not warn
2673 -- because the body or child unit may depend on it.
2675 if Present (Pack)
2676 and then Renamed_Entity (Pack) = Lunit
2677 then
2678 exit;
2680 elsif Unreferenced_In_Spec (Item) then
2681 Error_Msg_N -- CODEFIX
2682 ("?u?unit& is not referenced in spec!",
2683 Name (Item));
2685 elsif No_Entities_Ref_In_Spec (Item) then
2686 Error_Msg_N -- CODEFIX
2687 ("?u?no entities of & are referenced in spec!",
2688 Name (Item));
2690 else
2691 if Ekind (Ent) = E_Package then
2692 Check_Inner_Package (Ent);
2693 end if;
2695 exit;
2696 end if;
2698 if not Is_Visible_Renaming then
2699 Error_Msg_N -- CODEFIX
2700 ("\?u?with clause might be moved to body!",
2701 Name (Item));
2702 end if;
2704 exit;
2706 -- Move to next entity to continue search
2708 else
2709 Next_Entity (Ent);
2710 end if;
2711 end loop;
2712 end if;
2714 -- For a generic package, the only interesting kind of
2715 -- reference is an instantiation, since entities cannot be
2716 -- referenced directly.
2718 elsif Is_Generic_Unit (Lunit) then
2720 -- Unit was never instantiated, set flag for case of spec
2721 -- call, or give warning for normal call.
2723 if not Is_Instantiated (Lunit) then
2724 if Unit = Spec_Unit then
2725 Set_Unreferenced_In_Spec (Item);
2726 else
2727 Error_Msg_N -- CODEFIX
2728 ("?u?unit& is never instantiated!", Name (Item));
2729 end if;
2731 -- If unit was indeed instantiated, make sure that flag is
2732 -- not set showing it was uninstantiated in the spec, and if
2733 -- so, give warning.
2735 elsif Unreferenced_In_Spec (Item) then
2736 Error_Msg_N
2737 ("?u?unit& is not instantiated in spec!", Name (Item));
2738 Error_Msg_N -- CODEFIX
2739 ("\?u?with clause can be moved to body!", Name (Item));
2740 end if;
2741 end if;
2742 end if;
2744 Next (Item);
2745 end loop;
2746 end Check_One_Unit;
2748 -- Start of processing for Check_Unused_Withs
2750 begin
2751 -- Immediate return if no semantics or warning flag not set
2753 if not Check_Withs or else Operating_Mode = Check_Syntax then
2754 return;
2755 end if;
2757 -- Flag any unused with clauses. For a subunit, check only the units
2758 -- in its context, not those of the parent, which may be needed by other
2759 -- subunits. We will get the full warnings when we compile the parent,
2760 -- but the following is helpful when compiling a subunit by itself.
2762 if Nkind (Unit (Cunit (Main_Unit))) = N_Subunit then
2763 if Current_Sem_Unit = Main_Unit then
2764 Check_One_Unit (Main_Unit);
2765 end if;
2767 return;
2768 end if;
2770 -- Process specified units
2772 if Spec_Unit = No_Unit then
2774 -- For main call, check all units
2776 for Unit in Main_Unit .. Last_Unit loop
2777 Check_One_Unit (Unit);
2778 end loop;
2780 else
2781 -- For call for spec, check only the spec
2783 Check_One_Unit (Spec_Unit);
2784 end if;
2785 end Check_Unused_Withs;
2787 ---------------------------------
2788 -- Generic_Package_Spec_Entity --
2789 ---------------------------------
2791 function Generic_Package_Spec_Entity (E : Entity_Id) return Boolean is
2792 S : Entity_Id;
2794 begin
2795 if Is_Package_Body_Entity (E) then
2796 return False;
2798 else
2799 S := Scope (E);
2800 loop
2801 if S = Standard_Standard then
2802 return False;
2804 elsif Ekind (S) = E_Generic_Package then
2805 return True;
2807 elsif Ekind (S) = E_Package then
2808 S := Scope (S);
2810 else
2811 return False;
2812 end if;
2813 end loop;
2814 end if;
2815 end Generic_Package_Spec_Entity;
2817 ----------------------
2818 -- Goto_Spec_Entity --
2819 ----------------------
2821 function Goto_Spec_Entity (E : Entity_Id) return Entity_Id is
2822 begin
2823 if Is_Formal (E) and then Present (Spec_Entity (E)) then
2824 return Spec_Entity (E);
2825 else
2826 return E;
2827 end if;
2828 end Goto_Spec_Entity;
2830 -------------------
2831 -- Has_Junk_Name --
2832 -------------------
2834 function Has_Junk_Name (E : Entity_Id) return Boolean is
2835 function Match (S : String) return Boolean;
2836 -- Return true if substring S is found in Name_Buffer (1 .. Name_Len)
2838 -----------
2839 -- Match --
2840 -----------
2842 function Match (S : String) return Boolean is
2843 Slen1 : constant Integer := S'Length - 1;
2845 begin
2846 for J in 1 .. Name_Len - S'Length + 1 loop
2847 if Name_Buffer (J .. J + Slen1) = S then
2848 return True;
2849 end if;
2850 end loop;
2852 return False;
2853 end Match;
2855 -- Start of processing for Has_Junk_Name
2857 begin
2858 Get_Unqualified_Decoded_Name_String (Chars (E));
2860 return
2861 Match ("discard") or else
2862 Match ("dummy") or else
2863 Match ("ignore") or else
2864 Match ("junk") or else
2865 Match ("unuse") or else
2866 Match ("tmp") or else
2867 Match ("temp");
2868 end Has_Junk_Name;
2870 --------------------------------------
2871 -- Has_Pragma_Unmodified_Check_Spec --
2872 --------------------------------------
2874 function Has_Pragma_Unmodified_Check_Spec
2875 (E : Entity_Id) return Boolean
2877 begin
2878 if Is_Formal (E) and then Present (Spec_Entity (E)) then
2880 -- Note: use of OR instead of OR ELSE here is deliberate, we want
2881 -- to mess with Unmodified flags on both body and spec entities.
2882 -- Has_Unmodified has side effects!
2884 return Has_Unmodified (E)
2886 Has_Unmodified (Spec_Entity (E));
2888 else
2889 return Has_Unmodified (E);
2890 end if;
2891 end Has_Pragma_Unmodified_Check_Spec;
2893 ----------------------------------------
2894 -- Has_Pragma_Unreferenced_Check_Spec --
2895 ----------------------------------------
2897 function Has_Pragma_Unreferenced_Check_Spec
2898 (E : Entity_Id) return Boolean
2900 begin
2901 if Is_Formal (E) and then Present (Spec_Entity (E)) then
2903 -- Note: use of OR here instead of OR ELSE is deliberate, we want
2904 -- to mess with flags on both entities.
2906 return Has_Unreferenced (E)
2908 Has_Unreferenced (Spec_Entity (E));
2910 else
2911 return Has_Unreferenced (E);
2912 end if;
2913 end Has_Pragma_Unreferenced_Check_Spec;
2915 ----------------
2916 -- Initialize --
2917 ----------------
2919 procedure Initialize is
2920 begin
2921 Warnings_Off_Pragmas.Init;
2922 Unreferenced_Entities.Init;
2923 In_Out_Warnings.Init;
2924 end Initialize;
2926 ---------------------------------------------
2927 -- Is_Attribute_And_Known_Value_Comparison --
2928 ---------------------------------------------
2930 function Is_Attribute_And_Known_Value_Comparison
2931 (Op : Node_Id) return Boolean
2933 Orig_Op : constant Node_Id := Original_Node (Op);
2935 begin
2936 return
2937 Nkind (Orig_Op) in N_Op_Compare
2938 and then Nkind (Original_Node (Left_Opnd (Orig_Op))) =
2939 N_Attribute_Reference
2940 and then Compile_Time_Known_Value (Right_Opnd (Orig_Op));
2941 end Is_Attribute_And_Known_Value_Comparison;
2943 ------------------------------------
2944 -- Never_Set_In_Source_Check_Spec --
2945 ------------------------------------
2947 function Never_Set_In_Source_Check_Spec (E : Entity_Id) return Boolean is
2948 begin
2949 if Is_Formal (E) and then Present (Spec_Entity (E)) then
2950 return Never_Set_In_Source (E)
2951 and then
2952 Never_Set_In_Source (Spec_Entity (E));
2953 else
2954 return Never_Set_In_Source (E);
2955 end if;
2956 end Never_Set_In_Source_Check_Spec;
2958 -------------------------------------
2959 -- Operand_Has_Warnings_Suppressed --
2960 -------------------------------------
2962 function Operand_Has_Warnings_Suppressed (N : Node_Id) return Boolean is
2964 function Check_For_Warnings (N : Node_Id) return Traverse_Result;
2965 -- Function used to check one node to see if it is or was originally
2966 -- a reference to an entity for which Warnings are off. If so, Abandon
2967 -- is returned, otherwise OK_Orig is returned to continue the traversal
2968 -- of the original expression.
2970 function Traverse is new Traverse_Func (Check_For_Warnings);
2971 -- Function used to traverse tree looking for warnings
2973 ------------------------
2974 -- Check_For_Warnings --
2975 ------------------------
2977 function Check_For_Warnings (N : Node_Id) return Traverse_Result is
2978 R : constant Node_Id := Original_Node (N);
2980 begin
2981 if Nkind (R) in N_Has_Entity
2982 and then Present (Entity (R))
2983 and then Has_Warnings_Off (Entity (R))
2984 then
2985 return Abandon;
2986 else
2987 return OK_Orig;
2988 end if;
2989 end Check_For_Warnings;
2991 -- Start of processing for Operand_Has_Warnings_Suppressed
2993 begin
2994 return Traverse (N) = Abandon;
2995 end Operand_Has_Warnings_Suppressed;
2997 -----------------------------------------
2998 -- Output_Non_Modified_In_Out_Warnings --
2999 -----------------------------------------
3001 procedure Output_Non_Modified_In_Out_Warnings is
3003 function Warn_On_In_Out (E : Entity_Id) return Boolean;
3004 -- Given a formal parameter entity E, determines if there is a reason to
3005 -- suppress IN OUT warnings (not modified, could be IN) for formals of
3006 -- the subprogram. We suppress these warnings if Warnings Off is set, or
3007 -- if we have seen the address of the subprogram being taken, or if the
3008 -- subprogram is used as a generic actual (in the latter cases the
3009 -- context may force use of IN OUT, even if the parameter is not
3010 -- modified for this particular case).
3012 --------------------
3013 -- Warn_On_In_Out --
3014 --------------------
3016 function Warn_On_In_Out (E : Entity_Id) return Boolean is
3017 S : constant Entity_Id := Scope (E);
3018 SE : constant Entity_Id := Spec_Entity (E);
3020 begin
3021 -- Do not warn if address is taken, since funny business may be going
3022 -- on in treating the parameter indirectly as IN OUT.
3024 if Address_Taken (S)
3025 or else (Present (SE) and then Address_Taken (Scope (SE)))
3026 then
3027 return False;
3029 -- Do not warn if used as a generic actual, since the generic may be
3030 -- what is forcing the use of an "unnecessary" IN OUT.
3032 elsif Used_As_Generic_Actual (S)
3033 or else (Present (SE) and then Used_As_Generic_Actual (Scope (SE)))
3034 then
3035 return False;
3037 -- Else test warnings off on the subprogram
3039 elsif Warnings_Off (S) then
3040 return False;
3042 -- All tests for suppressing warning failed
3044 else
3045 return True;
3046 end if;
3047 end Warn_On_In_Out;
3049 -- Start of processing for Output_Non_Modified_In_Out_Warnings
3051 begin
3052 -- Loop through entities for which a warning may be needed
3054 for J in In_Out_Warnings.First .. In_Out_Warnings.Last loop
3055 declare
3056 E1 : constant Entity_Id := In_Out_Warnings.Table (J);
3058 begin
3059 -- Suppress warning in specific cases (see details in comments for
3060 -- No_Warn_On_In_Out).
3062 if Warn_On_In_Out (E1) then
3063 -- If -gnatwk is set then output message that it could be IN
3065 if not Is_Trivial_Subprogram (Scope (E1)) then
3066 if Warn_On_Constant then
3067 Error_Msg_N
3068 ("?k?formal parameter & is not modified!", E1);
3069 Error_Msg_N
3070 ("\?k?mode could be IN instead of `IN OUT`!", E1);
3072 -- We do not generate warnings for IN OUT parameters
3073 -- unless we have at least -gnatwu. This is deliberately
3074 -- inconsistent with the treatment of variables, but
3075 -- otherwise we get too many unexpected warnings in
3076 -- default mode.
3078 elsif Check_Unreferenced then
3079 Error_Msg_N
3080 ("?u?formal parameter& is read but "
3081 & "never assigned!", E1);
3082 end if;
3083 end if;
3085 -- Kill any other warnings on this entity, since this is the
3086 -- one that should dominate any other unreferenced warning.
3088 Set_Warnings_Off (E1);
3089 end if;
3090 end;
3091 end loop;
3092 end Output_Non_Modified_In_Out_Warnings;
3094 ----------------------------------------
3095 -- Output_Obsolescent_Entity_Warnings --
3096 ----------------------------------------
3098 procedure Output_Obsolescent_Entity_Warnings (N : Node_Id; E : Entity_Id) is
3099 P : constant Node_Id := Parent (N);
3100 S : Entity_Id;
3102 begin
3103 S := Current_Scope;
3105 -- Do not output message if we are the scope of standard. This means
3106 -- we have a reference from a context clause from when it is originally
3107 -- processed, and that's too early to tell whether it is an obsolescent
3108 -- unit doing the with'ing. In Sem_Ch10.Analyze_Compilation_Unit we make
3109 -- sure that we have a later call when the scope is available. This test
3110 -- also eliminates all messages for use clauses, which is fine (we do
3111 -- not want messages for use clauses, since they are always redundant
3112 -- with respect to the associated with clause).
3114 if S = Standard_Standard then
3115 return;
3116 end if;
3118 -- Do not output message if we are in scope of an obsolescent package
3119 -- or subprogram.
3121 loop
3122 if Is_Obsolescent (S) then
3123 return;
3124 end if;
3126 S := Scope (S);
3127 exit when S = Standard_Standard;
3128 end loop;
3130 -- Here we will output the message
3132 Error_Msg_Sloc := Sloc (E);
3134 -- Case of with clause
3136 if Nkind (P) = N_With_Clause then
3137 if Ekind (E) = E_Package then
3138 Error_Msg_NE
3139 ("?j?with of obsolescent package& declared#", N, E);
3140 elsif Ekind (E) = E_Procedure then
3141 Error_Msg_NE
3142 ("?j?with of obsolescent procedure& declared#", N, E);
3143 else
3144 Error_Msg_NE
3145 ("?j?with of obsolescent function& declared#", N, E);
3146 end if;
3148 -- If we do not have a with clause, then ignore any reference to an
3149 -- obsolescent package name. We only want to give the one warning of
3150 -- withing the package, not one each time it is used to qualify.
3152 elsif Ekind (E) = E_Package then
3153 return;
3155 -- Procedure call statement
3157 elsif Nkind (P) = N_Procedure_Call_Statement then
3158 Error_Msg_NE
3159 ("??call to obsolescent procedure& declared#", N, E);
3161 -- Function call
3163 elsif Nkind (P) = N_Function_Call then
3164 Error_Msg_NE
3165 ("??call to obsolescent function& declared#", N, E);
3167 -- Reference to obsolescent type
3169 elsif Is_Type (E) then
3170 Error_Msg_NE
3171 ("??reference to obsolescent type& declared#", N, E);
3173 -- Reference to obsolescent component
3175 elsif Ekind (E) in E_Component | E_Discriminant then
3176 Error_Msg_NE
3177 ("??reference to obsolescent component& declared#", N, E);
3179 -- Reference to obsolescent variable
3181 elsif Ekind (E) = E_Variable then
3182 Error_Msg_NE
3183 ("??reference to obsolescent variable& declared#", N, E);
3185 -- Reference to obsolescent constant
3187 elsif Ekind (E) = E_Constant or else Ekind (E) in Named_Kind then
3188 Error_Msg_NE
3189 ("??reference to obsolescent constant& declared#", N, E);
3191 -- Reference to obsolescent enumeration literal
3193 elsif Ekind (E) = E_Enumeration_Literal then
3194 Error_Msg_NE
3195 ("??reference to obsolescent enumeration literal& declared#", N, E);
3197 -- Generic message for any other case we missed
3199 else
3200 Error_Msg_NE
3201 ("??reference to obsolescent entity& declared#", N, E);
3202 end if;
3204 -- Output additional warning if present
3206 for J in Obsolescent_Warnings.First .. Obsolescent_Warnings.Last loop
3207 if Obsolescent_Warnings.Table (J).Ent = E then
3208 String_To_Name_Buffer (Obsolescent_Warnings.Table (J).Msg);
3209 Error_Msg_Strlen := Name_Len;
3210 Error_Msg_String (1 .. Name_Len) := Name_Buffer (1 .. Name_Len);
3211 Error_Msg_N ("\\??~", N);
3212 exit;
3213 end if;
3214 end loop;
3215 end Output_Obsolescent_Entity_Warnings;
3217 ----------------------------------
3218 -- Output_Unreferenced_Messages --
3219 ----------------------------------
3221 procedure Output_Unreferenced_Messages is
3222 begin
3223 for J in Unreferenced_Entities.First .. Unreferenced_Entities.Last loop
3224 Warn_On_Unreferenced_Entity (Unreferenced_Entities.Table (J));
3225 end loop;
3226 end Output_Unreferenced_Messages;
3228 -----------------------------------------
3229 -- Output_Unused_Warnings_Off_Warnings --
3230 -----------------------------------------
3232 procedure Output_Unused_Warnings_Off_Warnings is
3233 begin
3234 for J in Warnings_Off_Pragmas.First .. Warnings_Off_Pragmas.Last loop
3235 declare
3236 Wentry : Warnings_Off_Entry renames Warnings_Off_Pragmas.Table (J);
3237 N : Node_Id renames Wentry.N;
3238 E : Node_Id renames Wentry.E;
3240 begin
3241 -- Turn off Warnings_Off, or we won't get the warning
3243 Set_Warnings_Off (E, False);
3245 -- Nothing to do if pragma was used to suppress a general warning
3247 if Warnings_Off_Used (E) then
3248 null;
3250 -- If pragma was used both in unmodified and unreferenced contexts
3251 -- then that's as good as the general case, no warning.
3253 elsif Warnings_Off_Used_Unmodified (E)
3255 Warnings_Off_Used_Unreferenced (E)
3256 then
3257 null;
3259 -- Used only in context where Unmodified would have worked
3261 elsif Warnings_Off_Used_Unmodified (E) then
3262 Error_Msg_NE
3263 ("?.w?could use Unmodified instead of "
3264 & "Warnings Off for &", Pragma_Identifier (N), E);
3266 -- Used only in context where Unreferenced would have worked
3268 elsif Warnings_Off_Used_Unreferenced (E) then
3269 Error_Msg_NE
3270 ("?.w?could use Unreferenced instead of "
3271 & "Warnings Off for &", Pragma_Identifier (N), E);
3273 -- Not used at all
3275 else
3276 Error_Msg_NE
3277 ("?.w?pragma Warnings Off for & unused, "
3278 & "could be omitted", N, E);
3279 end if;
3280 end;
3281 end loop;
3282 end Output_Unused_Warnings_Off_Warnings;
3284 ---------------------------
3285 -- Referenced_Check_Spec --
3286 ---------------------------
3288 function Referenced_Check_Spec (E : Entity_Id) return Boolean is
3289 begin
3290 if Is_Formal (E) and then Present (Spec_Entity (E)) then
3291 return Referenced (E) or else Referenced (Spec_Entity (E));
3292 else
3293 return Referenced (E);
3294 end if;
3295 end Referenced_Check_Spec;
3297 ----------------------------------
3298 -- Referenced_As_LHS_Check_Spec --
3299 ----------------------------------
3301 function Referenced_As_LHS_Check_Spec (E : Entity_Id) return Boolean is
3302 begin
3303 if Is_Formal (E) and then Present (Spec_Entity (E)) then
3304 return Referenced_As_LHS (E)
3305 or else Referenced_As_LHS (Spec_Entity (E));
3306 else
3307 return Referenced_As_LHS (E);
3308 end if;
3309 end Referenced_As_LHS_Check_Spec;
3311 --------------------------------------------
3312 -- Referenced_As_Out_Parameter_Check_Spec --
3313 --------------------------------------------
3315 function Referenced_As_Out_Parameter_Check_Spec
3316 (E : Entity_Id) return Boolean
3318 begin
3319 if Is_Formal (E) and then Present (Spec_Entity (E)) then
3320 return Referenced_As_Out_Parameter (E)
3321 or else Referenced_As_Out_Parameter (Spec_Entity (E));
3322 else
3323 return Referenced_As_Out_Parameter (E);
3324 end if;
3325 end Referenced_As_Out_Parameter_Check_Spec;
3327 --------------------------------------
3328 -- Warn_On_Constant_Valid_Condition --
3329 --------------------------------------
3331 procedure Warn_On_Constant_Valid_Condition (Op : Node_Id) is
3332 Left : constant Node_Id := Left_Opnd (Op);
3333 Right : constant Node_Id := Right_Opnd (Op);
3335 function Comes_From_Simple_Condition_In_Source
3336 (Op : Node_Id) return Boolean;
3337 -- Return True if Op comes from a simple condition present in the source
3339 -------------------------------------------
3340 -- Comes_From_Simple_Condition_In_Source --
3341 -------------------------------------------
3343 function Comes_From_Simple_Condition_In_Source
3344 (Op : Node_Id) return Boolean
3346 Orig_Op : constant Node_Id := Original_Node (Op);
3348 begin
3349 if not Comes_From_Source (Orig_Op) then
3350 return False;
3351 end if;
3353 -- We do not want to give warnings on a membership test with a mark
3354 -- for a subtype that is predicated, see also Exp_Ch4.Expand_N_In.
3356 if Nkind (Orig_Op) = N_In then
3357 declare
3358 Orig_Rop : constant Node_Id :=
3359 Original_Node (Right_Opnd (Orig_Op));
3360 begin
3361 if Is_Entity_Name (Orig_Rop)
3362 and then Is_Type (Entity (Orig_Rop))
3363 and then Present (Predicate_Function (Entity (Orig_Rop)))
3364 then
3365 return False;
3366 end if;
3367 end;
3368 end if;
3370 return True;
3371 end Comes_From_Simple_Condition_In_Source;
3373 True_Result : Boolean;
3374 False_Result : Boolean;
3376 begin
3377 -- Determine the potential outcome of the comparison assuming that the
3378 -- scalar operands are valid.
3380 if Constant_Condition_Warnings
3381 and then Comes_From_Simple_Condition_In_Source (Op)
3382 and then Is_Scalar_Type (Etype (Left))
3383 and then Is_Scalar_Type (Etype (Right))
3385 -- Do not consider instances because the check was already performed
3386 -- in the generic.
3388 and then not In_Instance
3390 -- Do not consider comparisons between two static expressions such as
3391 -- constants or literals because those values cannot be invalidated.
3393 and then not (Is_Static_Expression (Left)
3394 and then Is_Static_Expression (Right))
3396 -- Do not consider comparison between an attribute reference and a
3397 -- compile-time known value since this is most likely a conditional
3398 -- compilation.
3400 and then not Is_Attribute_And_Known_Value_Comparison (Op)
3402 -- Do not consider internal files to allow for various assertions and
3403 -- safeguards within our runtime.
3405 and then not In_Internal_Unit (Op)
3406 then
3407 Test_Comparison
3408 (Op => Op,
3409 Assume_Valid => True,
3410 True_Result => True_Result,
3411 False_Result => False_Result);
3413 -- Warn on a possible evaluation to False / True in the presence of
3414 -- invalid values. But issue no warning for an assertion expression
3415 -- (or a subexpression thereof); in particular, we don't want a
3416 -- warning about an assertion that will always succeed.
3418 if In_Assertion_Expression_Pragma (Op) then
3419 null;
3421 elsif True_Result then
3422 Error_Msg_N
3423 ("condition can only be False if invalid values present?c?", Op);
3425 elsif False_Result then
3426 Error_Msg_N
3427 ("condition can only be True if invalid values present?c?", Op);
3428 end if;
3429 end if;
3430 end Warn_On_Constant_Valid_Condition;
3432 -----------------------------
3433 -- Warn_On_Known_Condition --
3434 -----------------------------
3436 procedure Warn_On_Known_Condition (C : Node_Id) is
3437 Test_Result : Boolean := False;
3438 -- Force initialization to facilitate static analysis
3440 function Is_Known_Branch return Boolean;
3441 -- If the type of the condition is Boolean, the constant value of the
3442 -- condition is a boolean literal. If the type is a derived boolean
3443 -- type, the constant is wrapped in a type conversion of the derived
3444 -- literal. If the value of the condition is not a literal, no warnings
3445 -- can be produced. This function returns True if the result can be
3446 -- determined, and Test_Result is set True/False accordingly. Otherwise
3447 -- False is returned, and Test_Result is unchanged.
3449 procedure Track (N : Node_Id);
3450 -- Adds continuation warning(s) pointing to reason (assignment or test)
3451 -- for the operand of the conditional having a known value (or at least
3452 -- enough is known about the value to issue the warning).
3454 ---------------------
3455 -- Is_Known_Branch --
3456 ---------------------
3458 function Is_Known_Branch return Boolean is
3459 begin
3460 if Etype (C) = Standard_Boolean
3461 and then Is_Entity_Name (C)
3462 and then
3463 (Entity (C) = Standard_False or else Entity (C) = Standard_True)
3464 then
3465 Test_Result := Entity (C) = Standard_True;
3466 return True;
3468 elsif Is_Boolean_Type (Etype (C))
3469 and then Nkind (C) = N_Unchecked_Type_Conversion
3470 and then Is_Entity_Name (Expression (C))
3471 and then Ekind (Entity (Expression (C))) = E_Enumeration_Literal
3472 then
3473 Test_Result :=
3474 Chars (Entity (Expression (C))) = Chars (Standard_True);
3475 return True;
3477 else
3478 return False;
3479 end if;
3480 end Is_Known_Branch;
3482 -----------
3483 -- Track --
3484 -----------
3486 procedure Track (N : Node_Id) is
3488 procedure Rec (Sub_N : Node_Id);
3489 -- Recursive helper to do the work of Track, so we can refer to N's
3490 -- Sloc in error messages. Sub_N is initially N, and a proper subnode
3491 -- when recursively walking comparison operations.
3493 procedure Rec (Sub_N : Node_Id) is
3494 Orig : constant Node_Id := Original_Node (Sub_N);
3495 begin
3496 if Nkind (Orig) in N_Op_Compare then
3497 Rec (Left_Opnd (Orig));
3498 Rec (Right_Opnd (Orig));
3500 elsif Is_Entity_Name (Orig) and then Is_Object (Entity (Orig)) then
3501 declare
3502 CV : constant Node_Id := Current_Value (Entity (Orig));
3503 begin
3504 if Present (CV) then
3505 Error_Msg_Sloc := Sloc (CV);
3507 if Nkind (CV) not in N_Subexpr then
3508 Error_Msg_N ("\\??(see test #)", N);
3510 elsif Nkind (Parent (CV)) =
3511 N_Case_Statement_Alternative
3512 then
3513 Error_Msg_N ("\\??(see case alternative #)", N);
3515 else
3516 Error_Msg_N ("\\??(see assignment #)", N);
3517 end if;
3518 end if;
3519 end;
3520 end if;
3521 end Rec;
3523 begin
3524 Rec (N);
3525 end Track;
3527 -- Local variables
3529 Orig : constant Node_Id := Original_Node (C);
3530 P : Node_Id;
3532 -- Start of processing for Warn_On_Known_Condition
3534 begin
3535 -- Adjust SCO condition if from source
3537 if Generate_SCO
3538 and then Comes_From_Source (Orig)
3539 and then Is_Known_Branch
3540 then
3541 declare
3542 Atrue : Boolean := Test_Result;
3543 begin
3544 if Present (Parent (C)) and then Nkind (Parent (C)) = N_Op_Not then
3545 Atrue := not Atrue;
3546 end if;
3548 Set_SCO_Condition (Orig, Atrue);
3549 end;
3550 end if;
3552 -- Argument replacement in an inlined body can make conditions static.
3553 -- Do not emit warnings in this case.
3555 if In_Inlined_Body then
3556 return;
3557 end if;
3559 if Constant_Condition_Warnings
3560 and then Is_Known_Branch
3561 and then Comes_From_Source (Orig)
3562 and then Nkind (Orig) in N_Has_Entity
3563 and then not In_Instance
3564 then
3565 -- Don't warn if comparison of result of attribute against a constant
3566 -- value, since this is likely legitimate conditional compilation.
3568 if Is_Attribute_And_Known_Value_Comparison (C) then
3569 return;
3570 end if;
3572 -- See if this is in a statement or a declaration
3574 P := Parent (C);
3575 loop
3576 -- If tree is not attached, do not issue warning (this is very
3577 -- peculiar, and probably arises from some other error condition).
3579 if No (P) then
3580 return;
3582 -- If we are in a declaration, then no warning, since in practice
3583 -- conditionals in declarations are used for intended tests which
3584 -- may be known at compile time, e.g. things like
3586 -- x : constant Integer := 2 + (Word'Size = 32);
3588 -- And a warning is annoying in such cases
3590 elsif Nkind (P) in N_Declaration
3591 or else
3592 Nkind (P) in N_Later_Decl_Item
3593 then
3594 return;
3596 -- Don't warn in assert or check pragma, since presumably tests in
3597 -- such a context are very definitely intended, and might well be
3598 -- known at compile time. Note that we have to test the original
3599 -- node, since assert pragmas get rewritten at analysis time.
3601 elsif Nkind (Original_Node (P)) = N_Pragma
3602 and then
3603 Pragma_Name_Unmapped (Original_Node (P))
3604 in Name_Assert | Name_Check
3605 then
3606 return;
3607 end if;
3609 exit when Is_Statement (P);
3610 P := Parent (P);
3611 end loop;
3613 -- Here we issue the warning unless some sub-operand has warnings
3614 -- set off, in which case we suppress the warning for the node. If
3615 -- the original expression is an inequality, it has been expanded
3616 -- into a negation, and the value of the original expression is the
3617 -- negation of the equality. If the expression is an entity that
3618 -- appears within a negation, it is clearer to flag the negation
3619 -- itself, and report on its constant value.
3621 if not Operand_Has_Warnings_Suppressed (C) then
3622 declare
3623 True_Branch : Boolean := Test_Result;
3624 Cond : Node_Id := C;
3625 begin
3626 if Present (Parent (C))
3627 and then Nkind (Parent (C)) = N_Op_Not
3628 then
3629 True_Branch := not True_Branch;
3630 Cond := Parent (C);
3631 end if;
3633 -- Suppress warning if this is True/False of a derived boolean
3634 -- type with Nonzero_Is_True, which gets rewritten as Boolean
3635 -- True/False.
3637 if Is_Entity_Name (Original_Node (C))
3638 and then Ekind (Entity (Original_Node (C)))
3639 = E_Enumeration_Literal
3640 and then Nonzero_Is_True (Etype (Original_Node (C)))
3641 then
3642 null;
3644 -- Give warning for nontrivial always True/False case
3646 else
3647 if True_Branch then
3648 Error_Msg_N ("condition is always True?c?", Cond);
3649 else
3650 Error_Msg_N ("condition is always False?c?", Cond);
3651 end if;
3653 Track (Cond);
3654 end if;
3655 end;
3656 end if;
3657 end if;
3658 end Warn_On_Known_Condition;
3660 ---------------------------------------
3661 -- Warn_On_Modified_As_Out_Parameter --
3662 ---------------------------------------
3664 function Warn_On_Modified_As_Out_Parameter (E : Entity_Id) return Boolean is
3665 begin
3666 return
3667 (Warn_On_Modified_Unread and then Is_Only_Out_Parameter (E))
3668 or else Warn_On_All_Unread_Out_Parameters;
3669 end Warn_On_Modified_As_Out_Parameter;
3671 ---------------------------------
3672 -- Warn_On_Overlapping_Actuals --
3673 ---------------------------------
3675 procedure Warn_On_Overlapping_Actuals (Subp : Entity_Id; N : Node_Id) is
3676 function Explicitly_By_Reference (Formal_Id : Entity_Id) return Boolean;
3677 -- Returns True iff the type of Formal_Id is explicitly by-reference
3679 function Refer_Same_Object
3680 (Act1 : Node_Id;
3681 Act2 : Node_Id) return Boolean;
3682 -- Two names are known to refer to the same object if the two names
3683 -- are known to denote the same object; or one of the names is a
3684 -- selected_component, indexed_component, or slice and its prefix is
3685 -- known to refer to the same object as the other name; or one of the
3686 -- two names statically denotes a renaming declaration whose renamed
3687 -- object_name is known to refer to the same object as the other name
3688 -- (RM 6.4.1(6.11/3))
3690 -----------------------------
3691 -- Explicitly_By_Reference --
3692 -----------------------------
3694 function Explicitly_By_Reference
3695 (Formal_Id : Entity_Id)
3696 return Boolean
3698 Typ : constant Entity_Id := Underlying_Type (Etype (Formal_Id));
3699 begin
3700 if Present (Typ) then
3701 return Is_By_Reference_Type (Typ)
3702 or else Convention (Typ) = Convention_Ada_Pass_By_Reference;
3703 else
3704 return False;
3705 end if;
3706 end Explicitly_By_Reference;
3708 -----------------------
3709 -- Refer_Same_Object --
3710 -----------------------
3712 function Refer_Same_Object
3713 (Act1 : Node_Id;
3714 Act2 : Node_Id) return Boolean
3716 begin
3717 return
3718 Denotes_Same_Object (Act1, Act2)
3719 or else Denotes_Same_Prefix (Act1, Act2);
3720 end Refer_Same_Object;
3722 -- Local variables
3724 Act1 : Node_Id;
3725 Act2 : Node_Id;
3726 Form1 : Entity_Id;
3727 Form2 : Entity_Id;
3729 -- Start of processing for Warn_On_Overlapping_Actuals
3731 begin
3732 -- Exclude calls rewritten as enumeration literals
3734 if Nkind (N) not in N_Subprogram_Call | N_Entry_Call_Statement then
3735 return;
3737 -- Guard against previous errors
3739 elsif Error_Posted (N) then
3740 return;
3741 end if;
3743 -- If a call C has two or more parameters of mode in out or out that are
3744 -- of an elementary type, then the call is legal only if for each name
3745 -- N that is passed as a parameter of mode in out or out to the call C,
3746 -- there is no other name among the other parameters of mode in out or
3747 -- out to C that is known to denote the same object (RM 6.4.1(6.15/3))
3748 -- This has been clarified in AI12-0216 to indicate that the illegality
3749 -- only occurs if both formals are of an elementary type, because of the
3750 -- nondeterminism on the write-back of the corresponding actuals.
3751 -- Earlier versions of the language made it illegal if only one of the
3752 -- actuals was an elementary parameter that overlapped a composite
3753 -- actual, and both were writable.
3755 -- If appropriate warning switch is set, we also report warnings on
3756 -- overlapping parameters that are composite types. Users find these
3757 -- warnings useful, and they are used in style guides.
3759 -- It is also worthwhile to warn on overlaps of composite objects when
3760 -- only one of the formals is (in)-out. Note that the RM rule above is
3761 -- a legality rule. We choose to implement this check as a warning to
3762 -- avoid major incompatibilities with legacy code.
3764 -- Note also that the rule in 6.4.1 (6.17/3), introduced by AI12-0324,
3765 -- is potentially more expensive to verify, and is not yet implemented.
3767 Form1 := First_Formal (Subp);
3768 Act1 := First_Actual (N);
3769 while Present (Form1) and then Present (Act1) loop
3771 Form2 := Next_Formal (Form1);
3772 Act2 := Next_Actual (Act1);
3773 while Present (Form2) and then Present (Act2) loop
3775 -- Ignore formals of generic types; they will be examined when
3776 -- instantiated.
3778 if Is_Generic_Type (Etype (Form1))
3779 or else Is_Generic_Type (Etype (Form2))
3780 then
3781 null;
3783 elsif Refer_Same_Object (Act1, Act2) then
3785 -- Case 1: two writable elementary parameters that overlap
3787 if (Is_Elementary_Type (Etype (Form1))
3788 and then Is_Elementary_Type (Etype (Form2))
3789 and then Ekind (Form1) /= E_In_Parameter
3790 and then Ekind (Form2) /= E_In_Parameter)
3792 -- Case 2: two composite parameters that overlap, one of
3793 -- which is writable.
3795 or else (Is_Composite_Type (Etype (Form1))
3796 and then Is_Composite_Type (Etype (Form2))
3797 and then (Ekind (Form1) /= E_In_Parameter
3798 or else Ekind (Form2) /= E_In_Parameter))
3800 -- Case 3: an elementary writable parameter that overlaps
3801 -- a composite one.
3803 or else (Is_Elementary_Type (Etype (Form1))
3804 and then Ekind (Form1) /= E_In_Parameter
3805 and then Is_Composite_Type (Etype (Form2)))
3807 or else (Is_Elementary_Type (Etype (Form2))
3808 and then Ekind (Form2) /= E_In_Parameter
3809 and then Is_Composite_Type (Etype (Form1)))
3810 then
3812 -- Guard against previous errors
3814 if No (Etype (Act1))
3815 or else No (Etype (Act2))
3816 then
3817 null;
3819 -- If type is explicitly by-reference, then it is not
3820 -- covered by the legality rule, which only applies to
3821 -- elementary types. Actually, the aliasing is most
3822 -- likely intended, so don't emit a warning either.
3824 elsif Explicitly_By_Reference (Form1)
3825 or else Explicitly_By_Reference (Form2)
3826 then
3827 null;
3829 -- We only report warnings on overlapping arrays and record
3830 -- types if switch is set.
3832 elsif not Warn_On_Overlap
3833 and then not (Is_Elementary_Type (Etype (Form1))
3834 and then
3835 Is_Elementary_Type (Etype (Form2)))
3836 then
3837 null;
3839 -- Here we may need to issue overlap message
3841 else
3842 Error_Msg_Warn :=
3844 -- Overlap checking is an error only in Ada 2012. For
3845 -- earlier versions of Ada, this is a warning.
3847 Ada_Version < Ada_2012
3849 -- Overlap is only illegal since Ada 2012 and only for
3850 -- elementary types (passed by copy). For other types
3851 -- we always have a warning in all versions. This is
3852 -- clarified by AI12-0216.
3854 or else not
3855 (Is_Elementary_Type (Etype (Form1))
3856 and then Is_Elementary_Type (Etype (Form2)))
3858 -- debug flag -gnatd.E changes the error to a warning
3859 -- even in Ada 2012 mode.
3861 or else Error_To_Warning;
3863 -- For greater clarity, give name of formal
3865 Error_Msg_Node_2 := Form2;
3867 -- This is one of the messages
3869 Error_Msg_FE
3870 ("<.i<writable actual for & overlaps with actual for &",
3871 Act1, Form1);
3872 end if;
3873 end if;
3874 end if;
3876 Next_Formal (Form2);
3877 Next_Actual (Act2);
3878 end loop;
3880 Next_Formal (Form1);
3881 Next_Actual (Act1);
3882 end loop;
3883 end Warn_On_Overlapping_Actuals;
3885 ------------------------------
3886 -- Warn_On_Suspicious_Index --
3887 ------------------------------
3889 procedure Warn_On_Suspicious_Index (Name : Entity_Id; X : Node_Id) is
3891 Low_Bound : Uint;
3892 -- Set to lower bound for a suspicious type
3894 Ent : Entity_Id;
3895 -- Entity for array reference
3897 Typ : Entity_Id;
3898 -- Array type
3900 function Is_Suspicious_Type (Typ : Entity_Id) return Boolean;
3901 -- Tests to see if Typ is a type for which we may have a suspicious
3902 -- index, namely an unconstrained array type, whose lower bound is
3903 -- either zero or one. If so, True is returned, and Low_Bound is set
3904 -- to this lower bound. If not, False is returned, and Low_Bound is
3905 -- undefined on return.
3907 -- For now, we limit this to standard string types, so any other
3908 -- unconstrained types return False. We may change our minds on this
3909 -- later on, but strings seem the most important case.
3911 procedure Test_Suspicious_Index;
3912 -- Test if index is of suspicious type and if so, generate warning
3914 ------------------------
3915 -- Is_Suspicious_Type --
3916 ------------------------
3918 function Is_Suspicious_Type (Typ : Entity_Id) return Boolean is
3919 LB : Node_Id;
3921 begin
3922 if Is_Array_Type (Typ)
3923 and then not Is_Constrained (Typ)
3924 and then Number_Dimensions (Typ) = 1
3925 and then Is_Standard_String_Type (Typ)
3926 and then not Has_Warnings_Off (Typ)
3927 then
3928 LB := Type_Low_Bound (Etype (First_Index (Typ)));
3930 if Compile_Time_Known_Value (LB) then
3931 Low_Bound := Expr_Value (LB);
3932 return Low_Bound = Uint_0 or else Low_Bound = Uint_1;
3933 end if;
3934 end if;
3936 return False;
3937 end Is_Suspicious_Type;
3939 ---------------------------
3940 -- Test_Suspicious_Index --
3941 ---------------------------
3943 procedure Test_Suspicious_Index is
3945 function Length_Reference (N : Node_Id) return Boolean;
3946 -- Check if node N is of the form Name'Length
3948 procedure Warn1;
3949 -- Generate first warning line
3951 procedure Warn_On_Index_Below_Lower_Bound;
3952 -- Generate a warning on indexing the array with a literal value
3953 -- below the lower bound of the index type.
3955 procedure Warn_On_Literal_Index;
3956 -- Generate a warning on indexing the array with a literal value
3958 ----------------------
3959 -- Length_Reference --
3960 ----------------------
3962 function Length_Reference (N : Node_Id) return Boolean is
3963 R : constant Node_Id := Original_Node (N);
3964 begin
3965 return
3966 Nkind (R) = N_Attribute_Reference
3967 and then Attribute_Name (R) = Name_Length
3968 and then Is_Entity_Name (Prefix (R))
3969 and then Entity (Prefix (R)) = Ent;
3970 end Length_Reference;
3972 -----------
3973 -- Warn1 --
3974 -----------
3976 procedure Warn1 is
3977 begin
3978 Error_Msg_Uint_1 := Low_Bound;
3979 Error_Msg_FE -- CODEFIX
3980 ("?w?index for& may assume lower bound of^", X, Ent);
3981 end Warn1;
3983 -------------------------------------
3984 -- Warn_On_Index_Below_Lower_Bound --
3985 -------------------------------------
3987 procedure Warn_On_Index_Below_Lower_Bound is
3988 begin
3989 if Is_Standard_String_Type (Typ) then
3990 Discard_Node
3991 (Compile_Time_Constraint_Error
3992 (N => X,
3993 Msg => "?w?string index should be positive"));
3994 else
3995 Discard_Node
3996 (Compile_Time_Constraint_Error
3997 (N => X,
3998 Msg => "?w?index out of the allowed range"));
3999 end if;
4000 end Warn_On_Index_Below_Lower_Bound;
4002 ---------------------------
4003 -- Warn_On_Literal_Index --
4004 ---------------------------
4006 procedure Warn_On_Literal_Index is
4007 begin
4008 Warn1;
4010 -- Case where original form of subscript is an integer literal
4012 if Nkind (Original_Node (X)) = N_Integer_Literal then
4013 if Intval (X) = Low_Bound then
4014 Error_Msg_FE -- CODEFIX
4015 ("\?w?suggested replacement: `&''First`", X, Ent);
4016 else
4017 Error_Msg_Uint_1 := Intval (X) - Low_Bound;
4018 Error_Msg_FE -- CODEFIX
4019 ("\?w?suggested replacement: `&''First + ^`", X, Ent);
4021 end if;
4023 -- Case where original form of subscript is more complex
4025 else
4026 -- Build string X'First - 1 + expression where the expression
4027 -- is the original subscript. If the expression starts with "1
4028 -- + ", then the "- 1 + 1" is elided.
4030 Error_Msg_String (1 .. 13) := "'First - 1 + ";
4031 Error_Msg_Strlen := 13;
4033 declare
4034 Sref : Source_Ptr := Sloc (First_Node (Original_Node (X)));
4035 Tref : constant Source_Buffer_Ptr :=
4036 Source_Text (Get_Source_File_Index (Sref));
4037 -- Tref (Sref) is used to scan the subscript
4039 Pctr : Natural;
4040 -- Parentheses counter when scanning subscript
4042 begin
4043 -- Tref (Sref) points to start of subscript
4045 -- Elide - 1 if subscript starts with 1 +
4047 if Tref (Sref .. Sref + 2) = "1 +" then
4048 Error_Msg_Strlen := Error_Msg_Strlen - 6;
4049 Sref := Sref + 2;
4051 elsif Tref (Sref .. Sref + 1) = "1+" then
4052 Error_Msg_Strlen := Error_Msg_Strlen - 6;
4053 Sref := Sref + 1;
4054 end if;
4056 -- Now we will copy the subscript to the string buffer
4058 Pctr := 0;
4059 loop
4060 -- Count parens, exit if terminating right paren. Note
4061 -- check to ignore paren appearing as character literal.
4063 if Tref (Sref + 1) = '''
4064 and then
4065 Tref (Sref - 1) = '''
4066 then
4067 null;
4068 else
4069 if Tref (Sref) = '(' then
4070 Pctr := Pctr + 1;
4071 elsif Tref (Sref) = ')' then
4072 exit when Pctr = 0;
4073 Pctr := Pctr - 1;
4074 end if;
4075 end if;
4077 -- Done if terminating double dot (slice case)
4079 exit when Pctr = 0
4080 and then (Tref (Sref .. Sref + 1) = ".."
4081 or else
4082 Tref (Sref .. Sref + 2) = " ..");
4084 -- Quit if we have hit EOF character, something wrong
4086 if Tref (Sref) = EOF then
4087 return;
4088 end if;
4090 -- String literals are too much of a pain to handle
4092 if Tref (Sref) = '"' or else Tref (Sref) = '%' then
4093 return;
4094 end if;
4096 -- If we have a 'Range reference, then this is a case
4097 -- where we cannot easily give a replacement. Don't try.
4099 if Tref (Sref .. Sref + 4) = "range"
4100 and then Tref (Sref - 1) < 'A'
4101 and then Tref (Sref + 5) < 'A'
4102 then
4103 return;
4104 end if;
4106 -- Else store next character
4108 Error_Msg_Strlen := Error_Msg_Strlen + 1;
4109 Error_Msg_String (Error_Msg_Strlen) := Tref (Sref);
4110 Sref := Sref + 1;
4112 -- If we get more than 40 characters then the expression
4113 -- is too long to copy, or something has gone wrong. In
4114 -- either case, just skip the attempt at a suggested fix.
4116 if Error_Msg_Strlen > 40 then
4117 return;
4118 end if;
4119 end loop;
4120 end;
4122 -- Replacement subscript is now in string buffer
4124 Error_Msg_FE -- CODEFIX
4125 ("\?w?suggested replacement: `&~`", Original_Node (X), Ent);
4126 end if;
4127 end Warn_On_Literal_Index;
4129 -- Start of processing for Test_Suspicious_Index
4131 begin
4132 -- Nothing to do if subscript does not come from source (we don't
4133 -- want to give garbage warnings on compiler expanded code, e.g. the
4134 -- loops generated for slice assignments. Such junk warnings would
4135 -- be placed on source constructs with no subscript in sight).
4137 if not Comes_From_Source (Original_Node (X)) then
4138 return;
4139 end if;
4141 -- Case where subscript is a constant integer
4143 if Nkind (X) = N_Integer_Literal then
4145 -- Case where subscript is lower than the lowest possible bound.
4146 -- This might be the case for example when programmers try to
4147 -- access a string at index 0, as they are used to in other
4148 -- programming languages like C.
4150 if Intval (X) < Low_Bound then
4151 Warn_On_Index_Below_Lower_Bound;
4152 else
4153 Warn_On_Literal_Index;
4154 end if;
4156 -- Case where subscript is of the form X'Length
4158 elsif Length_Reference (X) then
4159 Warn1;
4160 Error_Msg_Node_2 := Ent;
4161 Error_Msg_FE
4162 ("\?w?suggest replacement of `&''Length` by `&''Last`",
4163 X, Ent);
4165 -- Case where subscript is of the form X'Length - expression
4167 elsif Nkind (X) = N_Op_Subtract
4168 and then Length_Reference (Left_Opnd (X))
4169 then
4170 Warn1;
4171 Error_Msg_Node_2 := Ent;
4172 Error_Msg_FE
4173 ("\?w?suggest replacement of `&''Length` by `&''Last`",
4174 Left_Opnd (X), Ent);
4175 end if;
4176 end Test_Suspicious_Index;
4178 -- Start of processing for Warn_On_Suspicious_Index
4180 begin
4181 -- Only process if warnings activated
4183 if Warn_On_Assumed_Low_Bound then
4185 -- Test if array is simple entity name
4187 if Is_Entity_Name (Name) then
4189 -- Test if array is parameter of unconstrained string type
4191 Ent := Entity (Name);
4192 Typ := Etype (Ent);
4194 if Is_Formal (Ent)
4195 and then Is_Suspicious_Type (Typ)
4196 and then not Low_Bound_Tested (Ent)
4197 then
4198 Test_Suspicious_Index;
4199 end if;
4200 end if;
4201 end if;
4202 end Warn_On_Suspicious_Index;
4204 -------------------------------
4205 -- Warn_On_Suspicious_Update --
4206 -------------------------------
4208 procedure Warn_On_Suspicious_Update (N : Node_Id) is
4209 Par : constant Node_Id := Parent (N);
4210 Arg : Node_Id;
4212 begin
4213 -- Only process if warnings activated
4215 if Warn_On_Suspicious_Contract then
4216 if Nkind (Par) in N_Op_Eq | N_Op_Ne then
4217 if N = Left_Opnd (Par) then
4218 Arg := Right_Opnd (Par);
4219 else
4220 Arg := Left_Opnd (Par);
4221 end if;
4223 if Same_Object (Prefix (N), Arg) then
4224 if Nkind (Par) = N_Op_Eq then
4225 Error_Msg_N
4226 ("suspicious equality test with modified version of "
4227 & "same object?.t?", Par);
4228 else
4229 Error_Msg_N
4230 ("suspicious inequality test with modified version of "
4231 & "same object?.t?", Par);
4232 end if;
4233 end if;
4234 end if;
4235 end if;
4236 end Warn_On_Suspicious_Update;
4238 --------------------------------------
4239 -- Warn_On_Unassigned_Out_Parameter --
4240 --------------------------------------
4242 procedure Warn_On_Unassigned_Out_Parameter
4243 (Return_Node : Node_Id;
4244 Scope_Id : Entity_Id)
4246 Form : Entity_Id;
4248 begin
4249 -- Ignore if procedure or return statement does not come from source
4251 if not Comes_From_Source (Scope_Id)
4252 or else not Comes_From_Source (Return_Node)
4253 then
4254 return;
4255 end if;
4257 -- Before we issue the warning, add an ad hoc defence against the most
4258 -- common case of false positives with this warning which is the case
4259 -- where there is a Boolean OUT parameter that has been set, and whose
4260 -- meaning is "ignore the values of the other parameters". We can't of
4261 -- course reliably tell this case at compile time, but the following
4262 -- test kills a lot of false positives, without generating a significant
4263 -- number of false negatives (missed real warnings).
4265 Form := First_Formal (Scope_Id);
4266 while Present (Form) loop
4267 if Ekind (Form) = E_Out_Parameter
4268 and then Root_Type (Etype (Form)) = Standard_Boolean
4269 and then not Never_Set_In_Source_Check_Spec (Form)
4270 then
4271 return;
4272 end if;
4274 Next_Formal (Form);
4275 end loop;
4277 -- Loop through formals
4279 Form := First_Formal (Scope_Id);
4280 while Present (Form) loop
4282 -- We are only interested in OUT parameters that come from source
4283 -- and are never set in the source, and furthermore only in scalars
4284 -- since non-scalars generate too many false positives.
4286 if Ekind (Form) = E_Out_Parameter
4287 and then Never_Set_In_Source_Check_Spec (Form)
4288 and then Is_Scalar_Type (Etype (Form))
4289 and then No (Unset_Reference (Form))
4290 then
4291 -- Here all conditions are met, record possible unset reference
4293 Set_Unset_Reference (Form, Return_Node);
4294 end if;
4296 Next_Formal (Form);
4297 end loop;
4298 end Warn_On_Unassigned_Out_Parameter;
4300 ---------------------------------
4301 -- Warn_On_Unreferenced_Entity --
4302 ---------------------------------
4304 procedure Warn_On_Unreferenced_Entity
4305 (Spec_E : Entity_Id;
4306 Body_E : Entity_Id := Empty)
4308 E : Entity_Id := Spec_E;
4310 begin
4311 if not Referenced_Check_Spec (E)
4312 and then not Has_Pragma_Unreferenced_Check_Spec (E)
4313 and then not Warnings_Off_Check_Spec (E)
4314 and then not Has_Junk_Name (Spec_E)
4315 and then not Is_Exported (Spec_E)
4316 then
4317 case Ekind (E) is
4318 when E_Variable =>
4320 -- Case of variable that is assigned but not read. We suppress
4321 -- the message if the variable is volatile, has an address
4322 -- clause, is aliased, or is a renaming, or is imported.
4324 if Referenced_As_LHS_Check_Spec (E) then
4325 if Warn_On_Modified_Unread
4326 and then No (Address_Clause (E))
4327 and then not Is_Volatile (E)
4328 and then not Is_Imported (E)
4329 and then not Is_Aliased (E)
4330 and then No (Renamed_Object (E))
4331 then
4332 if not Has_Pragma_Unmodified_Check_Spec (E) then
4333 Error_Msg_N -- CODEFIX
4334 ("?m?variable & is assigned but never read!", E);
4335 end if;
4337 Set_Last_Assignment (E, Empty);
4338 end if;
4340 -- Normal case of neither assigned nor read (exclude variables
4341 -- referenced as out parameters, since we already generated
4342 -- appropriate warnings at the call point in this case).
4344 elsif not Referenced_As_Out_Parameter (E) then
4346 -- We suppress the message for types for which a valid
4347 -- pragma Unreferenced_Objects has been given, otherwise
4348 -- we go ahead and give the message.
4350 if not Has_Pragma_Unreferenced_Objects (Etype (E)) then
4352 -- Distinguish renamed case in message
4354 if Present (Renamed_Object (E))
4355 and then Comes_From_Source (Renamed_Object (E))
4356 then
4357 Error_Msg_N -- CODEFIX
4358 ("?u?renamed variable & is not referenced!", E);
4359 else
4360 Error_Msg_N -- CODEFIX
4361 ("?u?variable & is not referenced!", E);
4362 end if;
4363 end if;
4364 end if;
4366 when E_Constant =>
4367 if not Has_Pragma_Unreferenced_Objects (Etype (E)) then
4368 if Present (Renamed_Object (E))
4369 and then Comes_From_Source (Renamed_Object (E))
4370 then
4371 Error_Msg_N -- CODEFIX
4372 ("?u?renamed constant & is not referenced!", E);
4373 else
4374 Error_Msg_N -- CODEFIX
4375 ("?u?constant & is not referenced!", E);
4376 end if;
4377 end if;
4379 when E_In_Out_Parameter
4380 | E_In_Parameter
4382 -- Do not emit message for formals of a renaming, because they
4383 -- are never referenced explicitly.
4385 if Nkind (Original_Node (Unit_Declaration_Node (Scope (E)))) /=
4386 N_Subprogram_Renaming_Declaration
4387 then
4388 -- Suppress this message for an IN OUT parameter of a
4389 -- non-scalar type, since it is normal to have only an
4390 -- assignment in such a case.
4392 if Ekind (E) = E_In_Parameter
4393 or else not Referenced_As_LHS_Check_Spec (E)
4394 or else Is_Scalar_Type (Etype (E))
4395 then
4396 if Present (Body_E) then
4397 E := Body_E;
4398 end if;
4400 declare
4401 S : Node_Id := Scope (E);
4402 begin
4403 if Ekind (S) = E_Subprogram_Body then
4404 S := Parent (S);
4406 while Nkind (S) not in
4407 N_Expression_Function |
4408 N_Subprogram_Body |
4409 N_Subprogram_Renaming_Declaration |
4410 N_Empty
4411 loop
4412 S := Parent (S);
4413 end loop;
4415 if Present (S) then
4416 S := Corresponding_Spec (S);
4417 end if;
4418 end if;
4420 -- Do not warn for dispatching operations, because
4421 -- that causes too much noise. Also do not warn for
4422 -- trivial subprograms (e.g. stubs).
4424 if (No (S) or else not Is_Dispatching_Operation (S))
4425 and then not Is_Trivial_Subprogram (Scope (E))
4426 and then Check_Unreferenced_Formals
4427 then
4428 Error_Msg_NE -- CODEFIX
4429 ("?f?formal parameter & is not referenced!",
4430 E, Spec_E);
4431 end if;
4432 end;
4433 end if;
4434 end if;
4436 when E_Out_Parameter =>
4437 null;
4439 when E_Discriminant =>
4440 Error_Msg_N ("?u?discriminant & is not referenced!", E);
4442 when E_Named_Integer
4443 | E_Named_Real
4445 Error_Msg_N -- CODEFIX
4446 ("?u?named number & is not referenced!", E);
4448 when Formal_Object_Kind =>
4449 Error_Msg_N -- CODEFIX
4450 ("?u?formal object & is not referenced!", E);
4452 when E_Enumeration_Literal =>
4453 Error_Msg_N -- CODEFIX
4454 ("?u?literal & is not referenced!", E);
4456 when E_Function =>
4457 Error_Msg_N -- CODEFIX
4458 ("?u?function & is not referenced!", E);
4460 when E_Procedure =>
4461 Error_Msg_N -- CODEFIX
4462 ("?u?procedure & is not referenced!", E);
4464 when E_Package =>
4465 Error_Msg_N -- CODEFIX
4466 ("?u?package & is not referenced!", E);
4468 when E_Exception =>
4469 Error_Msg_N -- CODEFIX
4470 ("?u?exception & is not referenced!", E);
4472 when E_Label =>
4473 Error_Msg_N -- CODEFIX
4474 ("?u?label & is not referenced!", E);
4476 when E_Generic_Procedure =>
4477 Error_Msg_N -- CODEFIX
4478 ("?u?generic procedure & is never instantiated!", E);
4480 when E_Generic_Function =>
4481 Error_Msg_N -- CODEFIX
4482 ("?u?generic function & is never instantiated!", E);
4484 when Type_Kind =>
4485 Error_Msg_N -- CODEFIX
4486 ("?u?type & is not referenced!", E);
4488 when others =>
4489 Error_Msg_N -- CODEFIX
4490 ("?u?& is not referenced!", E);
4491 end case;
4493 -- Kill warnings on the entity on which the message has been posted
4494 -- (nothing is posted on out parameters because back end might be
4495 -- able to uncover an uninitialized path, and warn accordingly).
4497 if Ekind (E) /= E_Out_Parameter then
4498 Set_Warnings_Off (E);
4499 end if;
4500 end if;
4501 end Warn_On_Unreferenced_Entity;
4503 --------------------------------
4504 -- Warn_On_Useless_Assignment --
4505 --------------------------------
4507 procedure Warn_On_Useless_Assignment
4508 (Ent : Entity_Id;
4509 N : Node_Id := Empty)
4511 P : Node_Id;
4512 X : Node_Id;
4514 function Check_Ref (N : Node_Id) return Traverse_Result;
4515 -- Used to instantiate Traverse_Func. Returns Abandon if a reference to
4516 -- the entity in question is found.
4518 function Test_No_Refs is new Traverse_Func (Check_Ref);
4520 ---------------
4521 -- Check_Ref --
4522 ---------------
4524 function Check_Ref (N : Node_Id) return Traverse_Result is
4525 begin
4526 -- Check reference to our identifier. We use name equality here
4527 -- because the exception handlers have not yet been analyzed. This
4528 -- is not quite right, but it really does not matter that we fail
4529 -- to output the warning in some obscure cases of name clashes.
4531 if Nkind (N) = N_Identifier and then Chars (N) = Chars (Ent) then
4532 return Abandon;
4533 else
4534 return OK;
4535 end if;
4536 end Check_Ref;
4538 -- Start of processing for Warn_On_Useless_Assignment
4540 begin
4541 -- Check if this is a case we want to warn on, a scalar or access
4542 -- variable with the last assignment field set, with warnings enabled,
4543 -- and which is not imported or exported. We also check that it is OK
4544 -- to capture the value. We are not going to capture any value, but
4545 -- the warning message depends on the same kind of conditions.
4547 -- If the assignment appears as an out-parameter in a call within an
4548 -- expression function it may be detected twice: once when expression
4549 -- itself is analyzed, and once when the constructed body is analyzed.
4550 -- We don't want to emit a spurious warning in this case.
4552 if Is_Assignable (Ent)
4553 and then not Is_Return_Object (Ent)
4554 and then Present (Last_Assignment (Ent))
4555 and then Last_Assignment (Ent) /= N
4556 and then not Is_Imported (Ent)
4557 and then not Is_Exported (Ent)
4558 and then Safe_To_Capture_Value (N, Ent)
4559 and then not Has_Pragma_Unreferenced_Check_Spec (Ent)
4560 and then not Has_Junk_Name (Ent)
4561 then
4562 -- Before we issue the message, check covering exception handlers.
4563 -- Search up tree for enclosing statement sequences and handlers.
4565 P := Parent (Last_Assignment (Ent));
4566 while Present (P) loop
4568 -- Something is really wrong if we don't find a handled statement
4569 -- sequence, so just suppress the warning.
4571 if No (P) then
4572 Set_Last_Assignment (Ent, Empty);
4573 return;
4575 -- When we hit a package/subprogram body, issue warning and exit
4577 elsif Nkind (P) in N_Entry_Body
4578 | N_Package_Body
4579 | N_Subprogram_Body
4580 | N_Task_Body
4581 then
4582 -- Case of assigned value never referenced
4584 if No (N) then
4585 declare
4586 LA : constant Node_Id := Last_Assignment (Ent);
4588 begin
4589 -- Don't give this for OUT and IN OUT formals, since
4590 -- clearly caller may reference the assigned value. Also
4591 -- never give such warnings for internal variables. In
4592 -- either case, word the warning in a conditional way,
4593 -- because in the case of a component of a controlled
4594 -- type, the assigned value might be referenced in the
4595 -- Finalize operation, so we can't make a definitive
4596 -- statement that it's never referenced.
4598 if Ekind (Ent) = E_Variable
4599 and then not Is_Internal_Name (Chars (Ent))
4600 then
4601 -- Give appropriate message, distinguishing between
4602 -- assignment statements and out parameters.
4604 if Nkind (Parent (LA)) in N_Parameter_Association
4605 | N_Procedure_Call_Statement
4606 then
4607 if Warn_On_All_Unread_Out_Parameters then
4608 Error_Msg_NE
4609 ("?.o?& modified by call, but value might not "
4610 & "be referenced", LA, Ent);
4611 end if;
4612 else
4613 Error_Msg_NE -- CODEFIX
4614 ("?m?possibly useless assignment to&, value "
4615 & "might not be referenced!", LA, Ent);
4616 end if;
4617 end if;
4618 end;
4620 -- Case of assigned value overwritten
4622 else
4623 declare
4624 LA : constant Node_Id := Last_Assignment (Ent);
4626 begin
4627 Error_Msg_Sloc := Sloc (N);
4629 -- Give appropriate message, distinguishing between
4630 -- assignment statements and out parameters.
4632 if Nkind (Parent (LA)) in N_Procedure_Call_Statement
4633 | N_Parameter_Association
4634 then
4635 Error_Msg_NE
4636 ("?m?& modified by call, but value overwritten #!",
4637 LA, Ent);
4638 else
4639 Error_Msg_NE -- CODEFIX
4640 ("?m?useless assignment to&, value overwritten #!",
4641 LA, Ent);
4642 end if;
4643 end;
4644 end if;
4646 -- Clear last assignment indication and we are done
4648 Set_Last_Assignment (Ent, Empty);
4649 return;
4651 -- Enclosing handled sequence of statements
4653 elsif Nkind (P) = N_Handled_Sequence_Of_Statements then
4655 -- Check exception handlers present
4657 if Present (Exception_Handlers (P)) then
4659 -- If we are not at the top level, we regard an inner
4660 -- exception handler as a decisive indicator that we should
4661 -- not generate the warning, since the variable in question
4662 -- may be accessed after an exception in the outer block.
4664 if Nkind (Parent (P)) not in N_Entry_Body
4665 | N_Package_Body
4666 | N_Subprogram_Body
4667 | N_Task_Body
4668 then
4669 Set_Last_Assignment (Ent, Empty);
4670 return;
4672 -- Otherwise we are at the outer level. An exception
4673 -- handler is significant only if it references the
4674 -- variable in question, or if the entity in question
4675 -- is an OUT or IN OUT parameter, in which case
4676 -- the caller can reference it after the exception
4677 -- handler completes.
4679 else
4680 if Is_Formal (Ent) then
4681 Set_Last_Assignment (Ent, Empty);
4682 return;
4684 else
4685 X := First (Exception_Handlers (P));
4686 while Present (X) loop
4687 if Test_No_Refs (X) = Abandon then
4688 Set_Last_Assignment (Ent, Empty);
4689 return;
4690 end if;
4692 Next (X);
4693 end loop;
4694 end if;
4695 end if;
4696 end if;
4697 end if;
4699 P := Parent (P);
4700 end loop;
4701 end if;
4702 end Warn_On_Useless_Assignment;
4704 ---------------------------------
4705 -- Warn_On_Useless_Assignments --
4706 ---------------------------------
4708 procedure Warn_On_Useless_Assignments (E : Entity_Id) is
4709 Ent : Entity_Id;
4711 begin
4712 if Warn_On_Modified_Unread
4713 and then In_Extended_Main_Source_Unit (E)
4714 then
4715 Ent := First_Entity (E);
4716 while Present (Ent) loop
4717 Warn_On_Useless_Assignment (Ent);
4718 Next_Entity (Ent);
4719 end loop;
4720 end if;
4721 end Warn_On_Useless_Assignments;
4723 -----------------------------
4724 -- Warnings_Off_Check_Spec --
4725 -----------------------------
4727 function Warnings_Off_Check_Spec (E : Entity_Id) return Boolean is
4728 begin
4729 if Is_Formal (E) and then Present (Spec_Entity (E)) then
4731 -- Note: use of OR here instead of OR ELSE is deliberate, we want
4732 -- to mess with flags on both entities.
4734 return Has_Warnings_Off (E)
4736 Has_Warnings_Off (Spec_Entity (E));
4738 else
4739 return Has_Warnings_Off (E);
4740 end if;
4741 end Warnings_Off_Check_Spec;
4743 end Sem_Warn;