[Ada] Missing error on illegal categorization dependency
[gcc.git] / gcc / ada / sem_ch6.adb
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- S E M _ C H 6 --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-2018, Free Software Foundation, Inc. --
10 -- --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING3. If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license. --
20 -- --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
23 -- --
24 ------------------------------------------------------------------------------
25
26 with Aspects; use Aspects;
27 with Atree; use Atree;
28 with Checks; use Checks;
29 with Contracts; use Contracts;
30 with Debug; use Debug;
31 with Einfo; use Einfo;
32 with Elists; use Elists;
33 with Errout; use Errout;
34 with Expander; use Expander;
35 with Exp_Ch6; use Exp_Ch6;
36 with Exp_Ch7; use Exp_Ch7;
37 with Exp_Ch9; use Exp_Ch9;
38 with Exp_Dbug; use Exp_Dbug;
39 with Exp_Tss; use Exp_Tss;
40 with Exp_Util; use Exp_Util;
41 with Freeze; use Freeze;
42 with Ghost; use Ghost;
43 with Inline; use Inline;
44 with Itypes; use Itypes;
45 with Lib.Xref; use Lib.Xref;
46 with Layout; use Layout;
47 with Namet; use Namet;
48 with Lib; use Lib;
49 with Nlists; use Nlists;
50 with Nmake; use Nmake;
51 with Opt; use Opt;
52 with Output; use Output;
53 with Restrict; use Restrict;
54 with Rident; use Rident;
55 with Rtsfind; use Rtsfind;
56 with Sem; use Sem;
57 with Sem_Aux; use Sem_Aux;
58 with Sem_Cat; use Sem_Cat;
59 with Sem_Ch3; use Sem_Ch3;
60 with Sem_Ch4; use Sem_Ch4;
61 with Sem_Ch5; use Sem_Ch5;
62 with Sem_Ch8; use Sem_Ch8;
63 with Sem_Ch9; use Sem_Ch9;
64 with Sem_Ch10; use Sem_Ch10;
65 with Sem_Ch12; use Sem_Ch12;
66 with Sem_Ch13; use Sem_Ch13;
67 with Sem_Dim; use Sem_Dim;
68 with Sem_Disp; use Sem_Disp;
69 with Sem_Dist; use Sem_Dist;
70 with Sem_Elim; use Sem_Elim;
71 with Sem_Eval; use Sem_Eval;
72 with Sem_Mech; use Sem_Mech;
73 with Sem_Prag; use Sem_Prag;
74 with Sem_Res; use Sem_Res;
75 with Sem_Util; use Sem_Util;
76 with Sem_Type; use Sem_Type;
77 with Sem_Warn; use Sem_Warn;
78 with Sinput; use Sinput;
79 with Stand; use Stand;
80 with Sinfo; use Sinfo;
81 with Sinfo.CN; use Sinfo.CN;
82 with Snames; use Snames;
83 with Stringt; use Stringt;
84 with Style;
85 with Stylesw; use Stylesw;
86 with Tbuild; use Tbuild;
87 with Uintp; use Uintp;
88 with Urealp; use Urealp;
89 with Validsw; use Validsw;
90
91 package body Sem_Ch6 is
92
93 May_Hide_Profile : Boolean := False;
94 -- This flag is used to indicate that two formals in two subprograms being
95 -- checked for conformance differ only in that one is an access parameter
96 -- while the other is of a general access type with the same designated
97 -- type. In this case, if the rest of the signatures match, a call to
98 -- either subprogram may be ambiguous, which is worth a warning. The flag
99 -- is set in Compatible_Types, and the warning emitted in
100 -- New_Overloaded_Entity.
101
102 -----------------------
103 -- Local Subprograms --
104 -----------------------
105
106 procedure Analyze_Function_Return (N : Node_Id);
107 -- Subsidiary to Analyze_Return_Statement. Called when the return statement
108 -- applies to a [generic] function.
109
110 procedure Analyze_Generic_Subprogram_Body (N : Node_Id; Gen_Id : Entity_Id);
111 -- Analyze a generic subprogram body. N is the body to be analyzed, and
112 -- Gen_Id is the defining entity Id for the corresponding spec.
113
114 procedure Analyze_Null_Procedure
115 (N : Node_Id;
116 Is_Completion : out Boolean);
117 -- A null procedure can be a declaration or (Ada 2012) a completion
118
119 procedure Analyze_Return_Statement (N : Node_Id);
120 -- Common processing for simple and extended return statements
121
122 procedure Analyze_Return_Type (N : Node_Id);
123 -- Subsidiary to Process_Formals: analyze subtype mark in function
124 -- specification in a context where the formals are visible and hide
125 -- outer homographs.
126
127 procedure Analyze_Subprogram_Body_Helper (N : Node_Id);
128 -- Does all the real work of Analyze_Subprogram_Body. This is split out so
129 -- that we can use RETURN but not skip the debug output at the end.
130
131 function Can_Override_Operator (Subp : Entity_Id) return Boolean;
132 -- Returns true if Subp can override a predefined operator.
133
134 procedure Check_Conformance
135 (New_Id : Entity_Id;
136 Old_Id : Entity_Id;
137 Ctype : Conformance_Type;
138 Errmsg : Boolean;
139 Conforms : out Boolean;
140 Err_Loc : Node_Id := Empty;
141 Get_Inst : Boolean := False;
142 Skip_Controlling_Formals : Boolean := False);
143 -- Given two entities, this procedure checks that the profiles associated
144 -- with these entities meet the conformance criterion given by the third
145 -- parameter. If they conform, Conforms is set True and control returns
146 -- to the caller. If they do not conform, Conforms is set to False, and
147 -- in addition, if Errmsg is True on the call, proper messages are output
148 -- to complain about the conformance failure. If Err_Loc is non_Empty
149 -- the error messages are placed on Err_Loc, if Err_Loc is empty, then
150 -- error messages are placed on the appropriate part of the construct
151 -- denoted by New_Id. If Get_Inst is true, then this is a mode conformance
152 -- against a formal access-to-subprogram type so Get_Instance_Of must
153 -- be called.
154
155 procedure Check_Limited_Return
156 (N : Node_Id;
157 Expr : Node_Id;
158 R_Type : Entity_Id);
159 -- Check the appropriate (Ada 95 or Ada 2005) rules for returning limited
160 -- types. Used only for simple return statements. Expr is the expression
161 -- returned.
162
163 procedure Check_Subprogram_Order (N : Node_Id);
164 -- N is the N_Subprogram_Body node for a subprogram. This routine applies
165 -- the alpha ordering rule for N if this ordering requirement applicable.
166
167 procedure Check_Returns
168 (HSS : Node_Id;
169 Mode : Character;
170 Err : out Boolean;
171 Proc : Entity_Id := Empty);
172 -- Called to check for missing return statements in a function body, or for
173 -- returns present in a procedure body which has No_Return set. HSS is the
174 -- handled statement sequence for the subprogram body. This procedure
175 -- checks all flow paths to make sure they either have return (Mode = 'F',
176 -- used for functions) or do not have a return (Mode = 'P', used for
177 -- No_Return procedures). The flag Err is set if there are any control
178 -- paths not explicitly terminated by a return in the function case, and is
179 -- True otherwise. Proc is the entity for the procedure case and is used
180 -- in posting the warning message.
181
182 procedure Check_Untagged_Equality (Eq_Op : Entity_Id);
183 -- In Ada 2012, a primitive equality operator on an untagged record type
184 -- must appear before the type is frozen, and have the same visibility as
185 -- that of the type. This procedure checks that this rule is met, and
186 -- otherwise emits an error on the subprogram declaration and a warning
187 -- on the earlier freeze point if it is easy to locate. In Ada 2012 mode,
188 -- this routine outputs errors (or warnings if -gnatd.E is set). In earlier
189 -- versions of Ada, warnings are output if Warn_On_Ada_2012_Incompatibility
190 -- is set, otherwise the call has no effect.
191
192 procedure Enter_Overloaded_Entity (S : Entity_Id);
193 -- This procedure makes S, a new overloaded entity, into the first visible
194 -- entity with that name.
195
196 function Is_Non_Overriding_Operation
197 (Prev_E : Entity_Id;
198 New_E : Entity_Id) return Boolean;
199 -- Enforce the rule given in 12.3(18): a private operation in an instance
200 -- overrides an inherited operation only if the corresponding operation
201 -- was overriding in the generic. This needs to be checked for primitive
202 -- operations of types derived (in the generic unit) from formal private
203 -- or formal derived types.
204
205 procedure Make_Inequality_Operator (S : Entity_Id);
206 -- Create the declaration for an inequality operator that is implicitly
207 -- created by a user-defined equality operator that yields a boolean.
208
209 procedure Set_Formal_Validity (Formal_Id : Entity_Id);
210 -- Formal_Id is an formal parameter entity. This procedure deals with
211 -- setting the proper validity status for this entity, which depends on
212 -- the kind of parameter and the validity checking mode.
213
214 ---------------------------------------------
215 -- Analyze_Abstract_Subprogram_Declaration --
216 ---------------------------------------------
217
218 procedure Analyze_Abstract_Subprogram_Declaration (N : Node_Id) is
219 Scop : constant Entity_Id := Current_Scope;
220 Subp_Id : constant Entity_Id :=
221 Analyze_Subprogram_Specification (Specification (N));
222
223 begin
224 Check_SPARK_05_Restriction ("abstract subprogram is not allowed", N);
225
226 Generate_Definition (Subp_Id);
227
228 -- Set the SPARK mode from the current context (may be overwritten later
229 -- with explicit pragma).
230
231 Set_SPARK_Pragma (Subp_Id, SPARK_Mode_Pragma);
232 Set_SPARK_Pragma_Inherited (Subp_Id);
233
234 -- Preserve relevant elaboration-related attributes of the context which
235 -- are no longer available or very expensive to recompute once analysis,
236 -- resolution, and expansion are over.
237
238 Mark_Elaboration_Attributes
239 (N_Id => Subp_Id,
240 Checks => True);
241
242 Set_Is_Abstract_Subprogram (Subp_Id);
243 New_Overloaded_Entity (Subp_Id);
244 Check_Delayed_Subprogram (Subp_Id);
245
246 Set_Categorization_From_Scope (Subp_Id, Scop);
247
248 if Ekind (Scope (Subp_Id)) = E_Protected_Type then
249 Error_Msg_N ("abstract subprogram not allowed in protected type", N);
250
251 -- Issue a warning if the abstract subprogram is neither a dispatching
252 -- operation nor an operation that overrides an inherited subprogram or
253 -- predefined operator, since this most likely indicates a mistake.
254
255 elsif Warn_On_Redundant_Constructs
256 and then not Is_Dispatching_Operation (Subp_Id)
257 and then not Present (Overridden_Operation (Subp_Id))
258 and then (not Is_Operator_Symbol_Name (Chars (Subp_Id))
259 or else Scop /= Scope (Etype (First_Formal (Subp_Id))))
260 then
261 Error_Msg_N
262 ("abstract subprogram is not dispatching or overriding?r?", N);
263 end if;
264
265 Generate_Reference_To_Formals (Subp_Id);
266 Check_Eliminated (Subp_Id);
267
268 if Has_Aspects (N) then
269 Analyze_Aspect_Specifications (N, Subp_Id);
270 end if;
271 end Analyze_Abstract_Subprogram_Declaration;
272
273 ---------------------------------
274 -- Analyze_Expression_Function --
275 ---------------------------------
276
277 procedure Analyze_Expression_Function (N : Node_Id) is
278 Expr : constant Node_Id := Expression (N);
279 Loc : constant Source_Ptr := Sloc (N);
280 LocX : constant Source_Ptr := Sloc (Expr);
281 Spec : constant Node_Id := Specification (N);
282
283 procedure Freeze_Expr_Types (Def_Id : Entity_Id);
284 -- N is an expression function that is a completion and Def_Id its
285 -- defining entity. Freeze before N all the types referenced by the
286 -- expression of the function.
287
288 -----------------------
289 -- Freeze_Expr_Types --
290 -----------------------
291
292 procedure Freeze_Expr_Types (Def_Id : Entity_Id) is
293 function Cloned_Expression return Node_Id;
294 -- Build a duplicate of the expression of the return statement that
295 -- has no defining entities shared with the original expression.
296
297 function Freeze_Type_Refs (Node : Node_Id) return Traverse_Result;
298 -- Freeze all types referenced in the subtree rooted at Node
299
300 -----------------------
301 -- Cloned_Expression --
302 -----------------------
303
304 function Cloned_Expression return Node_Id is
305 function Clone_Id (Node : Node_Id) return Traverse_Result;
306 -- Tree traversal routine that clones the defining identifier of
307 -- iterator and loop parameter specification nodes.
308
309 --------------
310 -- Clone_Id --
311 --------------
312
313 function Clone_Id (Node : Node_Id) return Traverse_Result is
314 begin
315 if Nkind_In (Node, N_Iterator_Specification,
316 N_Loop_Parameter_Specification)
317 then
318 Set_Defining_Identifier (Node,
319 New_Copy (Defining_Identifier (Node)));
320 end if;
321
322 return OK;
323 end Clone_Id;
324
325 procedure Clone_Def_Ids is new Traverse_Proc (Clone_Id);
326
327 -- Local variable
328
329 Dup_Expr : constant Node_Id := New_Copy_Tree (Expr);
330
331 -- Start of processing for Cloned_Expression
332
333 begin
334 -- We must duplicate the expression with semantic information to
335 -- inherit the decoration of global entities in generic instances.
336 -- Set the parent of the new node to be the parent of the original
337 -- to get the proper context, which is needed for complete error
338 -- reporting and for semantic analysis.
339
340 Set_Parent (Dup_Expr, Parent (Expr));
341
342 -- Replace the defining identifier of iterators and loop param
343 -- specifications by a clone to ensure that the cloned expression
344 -- and the original expression don't have shared identifiers;
345 -- otherwise, as part of the preanalysis of the expression, these
346 -- shared identifiers may be left decorated with itypes which
347 -- will not be available in the tree passed to the backend.
348
349 Clone_Def_Ids (Dup_Expr);
350
351 return Dup_Expr;
352 end Cloned_Expression;
353
354 ----------------------
355 -- Freeze_Type_Refs --
356 ----------------------
357
358 function Freeze_Type_Refs (Node : Node_Id) return Traverse_Result is
359 procedure Check_And_Freeze_Type (Typ : Entity_Id);
360 -- Check that Typ is fully declared and freeze it if so
361
362 ---------------------------
363 -- Check_And_Freeze_Type --
364 ---------------------------
365
366 procedure Check_And_Freeze_Type (Typ : Entity_Id) is
367 begin
368 -- Skip Itypes created by the preanalysis, and itypes whose
369 -- scope is another type (i.e. component subtypes that depend
370 -- on a discriminant),
371
372 if Is_Itype (Typ)
373 and then (Scope_Within_Or_Same (Scope (Typ), Def_Id)
374 or else Is_Type (Scope (Typ)))
375 then
376 return;
377 end if;
378
379 -- This provides a better error message than generating
380 -- primitives whose compilation fails much later. Refine
381 -- the error message if possible.
382
383 Check_Fully_Declared (Typ, Node);
384
385 if Error_Posted (Node) then
386 if Has_Private_Component (Typ)
387 and then not Is_Private_Type (Typ)
388 then
389 Error_Msg_NE ("\type& has private component", Node, Typ);
390 end if;
391
392 else
393 Freeze_Before (N, Typ);
394 end if;
395 end Check_And_Freeze_Type;
396
397 -- Start of processing for Freeze_Type_Refs
398
399 begin
400 -- Check that a type referenced by an entity can be frozen
401
402 if Is_Entity_Name (Node) and then Present (Entity (Node)) then
403 Check_And_Freeze_Type (Etype (Entity (Node)));
404
405 -- Check that the enclosing record type can be frozen
406
407 if Ekind_In (Entity (Node), E_Component, E_Discriminant) then
408 Check_And_Freeze_Type (Scope (Entity (Node)));
409 end if;
410
411 -- Freezing an access type does not freeze the designated type,
412 -- but freezing conversions between access to interfaces requires
413 -- that the interface types themselves be frozen, so that dispatch
414 -- table entities are properly created.
415
416 -- Unclear whether a more general rule is needed ???
417
418 elsif Nkind (Node) = N_Type_Conversion
419 and then Is_Access_Type (Etype (Node))
420 and then Is_Interface (Designated_Type (Etype (Node)))
421 then
422 Check_And_Freeze_Type (Designated_Type (Etype (Node)));
423 end if;
424
425 -- An implicit dereference freezes the designated type. In the
426 -- case of a dispatching call whose controlling argument is an
427 -- access type, the dereference is not made explicit, so we must
428 -- check for such a call and freeze the designated type.
429
430 if Nkind (Node) in N_Has_Etype
431 and then Present (Etype (Node))
432 and then Is_Access_Type (Etype (Node))
433 and then Nkind (Parent (Node)) = N_Function_Call
434 and then Node = Controlling_Argument (Parent (Node))
435 then
436 Check_And_Freeze_Type (Designated_Type (Etype (Node)));
437 end if;
438
439 -- No point in posting several errors on the same expression
440
441 if Serious_Errors_Detected > 0 then
442 return Abandon;
443 else
444 return OK;
445 end if;
446 end Freeze_Type_Refs;
447
448 procedure Freeze_References is new Traverse_Proc (Freeze_Type_Refs);
449
450 -- Local variables
451
452 Saved_First_Entity : constant Entity_Id := First_Entity (Def_Id);
453 Saved_Last_Entity : constant Entity_Id := Last_Entity (Def_Id);
454 Dup_Expr : constant Node_Id := Cloned_Expression;
455
456 -- Start of processing for Freeze_Expr_Types
457
458 begin
459 -- Preanalyze a duplicate of the expression to have available the
460 -- minimum decoration needed to locate referenced unfrozen types
461 -- without adding any decoration to the function expression.
462
463 Push_Scope (Def_Id);
464 Install_Formals (Def_Id);
465
466 Preanalyze_Spec_Expression (Dup_Expr, Etype (Def_Id));
467 End_Scope;
468
469 -- Restore certain attributes of Def_Id since the preanalysis may
470 -- have introduced itypes to this scope, thus modifying attributes
471 -- First_Entity and Last_Entity.
472
473 Set_First_Entity (Def_Id, Saved_First_Entity);
474 Set_Last_Entity (Def_Id, Saved_Last_Entity);
475
476 if Present (Last_Entity (Def_Id)) then
477 Set_Next_Entity (Last_Entity (Def_Id), Empty);
478 end if;
479
480 -- Freeze all types referenced in the expression
481
482 Freeze_References (Dup_Expr);
483 end Freeze_Expr_Types;
484
485 -- Local variables
486
487 Asp : Node_Id;
488 New_Body : Node_Id;
489 New_Spec : Node_Id;
490 Orig_N : Node_Id;
491 Ret : Node_Id;
492
493 Def_Id : Entity_Id := Empty;
494 Prev : Entity_Id;
495 -- If the expression is a completion, Prev is the entity whose
496 -- declaration is completed. Def_Id is needed to analyze the spec.
497
498 -- Start of processing for Analyze_Expression_Function
499
500 begin
501 -- This is one of the occasions on which we transform the tree during
502 -- semantic analysis. If this is a completion, transform the expression
503 -- function into an equivalent subprogram body, and analyze it.
504
505 -- Expression functions are inlined unconditionally. The back-end will
506 -- determine whether this is possible.
507
508 Inline_Processing_Required := True;
509
510 -- Create a specification for the generated body. This must be done
511 -- prior to the analysis of the initial declaration.
512
513 New_Spec := Copy_Subprogram_Spec (Spec);
514 Prev := Current_Entity_In_Scope (Defining_Entity (Spec));
515
516 -- If there are previous overloadable entities with the same name,
517 -- check whether any of them is completed by the expression function.
518 -- In a generic context a formal subprogram has no completion.
519
520 if Present (Prev)
521 and then Is_Overloadable (Prev)
522 and then not Is_Formal_Subprogram (Prev)
523 then
524 Def_Id := Analyze_Subprogram_Specification (Spec);
525 Prev := Find_Corresponding_Spec (N);
526
527 -- The previous entity may be an expression function as well, in
528 -- which case the redeclaration is illegal.
529
530 if Present (Prev)
531 and then Nkind (Original_Node (Unit_Declaration_Node (Prev))) =
532 N_Expression_Function
533 then
534 Error_Msg_Sloc := Sloc (Prev);
535 Error_Msg_N ("& conflicts with declaration#", Def_Id);
536 return;
537 end if;
538 end if;
539
540 Ret := Make_Simple_Return_Statement (LocX, Expr);
541
542 New_Body :=
543 Make_Subprogram_Body (Loc,
544 Specification => New_Spec,
545 Declarations => Empty_List,
546 Handled_Statement_Sequence =>
547 Make_Handled_Sequence_Of_Statements (LocX,
548 Statements => New_List (Ret)));
549 Set_Was_Expression_Function (New_Body);
550
551 -- If the expression completes a generic subprogram, we must create a
552 -- separate node for the body, because at instantiation the original
553 -- node of the generic copy must be a generic subprogram body, and
554 -- cannot be a expression function. Otherwise we just rewrite the
555 -- expression with the non-generic body.
556
557 if Present (Prev) and then Ekind (Prev) = E_Generic_Function then
558 Insert_After (N, New_Body);
559
560 -- Propagate any aspects or pragmas that apply to the expression
561 -- function to the proper body when the expression function acts
562 -- as a completion.
563
564 if Has_Aspects (N) then
565 Move_Aspects (N, To => New_Body);
566 end if;
567
568 Relocate_Pragmas_To_Body (New_Body);
569
570 Rewrite (N, Make_Null_Statement (Loc));
571 Set_Has_Completion (Prev, False);
572 Analyze (N);
573 Analyze (New_Body);
574 Set_Is_Inlined (Prev);
575
576 -- If the expression function is a completion, the previous declaration
577 -- must come from source. We know already that it appears in the current
578 -- scope. The entity itself may be internally created if within a body
579 -- to be inlined.
580
581 elsif Present (Prev)
582 and then Is_Overloadable (Prev)
583 and then not Is_Formal_Subprogram (Prev)
584 and then Comes_From_Source (Parent (Prev))
585 then
586 Set_Has_Completion (Prev, False);
587 Set_Is_Inlined (Prev);
588
589 -- AI12-0103: Expression functions that are a completion freeze their
590 -- expression but don't freeze anything else (unlike regular bodies).
591
592 -- Note that we cannot defer this freezing to the analysis of the
593 -- expression itself, because a freeze node might appear in a nested
594 -- scope, leading to an elaboration order issue in gigi.
595 -- As elsewhere, we do not emit freeze nodes within a generic unit.
596
597 if not Inside_A_Generic then
598 Freeze_Expr_Types (Def_Id);
599 end if;
600
601 -- For navigation purposes, indicate that the function is a body
602
603 Generate_Reference (Prev, Defining_Entity (N), 'b', Force => True);
604 Rewrite (N, New_Body);
605
606 -- Remove any existing aspects from the original node because the act
607 -- of rewriting causes the list to be shared between the two nodes.
608
609 Orig_N := Original_Node (N);
610 Remove_Aspects (Orig_N);
611
612 -- Propagate any pragmas that apply to expression function to the
613 -- proper body when the expression function acts as a completion.
614 -- Aspects are automatically transfered because of node rewriting.
615
616 Relocate_Pragmas_To_Body (N);
617 Analyze (N);
618
619 -- Once the aspects of the generated body have been analyzed, create
620 -- a copy for ASIS purposes and associate it with the original node.
621
622 if Has_Aspects (N) then
623 Set_Aspect_Specifications (Orig_N,
624 New_Copy_List_Tree (Aspect_Specifications (N)));
625 end if;
626
627 -- Prev is the previous entity with the same name, but it is can
628 -- be an unrelated spec that is not completed by the expression
629 -- function. In that case the relevant entity is the one in the body.
630 -- Not clear that the backend can inline it in this case ???
631
632 if Has_Completion (Prev) then
633
634 -- The formals of the expression function are body formals,
635 -- and do not appear in the ali file, which will only contain
636 -- references to the formals of the original subprogram spec.
637
638 declare
639 F1 : Entity_Id;
640 F2 : Entity_Id;
641
642 begin
643 F1 := First_Formal (Def_Id);
644 F2 := First_Formal (Prev);
645
646 while Present (F1) loop
647 Set_Spec_Entity (F1, F2);
648 Next_Formal (F1);
649 Next_Formal (F2);
650 end loop;
651 end;
652
653 else
654 Set_Is_Inlined (Defining_Entity (New_Body));
655 end if;
656
657 -- If this is not a completion, create both a declaration and a body, so
658 -- that the expression can be inlined whenever possible.
659
660 else
661 -- An expression function that is not a completion is not a
662 -- subprogram declaration, and thus cannot appear in a protected
663 -- definition.
664
665 if Nkind (Parent (N)) = N_Protected_Definition then
666 Error_Msg_N
667 ("an expression function is not a legal protected operation", N);
668 end if;
669
670 Rewrite (N, Make_Subprogram_Declaration (Loc, Specification => Spec));
671
672 -- Remove any existing aspects from the original node because the act
673 -- of rewriting causes the list to be shared between the two nodes.
674
675 Orig_N := Original_Node (N);
676 Remove_Aspects (Orig_N);
677
678 Analyze (N);
679
680 -- Once the aspects of the generated spec have been analyzed, create
681 -- a copy for ASIS purposes and associate it with the original node.
682
683 if Has_Aspects (N) then
684 Set_Aspect_Specifications (Orig_N,
685 New_Copy_List_Tree (Aspect_Specifications (N)));
686 end if;
687
688 -- If aspect SPARK_Mode was specified on the body, it needs to be
689 -- repeated both on the generated spec and the body.
690
691 Asp := Find_Aspect (Defining_Unit_Name (Spec), Aspect_SPARK_Mode);
692
693 if Present (Asp) then
694 Asp := New_Copy_Tree (Asp);
695 Set_Analyzed (Asp, False);
696 Set_Aspect_Specifications (New_Body, New_List (Asp));
697 end if;
698
699 Def_Id := Defining_Entity (N);
700 Set_Is_Inlined (Def_Id);
701
702 -- Establish the linkages between the spec and the body. These are
703 -- used when the expression function acts as the prefix of attribute
704 -- 'Access in order to freeze the original expression which has been
705 -- moved to the generated body.
706
707 Set_Corresponding_Body (N, Defining_Entity (New_Body));
708 Set_Corresponding_Spec (New_Body, Def_Id);
709
710 -- Within a generic pre-analyze the original expression for name
711 -- capture. The body is also generated but plays no role in
712 -- this because it is not part of the original source.
713
714 if Inside_A_Generic then
715 Set_Has_Completion (Def_Id);
716 Push_Scope (Def_Id);
717 Install_Formals (Def_Id);
718 Preanalyze_Spec_Expression (Expr, Etype (Def_Id));
719 End_Scope;
720 end if;
721
722 -- To prevent premature freeze action, insert the new body at the end
723 -- of the current declarations, or at the end of the package spec.
724 -- However, resolve usage names now, to prevent spurious visibility
725 -- on later entities. Note that the function can now be called in
726 -- the current declarative part, which will appear to be prior to
727 -- the presence of the body in the code. There are nevertheless no
728 -- order of elaboration issues because all name resolution has taken
729 -- place at the point of declaration.
730
731 declare
732 Decls : List_Id := List_Containing (N);
733 Expr : constant Node_Id := Expression (Ret);
734 Par : constant Node_Id := Parent (Decls);
735 Typ : constant Entity_Id := Etype (Def_Id);
736
737 begin
738 -- If this is a wrapper created for in an instance for a formal
739 -- subprogram, insert body after declaration, to be analyzed when
740 -- the enclosing instance is analyzed.
741
742 if GNATprove_Mode
743 and then Is_Generic_Actual_Subprogram (Def_Id)
744 then
745 Insert_After (N, New_Body);
746
747 else
748 if Nkind (Par) = N_Package_Specification
749 and then Decls = Visible_Declarations (Par)
750 and then Present (Private_Declarations (Par))
751 and then not Is_Empty_List (Private_Declarations (Par))
752 then
753 Decls := Private_Declarations (Par);
754 end if;
755
756 Insert_After (Last (Decls), New_Body);
757
758 -- Preanalyze the expression if not already done above
759
760 if not Inside_A_Generic then
761 Push_Scope (Def_Id);
762 Install_Formals (Def_Id);
763 Preanalyze_Spec_Expression (Expr, Typ);
764 Check_Limited_Return (Original_Node (N), Expr, Typ);
765 End_Scope;
766 end if;
767 end if;
768 end;
769 end if;
770
771 -- Check incorrect use of dynamically tagged expression. This doesn't
772 -- fall out automatically when analyzing the generated function body,
773 -- because Check_Dynamically_Tagged_Expression deliberately ignores
774 -- nodes that don't come from source.
775
776 if Present (Def_Id)
777 and then Nkind (Def_Id) in N_Has_Etype
778 and then Is_Tagged_Type (Etype (Def_Id))
779 then
780 Check_Dynamically_Tagged_Expression
781 (Expr => Expr,
782 Typ => Etype (Def_Id),
783 Related_Nod => Original_Node (N));
784 end if;
785
786 -- If the return expression is a static constant, we suppress warning
787 -- messages on unused formals, which in most cases will be noise.
788
789 Set_Is_Trivial_Subprogram
790 (Defining_Entity (New_Body), Is_OK_Static_Expression (Expr));
791 end Analyze_Expression_Function;
792
793 ----------------------------------------
794 -- Analyze_Extended_Return_Statement --
795 ----------------------------------------
796
797 procedure Analyze_Extended_Return_Statement (N : Node_Id) is
798 begin
799 Check_Compiler_Unit ("extended return statement", N);
800 Analyze_Return_Statement (N);
801 end Analyze_Extended_Return_Statement;
802
803 ----------------------------
804 -- Analyze_Function_Call --
805 ----------------------------
806
807 procedure Analyze_Function_Call (N : Node_Id) is
808 Actuals : constant List_Id := Parameter_Associations (N);
809 Func_Nam : constant Node_Id := Name (N);
810 Actual : Node_Id;
811
812 begin
813 Analyze (Func_Nam);
814
815 -- A call of the form A.B (X) may be an Ada 2005 call, which is
816 -- rewritten as B (A, X). If the rewriting is successful, the call
817 -- has been analyzed and we just return.
818
819 if Nkind (Func_Nam) = N_Selected_Component
820 and then Name (N) /= Func_Nam
821 and then Is_Rewrite_Substitution (N)
822 and then Present (Etype (N))
823 then
824 return;
825 end if;
826
827 -- If error analyzing name, then set Any_Type as result type and return
828
829 if Etype (Func_Nam) = Any_Type then
830 Set_Etype (N, Any_Type);
831 return;
832 end if;
833
834 -- Otherwise analyze the parameters
835
836 if Present (Actuals) then
837 Actual := First (Actuals);
838 while Present (Actual) loop
839 Analyze (Actual);
840 Check_Parameterless_Call (Actual);
841 Next (Actual);
842 end loop;
843 end if;
844
845 Analyze_Call (N);
846 end Analyze_Function_Call;
847
848 -----------------------------
849 -- Analyze_Function_Return --
850 -----------------------------
851
852 procedure Analyze_Function_Return (N : Node_Id) is
853 Loc : constant Source_Ptr := Sloc (N);
854 Stm_Entity : constant Entity_Id := Return_Statement_Entity (N);
855 Scope_Id : constant Entity_Id := Return_Applies_To (Stm_Entity);
856
857 R_Type : constant Entity_Id := Etype (Scope_Id);
858 -- Function result subtype
859
860 procedure Check_Aggregate_Accessibility (Aggr : Node_Id);
861 -- Apply legality rule of 6.5 (5.8) to the access discriminants of an
862 -- aggregate in a return statement.
863
864 procedure Check_Return_Subtype_Indication (Obj_Decl : Node_Id);
865 -- Check that the return_subtype_indication properly matches the result
866 -- subtype of the function, as required by RM-6.5(5.1/2-5.3/2).
867
868 -----------------------------------
869 -- Check_Aggregate_Accessibility --
870 -----------------------------------
871
872 procedure Check_Aggregate_Accessibility (Aggr : Node_Id) is
873 Typ : constant Entity_Id := Etype (Aggr);
874 Assoc : Node_Id;
875 Discr : Entity_Id;
876 Expr : Node_Id;
877 Obj : Node_Id;
878
879 begin
880 if Is_Record_Type (Typ) and then Has_Discriminants (Typ) then
881 Discr := First_Discriminant (Typ);
882 Assoc := First (Component_Associations (Aggr));
883 while Present (Discr) loop
884 if Ekind (Etype (Discr)) = E_Anonymous_Access_Type then
885 Expr := Expression (Assoc);
886
887 if Nkind (Expr) = N_Attribute_Reference
888 and then Attribute_Name (Expr) /= Name_Unrestricted_Access
889 then
890 Obj := Prefix (Expr);
891 while Nkind_In (Obj, N_Indexed_Component,
892 N_Selected_Component)
893 loop
894 Obj := Prefix (Obj);
895 end loop;
896
897 -- Do not check aliased formals or function calls. A
898 -- run-time check may still be needed ???
899
900 if Is_Entity_Name (Obj)
901 and then Comes_From_Source (Obj)
902 then
903 if Is_Formal (Entity (Obj))
904 and then Is_Aliased (Entity (Obj))
905 then
906 null;
907
908 elsif Object_Access_Level (Obj) >
909 Scope_Depth (Scope (Scope_Id))
910 then
911 Error_Msg_N
912 ("access discriminant in return aggregate would "
913 & "be a dangling reference", Obj);
914 end if;
915 end if;
916 end if;
917 end if;
918
919 Next_Discriminant (Discr);
920 end loop;
921 end if;
922 end Check_Aggregate_Accessibility;
923
924 -------------------------------------
925 -- Check_Return_Subtype_Indication --
926 -------------------------------------
927
928 procedure Check_Return_Subtype_Indication (Obj_Decl : Node_Id) is
929 Return_Obj : constant Node_Id := Defining_Identifier (Obj_Decl);
930
931 R_Stm_Type : constant Entity_Id := Etype (Return_Obj);
932 -- Subtype given in the extended return statement (must match R_Type)
933
934 Subtype_Ind : constant Node_Id :=
935 Object_Definition (Original_Node (Obj_Decl));
936
937 procedure Error_No_Match (N : Node_Id);
938 -- Output error messages for case where types do not statically
939 -- match. N is the location for the messages.
940
941 --------------------
942 -- Error_No_Match --
943 --------------------
944
945 procedure Error_No_Match (N : Node_Id) is
946 begin
947 Error_Msg_N
948 ("subtype must statically match function result subtype", N);
949
950 if not Predicates_Match (R_Stm_Type, R_Type) then
951 Error_Msg_Node_2 := R_Type;
952 Error_Msg_NE
953 ("\predicate of& does not match predicate of&",
954 N, R_Stm_Type);
955 end if;
956 end Error_No_Match;
957
958 -- Start of processing for Check_Return_Subtype_Indication
959
960 begin
961 -- First, avoid cascaded errors
962
963 if Error_Posted (Obj_Decl) or else Error_Posted (Subtype_Ind) then
964 return;
965 end if;
966
967 -- "return access T" case; check that the return statement also has
968 -- "access T", and that the subtypes statically match:
969 -- if this is an access to subprogram the signatures must match.
970
971 if Is_Anonymous_Access_Type (R_Type) then
972 if Is_Anonymous_Access_Type (R_Stm_Type) then
973 if Ekind (Designated_Type (R_Stm_Type)) /= E_Subprogram_Type
974 then
975 if Base_Type (Designated_Type (R_Stm_Type)) /=
976 Base_Type (Designated_Type (R_Type))
977 or else not Subtypes_Statically_Match (R_Stm_Type, R_Type)
978 then
979 Error_No_Match (Subtype_Mark (Subtype_Ind));
980 end if;
981
982 else
983 -- For two anonymous access to subprogram types, the types
984 -- themselves must be type conformant.
985
986 if not Conforming_Types
987 (R_Stm_Type, R_Type, Fully_Conformant)
988 then
989 Error_No_Match (Subtype_Ind);
990 end if;
991 end if;
992
993 else
994 Error_Msg_N ("must use anonymous access type", Subtype_Ind);
995 end if;
996
997 -- If the return object is of an anonymous access type, then report
998 -- an error if the function's result type is not also anonymous.
999
1000 elsif Is_Anonymous_Access_Type (R_Stm_Type) then
1001 pragma Assert (not Is_Anonymous_Access_Type (R_Type));
1002 Error_Msg_N
1003 ("anonymous access not allowed for function with named access "
1004 & "result", Subtype_Ind);
1005
1006 -- Subtype indication case: check that the return object's type is
1007 -- covered by the result type, and that the subtypes statically match
1008 -- when the result subtype is constrained. Also handle record types
1009 -- with unknown discriminants for which we have built the underlying
1010 -- record view. Coverage is needed to allow specific-type return
1011 -- objects when the result type is class-wide (see AI05-32).
1012
1013 elsif Covers (Base_Type (R_Type), Base_Type (R_Stm_Type))
1014 or else (Is_Underlying_Record_View (Base_Type (R_Stm_Type))
1015 and then
1016 Covers
1017 (Base_Type (R_Type),
1018 Underlying_Record_View (Base_Type (R_Stm_Type))))
1019 then
1020 -- A null exclusion may be present on the return type, on the
1021 -- function specification, on the object declaration or on the
1022 -- subtype itself.
1023
1024 if Is_Access_Type (R_Type)
1025 and then
1026 (Can_Never_Be_Null (R_Type)
1027 or else Null_Exclusion_Present (Parent (Scope_Id))) /=
1028 Can_Never_Be_Null (R_Stm_Type)
1029 then
1030 Error_No_Match (Subtype_Ind);
1031 end if;
1032
1033 -- AI05-103: for elementary types, subtypes must statically match
1034
1035 if Is_Constrained (R_Type) or else Is_Access_Type (R_Type) then
1036 if not Subtypes_Statically_Match (R_Stm_Type, R_Type) then
1037 Error_No_Match (Subtype_Ind);
1038 end if;
1039 end if;
1040
1041 -- All remaining cases are illegal
1042
1043 -- Note: previous versions of this subprogram allowed the return
1044 -- value to be the ancestor of the return type if the return type
1045 -- was a null extension. This was plainly incorrect.
1046
1047 else
1048 Error_Msg_N
1049 ("wrong type for return_subtype_indication", Subtype_Ind);
1050 end if;
1051 end Check_Return_Subtype_Indication;
1052
1053 ---------------------
1054 -- Local Variables --
1055 ---------------------
1056
1057 Expr : Node_Id;
1058 Obj_Decl : Node_Id := Empty;
1059
1060 -- Start of processing for Analyze_Function_Return
1061
1062 begin
1063 Set_Return_Present (Scope_Id);
1064
1065 if Nkind (N) = N_Simple_Return_Statement then
1066 Expr := Expression (N);
1067
1068 -- Guard against a malformed expression. The parser may have tried to
1069 -- recover but the node is not analyzable.
1070
1071 if Nkind (Expr) = N_Error then
1072 Set_Etype (Expr, Any_Type);
1073 Expander_Mode_Save_And_Set (False);
1074 return;
1075
1076 else
1077 -- The resolution of a controlled [extension] aggregate associated
1078 -- with a return statement creates a temporary which needs to be
1079 -- finalized on function exit. Wrap the return statement inside a
1080 -- block so that the finalization machinery can detect this case.
1081 -- This early expansion is done only when the return statement is
1082 -- not part of a handled sequence of statements.
1083
1084 if Nkind_In (Expr, N_Aggregate,
1085 N_Extension_Aggregate)
1086 and then Needs_Finalization (R_Type)
1087 and then Nkind (Parent (N)) /= N_Handled_Sequence_Of_Statements
1088 then
1089 Rewrite (N,
1090 Make_Block_Statement (Loc,
1091 Handled_Statement_Sequence =>
1092 Make_Handled_Sequence_Of_Statements (Loc,
1093 Statements => New_List (Relocate_Node (N)))));
1094
1095 Analyze (N);
1096 return;
1097 end if;
1098
1099 Analyze (Expr);
1100
1101 -- Ada 2005 (AI-251): If the type of the returned object is
1102 -- an access to an interface type then we add an implicit type
1103 -- conversion to force the displacement of the "this" pointer to
1104 -- reference the secondary dispatch table. We cannot delay the
1105 -- generation of this implicit conversion until the expansion
1106 -- because in this case the type resolution changes the decoration
1107 -- of the expression node to match R_Type; by contrast, if the
1108 -- returned object is a class-wide interface type then it is too
1109 -- early to generate here the implicit conversion since the return
1110 -- statement may be rewritten by the expander into an extended
1111 -- return statement whose expansion takes care of adding the
1112 -- implicit type conversion to displace the pointer to the object.
1113
1114 if Expander_Active
1115 and then Serious_Errors_Detected = 0
1116 and then Is_Access_Type (R_Type)
1117 and then not Nkind_In (Expr, N_Null, N_Raise_Expression)
1118 and then Is_Interface (Designated_Type (R_Type))
1119 and then Is_Progenitor (Designated_Type (R_Type),
1120 Designated_Type (Etype (Expr)))
1121 then
1122 Rewrite (Expr, Convert_To (R_Type, Relocate_Node (Expr)));
1123 Analyze (Expr);
1124 end if;
1125
1126 Resolve (Expr, R_Type);
1127 Check_Limited_Return (N, Expr, R_Type);
1128
1129 if Present (Expr) and then Nkind (Expr) = N_Aggregate then
1130 Check_Aggregate_Accessibility (Expr);
1131 end if;
1132 end if;
1133
1134 -- RETURN only allowed in SPARK as the last statement in function
1135
1136 if Nkind (Parent (N)) /= N_Handled_Sequence_Of_Statements
1137 and then
1138 (Nkind (Parent (Parent (N))) /= N_Subprogram_Body
1139 or else Present (Next (N)))
1140 then
1141 Check_SPARK_05_Restriction
1142 ("RETURN should be the last statement in function", N);
1143 end if;
1144
1145 else
1146 Check_SPARK_05_Restriction ("extended RETURN is not allowed", N);
1147 Obj_Decl := Last (Return_Object_Declarations (N));
1148
1149 -- Analyze parts specific to extended_return_statement:
1150
1151 declare
1152 Has_Aliased : constant Boolean := Aliased_Present (Obj_Decl);
1153 HSS : constant Node_Id := Handled_Statement_Sequence (N);
1154
1155 begin
1156 Expr := Expression (Obj_Decl);
1157
1158 -- Note: The check for OK_For_Limited_Init will happen in
1159 -- Analyze_Object_Declaration; we treat it as a normal
1160 -- object declaration.
1161
1162 Set_Is_Return_Object (Defining_Identifier (Obj_Decl));
1163 Analyze (Obj_Decl);
1164
1165 Check_Return_Subtype_Indication (Obj_Decl);
1166
1167 if Present (HSS) then
1168 Analyze (HSS);
1169
1170 if Present (Exception_Handlers (HSS)) then
1171
1172 -- ???Has_Nested_Block_With_Handler needs to be set.
1173 -- Probably by creating an actual N_Block_Statement.
1174 -- Probably in Expand.
1175
1176 null;
1177 end if;
1178 end if;
1179
1180 -- Mark the return object as referenced, since the return is an
1181 -- implicit reference of the object.
1182
1183 Set_Referenced (Defining_Identifier (Obj_Decl));
1184
1185 Check_References (Stm_Entity);
1186
1187 -- Check RM 6.5 (5.9/3)
1188
1189 if Has_Aliased then
1190 if Ada_Version < Ada_2012 then
1191
1192 -- Shouldn't this test Warn_On_Ada_2012_Compatibility ???
1193 -- Can it really happen (extended return???)
1194
1195 Error_Msg_N
1196 ("aliased only allowed for limited return objects "
1197 & "in Ada 2012??", N);
1198
1199 elsif not Is_Limited_View (R_Type) then
1200 Error_Msg_N
1201 ("aliased only allowed for limited return objects", N);
1202 end if;
1203 end if;
1204 end;
1205 end if;
1206
1207 -- Case of Expr present
1208
1209 if Present (Expr) then
1210
1211 -- Defend against previous errors
1212
1213 if Nkind (Expr) = N_Empty
1214 or else No (Etype (Expr))
1215 then
1216 return;
1217 end if;
1218
1219 -- Apply constraint check. Note that this is done before the implicit
1220 -- conversion of the expression done for anonymous access types to
1221 -- ensure correct generation of the null-excluding check associated
1222 -- with null-excluding expressions found in return statements.
1223
1224 Apply_Constraint_Check (Expr, R_Type);
1225
1226 -- Ada 2005 (AI-318-02): When the result type is an anonymous access
1227 -- type, apply an implicit conversion of the expression to that type
1228 -- to force appropriate static and run-time accessibility checks.
1229
1230 if Ada_Version >= Ada_2005
1231 and then Ekind (R_Type) = E_Anonymous_Access_Type
1232 then
1233 Rewrite (Expr, Convert_To (R_Type, Relocate_Node (Expr)));
1234 Analyze_And_Resolve (Expr, R_Type);
1235
1236 -- If this is a local anonymous access to subprogram, the
1237 -- accessibility check can be applied statically. The return is
1238 -- illegal if the access type of the return expression is declared
1239 -- inside of the subprogram (except if it is the subtype indication
1240 -- of an extended return statement).
1241
1242 elsif Ekind (R_Type) = E_Anonymous_Access_Subprogram_Type then
1243 if not Comes_From_Source (Current_Scope)
1244 or else Ekind (Current_Scope) = E_Return_Statement
1245 then
1246 null;
1247
1248 elsif
1249 Scope_Depth (Scope (Etype (Expr))) >= Scope_Depth (Scope_Id)
1250 then
1251 Error_Msg_N ("cannot return local access to subprogram", N);
1252 end if;
1253
1254 -- The expression cannot be of a formal incomplete type
1255
1256 elsif Ekind (Etype (Expr)) = E_Incomplete_Type
1257 and then Is_Generic_Type (Etype (Expr))
1258 then
1259 Error_Msg_N
1260 ("cannot return expression of a formal incomplete type", N);
1261 end if;
1262
1263 -- If the result type is class-wide, then check that the return
1264 -- expression's type is not declared at a deeper level than the
1265 -- function (RM05-6.5(5.6/2)).
1266
1267 if Ada_Version >= Ada_2005
1268 and then Is_Class_Wide_Type (R_Type)
1269 then
1270 if Type_Access_Level (Etype (Expr)) >
1271 Subprogram_Access_Level (Scope_Id)
1272 then
1273 Error_Msg_N
1274 ("level of return expression type is deeper than "
1275 & "class-wide function!", Expr);
1276 end if;
1277 end if;
1278
1279 -- Check incorrect use of dynamically tagged expression
1280
1281 if Is_Tagged_Type (R_Type) then
1282 Check_Dynamically_Tagged_Expression
1283 (Expr => Expr,
1284 Typ => R_Type,
1285 Related_Nod => N);
1286 end if;
1287
1288 -- ??? A real run-time accessibility check is needed in cases
1289 -- involving dereferences of access parameters. For now we just
1290 -- check the static cases.
1291
1292 if (Ada_Version < Ada_2005 or else Debug_Flag_Dot_L)
1293 and then Is_Limited_View (Etype (Scope_Id))
1294 and then Object_Access_Level (Expr) >
1295 Subprogram_Access_Level (Scope_Id)
1296 then
1297 -- Suppress the message in a generic, where the rewriting
1298 -- is irrelevant.
1299
1300 if Inside_A_Generic then
1301 null;
1302
1303 else
1304 Rewrite (N,
1305 Make_Raise_Program_Error (Loc,
1306 Reason => PE_Accessibility_Check_Failed));
1307 Analyze (N);
1308
1309 Error_Msg_Warn := SPARK_Mode /= On;
1310 Error_Msg_N ("cannot return a local value by reference<<", N);
1311 Error_Msg_NE ("\& [<<", N, Standard_Program_Error);
1312 end if;
1313 end if;
1314
1315 if Known_Null (Expr)
1316 and then Nkind (Parent (Scope_Id)) = N_Function_Specification
1317 and then Null_Exclusion_Present (Parent (Scope_Id))
1318 then
1319 Apply_Compile_Time_Constraint_Error
1320 (N => Expr,
1321 Msg => "(Ada 2005) null not allowed for "
1322 & "null-excluding return??",
1323 Reason => CE_Null_Not_Allowed);
1324 end if;
1325
1326 -- RM 6.5 (5.4/3): accessibility checks also apply if the return object
1327 -- has no initializing expression.
1328
1329 elsif Ada_Version > Ada_2005 and then Is_Class_Wide_Type (R_Type) then
1330 if Type_Access_Level (Etype (Defining_Identifier (Obj_Decl))) >
1331 Subprogram_Access_Level (Scope_Id)
1332 then
1333 Error_Msg_N
1334 ("level of return expression type is deeper than "
1335 & "class-wide function!", Obj_Decl);
1336 end if;
1337 end if;
1338 end Analyze_Function_Return;
1339
1340 -------------------------------------
1341 -- Analyze_Generic_Subprogram_Body --
1342 -------------------------------------
1343
1344 procedure Analyze_Generic_Subprogram_Body
1345 (N : Node_Id;
1346 Gen_Id : Entity_Id)
1347 is
1348 Gen_Decl : constant Node_Id := Unit_Declaration_Node (Gen_Id);
1349 Kind : constant Entity_Kind := Ekind (Gen_Id);
1350 Body_Id : Entity_Id;
1351 New_N : Node_Id;
1352 Spec : Node_Id;
1353
1354 begin
1355 -- Copy body and disable expansion while analyzing the generic For a
1356 -- stub, do not copy the stub (which would load the proper body), this
1357 -- will be done when the proper body is analyzed.
1358
1359 if Nkind (N) /= N_Subprogram_Body_Stub then
1360 New_N := Copy_Generic_Node (N, Empty, Instantiating => False);
1361 Rewrite (N, New_N);
1362
1363 -- Once the contents of the generic copy and the template are
1364 -- swapped, do the same for their respective aspect specifications.
1365
1366 Exchange_Aspects (N, New_N);
1367
1368 -- Collect all contract-related source pragmas found within the
1369 -- template and attach them to the contract of the subprogram body.
1370 -- This contract is used in the capture of global references within
1371 -- annotations.
1372
1373 Create_Generic_Contract (N);
1374
1375 Start_Generic;
1376 end if;
1377
1378 Spec := Specification (N);
1379
1380 -- Within the body of the generic, the subprogram is callable, and
1381 -- behaves like the corresponding non-generic unit.
1382
1383 Body_Id := Defining_Entity (Spec);
1384
1385 if Kind = E_Generic_Procedure
1386 and then Nkind (Spec) /= N_Procedure_Specification
1387 then
1388 Error_Msg_N ("invalid body for generic procedure ", Body_Id);
1389 return;
1390
1391 elsif Kind = E_Generic_Function
1392 and then Nkind (Spec) /= N_Function_Specification
1393 then
1394 Error_Msg_N ("invalid body for generic function ", Body_Id);
1395 return;
1396 end if;
1397
1398 Set_Corresponding_Body (Gen_Decl, Body_Id);
1399
1400 if Has_Completion (Gen_Id)
1401 and then Nkind (Parent (N)) /= N_Subunit
1402 then
1403 Error_Msg_N ("duplicate generic body", N);
1404 return;
1405 else
1406 Set_Has_Completion (Gen_Id);
1407 end if;
1408
1409 if Nkind (N) = N_Subprogram_Body_Stub then
1410 Set_Ekind (Defining_Entity (Specification (N)), Kind);
1411 else
1412 Set_Corresponding_Spec (N, Gen_Id);
1413 end if;
1414
1415 if Nkind (Parent (N)) = N_Compilation_Unit then
1416 Set_Cunit_Entity (Current_Sem_Unit, Defining_Entity (N));
1417 end if;
1418
1419 -- Make generic parameters immediately visible in the body. They are
1420 -- needed to process the formals declarations. Then make the formals
1421 -- visible in a separate step.
1422
1423 Push_Scope (Gen_Id);
1424
1425 declare
1426 E : Entity_Id;
1427 First_Ent : Entity_Id;
1428
1429 begin
1430 First_Ent := First_Entity (Gen_Id);
1431
1432 E := First_Ent;
1433 while Present (E) and then not Is_Formal (E) loop
1434 Install_Entity (E);
1435 Next_Entity (E);
1436 end loop;
1437
1438 Set_Use (Generic_Formal_Declarations (Gen_Decl));
1439
1440 -- Now generic formals are visible, and the specification can be
1441 -- analyzed, for subsequent conformance check.
1442
1443 Body_Id := Analyze_Subprogram_Specification (Spec);
1444
1445 -- Make formal parameters visible
1446
1447 if Present (E) then
1448
1449 -- E is the first formal parameter, we loop through the formals
1450 -- installing them so that they will be visible.
1451
1452 Set_First_Entity (Gen_Id, E);
1453 while Present (E) loop
1454 Install_Entity (E);
1455 Next_Formal (E);
1456 end loop;
1457 end if;
1458
1459 -- Visible generic entity is callable within its own body
1460
1461 Set_Ekind (Gen_Id, Ekind (Body_Id));
1462 Set_Ekind (Body_Id, E_Subprogram_Body);
1463 Set_Convention (Body_Id, Convention (Gen_Id));
1464 Set_Is_Obsolescent (Body_Id, Is_Obsolescent (Gen_Id));
1465 Set_Scope (Body_Id, Scope (Gen_Id));
1466
1467 Check_Fully_Conformant (Body_Id, Gen_Id, Body_Id);
1468
1469 if Nkind (N) = N_Subprogram_Body_Stub then
1470
1471 -- No body to analyze, so restore state of generic unit
1472
1473 Set_Ekind (Gen_Id, Kind);
1474 Set_Ekind (Body_Id, Kind);
1475
1476 if Present (First_Ent) then
1477 Set_First_Entity (Gen_Id, First_Ent);
1478 end if;
1479
1480 End_Scope;
1481 return;
1482 end if;
1483
1484 -- If this is a compilation unit, it must be made visible explicitly,
1485 -- because the compilation of the declaration, unlike other library
1486 -- unit declarations, does not. If it is not a unit, the following
1487 -- is redundant but harmless.
1488
1489 Set_Is_Immediately_Visible (Gen_Id);
1490 Reference_Body_Formals (Gen_Id, Body_Id);
1491
1492 if Is_Child_Unit (Gen_Id) then
1493 Generate_Reference (Gen_Id, Scope (Gen_Id), 'k', False);
1494 end if;
1495
1496 Set_Actual_Subtypes (N, Current_Scope);
1497
1498 Set_SPARK_Pragma (Body_Id, SPARK_Mode_Pragma);
1499 Set_SPARK_Pragma_Inherited (Body_Id);
1500
1501 -- Analyze any aspect specifications that appear on the generic
1502 -- subprogram body.
1503
1504 if Has_Aspects (N) then
1505 Analyze_Aspects_On_Subprogram_Body_Or_Stub (N);
1506 end if;
1507
1508 Analyze_Declarations (Declarations (N));
1509 Check_Completion;
1510
1511 -- Process the contract of the subprogram body after all declarations
1512 -- have been analyzed. This ensures that any contract-related pragmas
1513 -- are available through the N_Contract node of the body.
1514
1515 Analyze_Entry_Or_Subprogram_Body_Contract (Body_Id);
1516
1517 Analyze (Handled_Statement_Sequence (N));
1518 Save_Global_References (Original_Node (N));
1519
1520 -- Prior to exiting the scope, include generic formals again (if any
1521 -- are present) in the set of local entities.
1522
1523 if Present (First_Ent) then
1524 Set_First_Entity (Gen_Id, First_Ent);
1525 end if;
1526
1527 Check_References (Gen_Id);
1528 end;
1529
1530 Process_End_Label (Handled_Statement_Sequence (N), 't', Current_Scope);
1531 Update_Use_Clause_Chain;
1532 Validate_Categorization_Dependency (N, Gen_Id);
1533 End_Scope;
1534 Check_Subprogram_Order (N);
1535
1536 -- Outside of its body, unit is generic again
1537
1538 Set_Ekind (Gen_Id, Kind);
1539 Generate_Reference (Gen_Id, Body_Id, 'b', Set_Ref => False);
1540
1541 if Style_Check then
1542 Style.Check_Identifier (Body_Id, Gen_Id);
1543 end if;
1544
1545 End_Generic;
1546 end Analyze_Generic_Subprogram_Body;
1547
1548 ----------------------------
1549 -- Analyze_Null_Procedure --
1550 ----------------------------
1551
1552 procedure Analyze_Null_Procedure
1553 (N : Node_Id;
1554 Is_Completion : out Boolean)
1555 is
1556 Loc : constant Source_Ptr := Sloc (N);
1557 Spec : constant Node_Id := Specification (N);
1558 Designator : Entity_Id;
1559 Form : Node_Id;
1560 Null_Body : Node_Id := Empty;
1561 Null_Stmt : Node_Id := Null_Statement (Spec);
1562 Prev : Entity_Id;
1563
1564 begin
1565 -- Capture the profile of the null procedure before analysis, for
1566 -- expansion at the freeze point and at each point of call. The body is
1567 -- used if the procedure has preconditions, or if it is a completion. In
1568 -- the first case the body is analyzed at the freeze point, in the other
1569 -- it replaces the null procedure declaration.
1570
1571 -- For a null procedure that comes from source, a NULL statement is
1572 -- provided by the parser, which carries the source location of the
1573 -- NULL keyword, and has Comes_From_Source set. For a null procedure
1574 -- from expansion, create one now.
1575
1576 if No (Null_Stmt) then
1577 Null_Stmt := Make_Null_Statement (Loc);
1578 end if;
1579
1580 Null_Body :=
1581 Make_Subprogram_Body (Loc,
1582 Specification => New_Copy_Tree (Spec),
1583 Declarations => New_List,
1584 Handled_Statement_Sequence =>
1585 Make_Handled_Sequence_Of_Statements (Loc,
1586 Statements => New_List (Null_Stmt)));
1587
1588 -- Create new entities for body and formals
1589
1590 Set_Defining_Unit_Name (Specification (Null_Body),
1591 Make_Defining_Identifier
1592 (Sloc (Defining_Entity (N)),
1593 Chars (Defining_Entity (N))));
1594
1595 Form := First (Parameter_Specifications (Specification (Null_Body)));
1596 while Present (Form) loop
1597 Set_Defining_Identifier (Form,
1598 Make_Defining_Identifier
1599 (Sloc (Defining_Identifier (Form)),
1600 Chars (Defining_Identifier (Form))));
1601 Next (Form);
1602 end loop;
1603
1604 -- Determine whether the null procedure may be a completion of a generic
1605 -- suprogram, in which case we use the new null body as the completion
1606 -- and set minimal semantic information on the original declaration,
1607 -- which is rewritten as a null statement.
1608
1609 Prev := Current_Entity_In_Scope (Defining_Entity (Spec));
1610
1611 if Present (Prev) and then Is_Generic_Subprogram (Prev) then
1612 Insert_Before (N, Null_Body);
1613 Set_Ekind (Defining_Entity (N), Ekind (Prev));
1614
1615 Rewrite (N, Make_Null_Statement (Loc));
1616 Analyze_Generic_Subprogram_Body (Null_Body, Prev);
1617 Is_Completion := True;
1618 return;
1619
1620 else
1621 -- Resolve the types of the formals now, because the freeze point may
1622 -- appear in a different context, e.g. an instantiation.
1623
1624 Form := First (Parameter_Specifications (Specification (Null_Body)));
1625 while Present (Form) loop
1626 if Nkind (Parameter_Type (Form)) /= N_Access_Definition then
1627 Find_Type (Parameter_Type (Form));
1628
1629 elsif No (Access_To_Subprogram_Definition
1630 (Parameter_Type (Form)))
1631 then
1632 Find_Type (Subtype_Mark (Parameter_Type (Form)));
1633
1634 -- The case of a null procedure with a formal that is an
1635 -- access-to-subprogram type, and that is used as an actual
1636 -- in an instantiation is left to the enthusiastic reader.
1637
1638 else
1639 null;
1640 end if;
1641
1642 Next (Form);
1643 end loop;
1644 end if;
1645
1646 -- If there are previous overloadable entities with the same name, check
1647 -- whether any of them is completed by the null procedure.
1648
1649 if Present (Prev) and then Is_Overloadable (Prev) then
1650 Designator := Analyze_Subprogram_Specification (Spec);
1651 Prev := Find_Corresponding_Spec (N);
1652 end if;
1653
1654 if No (Prev) or else not Comes_From_Source (Prev) then
1655 Designator := Analyze_Subprogram_Specification (Spec);
1656 Set_Has_Completion (Designator);
1657
1658 -- Signal to caller that this is a procedure declaration
1659
1660 Is_Completion := False;
1661
1662 -- Null procedures are always inlined, but generic formal subprograms
1663 -- which appear as such in the internal instance of formal packages,
1664 -- need no completion and are not marked Inline.
1665
1666 if Expander_Active
1667 and then Nkind (N) /= N_Formal_Concrete_Subprogram_Declaration
1668 then
1669 Set_Corresponding_Body (N, Defining_Entity (Null_Body));
1670 Set_Body_To_Inline (N, Null_Body);
1671 Set_Is_Inlined (Designator);
1672 end if;
1673
1674 else
1675 -- The null procedure is a completion. We unconditionally rewrite
1676 -- this as a null body (even if expansion is not active), because
1677 -- there are various error checks that are applied on this body
1678 -- when it is analyzed (e.g. correct aspect placement).
1679
1680 if Has_Completion (Prev) then
1681 Error_Msg_Sloc := Sloc (Prev);
1682 Error_Msg_NE ("duplicate body for & declared#", N, Prev);
1683 end if;
1684
1685 Check_Previous_Null_Procedure (N, Prev);
1686
1687 Is_Completion := True;
1688 Rewrite (N, Null_Body);
1689 Analyze (N);
1690 end if;
1691 end Analyze_Null_Procedure;
1692
1693 -----------------------------
1694 -- Analyze_Operator_Symbol --
1695 -----------------------------
1696
1697 -- An operator symbol such as "+" or "and" may appear in context where the
1698 -- literal denotes an entity name, such as "+"(x, y) or in context when it
1699 -- is just a string, as in (conjunction = "or"). In these cases the parser
1700 -- generates this node, and the semantics does the disambiguation. Other
1701 -- such case are actuals in an instantiation, the generic unit in an
1702 -- instantiation, and pragma arguments.
1703
1704 procedure Analyze_Operator_Symbol (N : Node_Id) is
1705 Par : constant Node_Id := Parent (N);
1706
1707 begin
1708 if (Nkind (Par) = N_Function_Call and then N = Name (Par))
1709 or else Nkind (Par) = N_Function_Instantiation
1710 or else (Nkind (Par) = N_Indexed_Component and then N = Prefix (Par))
1711 or else (Nkind (Par) = N_Pragma_Argument_Association
1712 and then not Is_Pragma_String_Literal (Par))
1713 or else Nkind (Par) = N_Subprogram_Renaming_Declaration
1714 or else (Nkind (Par) = N_Attribute_Reference
1715 and then Attribute_Name (Par) /= Name_Value)
1716 then
1717 Find_Direct_Name (N);
1718
1719 else
1720 Change_Operator_Symbol_To_String_Literal (N);
1721 Analyze (N);
1722 end if;
1723 end Analyze_Operator_Symbol;
1724
1725 -----------------------------------
1726 -- Analyze_Parameter_Association --
1727 -----------------------------------
1728
1729 procedure Analyze_Parameter_Association (N : Node_Id) is
1730 begin
1731 Analyze (Explicit_Actual_Parameter (N));
1732 end Analyze_Parameter_Association;
1733
1734 ----------------------------
1735 -- Analyze_Procedure_Call --
1736 ----------------------------
1737
1738 -- WARNING: This routine manages Ghost regions. Return statements must be
1739 -- replaced by gotos which jump to the end of the routine and restore the
1740 -- Ghost mode.
1741
1742 procedure Analyze_Procedure_Call (N : Node_Id) is
1743 procedure Analyze_Call_And_Resolve;
1744 -- Do Analyze and Resolve calls for procedure call. At the end, check
1745 -- for illegal order dependence.
1746 -- ??? where is the check for illegal order dependencies?
1747
1748 ------------------------------
1749 -- Analyze_Call_And_Resolve --
1750 ------------------------------
1751
1752 procedure Analyze_Call_And_Resolve is
1753 begin
1754 if Nkind (N) = N_Procedure_Call_Statement then
1755 Analyze_Call (N);
1756 Resolve (N, Standard_Void_Type);
1757 else
1758 Analyze (N);
1759 end if;
1760 end Analyze_Call_And_Resolve;
1761
1762 -- Local variables
1763
1764 Actuals : constant List_Id := Parameter_Associations (N);
1765 Loc : constant Source_Ptr := Sloc (N);
1766 P : constant Node_Id := Name (N);
1767
1768 Saved_GM : constant Ghost_Mode_Type := Ghost_Mode;
1769 -- Save the Ghost mode to restore on exit
1770
1771 Actual : Node_Id;
1772 New_N : Node_Id;
1773
1774 -- Start of processing for Analyze_Procedure_Call
1775
1776 begin
1777 -- The syntactic construct: PREFIX ACTUAL_PARAMETER_PART can denote
1778 -- a procedure call or an entry call. The prefix may denote an access
1779 -- to subprogram type, in which case an implicit dereference applies.
1780 -- If the prefix is an indexed component (without implicit dereference)
1781 -- then the construct denotes a call to a member of an entire family.
1782 -- If the prefix is a simple name, it may still denote a call to a
1783 -- parameterless member of an entry family. Resolution of these various
1784 -- interpretations is delicate.
1785
1786 -- Do not analyze machine code statements to avoid rejecting them in
1787 -- CodePeer mode.
1788
1789 if CodePeer_Mode and then Nkind (P) = N_Qualified_Expression then
1790 Set_Etype (P, Standard_Void_Type);
1791 else
1792 Analyze (P);
1793 end if;
1794
1795 -- If this is a call of the form Obj.Op, the call may have been analyzed
1796 -- and possibly rewritten into a block, in which case we are done.
1797
1798 if Analyzed (N) then
1799 return;
1800
1801 -- If there is an error analyzing the name (which may have been
1802 -- rewritten if the original call was in prefix notation) then error
1803 -- has been emitted already, mark node and return.
1804
1805 elsif Error_Posted (N) or else Etype (Name (N)) = Any_Type then
1806 Set_Etype (N, Any_Type);
1807 return;
1808 end if;
1809
1810 -- A procedure call is Ghost when its name denotes a Ghost procedure.
1811 -- Set the mode now to ensure that any nodes generated during analysis
1812 -- and expansion are properly marked as Ghost.
1813
1814 Mark_And_Set_Ghost_Procedure_Call (N);
1815
1816 -- Otherwise analyze the parameters
1817
1818 if Present (Actuals) then
1819 Actual := First (Actuals);
1820
1821 while Present (Actual) loop
1822 Analyze (Actual);
1823 Check_Parameterless_Call (Actual);
1824 Next (Actual);
1825 end loop;
1826 end if;
1827
1828 -- Special processing for Elab_Spec, Elab_Body and Elab_Subp_Body calls
1829
1830 if Nkind (P) = N_Attribute_Reference
1831 and then Nam_In (Attribute_Name (P), Name_Elab_Spec,
1832 Name_Elab_Body,
1833 Name_Elab_Subp_Body)
1834 then
1835 if Present (Actuals) then
1836 Error_Msg_N
1837 ("no parameters allowed for this call", First (Actuals));
1838 goto Leave;
1839 end if;
1840
1841 Set_Etype (N, Standard_Void_Type);
1842 Set_Analyzed (N);
1843
1844 elsif Is_Entity_Name (P)
1845 and then Is_Record_Type (Etype (Entity (P)))
1846 and then Remote_AST_I_Dereference (P)
1847 then
1848 goto Leave;
1849
1850 elsif Is_Entity_Name (P)
1851 and then Ekind (Entity (P)) /= E_Entry_Family
1852 then
1853 if Is_Access_Type (Etype (P))
1854 and then Ekind (Designated_Type (Etype (P))) = E_Subprogram_Type
1855 and then No (Actuals)
1856 and then Comes_From_Source (N)
1857 then
1858 Error_Msg_N ("missing explicit dereference in call", N);
1859 end if;
1860
1861 Analyze_Call_And_Resolve;
1862
1863 -- If the prefix is the simple name of an entry family, this is a
1864 -- parameterless call from within the task body itself.
1865
1866 elsif Is_Entity_Name (P)
1867 and then Nkind (P) = N_Identifier
1868 and then Ekind (Entity (P)) = E_Entry_Family
1869 and then Present (Actuals)
1870 and then No (Next (First (Actuals)))
1871 then
1872 -- Can be call to parameterless entry family. What appears to be the
1873 -- sole argument is in fact the entry index. Rewrite prefix of node
1874 -- accordingly. Source representation is unchanged by this
1875 -- transformation.
1876
1877 New_N :=
1878 Make_Indexed_Component (Loc,
1879 Prefix =>
1880 Make_Selected_Component (Loc,
1881 Prefix => New_Occurrence_Of (Scope (Entity (P)), Loc),
1882 Selector_Name => New_Occurrence_Of (Entity (P), Loc)),
1883 Expressions => Actuals);
1884 Set_Name (N, New_N);
1885 Set_Etype (New_N, Standard_Void_Type);
1886 Set_Parameter_Associations (N, No_List);
1887 Analyze_Call_And_Resolve;
1888
1889 elsif Nkind (P) = N_Explicit_Dereference then
1890 if Ekind (Etype (P)) = E_Subprogram_Type then
1891 Analyze_Call_And_Resolve;
1892 else
1893 Error_Msg_N ("expect access to procedure in call", P);
1894 end if;
1895
1896 -- The name can be a selected component or an indexed component that
1897 -- yields an access to subprogram. Such a prefix is legal if the call
1898 -- has parameter associations.
1899
1900 elsif Is_Access_Type (Etype (P))
1901 and then Ekind (Designated_Type (Etype (P))) = E_Subprogram_Type
1902 then
1903 if Present (Actuals) then
1904 Analyze_Call_And_Resolve;
1905 else
1906 Error_Msg_N ("missing explicit dereference in call ", N);
1907 end if;
1908
1909 -- If not an access to subprogram, then the prefix must resolve to the
1910 -- name of an entry, entry family, or protected operation.
1911
1912 -- For the case of a simple entry call, P is a selected component where
1913 -- the prefix is the task and the selector name is the entry. A call to
1914 -- a protected procedure will have the same syntax. If the protected
1915 -- object contains overloaded operations, the entity may appear as a
1916 -- function, the context will select the operation whose type is Void.
1917
1918 elsif Nkind (P) = N_Selected_Component
1919 and then Ekind_In (Entity (Selector_Name (P)), E_Entry,
1920 E_Function,
1921 E_Procedure)
1922 then
1923 -- When front-end inlining is enabled, as with SPARK_Mode, a call
1924 -- in prefix notation may still be missing its controlling argument,
1925 -- so perform the transformation now.
1926
1927 if SPARK_Mode = On and then In_Inlined_Body then
1928 declare
1929 Subp : constant Entity_Id := Entity (Selector_Name (P));
1930 Typ : constant Entity_Id := Etype (Prefix (P));
1931
1932 begin
1933 if Is_Tagged_Type (Typ)
1934 and then Present (First_Formal (Subp))
1935 and then (Etype (First_Formal (Subp)) = Typ
1936 or else
1937 Class_Wide_Type (Etype (First_Formal (Subp))) = Typ)
1938 and then Try_Object_Operation (P)
1939 then
1940 return;
1941
1942 else
1943 Analyze_Call_And_Resolve;
1944 end if;
1945 end;
1946
1947 else
1948 Analyze_Call_And_Resolve;
1949 end if;
1950
1951 elsif Nkind (P) = N_Selected_Component
1952 and then Ekind (Entity (Selector_Name (P))) = E_Entry_Family
1953 and then Present (Actuals)
1954 and then No (Next (First (Actuals)))
1955 then
1956 -- Can be call to parameterless entry family. What appears to be the
1957 -- sole argument is in fact the entry index. Rewrite prefix of node
1958 -- accordingly. Source representation is unchanged by this
1959 -- transformation.
1960
1961 New_N :=
1962 Make_Indexed_Component (Loc,
1963 Prefix => New_Copy (P),
1964 Expressions => Actuals);
1965 Set_Name (N, New_N);
1966 Set_Etype (New_N, Standard_Void_Type);
1967 Set_Parameter_Associations (N, No_List);
1968 Analyze_Call_And_Resolve;
1969
1970 -- For the case of a reference to an element of an entry family, P is
1971 -- an indexed component whose prefix is a selected component (task and
1972 -- entry family), and whose index is the entry family index.
1973
1974 elsif Nkind (P) = N_Indexed_Component
1975 and then Nkind (Prefix (P)) = N_Selected_Component
1976 and then Ekind (Entity (Selector_Name (Prefix (P)))) = E_Entry_Family
1977 then
1978 Analyze_Call_And_Resolve;
1979
1980 -- If the prefix is the name of an entry family, it is a call from
1981 -- within the task body itself.
1982
1983 elsif Nkind (P) = N_Indexed_Component
1984 and then Nkind (Prefix (P)) = N_Identifier
1985 and then Ekind (Entity (Prefix (P))) = E_Entry_Family
1986 then
1987 New_N :=
1988 Make_Selected_Component (Loc,
1989 Prefix =>
1990 New_Occurrence_Of (Scope (Entity (Prefix (P))), Loc),
1991 Selector_Name => New_Occurrence_Of (Entity (Prefix (P)), Loc));
1992 Rewrite (Prefix (P), New_N);
1993 Analyze (P);
1994 Analyze_Call_And_Resolve;
1995
1996 -- In Ada 2012. a qualified expression is a name, but it cannot be a
1997 -- procedure name, so the construct can only be a qualified expression.
1998
1999 elsif Nkind (P) = N_Qualified_Expression
2000 and then Ada_Version >= Ada_2012
2001 then
2002 Rewrite (N, Make_Code_Statement (Loc, Expression => P));
2003 Analyze (N);
2004
2005 -- Anything else is an error
2006
2007 else
2008 Error_Msg_N ("invalid procedure or entry call", N);
2009 end if;
2010
2011 <<Leave>>
2012 Restore_Ghost_Mode (Saved_GM);
2013 end Analyze_Procedure_Call;
2014
2015 ------------------------------
2016 -- Analyze_Return_Statement --
2017 ------------------------------
2018
2019 procedure Analyze_Return_Statement (N : Node_Id) is
2020 pragma Assert (Nkind_In (N, N_Extended_Return_Statement,
2021 N_Simple_Return_Statement));
2022
2023 Returns_Object : constant Boolean :=
2024 Nkind (N) = N_Extended_Return_Statement
2025 or else
2026 (Nkind (N) = N_Simple_Return_Statement
2027 and then Present (Expression (N)));
2028 -- True if we're returning something; that is, "return <expression>;"
2029 -- or "return Result : T [:= ...]". False for "return;". Used for error
2030 -- checking: If Returns_Object is True, N should apply to a function
2031 -- body; otherwise N should apply to a procedure body, entry body,
2032 -- accept statement, or extended return statement.
2033
2034 function Find_What_It_Applies_To return Entity_Id;
2035 -- Find the entity representing the innermost enclosing body, accept
2036 -- statement, or extended return statement. If the result is a callable
2037 -- construct or extended return statement, then this will be the value
2038 -- of the Return_Applies_To attribute. Otherwise, the program is
2039 -- illegal. See RM-6.5(4/2).
2040
2041 -----------------------------
2042 -- Find_What_It_Applies_To --
2043 -----------------------------
2044
2045 function Find_What_It_Applies_To return Entity_Id is
2046 Result : Entity_Id := Empty;
2047
2048 begin
2049 -- Loop outward through the Scope_Stack, skipping blocks, loops,
2050 -- and postconditions.
2051
2052 for J in reverse 0 .. Scope_Stack.Last loop
2053 Result := Scope_Stack.Table (J).Entity;
2054 exit when not Ekind_In (Result, E_Block, E_Loop)
2055 and then Chars (Result) /= Name_uPostconditions;
2056 end loop;
2057
2058 pragma Assert (Present (Result));
2059 return Result;
2060 end Find_What_It_Applies_To;
2061
2062 -- Local declarations
2063
2064 Scope_Id : constant Entity_Id := Find_What_It_Applies_To;
2065 Kind : constant Entity_Kind := Ekind (Scope_Id);
2066 Loc : constant Source_Ptr := Sloc (N);
2067 Stm_Entity : constant Entity_Id :=
2068 New_Internal_Entity
2069 (E_Return_Statement, Current_Scope, Loc, 'R');
2070
2071 -- Start of processing for Analyze_Return_Statement
2072
2073 begin
2074 Set_Return_Statement_Entity (N, Stm_Entity);
2075
2076 Set_Etype (Stm_Entity, Standard_Void_Type);
2077 Set_Return_Applies_To (Stm_Entity, Scope_Id);
2078
2079 -- Place Return entity on scope stack, to simplify enforcement of 6.5
2080 -- (4/2): an inner return statement will apply to this extended return.
2081
2082 if Nkind (N) = N_Extended_Return_Statement then
2083 Push_Scope (Stm_Entity);
2084 end if;
2085
2086 -- Check that pragma No_Return is obeyed. Don't complain about the
2087 -- implicitly-generated return that is placed at the end.
2088
2089 if No_Return (Scope_Id) and then Comes_From_Source (N) then
2090 Error_Msg_N ("RETURN statement not allowed (No_Return)", N);
2091 end if;
2092
2093 -- Warn on any unassigned OUT parameters if in procedure
2094
2095 if Ekind (Scope_Id) = E_Procedure then
2096 Warn_On_Unassigned_Out_Parameter (N, Scope_Id);
2097 end if;
2098
2099 -- Check that functions return objects, and other things do not
2100
2101 if Kind = E_Function or else Kind = E_Generic_Function then
2102 if not Returns_Object then
2103 Error_Msg_N ("missing expression in return from function", N);
2104 end if;
2105
2106 elsif Kind = E_Procedure or else Kind = E_Generic_Procedure then
2107 if Returns_Object then
2108 Error_Msg_N ("procedure cannot return value (use function)", N);
2109 end if;
2110
2111 elsif Kind = E_Entry or else Kind = E_Entry_Family then
2112 if Returns_Object then
2113 if Is_Protected_Type (Scope (Scope_Id)) then
2114 Error_Msg_N ("entry body cannot return value", N);
2115 else
2116 Error_Msg_N ("accept statement cannot return value", N);
2117 end if;
2118 end if;
2119
2120 elsif Kind = E_Return_Statement then
2121
2122 -- We are nested within another return statement, which must be an
2123 -- extended_return_statement.
2124
2125 if Returns_Object then
2126 if Nkind (N) = N_Extended_Return_Statement then
2127 Error_Msg_N
2128 ("extended return statement cannot be nested (use `RETURN;`)",
2129 N);
2130
2131 -- Case of a simple return statement with a value inside extended
2132 -- return statement.
2133
2134 else
2135 Error_Msg_N
2136 ("return nested in extended return statement cannot return "
2137 & "value (use `RETURN;`)", N);
2138 end if;
2139 end if;
2140
2141 else
2142 Error_Msg_N ("illegal context for return statement", N);
2143 end if;
2144
2145 if Ekind_In (Kind, E_Function, E_Generic_Function) then
2146 Analyze_Function_Return (N);
2147
2148 elsif Ekind_In (Kind, E_Procedure, E_Generic_Procedure) then
2149 Set_Return_Present (Scope_Id);
2150 end if;
2151
2152 if Nkind (N) = N_Extended_Return_Statement then
2153 End_Scope;
2154 end if;
2155
2156 Kill_Current_Values (Last_Assignment_Only => True);
2157 Check_Unreachable_Code (N);
2158
2159 Analyze_Dimension (N);
2160 end Analyze_Return_Statement;
2161
2162 -------------------------------------
2163 -- Analyze_Simple_Return_Statement --
2164 -------------------------------------
2165
2166 procedure Analyze_Simple_Return_Statement (N : Node_Id) is
2167 begin
2168 if Present (Expression (N)) then
2169 Mark_Coextensions (N, Expression (N));
2170 end if;
2171
2172 Analyze_Return_Statement (N);
2173 end Analyze_Simple_Return_Statement;
2174
2175 -------------------------
2176 -- Analyze_Return_Type --
2177 -------------------------
2178
2179 procedure Analyze_Return_Type (N : Node_Id) is
2180 Designator : constant Entity_Id := Defining_Entity (N);
2181 Typ : Entity_Id := Empty;
2182
2183 begin
2184 -- Normal case where result definition does not indicate an error
2185
2186 if Result_Definition (N) /= Error then
2187 if Nkind (Result_Definition (N)) = N_Access_Definition then
2188 Check_SPARK_05_Restriction
2189 ("access result is not allowed", Result_Definition (N));
2190
2191 -- Ada 2005 (AI-254): Handle anonymous access to subprograms
2192
2193 declare
2194 AD : constant Node_Id :=
2195 Access_To_Subprogram_Definition (Result_Definition (N));
2196 begin
2197 if Present (AD) and then Protected_Present (AD) then
2198 Typ := Replace_Anonymous_Access_To_Protected_Subprogram (N);
2199 else
2200 Typ := Access_Definition (N, Result_Definition (N));
2201 end if;
2202 end;
2203
2204 Set_Parent (Typ, Result_Definition (N));
2205 Set_Is_Local_Anonymous_Access (Typ);
2206 Set_Etype (Designator, Typ);
2207
2208 -- Ada 2005 (AI-231): Ensure proper usage of null exclusion
2209
2210 Null_Exclusion_Static_Checks (N);
2211
2212 -- Subtype_Mark case
2213
2214 else
2215 Find_Type (Result_Definition (N));
2216 Typ := Entity (Result_Definition (N));
2217 Set_Etype (Designator, Typ);
2218
2219 -- Unconstrained array as result is not allowed in SPARK
2220
2221 if Is_Array_Type (Typ) and then not Is_Constrained (Typ) then
2222 Check_SPARK_05_Restriction
2223 ("returning an unconstrained array is not allowed",
2224 Result_Definition (N));
2225 end if;
2226
2227 -- Ada 2005 (AI-231): Ensure proper usage of null exclusion
2228
2229 Null_Exclusion_Static_Checks (N);
2230
2231 -- If a null exclusion is imposed on the result type, then create
2232 -- a null-excluding itype (an access subtype) and use it as the
2233 -- function's Etype. Note that the null exclusion checks are done
2234 -- right before this, because they don't get applied to types that
2235 -- do not come from source.
2236
2237 if Is_Access_Type (Typ) and then Null_Exclusion_Present (N) then
2238 Set_Etype (Designator,
2239 Create_Null_Excluding_Itype
2240 (T => Typ,
2241 Related_Nod => N,
2242 Scope_Id => Scope (Current_Scope)));
2243
2244 -- The new subtype must be elaborated before use because
2245 -- it is visible outside of the function. However its base
2246 -- type may not be frozen yet, so the reference that will
2247 -- force elaboration must be attached to the freezing of
2248 -- the base type.
2249
2250 -- If the return specification appears on a proper body,
2251 -- the subtype will have been created already on the spec.
2252
2253 if Is_Frozen (Typ) then
2254 if Nkind (Parent (N)) = N_Subprogram_Body
2255 and then Nkind (Parent (Parent (N))) = N_Subunit
2256 then
2257 null;
2258 else
2259 Build_Itype_Reference (Etype (Designator), Parent (N));
2260 end if;
2261
2262 else
2263 Ensure_Freeze_Node (Typ);
2264
2265 declare
2266 IR : constant Node_Id := Make_Itype_Reference (Sloc (N));
2267 begin
2268 Set_Itype (IR, Etype (Designator));
2269 Append_Freeze_Actions (Typ, New_List (IR));
2270 end;
2271 end if;
2272
2273 else
2274 Set_Etype (Designator, Typ);
2275 end if;
2276
2277 if Ekind (Typ) = E_Incomplete_Type
2278 or else (Is_Class_Wide_Type (Typ)
2279 and then Ekind (Root_Type (Typ)) = E_Incomplete_Type)
2280 then
2281 -- AI05-0151: Tagged incomplete types are allowed in all formal
2282 -- parts. Untagged incomplete types are not allowed in bodies.
2283 -- As a consequence, limited views cannot appear in a basic
2284 -- declaration that is itself within a body, because there is
2285 -- no point at which the non-limited view will become visible.
2286
2287 if Ada_Version >= Ada_2012 then
2288 if From_Limited_With (Typ) and then In_Package_Body then
2289 Error_Msg_NE
2290 ("invalid use of incomplete type&",
2291 Result_Definition (N), Typ);
2292
2293 -- The return type of a subprogram body cannot be of a
2294 -- formal incomplete type.
2295
2296 elsif Is_Generic_Type (Typ)
2297 and then Nkind (Parent (N)) = N_Subprogram_Body
2298 then
2299 Error_Msg_N
2300 ("return type cannot be a formal incomplete type",
2301 Result_Definition (N));
2302
2303 elsif Is_Class_Wide_Type (Typ)
2304 and then Is_Generic_Type (Root_Type (Typ))
2305 and then Nkind (Parent (N)) = N_Subprogram_Body
2306 then
2307 Error_Msg_N
2308 ("return type cannot be a formal incomplete type",
2309 Result_Definition (N));
2310
2311 elsif Is_Tagged_Type (Typ) then
2312 null;
2313
2314 -- Use is legal in a thunk generated for an operation
2315 -- inherited from a progenitor.
2316
2317 elsif Is_Thunk (Designator)
2318 and then Present (Non_Limited_View (Typ))
2319 then
2320 null;
2321
2322 elsif Nkind (Parent (N)) = N_Subprogram_Body
2323 or else Nkind_In (Parent (Parent (N)), N_Accept_Statement,
2324 N_Entry_Body)
2325 then
2326 Error_Msg_NE
2327 ("invalid use of untagged incomplete type&",
2328 Designator, Typ);
2329 end if;
2330
2331 -- The type must be completed in the current package. This
2332 -- is checked at the end of the package declaration when
2333 -- Taft-amendment types are identified. If the return type
2334 -- is class-wide, there is no required check, the type can
2335 -- be a bona fide TAT.
2336
2337 if Ekind (Scope (Current_Scope)) = E_Package
2338 and then In_Private_Part (Scope (Current_Scope))
2339 and then not Is_Class_Wide_Type (Typ)
2340 then
2341 Append_Elmt (Designator, Private_Dependents (Typ));
2342 end if;
2343
2344 else
2345 Error_Msg_NE
2346 ("invalid use of incomplete type&", Designator, Typ);
2347 end if;
2348 end if;
2349 end if;
2350
2351 -- Case where result definition does indicate an error
2352
2353 else
2354 Set_Etype (Designator, Any_Type);
2355 end if;
2356 end Analyze_Return_Type;
2357
2358 -----------------------------
2359 -- Analyze_Subprogram_Body --
2360 -----------------------------
2361
2362 procedure Analyze_Subprogram_Body (N : Node_Id) is
2363 Loc : constant Source_Ptr := Sloc (N);
2364 Body_Spec : constant Node_Id := Specification (N);
2365 Body_Id : constant Entity_Id := Defining_Entity (Body_Spec);
2366
2367 begin
2368 if Debug_Flag_C then
2369 Write_Str ("==> subprogram body ");
2370 Write_Name (Chars (Body_Id));
2371 Write_Str (" from ");
2372 Write_Location (Loc);
2373 Write_Eol;
2374 Indent;
2375 end if;
2376
2377 Trace_Scope (N, Body_Id, " Analyze subprogram: ");
2378
2379 -- The real work is split out into the helper, so it can do "return;"
2380 -- without skipping the debug output:
2381
2382 Analyze_Subprogram_Body_Helper (N);
2383
2384 if Debug_Flag_C then
2385 Outdent;
2386 Write_Str ("<== subprogram body ");
2387 Write_Name (Chars (Body_Id));
2388 Write_Str (" from ");
2389 Write_Location (Loc);
2390 Write_Eol;
2391 end if;
2392 end Analyze_Subprogram_Body;
2393
2394 ------------------------------------
2395 -- Analyze_Subprogram_Body_Helper --
2396 ------------------------------------
2397
2398 -- This procedure is called for regular subprogram bodies, generic bodies,
2399 -- and for subprogram stubs of both kinds. In the case of stubs, only the
2400 -- specification matters, and is used to create a proper declaration for
2401 -- the subprogram, or to perform conformance checks.
2402
2403 -- WARNING: This routine manages Ghost regions. Return statements must be
2404 -- replaced by gotos which jump to the end of the routine and restore the
2405 -- Ghost mode.
2406
2407 procedure Analyze_Subprogram_Body_Helper (N : Node_Id) is
2408 Body_Spec : Node_Id := Specification (N);
2409 Body_Id : Entity_Id := Defining_Entity (Body_Spec);
2410 Loc : constant Source_Ptr := Sloc (N);
2411 Prev_Id : constant Entity_Id := Current_Entity_In_Scope (Body_Id);
2412
2413 Conformant : Boolean;
2414 Desig_View : Entity_Id := Empty;
2415 Exch_Views : Elist_Id := No_Elist;
2416 HSS : Node_Id;
2417 Mask_Types : Elist_Id := No_Elist;
2418 Prot_Typ : Entity_Id := Empty;
2419 Spec_Decl : Node_Id := Empty;
2420 Spec_Id : Entity_Id;
2421
2422 Last_Real_Spec_Entity : Entity_Id := Empty;
2423 -- When we analyze a separate spec, the entity chain ends up containing
2424 -- the formals, as well as any itypes generated during analysis of the
2425 -- default expressions for parameters, or the arguments of associated
2426 -- precondition/postcondition pragmas (which are analyzed in the context
2427 -- of the spec since they have visibility on formals).
2428 --
2429 -- These entities belong with the spec and not the body. However we do
2430 -- the analysis of the body in the context of the spec (again to obtain
2431 -- visibility to the formals), and all the entities generated during
2432 -- this analysis end up also chained to the entity chain of the spec.
2433 -- But they really belong to the body, and there is circuitry to move
2434 -- them from the spec to the body.
2435 --
2436 -- However, when we do this move, we don't want to move the real spec
2437 -- entities (first para above) to the body. The Last_Real_Spec_Entity
2438 -- variable points to the last real spec entity, so we only move those
2439 -- chained beyond that point. It is initialized to Empty to deal with
2440 -- the case where there is no separate spec.
2441
2442 function Body_Has_Contract return Boolean;
2443 -- Check whether unanalyzed body has an aspect or pragma that may
2444 -- generate a SPARK contract.
2445
2446 function Body_Has_SPARK_Mode_On return Boolean;
2447 -- Check whether SPARK_Mode On applies to the subprogram body, either
2448 -- because it is specified directly on the body, or because it is
2449 -- inherited from the enclosing subprogram or package.
2450
2451 procedure Build_Subprogram_Declaration;
2452 -- Create a matching subprogram declaration for subprogram body N
2453
2454 procedure Check_Anonymous_Return;
2455 -- Ada 2005: if a function returns an access type that denotes a task,
2456 -- or a type that contains tasks, we must create a master entity for
2457 -- the anonymous type, which typically will be used in an allocator
2458 -- in the body of the function.
2459
2460 procedure Check_Inline_Pragma (Spec : in out Node_Id);
2461 -- Look ahead to recognize a pragma that may appear after the body.
2462 -- If there is a previous spec, check that it appears in the same
2463 -- declarative part. If the pragma is Inline_Always, perform inlining
2464 -- unconditionally, otherwise only if Front_End_Inlining is requested.
2465 -- If the body acts as a spec, and inlining is required, we create a
2466 -- subprogram declaration for it, in order to attach the body to inline.
2467 -- If pragma does not appear after the body, check whether there is
2468 -- an inline pragma before any local declarations.
2469
2470 procedure Check_Missing_Return;
2471 -- Checks for a function with a no return statements, and also performs
2472 -- the warning checks implemented by Check_Returns. In formal mode, also
2473 -- verify that a function ends with a RETURN and that a procedure does
2474 -- not contain any RETURN.
2475
2476 function Disambiguate_Spec return Entity_Id;
2477 -- When a primitive is declared between the private view and the full
2478 -- view of a concurrent type which implements an interface, a special
2479 -- mechanism is used to find the corresponding spec of the primitive
2480 -- body.
2481
2482 function Exchange_Limited_Views (Subp_Id : Entity_Id) return Elist_Id;
2483 -- Ada 2012 (AI05-0151): Detect whether the profile of Subp_Id contains
2484 -- incomplete types coming from a limited context and replace their
2485 -- limited views with the non-limited ones. Return the list of changes
2486 -- to be used to undo the transformation.
2487
2488 function Is_Private_Concurrent_Primitive
2489 (Subp_Id : Entity_Id) return Boolean;
2490 -- Determine whether subprogram Subp_Id is a primitive of a concurrent
2491 -- type that implements an interface and has a private view.
2492
2493 function Mask_Unfrozen_Types (Spec_Id : Entity_Id) return Elist_Id;
2494 -- N is the body generated for an expression function that is not a
2495 -- completion and Spec_Id the defining entity of its spec. Mark all
2496 -- the not-yet-frozen types referenced by the simple return statement
2497 -- of the function as formally frozen.
2498
2499 procedure Restore_Limited_Views (Restore_List : Elist_Id);
2500 -- Undo the transformation done by Exchange_Limited_Views.
2501
2502 procedure Set_Trivial_Subprogram (N : Node_Id);
2503 -- Sets the Is_Trivial_Subprogram flag in both spec and body of the
2504 -- subprogram whose body is being analyzed. N is the statement node
2505 -- causing the flag to be set, if the following statement is a return
2506 -- of an entity, we mark the entity as set in source to suppress any
2507 -- warning on the stylized use of function stubs with a dummy return.
2508
2509 procedure Unmask_Unfrozen_Types (Unmask_List : Elist_Id);
2510 -- Undo the transformation done by Mask_Unfrozen_Types
2511
2512 procedure Verify_Overriding_Indicator;
2513 -- If there was a previous spec, the entity has been entered in the
2514 -- current scope previously. If the body itself carries an overriding
2515 -- indicator, check that it is consistent with the known status of the
2516 -- entity.
2517
2518 -----------------------
2519 -- Body_Has_Contract --
2520 -----------------------
2521
2522 function Body_Has_Contract return Boolean is
2523 Decls : constant List_Id := Declarations (N);
2524 Item : Node_Id;
2525
2526 begin
2527 -- Check for aspects that may generate a contract
2528
2529 if Present (Aspect_Specifications (N)) then
2530 Item := First (Aspect_Specifications (N));
2531 while Present (Item) loop
2532 if Is_Subprogram_Contract_Annotation (Item) then
2533 return True;
2534 end if;
2535
2536 Next (Item);
2537 end loop;
2538 end if;
2539
2540 -- Check for pragmas that may generate a contract
2541
2542 if Present (Decls) then
2543 Item := First (Decls);
2544 while Present (Item) loop
2545 if Nkind (Item) = N_Pragma
2546 and then Is_Subprogram_Contract_Annotation (Item)
2547 then
2548 return True;
2549 end if;
2550
2551 Next (Item);
2552 end loop;
2553 end if;
2554
2555 return False;
2556 end Body_Has_Contract;
2557
2558 ----------------------------
2559 -- Body_Has_SPARK_Mode_On --
2560 ----------------------------
2561
2562 function Body_Has_SPARK_Mode_On return Boolean is
2563 Decls : constant List_Id := Declarations (N);
2564 Item : Node_Id;
2565
2566 begin
2567 -- Check for SPARK_Mode aspect
2568
2569 if Present (Aspect_Specifications (N)) then
2570 Item := First (Aspect_Specifications (N));
2571 while Present (Item) loop
2572 if Get_Aspect_Id (Item) = Aspect_SPARK_Mode then
2573 return Get_SPARK_Mode_From_Annotation (Item) = On;
2574 end if;
2575
2576 Next (Item);
2577 end loop;
2578 end if;
2579
2580 -- Check for SPARK_Mode pragma
2581
2582 if Present (Decls) then
2583 Item := First (Decls);
2584 while Present (Item) loop
2585
2586 -- Pragmas that apply to a subprogram body are usually grouped
2587 -- together. Look for a potential pragma SPARK_Mode among them.
2588
2589 if Nkind (Item) = N_Pragma then
2590 if Get_Pragma_Id (Item) = Pragma_SPARK_Mode then
2591 return Get_SPARK_Mode_From_Annotation (Item) = On;
2592 end if;
2593
2594 -- Otherwise the first non-pragma declarative item terminates
2595 -- the region where pragma SPARK_Mode may appear.
2596
2597 else
2598 exit;
2599 end if;
2600
2601 Next (Item);
2602 end loop;
2603 end if;
2604
2605 -- Otherwise, the applicable SPARK_Mode is inherited from the
2606 -- enclosing subprogram or package.
2607
2608 return SPARK_Mode = On;
2609 end Body_Has_SPARK_Mode_On;
2610
2611 ----------------------------------
2612 -- Build_Subprogram_Declaration --
2613 ----------------------------------
2614
2615 procedure Build_Subprogram_Declaration is
2616 procedure Move_Pragmas (From : Node_Id; To : Node_Id);
2617 -- Relocate certain categorization pragmas from the declarative list
2618 -- of subprogram body From and insert them after node To. The pragmas
2619 -- in question are:
2620 -- Ghost
2621 -- Volatile_Function
2622 -- Also copy pragma SPARK_Mode if present in the declarative list
2623 -- of subprogram body From and insert it after node To. This pragma
2624 -- should not be moved, as it applies to the body too.
2625
2626 ------------------
2627 -- Move_Pragmas --
2628 ------------------
2629
2630 procedure Move_Pragmas (From : Node_Id; To : Node_Id) is
2631 Decl : Node_Id;
2632 Next_Decl : Node_Id;
2633
2634 begin
2635 pragma Assert (Nkind (From) = N_Subprogram_Body);
2636
2637 -- The destination node must be part of a list, as the pragmas are
2638 -- inserted after it.
2639
2640 pragma Assert (Is_List_Member (To));
2641
2642 -- Inspect the declarations of the subprogram body looking for
2643 -- specific pragmas.
2644
2645 Decl := First (Declarations (N));
2646 while Present (Decl) loop
2647 Next_Decl := Next (Decl);
2648
2649 if Nkind (Decl) = N_Pragma then
2650 if Pragma_Name_Unmapped (Decl) = Name_SPARK_Mode then
2651 Insert_After (To, New_Copy_Tree (Decl));
2652
2653 elsif Nam_In (Pragma_Name_Unmapped (Decl),
2654 Name_Ghost,
2655 Name_Volatile_Function)
2656 then
2657 Remove (Decl);
2658 Insert_After (To, Decl);
2659 end if;
2660 end if;
2661
2662 Decl := Next_Decl;
2663 end loop;
2664 end Move_Pragmas;
2665
2666 -- Local variables
2667
2668 Decl : Node_Id;
2669 Subp_Decl : Node_Id;
2670
2671 -- Start of processing for Build_Subprogram_Declaration
2672
2673 begin
2674 -- Create a matching subprogram spec using the profile of the body.
2675 -- The structure of the tree is identical, but has new entities for
2676 -- the defining unit name and formal parameters.
2677
2678 Subp_Decl :=
2679 Make_Subprogram_Declaration (Loc,
2680 Specification => Copy_Subprogram_Spec (Body_Spec));
2681 Set_Comes_From_Source (Subp_Decl, True);
2682
2683 -- Relocate the aspects and relevant pragmas from the subprogram body
2684 -- to the generated spec because it acts as the initial declaration.
2685
2686 Insert_Before (N, Subp_Decl);
2687 Move_Aspects (N, To => Subp_Decl);
2688 Move_Pragmas (N, To => Subp_Decl);
2689
2690 -- Ensure that the generated corresponding spec and original body
2691 -- share the same SPARK_Mode pragma or aspect. As a result, both have
2692 -- the same SPARK_Mode attributes, and the global SPARK_Mode value is
2693 -- correctly set for local subprograms.
2694
2695 Copy_SPARK_Mode_Aspect (Subp_Decl, To => N);
2696
2697 Analyze (Subp_Decl);
2698
2699 -- Propagate the attributes Rewritten_For_C and Corresponding_Proc to
2700 -- the body since the expander may generate calls using that entity.
2701 -- Required to ensure that Expand_Call rewrites calls to this
2702 -- function by calls to the built procedure.
2703
2704 if Modify_Tree_For_C
2705 and then Nkind (Body_Spec) = N_Function_Specification
2706 and then
2707 Rewritten_For_C (Defining_Entity (Specification (Subp_Decl)))
2708 then
2709 Set_Rewritten_For_C (Defining_Entity (Body_Spec));
2710 Set_Corresponding_Procedure (Defining_Entity (Body_Spec),
2711 Corresponding_Procedure
2712 (Defining_Entity (Specification (Subp_Decl))));
2713 end if;
2714
2715 -- Analyze any relocated source pragmas or pragmas created for aspect
2716 -- specifications.
2717
2718 Decl := Next (Subp_Decl);
2719 while Present (Decl) loop
2720
2721 -- Stop the search for pragmas once the body has been reached as
2722 -- this terminates the region where pragmas may appear.
2723
2724 if Decl = N then
2725 exit;
2726
2727 elsif Nkind (Decl) = N_Pragma then
2728 Analyze (Decl);
2729 end if;
2730
2731 Next (Decl);
2732 end loop;
2733
2734 Spec_Id := Defining_Entity (Subp_Decl);
2735 Set_Corresponding_Spec (N, Spec_Id);
2736
2737 -- Mark the generated spec as a source construct to ensure that all
2738 -- calls to it are properly registered in ALI files for GNATprove.
2739
2740 Set_Comes_From_Source (Spec_Id, True);
2741
2742 -- Ensure that the specs of the subprogram declaration and its body
2743 -- are identical, otherwise they will appear non-conformant due to
2744 -- rewritings in the default values of formal parameters.
2745
2746 Body_Spec := Copy_Subprogram_Spec (Body_Spec);
2747 Set_Specification (N, Body_Spec);
2748 Body_Id := Analyze_Subprogram_Specification (Body_Spec);
2749 end Build_Subprogram_Declaration;
2750
2751 ----------------------------
2752 -- Check_Anonymous_Return --
2753 ----------------------------
2754
2755 procedure Check_Anonymous_Return is
2756 Decl : Node_Id;
2757 Par : Node_Id;
2758 Scop : Entity_Id;
2759
2760 begin
2761 if Present (Spec_Id) then
2762 Scop := Spec_Id;
2763 else
2764 Scop := Body_Id;
2765 end if;
2766
2767 if Ekind (Scop) = E_Function
2768 and then Ekind (Etype (Scop)) = E_Anonymous_Access_Type
2769 and then not Is_Thunk (Scop)
2770
2771 -- Skip internally built functions which handle the case of
2772 -- a null access (see Expand_Interface_Conversion)
2773
2774 and then not (Is_Interface (Designated_Type (Etype (Scop)))
2775 and then not Comes_From_Source (Parent (Scop)))
2776
2777 and then (Has_Task (Designated_Type (Etype (Scop)))
2778 or else
2779 (Is_Class_Wide_Type (Designated_Type (Etype (Scop)))
2780 and then
2781 Is_Limited_Record (Designated_Type (Etype (Scop)))))
2782 and then Expander_Active
2783
2784 -- Avoid cases with no tasking support
2785
2786 and then RTE_Available (RE_Current_Master)
2787 and then not Restriction_Active (No_Task_Hierarchy)
2788 then
2789 Decl :=
2790 Make_Object_Declaration (Loc,
2791 Defining_Identifier =>
2792 Make_Defining_Identifier (Loc, Name_uMaster),
2793 Constant_Present => True,
2794 Object_Definition =>
2795 New_Occurrence_Of (RTE (RE_Master_Id), Loc),
2796 Expression =>
2797 Make_Explicit_Dereference (Loc,
2798 New_Occurrence_Of (RTE (RE_Current_Master), Loc)));
2799
2800 if Present (Declarations (N)) then
2801 Prepend (Decl, Declarations (N));
2802 else
2803 Set_Declarations (N, New_List (Decl));
2804 end if;
2805
2806 Set_Master_Id (Etype (Scop), Defining_Identifier (Decl));
2807 Set_Has_Master_Entity (Scop);
2808
2809 -- Now mark the containing scope as a task master
2810
2811 Par := N;
2812 while Nkind (Par) /= N_Compilation_Unit loop
2813 Par := Parent (Par);
2814 pragma Assert (Present (Par));
2815
2816 -- If we fall off the top, we are at the outer level, and
2817 -- the environment task is our effective master, so nothing
2818 -- to mark.
2819
2820 if Nkind_In
2821 (Par, N_Task_Body, N_Block_Statement, N_Subprogram_Body)
2822 then
2823 Set_Is_Task_Master (Par, True);
2824 exit;
2825 end if;
2826 end loop;
2827 end if;
2828 end Check_Anonymous_Return;
2829
2830 -------------------------
2831 -- Check_Inline_Pragma --
2832 -------------------------
2833
2834 procedure Check_Inline_Pragma (Spec : in out Node_Id) is
2835 Prag : Node_Id;
2836 Plist : List_Id;
2837
2838 function Is_Inline_Pragma (N : Node_Id) return Boolean;
2839 -- True when N is a pragma Inline or Inline_Always that applies
2840 -- to this subprogram.
2841
2842 -----------------------
2843 -- Is_Inline_Pragma --
2844 -----------------------
2845
2846 function Is_Inline_Pragma (N : Node_Id) return Boolean is
2847 begin
2848 if Nkind (N) = N_Pragma
2849 and then
2850 (Pragma_Name_Unmapped (N) = Name_Inline_Always
2851 or else (Pragma_Name_Unmapped (N) = Name_Inline
2852 and then
2853 (Front_End_Inlining or else Optimization_Level > 0)))
2854 and then Present (Pragma_Argument_Associations (N))
2855 then
2856 declare
2857 Pragma_Arg : Node_Id :=
2858 Expression (First (Pragma_Argument_Associations (N)));
2859 begin
2860 if Nkind (Pragma_Arg) = N_Selected_Component then
2861 Pragma_Arg := Selector_Name (Pragma_Arg);
2862 end if;
2863
2864 return Chars (Pragma_Arg) = Chars (Body_Id);
2865 end;
2866
2867 else
2868 return False;
2869 end if;
2870 end Is_Inline_Pragma;
2871
2872 -- Start of processing for Check_Inline_Pragma
2873
2874 begin
2875 if not Expander_Active then
2876 return;
2877 end if;
2878
2879 if Is_List_Member (N)
2880 and then Present (Next (N))
2881 and then Is_Inline_Pragma (Next (N))
2882 then
2883 Prag := Next (N);
2884
2885 elsif Nkind (N) /= N_Subprogram_Body_Stub
2886 and then Present (Declarations (N))
2887 and then Is_Inline_Pragma (First (Declarations (N)))
2888 then
2889 Prag := First (Declarations (N));
2890
2891 else
2892 Prag := Empty;
2893 end if;
2894
2895 if Present (Prag) then
2896 if Present (Spec_Id) then
2897 if Is_List_Member (N)
2898 and then Is_List_Member (Unit_Declaration_Node (Spec_Id))
2899 and then In_Same_List (N, Unit_Declaration_Node (Spec_Id))
2900 then
2901 Analyze (Prag);
2902 end if;
2903
2904 else
2905 -- Create a subprogram declaration, to make treatment uniform.
2906 -- Make the sloc of the subprogram name that of the entity in
2907 -- the body, so that style checks find identical strings.
2908
2909 declare
2910 Subp : constant Entity_Id :=
2911 Make_Defining_Identifier
2912 (Sloc (Body_Id), Chars (Body_Id));
2913 Decl : constant Node_Id :=
2914 Make_Subprogram_Declaration (Loc,
2915 Specification =>
2916 New_Copy_Tree (Specification (N)));
2917
2918 begin
2919 -- Link the body and the generated spec
2920
2921 Set_Corresponding_Body (Decl, Body_Id);
2922 Set_Corresponding_Spec (N, Subp);
2923
2924 Set_Defining_Unit_Name (Specification (Decl), Subp);
2925
2926 -- To ensure proper coverage when body is inlined, indicate
2927 -- whether the subprogram comes from source.
2928
2929 Set_Comes_From_Source (Subp, Comes_From_Source (N));
2930
2931 if Present (First_Formal (Body_Id)) then
2932 Plist := Copy_Parameter_List (Body_Id);
2933 Set_Parameter_Specifications
2934 (Specification (Decl), Plist);
2935 end if;
2936
2937 -- Move aspects to the new spec
2938
2939 if Has_Aspects (N) then
2940 Move_Aspects (N, To => Decl);
2941 end if;
2942
2943 Insert_Before (N, Decl);
2944 Analyze (Decl);
2945 Analyze (Prag);
2946 Set_Has_Pragma_Inline (Subp);
2947
2948 if Pragma_Name (Prag) = Name_Inline_Always then
2949 Set_Is_Inlined (Subp);
2950 Set_Has_Pragma_Inline_Always (Subp);
2951 end if;
2952
2953 -- Prior to copying the subprogram body to create a template
2954 -- for it for subsequent inlining, remove the pragma from
2955 -- the current body so that the copy that will produce the
2956 -- new body will start from a completely unanalyzed tree.
2957
2958 if Nkind (Parent (Prag)) = N_Subprogram_Body then
2959 Rewrite (Prag, Make_Null_Statement (Sloc (Prag)));
2960 end if;
2961
2962 Spec := Subp;
2963 end;
2964 end if;
2965 end if;
2966 end Check_Inline_Pragma;
2967
2968 --------------------------
2969 -- Check_Missing_Return --
2970 --------------------------
2971
2972 procedure Check_Missing_Return is
2973 Id : Entity_Id;
2974 Missing_Ret : Boolean;
2975
2976 begin
2977 if Nkind (Body_Spec) = N_Function_Specification then
2978 if Present (Spec_Id) then
2979 Id := Spec_Id;
2980 else
2981 Id := Body_Id;
2982 end if;
2983
2984 if Return_Present (Id) then
2985 Check_Returns (HSS, 'F', Missing_Ret);
2986
2987 if Missing_Ret then
2988 Set_Has_Missing_Return (Id);
2989 end if;
2990
2991 -- Within a premature instantiation of a package with no body, we
2992 -- build completions of the functions therein, with a Raise
2993 -- statement. No point in complaining about a missing return in
2994 -- this case.
2995
2996 elsif Ekind (Id) = E_Function
2997 and then In_Instance
2998 and then Present (Statements (HSS))
2999 and then Nkind (First (Statements (HSS))) = N_Raise_Program_Error
3000 then
3001 null;
3002
3003 elsif Is_Generic_Subprogram (Id)
3004 or else not Is_Machine_Code_Subprogram (Id)
3005 then
3006 Error_Msg_N ("missing RETURN statement in function body", N);
3007 end if;
3008
3009 -- If procedure with No_Return, check returns
3010
3011 elsif Nkind (Body_Spec) = N_Procedure_Specification
3012 and then Present (Spec_Id)
3013 and then No_Return (Spec_Id)
3014 then
3015 Check_Returns (HSS, 'P', Missing_Ret, Spec_Id);
3016 end if;
3017
3018 -- Special checks in SPARK mode
3019
3020 if Nkind (Body_Spec) = N_Function_Specification then
3021
3022 -- In SPARK mode, last statement of a function should be a return
3023
3024 declare
3025 Stat : constant Node_Id := Last_Source_Statement (HSS);
3026 begin
3027 if Present (Stat)
3028 and then not Nkind_In (Stat, N_Simple_Return_Statement,
3029 N_Extended_Return_Statement)
3030 then
3031 Check_SPARK_05_Restriction
3032 ("last statement in function should be RETURN", Stat);
3033 end if;
3034 end;
3035
3036 -- In SPARK mode, verify that a procedure has no return
3037
3038 elsif Nkind (Body_Spec) = N_Procedure_Specification then
3039 if Present (Spec_Id) then
3040 Id := Spec_Id;
3041 else
3042 Id := Body_Id;
3043 end if;
3044
3045 -- Would be nice to point to return statement here, can we
3046 -- borrow the Check_Returns procedure here ???
3047
3048 if Return_Present (Id) then
3049 Check_SPARK_05_Restriction
3050 ("procedure should not have RETURN", N);
3051 end if;
3052 end if;
3053 end Check_Missing_Return;
3054
3055 -----------------------
3056 -- Disambiguate_Spec --
3057 -----------------------
3058
3059 function Disambiguate_Spec return Entity_Id is
3060 Priv_Spec : Entity_Id;
3061 Spec_N : Entity_Id;
3062
3063 procedure Replace_Types (To_Corresponding : Boolean);
3064 -- Depending on the flag, replace the type of formal parameters of
3065 -- Body_Id if it is a concurrent type implementing interfaces with
3066 -- the corresponding record type or the other way around.
3067
3068 procedure Replace_Types (To_Corresponding : Boolean) is
3069 Formal : Entity_Id;
3070 Formal_Typ : Entity_Id;
3071
3072 begin
3073 Formal := First_Formal (Body_Id);
3074 while Present (Formal) loop
3075 Formal_Typ := Etype (Formal);
3076
3077 if Is_Class_Wide_Type (Formal_Typ) then
3078 Formal_Typ := Root_Type (Formal_Typ);
3079 end if;
3080
3081 -- From concurrent type to corresponding record
3082
3083 if To_Corresponding then
3084 if Is_Concurrent_Type (Formal_Typ)
3085 and then Present (Corresponding_Record_Type (Formal_Typ))
3086 and then
3087 Present (Interfaces
3088 (Corresponding_Record_Type (Formal_Typ)))
3089 then
3090 Set_Etype (Formal,
3091 Corresponding_Record_Type (Formal_Typ));
3092 end if;
3093
3094 -- From corresponding record to concurrent type
3095
3096 else
3097 if Is_Concurrent_Record_Type (Formal_Typ)
3098 and then Present (Interfaces (Formal_Typ))
3099 then
3100 Set_Etype (Formal,
3101 Corresponding_Concurrent_Type (Formal_Typ));
3102 end if;
3103 end if;
3104
3105 Next_Formal (Formal);
3106 end loop;
3107 end Replace_Types;
3108
3109 -- Start of processing for Disambiguate_Spec
3110
3111 begin
3112 -- Try to retrieve the specification of the body as is. All error
3113 -- messages are suppressed because the body may not have a spec in
3114 -- its current state.
3115
3116 Spec_N := Find_Corresponding_Spec (N, False);
3117
3118 -- It is possible that this is the body of a primitive declared
3119 -- between a private and a full view of a concurrent type. The
3120 -- controlling parameter of the spec carries the concurrent type,
3121 -- not the corresponding record type as transformed by Analyze_
3122 -- Subprogram_Specification. In such cases, we undo the change
3123 -- made by the analysis of the specification and try to find the
3124 -- spec again.
3125
3126 -- Note that wrappers already have their corresponding specs and
3127 -- bodies set during their creation, so if the candidate spec is
3128 -- a wrapper, then we definitely need to swap all types to their
3129 -- original concurrent status.
3130
3131 if No (Spec_N)
3132 or else Is_Primitive_Wrapper (Spec_N)
3133 then
3134 -- Restore all references of corresponding record types to the
3135 -- original concurrent types.
3136
3137 Replace_Types (To_Corresponding => False);
3138 Priv_Spec := Find_Corresponding_Spec (N, False);
3139
3140 -- The current body truly belongs to a primitive declared between
3141 -- a private and a full view. We leave the modified body as is,
3142 -- and return the true spec.
3143
3144 if Present (Priv_Spec)
3145 and then Is_Private_Primitive (Priv_Spec)
3146 then
3147 return Priv_Spec;
3148 end if;
3149
3150 -- In case that this is some sort of error, restore the original
3151 -- state of the body.
3152
3153 Replace_Types (To_Corresponding => True);
3154 end if;
3155
3156 return Spec_N;
3157 end Disambiguate_Spec;
3158
3159 ----------------------------
3160 -- Exchange_Limited_Views --
3161 ----------------------------
3162
3163 function Exchange_Limited_Views (Subp_Id : Entity_Id) return Elist_Id is
3164 Result : Elist_Id := No_Elist;
3165
3166 procedure Detect_And_Exchange (Id : Entity_Id);
3167 -- Determine whether Id's type denotes an incomplete type associated
3168 -- with a limited with clause and exchange the limited view with the
3169 -- non-limited one when available. Note that the non-limited view
3170 -- may exist because of a with_clause in another unit in the context,
3171 -- but cannot be used because the current view of the enclosing unit
3172 -- is still a limited view.
3173
3174 -------------------------
3175 -- Detect_And_Exchange --
3176 -------------------------
3177
3178 procedure Detect_And_Exchange (Id : Entity_Id) is
3179 Typ : constant Entity_Id := Etype (Id);
3180 begin
3181 if From_Limited_With (Typ)
3182 and then Has_Non_Limited_View (Typ)
3183 and then not From_Limited_With (Scope (Typ))
3184 then
3185 if No (Result) then
3186 Result := New_Elmt_List;
3187 end if;
3188
3189 Prepend_Elmt (Typ, Result);
3190 Prepend_Elmt (Id, Result);
3191 Set_Etype (Id, Non_Limited_View (Typ));
3192 end if;
3193 end Detect_And_Exchange;
3194
3195 -- Local variables
3196
3197 Formal : Entity_Id;
3198
3199 -- Start of processing for Exchange_Limited_Views
3200
3201 begin
3202 -- Do not process subprogram bodies as they already use the non-
3203 -- limited view of types.
3204
3205 if not Ekind_In (Subp_Id, E_Function, E_Procedure) then
3206 return No_Elist;
3207 end if;
3208
3209 -- Examine all formals and swap views when applicable
3210
3211 Formal := First_Formal (Subp_Id);
3212 while Present (Formal) loop
3213 Detect_And_Exchange (Formal);
3214
3215 Next_Formal (Formal);
3216 end loop;
3217
3218 -- Process the return type of a function
3219
3220 if Ekind (Subp_Id) = E_Function then
3221 Detect_And_Exchange (Subp_Id);
3222 end if;
3223
3224 return Result;
3225 end Exchange_Limited_Views;
3226
3227 -------------------------------------
3228 -- Is_Private_Concurrent_Primitive --
3229 -------------------------------------
3230
3231 function Is_Private_Concurrent_Primitive
3232 (Subp_Id : Entity_Id) return Boolean
3233 is
3234 Formal_Typ : Entity_Id;
3235
3236 begin
3237 if Present (First_Formal (Subp_Id)) then
3238 Formal_Typ := Etype (First_Formal (Subp_Id));
3239
3240 if Is_Concurrent_Record_Type (Formal_Typ) then
3241 if Is_Class_Wide_Type (Formal_Typ) then
3242 Formal_Typ := Root_Type (Formal_Typ);
3243 end if;
3244
3245 Formal_Typ := Corresponding_Concurrent_Type (Formal_Typ);
3246 end if;
3247
3248 -- The type of the first formal is a concurrent tagged type with
3249 -- a private view.
3250
3251 return
3252 Is_Concurrent_Type (Formal_Typ)
3253 and then Is_Tagged_Type (Formal_Typ)
3254 and then Has_Private_Declaration (Formal_Typ);
3255 end if;
3256
3257 return False;
3258 end Is_Private_Concurrent_Primitive;
3259
3260 -------------------------
3261 -- Mask_Unfrozen_Types --
3262 -------------------------
3263
3264 function Mask_Unfrozen_Types (Spec_Id : Entity_Id) return Elist_Id is
3265 Result : Elist_Id := No_Elist;
3266
3267 function Mask_Type_Refs (Node : Node_Id) return Traverse_Result;
3268 -- Mask all types referenced in the subtree rooted at Node
3269
3270 --------------------
3271 -- Mask_Type_Refs --
3272 --------------------
3273
3274 function Mask_Type_Refs (Node : Node_Id) return Traverse_Result is
3275 procedure Mask_Type (Typ : Entity_Id);
3276 -- ??? what does this do?
3277
3278 ---------------
3279 -- Mask_Type --
3280 ---------------
3281
3282 procedure Mask_Type (Typ : Entity_Id) is
3283 begin
3284 -- Skip Itypes created by the preanalysis
3285
3286 if Is_Itype (Typ)
3287 and then Scope_Within_Or_Same (Scope (Typ), Spec_Id)
3288 then
3289 return;
3290 end if;
3291
3292 if not Is_Frozen (Typ) then
3293 Set_Is_Frozen (Typ);
3294 Append_New_Elmt (Typ, Result);
3295 end if;
3296 end Mask_Type;
3297
3298 -- Start of processing for Mask_Type_Refs
3299
3300 begin
3301 if Is_Entity_Name (Node) and then Present (Entity (Node)) then
3302 Mask_Type (Etype (Entity (Node)));
3303
3304 if Ekind_In (Entity (Node), E_Component, E_Discriminant) then
3305 Mask_Type (Scope (Entity (Node)));
3306 end if;
3307
3308 elsif Nkind_In (Node, N_Aggregate, N_Null, N_Type_Conversion)
3309 and then Present (Etype (Node))
3310 then
3311 Mask_Type (Etype (Node));
3312 end if;
3313
3314 return OK;
3315 end Mask_Type_Refs;
3316
3317 procedure Mask_References is new Traverse_Proc (Mask_Type_Refs);
3318
3319 -- Local variables
3320
3321 Return_Stmt : constant Node_Id :=
3322 First (Statements (Handled_Statement_Sequence (N)));
3323
3324 -- Start of processing for Mask_Unfrozen_Types
3325
3326 begin
3327 pragma Assert (Nkind (Return_Stmt) = N_Simple_Return_Statement);
3328
3329 Mask_References (Expression (Return_Stmt));
3330
3331 return Result;
3332 end Mask_Unfrozen_Types;
3333
3334 ---------------------------
3335 -- Restore_Limited_Views --
3336 ---------------------------
3337
3338 procedure Restore_Limited_Views (Restore_List : Elist_Id) is
3339 Elmt : Elmt_Id := First_Elmt (Restore_List);
3340 Id : Entity_Id;
3341
3342 begin
3343 while Present (Elmt) loop
3344 Id := Node (Elmt);
3345 Next_Elmt (Elmt);
3346 Set_Etype (Id, Node (Elmt));
3347 Next_Elmt (Elmt);
3348 end loop;
3349 end Restore_Limited_Views;
3350
3351 ----------------------------
3352 -- Set_Trivial_Subprogram --
3353 ----------------------------
3354
3355 procedure Set_Trivial_Subprogram (N : Node_Id) is
3356 Nxt : constant Node_Id := Next (N);
3357
3358 begin
3359 Set_Is_Trivial_Subprogram (Body_Id);
3360
3361 if Present (Spec_Id) then
3362 Set_Is_Trivial_Subprogram (Spec_Id);
3363 end if;
3364
3365 if Present (Nxt)
3366 and then Nkind (Nxt) = N_Simple_Return_Statement
3367 and then No (Next (Nxt))
3368 and then Present (Expression (Nxt))
3369 and then Is_Entity_Name (Expression (Nxt))
3370 then
3371 Set_Never_Set_In_Source (Entity (Expression (Nxt)), False);
3372 end if;
3373 end Set_Trivial_Subprogram;
3374
3375 ---------------------------
3376 -- Unmask_Unfrozen_Types --
3377 ---------------------------
3378
3379 procedure Unmask_Unfrozen_Types (Unmask_List : Elist_Id) is
3380 Elmt : Elmt_Id := First_Elmt (Unmask_List);
3381
3382 begin
3383 while Present (Elmt) loop
3384 Set_Is_Frozen (Node (Elmt), False);
3385 Next_Elmt (Elmt);
3386 end loop;
3387 end Unmask_Unfrozen_Types;
3388
3389 ---------------------------------
3390 -- Verify_Overriding_Indicator --
3391 ---------------------------------
3392
3393 procedure Verify_Overriding_Indicator is
3394 begin
3395 if Must_Override (Body_Spec) then
3396 if Nkind (Spec_Id) = N_Defining_Operator_Symbol
3397 and then Operator_Matches_Spec (Spec_Id, Spec_Id)
3398 then
3399 null;
3400
3401 elsif not Present (Overridden_Operation (Spec_Id)) then
3402 Error_Msg_NE
3403 ("subprogram& is not overriding", Body_Spec, Spec_Id);
3404
3405 -- Overriding indicators aren't allowed for protected subprogram
3406 -- bodies (see the Confirmation in Ada Comment AC95-00213). Change
3407 -- this to a warning if -gnatd.E is enabled.
3408
3409 elsif Ekind (Scope (Spec_Id)) = E_Protected_Type then
3410 Error_Msg_Warn := Error_To_Warning;
3411 Error_Msg_N
3412 ("<<overriding indicator not allowed for protected "
3413 & "subprogram body", Body_Spec);
3414 end if;
3415
3416 elsif Must_Not_Override (Body_Spec) then
3417 if Present (Overridden_Operation (Spec_Id)) then
3418 Error_Msg_NE
3419 ("subprogram& overrides inherited operation",
3420 Body_Spec, Spec_Id);
3421
3422 elsif Nkind (Spec_Id) = N_Defining_Operator_Symbol
3423 and then Operator_Matches_Spec (Spec_Id, Spec_Id)
3424 then
3425 Error_Msg_NE
3426 ("subprogram& overrides predefined operator ",
3427 Body_Spec, Spec_Id);
3428
3429 -- Overriding indicators aren't allowed for protected subprogram
3430 -- bodies (see the Confirmation in Ada Comment AC95-00213). Change
3431 -- this to a warning if -gnatd.E is enabled.
3432
3433 elsif Ekind (Scope (Spec_Id)) = E_Protected_Type then
3434 Error_Msg_Warn := Error_To_Warning;
3435
3436 Error_Msg_N
3437 ("<<overriding indicator not allowed "
3438 & "for protected subprogram body", Body_Spec);
3439
3440 -- If this is not a primitive operation, then the overriding
3441 -- indicator is altogether illegal.
3442
3443 elsif not Is_Primitive (Spec_Id) then
3444 Error_Msg_N
3445 ("overriding indicator only allowed "
3446 & "if subprogram is primitive", Body_Spec);
3447 end if;
3448
3449 -- If checking the style rule and the operation overrides, then
3450 -- issue a warning about a missing overriding_indicator. Protected
3451 -- subprogram bodies are excluded from this style checking, since
3452 -- they aren't primitives (even though their declarations can
3453 -- override) and aren't allowed to have an overriding_indicator.
3454
3455 elsif Style_Check
3456 and then Present (Overridden_Operation (Spec_Id))
3457 and then Ekind (Scope (Spec_Id)) /= E_Protected_Type
3458 then
3459 pragma Assert (Unit_Declaration_Node (Body_Id) = N);
3460 Style.Missing_Overriding (N, Body_Id);
3461
3462 elsif Style_Check
3463 and then Can_Override_Operator (Spec_Id)
3464 and then not In_Predefined_Unit (Spec_Id)
3465 then
3466 pragma Assert (Unit_Declaration_Node (Body_Id) = N);
3467 Style.Missing_Overriding (N, Body_Id);
3468 end if;
3469 end Verify_Overriding_Indicator;
3470
3471 -- Local variables
3472
3473 Saved_GM : constant Ghost_Mode_Type := Ghost_Mode;
3474 Saved_ISMP : constant Boolean :=
3475 Ignore_SPARK_Mode_Pragmas_In_Instance;
3476 -- Save the Ghost and SPARK mode-related data to restore on exit
3477
3478 -- Start of processing for Analyze_Subprogram_Body_Helper
3479
3480 begin
3481 -- A [generic] subprogram body freezes the contract of the nearest
3482 -- enclosing package body and all other contracts encountered in the
3483 -- same declarative part up to and excluding the subprogram body:
3484
3485 -- package body Nearest_Enclosing_Package
3486 -- with Refined_State => (State => Constit)
3487 -- is
3488 -- Constit : ...;
3489
3490 -- procedure Freezes_Enclosing_Package_Body
3491 -- with Refined_Depends => (Input => Constit) ...
3492
3493 -- This ensures that any annotations referenced by the contract of the
3494 -- [generic] subprogram body are available. This form of freezing is
3495 -- decoupled from the usual Freeze_xxx mechanism because it must also
3496 -- work in the context of generics where normal freezing is disabled.
3497
3498 -- Only bodies coming from source should cause this type of freezing.
3499 -- Expression functions that act as bodies and complete an initial
3500 -- declaration must be included in this category, hence the use of
3501 -- Original_Node.
3502
3503 if Comes_From_Source (Original_Node (N)) then
3504 Freeze_Previous_Contracts (N);
3505 end if;
3506
3507 -- Generic subprograms are handled separately. They always have a
3508 -- generic specification. Determine whether current scope has a
3509 -- previous declaration.
3510
3511 -- If the subprogram body is defined within an instance of the same
3512 -- name, the instance appears as a package renaming, and will be hidden
3513 -- within the subprogram.
3514
3515 if Present (Prev_Id)
3516 and then not Is_Overloadable (Prev_Id)
3517 and then (Nkind (Parent (Prev_Id)) /= N_Package_Renaming_Declaration
3518 or else Comes_From_Source (Prev_Id))
3519 then
3520 if Is_Generic_Subprogram (Prev_Id) then
3521 Spec_Id := Prev_Id;
3522
3523 -- A subprogram body is Ghost when it is stand alone and subject
3524 -- to pragma Ghost or when the corresponding spec is Ghost. Set
3525 -- the mode now to ensure that any nodes generated during analysis
3526 -- and expansion are properly marked as Ghost.
3527
3528 Mark_And_Set_Ghost_Body (N, Spec_Id);
3529
3530 -- If the body completes the initial declaration of a compilation
3531 -- unit which is subject to pragma Elaboration_Checks, set the
3532 -- model specified by the pragma because it applies to all parts
3533 -- of the unit.
3534
3535 Install_Elaboration_Model (Spec_Id);
3536
3537 Set_Is_Compilation_Unit (Body_Id, Is_Compilation_Unit (Spec_Id));
3538 Set_Is_Child_Unit (Body_Id, Is_Child_Unit (Spec_Id));
3539
3540 Analyze_Generic_Subprogram_Body (N, Spec_Id);
3541
3542 if Nkind (N) = N_Subprogram_Body then
3543 HSS := Handled_Statement_Sequence (N);
3544 Check_Missing_Return;
3545 end if;
3546
3547 goto Leave;
3548
3549 -- Otherwise a previous entity conflicts with the subprogram name.
3550 -- Attempting to enter name will post error.
3551
3552 else
3553 Enter_Name (Body_Id);
3554 goto Leave;
3555 end if;
3556
3557 -- Non-generic case, find the subprogram declaration, if one was seen,
3558 -- or enter new overloaded entity in the current scope. If the
3559 -- Current_Entity is the Body_Id itself, the unit is being analyzed as
3560 -- part of the context of one of its subunits. No need to redo the
3561 -- analysis.
3562
3563 elsif Prev_Id = Body_Id and then Has_Completion (Body_Id) then
3564 goto Leave;
3565
3566 else
3567 Body_Id := Analyze_Subprogram_Specification (Body_Spec);
3568
3569 if Nkind (N) = N_Subprogram_Body_Stub
3570 or else No (Corresponding_Spec (N))
3571 then
3572 if Is_Private_Concurrent_Primitive (Body_Id) then
3573 Spec_Id := Disambiguate_Spec;
3574
3575 -- A subprogram body is Ghost when it is stand alone and
3576 -- subject to pragma Ghost or when the corresponding spec is
3577 -- Ghost. Set the mode now to ensure that any nodes generated
3578 -- during analysis and expansion are properly marked as Ghost.
3579
3580 Mark_And_Set_Ghost_Body (N, Spec_Id);
3581
3582 -- If the body completes a compilation unit which is subject
3583 -- to pragma Elaboration_Checks, set the model specified by
3584 -- the pragma because it applies to all parts of the unit.
3585
3586 Install_Elaboration_Model (Spec_Id);
3587
3588 else
3589 Spec_Id := Find_Corresponding_Spec (N);
3590
3591 -- A subprogram body is Ghost when it is stand alone and
3592 -- subject to pragma Ghost or when the corresponding spec is
3593 -- Ghost. Set the mode now to ensure that any nodes generated
3594 -- during analysis and expansion are properly marked as Ghost.
3595
3596 Mark_And_Set_Ghost_Body (N, Spec_Id);
3597
3598 -- If the body completes a compilation unit which is subject
3599 -- to pragma Elaboration_Checks, set the model specified by
3600 -- the pragma because it applies to all parts of the unit.
3601
3602 Install_Elaboration_Model (Spec_Id);
3603
3604 -- In GNATprove mode, if the body has no previous spec, create
3605 -- one so that the inlining machinery can operate properly.
3606 -- Transfer aspects, if any, to the new spec, so that they
3607 -- are legal and can be processed ahead of the body.
3608 -- We make two copies of the given spec, one for the new
3609 -- declaration, and one for the body.
3610
3611 if No (Spec_Id) and then GNATprove_Mode
3612
3613 -- Inlining does not apply during pre-analysis of code
3614
3615 and then Full_Analysis
3616
3617 -- Inlining only applies to full bodies, not stubs
3618
3619 and then Nkind (N) /= N_Subprogram_Body_Stub
3620
3621 -- Inlining only applies to bodies in the source code, not to
3622 -- those generated by the compiler. In particular, expression
3623 -- functions, whose body is generated by the compiler, are
3624 -- treated specially by GNATprove.
3625
3626 and then Comes_From_Source (Body_Id)
3627
3628 -- This cannot be done for a compilation unit, which is not
3629 -- in a context where we can insert a new spec.
3630
3631 and then Is_List_Member (N)
3632
3633 -- Inlining only applies to subprograms without contracts,
3634 -- as a contract is a sign that GNATprove should perform a
3635 -- modular analysis of the subprogram instead of a contextual
3636 -- analysis at each call site. The same test is performed in
3637 -- Inline.Can_Be_Inlined_In_GNATprove_Mode. It is repeated
3638 -- here in another form (because the contract has not been
3639 -- attached to the body) to avoid front-end errors in case
3640 -- pragmas are used instead of aspects, because the
3641 -- corresponding pragmas in the body would not be transferred
3642 -- to the spec, leading to legality errors.
3643
3644 and then not Body_Has_Contract
3645 and then not Inside_A_Generic
3646 then
3647 Build_Subprogram_Declaration;
3648
3649 -- If this is a function that returns a constrained array, and
3650 -- we are generating SPARK_For_C, create subprogram declaration
3651 -- to simplify subsequent C generation.
3652
3653 elsif No (Spec_Id)
3654 and then Modify_Tree_For_C
3655 and then Nkind (Body_Spec) = N_Function_Specification
3656 and then Is_Array_Type (Etype (Body_Id))
3657 and then Is_Constrained (Etype (Body_Id))
3658 then
3659 Build_Subprogram_Declaration;
3660 end if;
3661 end if;
3662
3663 -- If this is a duplicate body, no point in analyzing it
3664
3665 if Error_Posted (N) then
3666 goto Leave;
3667 end if;
3668
3669 -- A subprogram body should cause freezing of its own declaration,
3670 -- but if there was no previous explicit declaration, then the
3671 -- subprogram will get frozen too late (there may be code within
3672 -- the body that depends on the subprogram having been frozen,
3673 -- such as uses of extra formals), so we force it to be frozen
3674 -- here. Same holds if the body and spec are compilation units.
3675 -- Finally, if the return type is an anonymous access to protected
3676 -- subprogram, it must be frozen before the body because its
3677 -- expansion has generated an equivalent type that is used when
3678 -- elaborating the body.
3679
3680 -- An exception in the case of Ada 2012, AI05-177: The bodies
3681 -- created for expression functions do not freeze.
3682
3683 if No (Spec_Id)
3684 and then Nkind (Original_Node (N)) /= N_Expression_Function
3685 then
3686 Freeze_Before (N, Body_Id);
3687
3688 elsif Nkind (Parent (N)) = N_Compilation_Unit then
3689 Freeze_Before (N, Spec_Id);
3690
3691 elsif Is_Access_Subprogram_Type (Etype (Body_Id)) then
3692 Freeze_Before (N, Etype (Body_Id));
3693 end if;
3694
3695 else
3696 Spec_Id := Corresponding_Spec (N);
3697
3698 -- A subprogram body is Ghost when it is stand alone and subject
3699 -- to pragma Ghost or when the corresponding spec is Ghost. Set
3700 -- the mode now to ensure that any nodes generated during analysis
3701 -- and expansion are properly marked as Ghost.
3702
3703 Mark_And_Set_Ghost_Body (N, Spec_Id);
3704
3705 -- If the body completes the initial declaration of a compilation
3706 -- unit which is subject to pragma Elaboration_Checks, set the
3707 -- model specified by the pragma because it applies to all parts
3708 -- of the unit.
3709
3710 Install_Elaboration_Model (Spec_Id);
3711 end if;
3712 end if;
3713
3714 -- Previously we scanned the body to look for nested subprograms, and
3715 -- rejected an inline directive if nested subprograms were present,
3716 -- because the back-end would generate conflicting symbols for the
3717 -- nested bodies. This is now unnecessary.
3718
3719 -- Look ahead to recognize a pragma Inline that appears after the body
3720
3721 Check_Inline_Pragma (Spec_Id);
3722
3723 -- Deal with special case of a fully private operation in the body of
3724 -- the protected type. We must create a declaration for the subprogram,
3725 -- in order to attach the protected subprogram that will be used in
3726 -- internal calls. We exclude compiler generated bodies from the
3727 -- expander since the issue does not arise for those cases.
3728
3729 if No (Spec_Id)
3730 and then Comes_From_Source (N)
3731 and then Is_Protected_Type (Current_Scope)
3732 then
3733 Spec_Id := Build_Private_Protected_Declaration (N);
3734 end if;
3735
3736 -- If we are generating C and this is a function returning a constrained
3737 -- array type for which we must create a procedure with an extra out
3738 -- parameter, build and analyze the body now. The procedure declaration
3739 -- has already been created. We reuse the source body of the function,
3740 -- because in an instance it may contain global references that cannot
3741 -- be reanalyzed. The source function itself is not used any further,
3742 -- so we mark it as having a completion. If the subprogram is a stub the
3743 -- transformation is done later, when the proper body is analyzed.
3744
3745 if Expander_Active
3746 and then Modify_Tree_For_C
3747 and then Present (Spec_Id)
3748 and then Ekind (Spec_Id) = E_Function
3749 and then Nkind (N) /= N_Subprogram_Body_Stub
3750 and then Rewritten_For_C (Spec_Id)
3751 then
3752 Set_Has_Completion (Spec_Id);
3753
3754 Rewrite (N, Build_Procedure_Body_Form (Spec_Id, N));
3755 Analyze (N);
3756
3757 -- The entity for the created procedure must remain invisible, so it
3758 -- does not participate in resolution of subsequent references to the
3759 -- function.
3760
3761 Set_Is_Immediately_Visible (Corresponding_Spec (N), False);
3762 goto Leave;
3763 end if;
3764
3765 -- If a separate spec is present, then deal with freezing issues
3766
3767 if Present (Spec_Id) then
3768 Spec_Decl := Unit_Declaration_Node (Spec_Id);
3769 Verify_Overriding_Indicator;
3770
3771 -- In general, the spec will be frozen when we start analyzing the
3772 -- body. However, for internally generated operations, such as
3773 -- wrapper functions for inherited operations with controlling
3774 -- results, the spec may not have been frozen by the time we expand
3775 -- the freeze actions that include the bodies. In particular, extra
3776 -- formals for accessibility or for return-in-place may need to be
3777 -- generated. Freeze nodes, if any, are inserted before the current
3778 -- body. These freeze actions are also needed in ASIS mode and in
3779 -- Compile_Only mode to enable the proper back-end type annotations.
3780 -- They are necessary in any case to insure order of elaboration
3781 -- in gigi.
3782
3783 if not Is_Frozen (Spec_Id)
3784 and then (Expander_Active
3785 or else ASIS_Mode
3786 or else (Operating_Mode = Check_Semantics
3787 and then Serious_Errors_Detected = 0))
3788 then
3789 -- The body generated for an expression function that is not a
3790 -- completion is a freeze point neither for the profile nor for
3791 -- anything else. That's why, in order to prevent any freezing
3792 -- during analysis, we need to mask types declared outside the
3793 -- expression that are not yet frozen.
3794
3795 if Nkind (N) = N_Subprogram_Body
3796 and then Was_Expression_Function (N)
3797 and then not Has_Completion (Spec_Id)
3798 then
3799 Set_Is_Frozen (Spec_Id);
3800 Mask_Types := Mask_Unfrozen_Types (Spec_Id);
3801 else
3802 Set_Has_Delayed_Freeze (Spec_Id);
3803 Freeze_Before (N, Spec_Id);
3804 end if;
3805 end if;
3806 end if;
3807
3808 -- If the subprogram has a class-wide clone, build its body as a copy
3809 -- of the original body, and rewrite body of original subprogram as a
3810 -- wrapper that calls the clone.
3811
3812 if Present (Spec_Id)
3813 and then Present (Class_Wide_Clone (Spec_Id))
3814 and then (Comes_From_Source (N) or else Was_Expression_Function (N))
3815 then
3816 Build_Class_Wide_Clone_Body (Spec_Id, N);
3817
3818 -- This is the new body for the existing primitive operation
3819
3820 Rewrite (N, Build_Class_Wide_Clone_Call
3821 (Sloc (N), New_List, Spec_Id, Parent (Spec_Id)));
3822 Set_Has_Completion (Spec_Id, False);
3823 Analyze (N);
3824 return;
3825 end if;
3826
3827 -- Place subprogram on scope stack, and make formals visible. If there
3828 -- is a spec, the visible entity remains that of the spec.
3829
3830 if Present (Spec_Id) then
3831 Generate_Reference (Spec_Id, Body_Id, 'b', Set_Ref => False);
3832
3833 if Is_Child_Unit (Spec_Id) then
3834 Generate_Reference (Spec_Id, Scope (Spec_Id), 'k', False);
3835 end if;
3836
3837 if Style_Check then
3838 Style.Check_Identifier (Body_Id, Spec_Id);
3839 end if;
3840
3841 Set_Is_Compilation_Unit (Body_Id, Is_Compilation_Unit (Spec_Id));
3842 Set_Is_Child_Unit (Body_Id, Is_Child_Unit (Spec_Id));
3843
3844 if Is_Abstract_Subprogram (Spec_Id) then
3845 Error_Msg_N ("an abstract subprogram cannot have a body", N);
3846 goto Leave;
3847
3848 else
3849 Set_Convention (Body_Id, Convention (Spec_Id));
3850 Set_Has_Completion (Spec_Id);
3851
3852 if Is_Protected_Type (Scope (Spec_Id)) then
3853 Prot_Typ := Scope (Spec_Id);
3854 end if;
3855
3856 -- If this is a body generated for a renaming, do not check for
3857 -- full conformance. The check is redundant, because the spec of
3858 -- the body is a copy of the spec in the renaming declaration,
3859 -- and the test can lead to spurious errors on nested defaults.
3860
3861 if Present (Spec_Decl)
3862 and then not Comes_From_Source (N)
3863 and then
3864 (Nkind (Original_Node (Spec_Decl)) =
3865 N_Subprogram_Renaming_Declaration
3866 or else (Present (Corresponding_Body (Spec_Decl))
3867 and then
3868 Nkind (Unit_Declaration_Node
3869 (Corresponding_Body (Spec_Decl))) =
3870 N_Subprogram_Renaming_Declaration))
3871 then
3872 Conformant := True;
3873
3874 -- Conversely, the spec may have been generated for specless body
3875 -- with an inline pragma. The entity comes from source, which is
3876 -- both semantically correct and necessary for proper inlining.
3877 -- The subprogram declaration itself is not in the source.
3878
3879 elsif Comes_From_Source (N)
3880 and then Present (Spec_Decl)
3881 and then not Comes_From_Source (Spec_Decl)
3882 and then Has_Pragma_Inline (Spec_Id)
3883 then
3884 Conformant := True;
3885
3886 else
3887 Check_Conformance
3888 (Body_Id, Spec_Id,
3889 Fully_Conformant, True, Conformant, Body_Id);
3890 end if;
3891
3892 -- If the body is not fully conformant, we have to decide if we
3893 -- should analyze it or not. If it has a really messed up profile
3894 -- then we probably should not analyze it, since we will get too
3895 -- many bogus messages.
3896
3897 -- Our decision is to go ahead in the non-fully conformant case
3898 -- only if it is at least mode conformant with the spec. Note
3899 -- that the call to Check_Fully_Conformant has issued the proper
3900 -- error messages to complain about the lack of conformance.
3901
3902 if not Conformant
3903 and then not Mode_Conformant (Body_Id, Spec_Id)
3904 then
3905 goto Leave;
3906 end if;
3907 end if;
3908
3909 if Spec_Id /= Body_Id then
3910 Reference_Body_Formals (Spec_Id, Body_Id);
3911 end if;
3912
3913 Set_Ekind (Body_Id, E_Subprogram_Body);
3914
3915 if Nkind (N) = N_Subprogram_Body_Stub then
3916 Set_Corresponding_Spec_Of_Stub (N, Spec_Id);
3917
3918 -- Regular body
3919
3920 else
3921 Set_Corresponding_Spec (N, Spec_Id);
3922
3923 -- Ada 2005 (AI-345): If the operation is a primitive operation
3924 -- of a concurrent type, the type of the first parameter has been
3925 -- replaced with the corresponding record, which is the proper
3926 -- run-time structure to use. However, within the body there may
3927 -- be uses of the formals that depend on primitive operations
3928 -- of the type (in particular calls in prefixed form) for which
3929 -- we need the original concurrent type. The operation may have
3930 -- several controlling formals, so the replacement must be done
3931 -- for all of them.
3932
3933 if Comes_From_Source (Spec_Id)
3934 and then Present (First_Entity (Spec_Id))
3935 and then Ekind (Etype (First_Entity (Spec_Id))) = E_Record_Type
3936 and then Is_Tagged_Type (Etype (First_Entity (Spec_Id)))
3937 and then Present (Interfaces (Etype (First_Entity (Spec_Id))))
3938 and then Present (Corresponding_Concurrent_Type
3939 (Etype (First_Entity (Spec_Id))))
3940 then
3941 declare
3942 Typ : constant Entity_Id := Etype (First_Entity (Spec_Id));
3943 Form : Entity_Id;
3944
3945 begin
3946 Form := First_Formal (Spec_Id);
3947 while Present (Form) loop
3948 if Etype (Form) = Typ then
3949 Set_Etype (Form, Corresponding_Concurrent_Type (Typ));
3950 end if;
3951
3952 Next_Formal (Form);
3953 end loop;
3954 end;
3955 end if;
3956
3957 -- Make the formals visible, and place subprogram on scope stack.
3958 -- This is also the point at which we set Last_Real_Spec_Entity
3959 -- to mark the entities which will not be moved to the body.
3960
3961 Install_Formals (Spec_Id);
3962 Last_Real_Spec_Entity := Last_Entity (Spec_Id);
3963
3964 -- Within an instance, add local renaming declarations so that
3965 -- gdb can retrieve the values of actuals more easily. This is
3966 -- only relevant if generating code (and indeed we definitely
3967 -- do not want these definitions -gnatc mode, because that would
3968 -- confuse ASIS).
3969
3970 if Is_Generic_Instance (Spec_Id)
3971 and then Is_Wrapper_Package (Current_Scope)
3972 and then Expander_Active
3973 then
3974 Build_Subprogram_Instance_Renamings (N, Current_Scope);
3975 end if;
3976
3977 Push_Scope (Spec_Id);
3978
3979 -- Make sure that the subprogram is immediately visible. For
3980 -- child units that have no separate spec this is indispensable.
3981 -- Otherwise it is safe albeit redundant.
3982
3983 Set_Is_Immediately_Visible (Spec_Id);
3984 end if;
3985
3986 Set_Corresponding_Body (Unit_Declaration_Node (Spec_Id), Body_Id);
3987 Set_Is_Obsolescent (Body_Id, Is_Obsolescent (Spec_Id));
3988 Set_Scope (Body_Id, Scope (Spec_Id));
3989
3990 -- Case of subprogram body with no previous spec
3991
3992 else
3993 -- Check for style warning required
3994
3995 if Style_Check
3996
3997 -- Only apply check for source level subprograms for which checks
3998 -- have not been suppressed.
3999
4000 and then Comes_From_Source (Body_Id)
4001 and then not Suppress_Style_Checks (Body_Id)
4002
4003 -- No warnings within an instance
4004
4005 and then not In_Instance
4006
4007 -- No warnings for expression functions
4008
4009 and then Nkind (Original_Node (N)) /= N_Expression_Function
4010 then
4011 Style.Body_With_No_Spec (N);
4012 end if;
4013
4014 New_Overloaded_Entity (Body_Id);
4015
4016 if Nkind (N) /= N_Subprogram_Body_Stub then
4017 Set_Acts_As_Spec (N);
4018 Generate_Definition (Body_Id);
4019 Generate_Reference
4020 (Body_Id, Body_Id, 'b', Set_Ref => False, Force => True);
4021
4022 -- If the body is an entry wrapper created for an entry with
4023 -- preconditions, it must be compiled in the context of the
4024 -- enclosing synchronized object, because it may mention other
4025 -- operations of the type.
4026
4027 if Is_Entry_Wrapper (Body_Id) then
4028 declare
4029 Prot : constant Entity_Id := Etype (First_Entity (Body_Id));
4030 begin
4031 Push_Scope (Prot);
4032 Install_Declarations (Prot);
4033 end;
4034 end if;
4035
4036 Install_Formals (Body_Id);
4037
4038 Push_Scope (Body_Id);
4039 end if;
4040
4041 -- For stubs and bodies with no previous spec, generate references to
4042 -- formals.
4043
4044 Generate_Reference_To_Formals (Body_Id);
4045 end if;
4046
4047 -- Entry barrier functions are generated outside the protected type and
4048 -- should not carry the SPARK_Mode of the enclosing context.
4049
4050 if Nkind (N) = N_Subprogram_Body
4051 and then Is_Entry_Barrier_Function (N)
4052 then
4053 null;
4054
4055 -- The body is generated as part of expression function expansion. When
4056 -- the expression function appears in the visible declarations of a
4057 -- package, the body is added to the private declarations. Since both
4058 -- declarative lists may be subject to a different SPARK_Mode, inherit
4059 -- the mode of the spec.
4060
4061 -- package P with SPARK_Mode is
4062 -- function Expr_Func ... is (...); -- original
4063 -- [function Expr_Func ...;] -- generated spec
4064 -- -- mode is ON
4065 -- private
4066 -- pragma SPARK_Mode (Off);
4067 -- [function Expr_Func ... is return ...;] -- generated body
4068 -- end P; -- mode is ON
4069
4070 elsif not Comes_From_Source (N)
4071 and then Present (Spec_Id)
4072 and then Is_Expression_Function (Spec_Id)
4073 then
4074 Set_SPARK_Pragma (Body_Id, SPARK_Pragma (Spec_Id));
4075 Set_SPARK_Pragma_Inherited
4076 (Body_Id, SPARK_Pragma_Inherited (Spec_Id));
4077
4078 -- Set the SPARK_Mode from the current context (may be overwritten later
4079 -- with explicit pragma). Exclude the case where the SPARK_Mode appears
4080 -- initially on a stand-alone subprogram body, but is then relocated to
4081 -- a generated corresponding spec. In this scenario the mode is shared
4082 -- between the spec and body.
4083
4084 elsif No (SPARK_Pragma (Body_Id)) then
4085 Set_SPARK_Pragma (Body_Id, SPARK_Mode_Pragma);
4086 Set_SPARK_Pragma_Inherited (Body_Id);
4087 end if;
4088
4089 -- A subprogram body may be instantiated or inlined at a later pass.
4090 -- Restore the state of Ignore_SPARK_Mode_Pragmas_In_Instance when it
4091 -- applied to the initial declaration of the body.
4092
4093 if Present (Spec_Id) then
4094 if Ignore_SPARK_Mode_Pragmas (Spec_Id) then
4095 Ignore_SPARK_Mode_Pragmas_In_Instance := True;
4096 end if;
4097
4098 else
4099 -- Save the state of flag Ignore_SPARK_Mode_Pragmas_In_Instance in
4100 -- case the body is instantiated or inlined later and out of context.
4101 -- The body uses this attribute to restore the value of the global
4102 -- flag.
4103
4104 if Ignore_SPARK_Mode_Pragmas_In_Instance then
4105 Set_Ignore_SPARK_Mode_Pragmas (Body_Id);
4106
4107 elsif Ignore_SPARK_Mode_Pragmas (Body_Id) then
4108 Ignore_SPARK_Mode_Pragmas_In_Instance := True;
4109 end if;
4110 end if;
4111
4112 -- If this is the proper body of a stub, we must verify that the stub
4113 -- conforms to the body, and to the previous spec if one was present.
4114 -- We know already that the body conforms to that spec. This test is
4115 -- only required for subprograms that come from source.
4116
4117 if Nkind (Parent (N)) = N_Subunit
4118 and then Comes_From_Source (N)
4119 and then not Error_Posted (Body_Id)
4120 and then Nkind (Corresponding_Stub (Parent (N))) =
4121 N_Subprogram_Body_Stub
4122 then
4123 declare
4124 Old_Id : constant Entity_Id :=
4125 Defining_Entity
4126 (Specification (Corresponding_Stub (Parent (N))));
4127
4128 Conformant : Boolean := False;
4129
4130 begin
4131 if No (Spec_Id) then
4132 Check_Fully_Conformant (Body_Id, Old_Id);
4133
4134 else
4135 Check_Conformance
4136 (Body_Id, Old_Id, Fully_Conformant, False, Conformant);
4137
4138 if not Conformant then
4139
4140 -- The stub was taken to be a new declaration. Indicate that
4141 -- it lacks a body.
4142
4143 Set_Has_Completion (Old_Id, False);
4144 end if;
4145 end if;
4146 end;
4147 end if;
4148
4149 Set_Has_Completion (Body_Id);
4150 Check_Eliminated (Body_Id);
4151
4152 -- Analyze any aspect specifications that appear on the subprogram body
4153 -- stub. Stop the analysis now as the stub does not have a declarative
4154 -- or a statement part, and it cannot be inlined.
4155
4156 if Nkind (N) = N_Subprogram_Body_Stub then
4157 if Has_Aspects (N) then
4158 Analyze_Aspects_On_Subprogram_Body_Or_Stub (N);
4159 end if;
4160
4161 goto Leave;
4162 end if;
4163
4164 -- Handle inlining
4165
4166 -- Note: Normally we don't do any inlining if expansion is off, since
4167 -- we won't generate code in any case. An exception arises in GNATprove
4168 -- mode where we want to expand some calls in place, even with expansion
4169 -- disabled, since the inlining eases formal verification.
4170
4171 if not GNATprove_Mode
4172 and then Expander_Active
4173 and then Serious_Errors_Detected = 0
4174 and then Present (Spec_Id)
4175 and then Has_Pragma_Inline (Spec_Id)
4176 then
4177 -- Legacy implementation (relying on front-end inlining)
4178
4179 if not Back_End_Inlining then
4180 if (Has_Pragma_Inline_Always (Spec_Id)
4181 and then not Opt.Disable_FE_Inline_Always)
4182 or else (Front_End_Inlining
4183 and then not Opt.Disable_FE_Inline)
4184 then
4185 Build_Body_To_Inline (N, Spec_Id);
4186 end if;
4187
4188 -- New implementation (relying on back-end inlining)
4189
4190 else
4191 if Has_Pragma_Inline_Always (Spec_Id)
4192 or else Optimization_Level > 0
4193 then
4194 -- Handle function returning an unconstrained type
4195
4196 if Comes_From_Source (Body_Id)
4197 and then Ekind (Spec_Id) = E_Function
4198 and then Returns_Unconstrained_Type (Spec_Id)
4199
4200 -- If function builds in place, i.e. returns a limited type,
4201 -- inlining cannot be done.
4202
4203 and then not Is_Limited_Type (Etype (Spec_Id))
4204 then
4205 Check_And_Split_Unconstrained_Function (N, Spec_Id, Body_Id);
4206
4207 else
4208 declare
4209 Subp_Body : constant Node_Id :=
4210 Unit_Declaration_Node (Body_Id);
4211 Subp_Decl : constant List_Id := Declarations (Subp_Body);
4212
4213 begin
4214 -- Do not pass inlining to the backend if the subprogram
4215 -- has declarations or statements which cannot be inlined
4216 -- by the backend. This check is done here to emit an
4217 -- error instead of the generic warning message reported
4218 -- by the GCC backend (ie. "function might not be
4219 -- inlinable").
4220
4221 if Present (Subp_Decl)
4222 and then Has_Excluded_Declaration (Spec_Id, Subp_Decl)
4223 then
4224 null;
4225
4226 elsif Has_Excluded_Statement
4227 (Spec_Id,
4228 Statements
4229 (Handled_Statement_Sequence (Subp_Body)))
4230 then
4231 null;
4232
4233 -- If the backend inlining is available then at this
4234 -- stage we only have to mark the subprogram as inlined.
4235 -- The expander will take care of registering it in the
4236 -- table of subprograms inlined by the backend a part of
4237 -- processing calls to it (cf. Expand_Call)
4238
4239 else
4240 Set_Is_Inlined (Spec_Id);
4241 end if;
4242 end;
4243 end if;
4244 end if;
4245 end if;
4246
4247 -- In GNATprove mode, inline only when there is a separate subprogram
4248 -- declaration for now, as inlining of subprogram bodies acting as
4249 -- declarations, or subprogram stubs, are not supported by front-end
4250 -- inlining. This inlining should occur after analysis of the body, so
4251 -- that it is known whether the value of SPARK_Mode, which can be
4252 -- defined by a pragma inside the body, is applicable to the body.
4253 -- Inlining can be disabled with switch -gnatdm
4254
4255 elsif GNATprove_Mode
4256 and then Full_Analysis
4257 and then not Inside_A_Generic
4258 and then Present (Spec_Id)
4259 and then
4260 Nkind (Unit_Declaration_Node (Spec_Id)) = N_Subprogram_Declaration
4261 and then Body_Has_SPARK_Mode_On
4262 and then Can_Be_Inlined_In_GNATprove_Mode (Spec_Id, Body_Id)
4263 and then not Body_Has_Contract
4264 and then not Debug_Flag_M
4265 then
4266 Build_Body_To_Inline (N, Spec_Id);
4267 end if;
4268
4269 -- When generating code, inherited pre/postconditions are handled when
4270 -- expanding the corresponding contract.
4271
4272 -- Ada 2005 (AI-262): In library subprogram bodies, after the analysis
4273 -- of the specification we have to install the private withed units.
4274 -- This holds for child units as well.
4275
4276 if Is_Compilation_Unit (Body_Id)
4277 or else Nkind (Parent (N)) = N_Compilation_Unit
4278 then
4279 Install_Private_With_Clauses (Body_Id);
4280 end if;
4281
4282 Check_Anonymous_Return;
4283
4284 -- Set the Protected_Formal field of each extra formal of the protected
4285 -- subprogram to reference the corresponding extra formal of the
4286 -- subprogram that implements it. For regular formals this occurs when
4287 -- the protected subprogram's declaration is expanded, but the extra
4288 -- formals don't get created until the subprogram is frozen. We need to
4289 -- do this before analyzing the protected subprogram's body so that any
4290 -- references to the original subprogram's extra formals will be changed
4291 -- refer to the implementing subprogram's formals (see Expand_Formal).
4292
4293 if Present (Spec_Id)
4294 and then Is_Protected_Type (Scope (Spec_Id))
4295 and then Present (Protected_Body_Subprogram (Spec_Id))
4296 then
4297 declare
4298 Impl_Subp : constant Entity_Id :=
4299 Protected_Body_Subprogram (Spec_Id);
4300 Prot_Ext_Formal : Entity_Id := Extra_Formals (Spec_Id);
4301 Impl_Ext_Formal : Entity_Id := Extra_Formals (Impl_Subp);
4302
4303 begin
4304 while Present (Prot_Ext_Formal) loop
4305 pragma Assert (Present (Impl_Ext_Formal));
4306 Set_Protected_Formal (Prot_Ext_Formal, Impl_Ext_Formal);
4307 Next_Formal_With_Extras (Prot_Ext_Formal);
4308 Next_Formal_With_Extras (Impl_Ext_Formal);
4309 end loop;
4310 end;
4311 end if;
4312
4313 -- Now we can go on to analyze the body
4314
4315 HSS := Handled_Statement_Sequence (N);
4316 Set_Actual_Subtypes (N, Current_Scope);
4317
4318 -- Add a declaration for the Protection object, renaming declarations
4319 -- for discriminals and privals and finally a declaration for the entry
4320 -- family index (if applicable). This form of early expansion is done
4321 -- when the Expander is active because Install_Private_Data_Declarations
4322 -- references entities which were created during regular expansion. The
4323 -- subprogram entity must come from source, and not be an internally
4324 -- generated subprogram.
4325
4326 if Expander_Active
4327 and then Present (Prot_Typ)
4328 and then Present (Spec_Id)
4329 and then Comes_From_Source (Spec_Id)
4330 and then not Is_Eliminated (Spec_Id)
4331 then
4332 Install_Private_Data_Declarations
4333 (Sloc (N), Spec_Id, Prot_Typ, N, Declarations (N));
4334 end if;
4335
4336 -- Ada 2012 (AI05-0151): Incomplete types coming from a limited context
4337 -- may now appear in parameter and result profiles. Since the analysis
4338 -- of a subprogram body may use the parameter and result profile of the
4339 -- spec, swap any limited views with their non-limited counterpart.
4340
4341 if Ada_Version >= Ada_2012 and then Present (Spec_Id) then
4342 Exch_Views := Exchange_Limited_Views (Spec_Id);
4343 end if;
4344
4345 -- If the return type is an anonymous access type whose designated type
4346 -- is the limited view of a class-wide type and the non-limited view is
4347 -- available, update the return type accordingly.
4348
4349 if Ada_Version >= Ada_2005 and then Present (Spec_Id) then
4350 declare
4351 Etyp : Entity_Id;
4352 Rtyp : Entity_Id;
4353
4354 begin
4355 Rtyp := Etype (Spec_Id);
4356
4357 if Ekind (Rtyp) = E_Anonymous_Access_Type then
4358 Etyp := Directly_Designated_Type (Rtyp);
4359
4360 if Is_Class_Wide_Type (Etyp)
4361 and then From_Limited_With (Etyp)
4362 then
4363 Desig_View := Etyp;
4364 Set_Directly_Designated_Type (Rtyp, Available_View (Etyp));
4365 end if;
4366 end if;
4367 end;
4368 end if;
4369
4370 -- Analyze any aspect specifications that appear on the subprogram body
4371
4372 if Has_Aspects (N) then
4373 Analyze_Aspects_On_Subprogram_Body_Or_Stub (N);
4374 end if;
4375
4376 Analyze_Declarations (Declarations (N));
4377
4378 -- Verify that the SPARK_Mode of the body agrees with that of its spec
4379
4380 if Present (Spec_Id) and then Present (SPARK_Pragma (Body_Id)) then
4381 if Present (SPARK_Pragma (Spec_Id)) then
4382 if Get_SPARK_Mode_From_Annotation (SPARK_Pragma (Spec_Id)) = Off
4383 and then
4384 Get_SPARK_Mode_From_Annotation (SPARK_Pragma (Body_Id)) = On
4385 then
4386 Error_Msg_Sloc := Sloc (SPARK_Pragma (Body_Id));
4387 Error_Msg_N ("incorrect application of SPARK_Mode#", N);
4388 Error_Msg_Sloc := Sloc (SPARK_Pragma (Spec_Id));
4389 Error_Msg_NE
4390 ("\value Off was set for SPARK_Mode on & #", N, Spec_Id);
4391 end if;
4392
4393 elsif Nkind (Parent (Parent (Spec_Id))) = N_Subprogram_Body_Stub then
4394 null;
4395
4396 else
4397 Error_Msg_Sloc := Sloc (SPARK_Pragma (Body_Id));
4398 Error_Msg_N ("incorrect application of SPARK_Mode #", N);
4399 Error_Msg_Sloc := Sloc (Spec_Id);
4400 Error_Msg_NE
4401 ("\no value was set for SPARK_Mode on & #", N, Spec_Id);
4402 end if;
4403 end if;
4404
4405 -- A subprogram body freezes its own contract. Analyze the contract
4406 -- after the declarations of the body have been processed as pragmas
4407 -- are now chained on the contract of the subprogram body.
4408
4409 Analyze_Entry_Or_Subprogram_Body_Contract (Body_Id);
4410
4411 -- Check completion, and analyze the statements
4412
4413 Check_Completion;
4414 Inspect_Deferred_Constant_Completion (Declarations (N));
4415 Analyze (HSS);
4416
4417 -- Deal with end of scope processing for the body
4418
4419 Process_End_Label (HSS, 't', Current_Scope);
4420 Update_Use_Clause_Chain;
4421 End_Scope;
4422
4423 -- If we are compiling an entry wrapper, remove the enclosing
4424 -- synchronized object from the stack.
4425
4426 if Is_Entry_Wrapper (Body_Id) then
4427 End_Scope;
4428 end if;
4429
4430 Check_Subprogram_Order (N);
4431 Set_Analyzed (Body_Id);
4432
4433 -- If we have a separate spec, then the analysis of the declarations
4434 -- caused the entities in the body to be chained to the spec id, but
4435 -- we want them chained to the body id. Only the formal parameters
4436 -- end up chained to the spec id in this case.
4437
4438 if Present (Spec_Id) then
4439
4440 -- We must conform to the categorization of our spec
4441
4442 Validate_Categorization_Dependency (N, Spec_Id);
4443
4444 -- And if this is a child unit, the parent units must conform
4445
4446 if Is_Child_Unit (Spec_Id) then
4447 Validate_Categorization_Dependency
4448 (Unit_Declaration_Node (Spec_Id), Spec_Id);
4449 end if;
4450
4451 -- Here is where we move entities from the spec to the body
4452
4453 -- Case where there are entities that stay with the spec
4454
4455 if Present (Last_Real_Spec_Entity) then
4456
4457 -- No body entities (happens when the only real spec entities come
4458 -- from precondition and postcondition pragmas).
4459
4460 if No (Last_Entity (Body_Id)) then
4461 Set_First_Entity (Body_Id, Next_Entity (Last_Real_Spec_Entity));
4462
4463 -- Body entities present (formals), so chain stuff past them
4464
4465 else
4466 Set_Next_Entity
4467 (Last_Entity (Body_Id), Next_Entity (Last_Real_Spec_Entity));
4468 end if;
4469
4470 Set_Next_Entity (Last_Real_Spec_Entity, Empty);
4471 Set_Last_Entity (Body_Id, Last_Entity (Spec_Id));
4472 Set_Last_Entity (Spec_Id, Last_Real_Spec_Entity);
4473
4474 -- Case where there are no spec entities, in this case there can be
4475 -- no body entities either, so just move everything.
4476
4477 -- If the body is generated for an expression function, it may have
4478 -- been preanalyzed already, if 'access was applied to it.
4479
4480 else
4481 if Nkind (Original_Node (Unit_Declaration_Node (Spec_Id))) /=
4482 N_Expression_Function
4483 then
4484 pragma Assert (No (Last_Entity (Body_Id)));
4485 null;
4486 end if;
4487
4488 Set_First_Entity (Body_Id, First_Entity (Spec_Id));
4489 Set_Last_Entity (Body_Id, Last_Entity (Spec_Id));
4490 Set_First_Entity (Spec_Id, Empty);
4491 Set_Last_Entity (Spec_Id, Empty);
4492 end if;
4493
4494 -- Otherwise the body does not complete a previous declaration. Check
4495 -- the categorization of the body against the units it withs.
4496
4497 else
4498 Validate_Categorization_Dependency (N, Body_Id);
4499 end if;
4500
4501 Check_Missing_Return;
4502
4503 -- Now we are going to check for variables that are never modified in
4504 -- the body of the procedure. But first we deal with a special case
4505 -- where we want to modify this check. If the body of the subprogram
4506 -- starts with a raise statement or its equivalent, or if the body
4507 -- consists entirely of a null statement, then it is pretty obvious that
4508 -- it is OK to not reference the parameters. For example, this might be
4509 -- the following common idiom for a stubbed function: statement of the
4510 -- procedure raises an exception. In particular this deals with the
4511 -- common idiom of a stubbed function, which appears something like:
4512
4513 -- function F (A : Integer) return Some_Type;
4514 -- X : Some_Type;
4515 -- begin
4516 -- raise Program_Error;
4517 -- return X;
4518 -- end F;
4519
4520 -- Here the purpose of X is simply to satisfy the annoying requirement
4521 -- in Ada that there be at least one return, and we certainly do not
4522 -- want to go posting warnings on X that it is not initialized. On
4523 -- the other hand, if X is entirely unreferenced that should still
4524 -- get a warning.
4525
4526 -- What we do is to detect these cases, and if we find them, flag the
4527 -- subprogram as being Is_Trivial_Subprogram and then use that flag to
4528 -- suppress unwanted warnings. For the case of the function stub above
4529 -- we have a special test to set X as apparently assigned to suppress
4530 -- the warning.
4531
4532 declare
4533 Stm : Node_Id;
4534
4535 begin
4536 -- Skip call markers installed by the ABE mechanism, labels, and
4537 -- Push_xxx_Error_Label to find the first real statement.
4538
4539 Stm := First (Statements (HSS));
4540 while Nkind_In (Stm, N_Call_Marker, N_Label)
4541 or else Nkind (Stm) in N_Push_xxx_Label
4542 loop
4543 Next (Stm);
4544 end loop;
4545
4546 -- Do the test on the original statement before expansion
4547
4548 declare
4549 Ostm : constant Node_Id := Original_Node (Stm);
4550
4551 begin
4552 -- If explicit raise statement, turn on flag
4553
4554 if Nkind (Ostm) = N_Raise_Statement then
4555 Set_Trivial_Subprogram (Stm);
4556
4557 -- If null statement, and no following statements, turn on flag
4558
4559 elsif Nkind (Stm) = N_Null_Statement
4560 and then Comes_From_Source (Stm)
4561 and then No (Next (Stm))
4562 then
4563 Set_Trivial_Subprogram (Stm);
4564
4565 -- Check for explicit call cases which likely raise an exception
4566
4567 elsif Nkind (Ostm) = N_Procedure_Call_Statement then
4568 if Is_Entity_Name (Name (Ostm)) then
4569 declare
4570 Ent : constant Entity_Id := Entity (Name (Ostm));
4571
4572 begin
4573 -- If the procedure is marked No_Return, then likely it
4574 -- raises an exception, but in any case it is not coming
4575 -- back here, so turn on the flag.
4576
4577 if Present (Ent)
4578 and then Ekind (Ent) = E_Procedure
4579 and then No_Return (Ent)
4580 then
4581 Set_Trivial_Subprogram (Stm);
4582 end if;
4583 end;
4584 end if;
4585 end if;
4586 end;
4587 end;
4588
4589 -- Check for variables that are never modified
4590
4591 declare
4592 E1 : Entity_Id;
4593 E2 : Entity_Id;
4594
4595 begin
4596 -- If there is a separate spec, then transfer Never_Set_In_Source
4597 -- flags from out parameters to the corresponding entities in the
4598 -- body. The reason we do that is we want to post error flags on
4599 -- the body entities, not the spec entities.
4600
4601 if Present (Spec_Id) then
4602 E1 := First_Entity (Spec_Id);
4603 while Present (E1) loop
4604 if Ekind (E1) = E_Out_Parameter then
4605 E2 := First_Entity (Body_Id);
4606 while Present (E2) loop
4607 exit when Chars (E1) = Chars (E2);
4608 Next_Entity (E2);
4609 end loop;
4610
4611 if Present (E2) then
4612 Set_Never_Set_In_Source (E2, Never_Set_In_Source (E1));
4613 end if;
4614 end if;
4615
4616 Next_Entity (E1);
4617 end loop;
4618 end if;
4619
4620 -- Check references in body
4621
4622 Check_References (Body_Id);
4623 end;
4624
4625 -- Check for nested subprogram, and mark outer level subprogram if so
4626
4627 declare
4628 Ent : Entity_Id;
4629
4630 begin
4631 if Present (Spec_Id) then
4632 Ent := Spec_Id;
4633 else
4634 Ent := Body_Id;
4635 end if;
4636
4637 loop
4638 Ent := Enclosing_Subprogram (Ent);
4639 exit when No (Ent) or else Is_Subprogram (Ent);
4640 end loop;
4641
4642 if Present (Ent) then
4643 Set_Has_Nested_Subprogram (Ent);
4644 end if;
4645 end;
4646
4647 -- Restore the limited views in the spec, if any, to let the back end
4648 -- process it without running into circularities.
4649
4650 if Exch_Views /= No_Elist then
4651 Restore_Limited_Views (Exch_Views);
4652 end if;
4653
4654 if Mask_Types /= No_Elist then
4655 Unmask_Unfrozen_Types (Mask_Types);
4656 end if;
4657
4658 if Present (Desig_View) then
4659 Set_Directly_Designated_Type (Etype (Spec_Id), Desig_View);
4660 end if;
4661
4662 <<Leave>>
4663 Ignore_SPARK_Mode_Pragmas_In_Instance := Saved_ISMP;
4664 Restore_Ghost_Mode (Saved_GM);
4665 end Analyze_Subprogram_Body_Helper;
4666
4667 ------------------------------------
4668 -- Analyze_Subprogram_Declaration --
4669 ------------------------------------
4670
4671 procedure Analyze_Subprogram_Declaration (N : Node_Id) is
4672 Scop : constant Entity_Id := Current_Scope;
4673 Designator : Entity_Id;
4674
4675 Is_Completion : Boolean;
4676 -- Indicates whether a null procedure declaration is a completion
4677
4678 begin
4679 -- Null procedures are not allowed in SPARK
4680
4681 if Nkind (Specification (N)) = N_Procedure_Specification
4682 and then Null_Present (Specification (N))
4683 then
4684 Check_SPARK_05_Restriction ("null procedure is not allowed", N);
4685
4686 -- Null procedures are allowed in protected types, following the
4687 -- recent AI12-0147.
4688
4689 if Is_Protected_Type (Current_Scope)
4690 and then Ada_Version < Ada_2012
4691 then
4692 Error_Msg_N ("protected operation cannot be a null procedure", N);
4693 end if;
4694
4695 Analyze_Null_Procedure (N, Is_Completion);
4696
4697 -- The null procedure acts as a body, nothing further is needed
4698
4699 if Is_Completion then
4700 return;
4701 end if;
4702 end if;
4703
4704 Designator := Analyze_Subprogram_Specification (Specification (N));
4705
4706 -- A reference may already have been generated for the unit name, in
4707 -- which case the following call is redundant. However it is needed for
4708 -- declarations that are the rewriting of an expression function.
4709
4710 Generate_Definition (Designator);
4711
4712 -- Set the SPARK mode from the current context (may be overwritten later
4713 -- with explicit pragma). This is not done for entry barrier functions
4714 -- because they are generated outside the protected type and should not
4715 -- carry the mode of the enclosing context.
4716
4717 if Nkind (N) = N_Subprogram_Declaration
4718 and then Is_Entry_Barrier_Function (N)
4719 then
4720 null;
4721
4722 else
4723 Set_SPARK_Pragma (Designator, SPARK_Mode_Pragma);
4724 Set_SPARK_Pragma_Inherited (Designator);
4725 end if;
4726
4727 -- Save the state of flag Ignore_SPARK_Mode_Pragmas_In_Instance in case
4728 -- the body of this subprogram is instantiated or inlined later and out
4729 -- of context. The body uses this attribute to restore the value of the
4730 -- global flag.
4731
4732 if Ignore_SPARK_Mode_Pragmas_In_Instance then
4733 Set_Ignore_SPARK_Mode_Pragmas (Designator);
4734 end if;
4735
4736 -- Preserve relevant elaboration-related attributes of the context which
4737 -- are no longer available or very expensive to recompute once analysis,
4738 -- resolution, and expansion are over.
4739
4740 Mark_Elaboration_Attributes
4741 (N_Id => Designator,
4742 Checks => True);
4743
4744 if Debug_Flag_C then
4745 Write_Str ("==> subprogram spec ");
4746 Write_Name (Chars (Designator));
4747 Write_Str (" from ");
4748 Write_Location (Sloc (N));
4749 Write_Eol;
4750 Indent;
4751 end if;
4752
4753 Validate_RCI_Subprogram_Declaration (N);
4754 New_Overloaded_Entity (Designator);
4755 Check_Delayed_Subprogram (Designator);
4756
4757 -- If the type of the first formal of the current subprogram is a non-
4758 -- generic tagged private type, mark the subprogram as being a private
4759 -- primitive. Ditto if this is a function with controlling result, and
4760 -- the return type is currently private. In both cases, the type of the
4761 -- controlling argument or result must be in the current scope for the
4762 -- operation to be primitive.
4763
4764 if Has_Controlling_Result (Designator)
4765 and then Is_Private_Type (Etype (Designator))
4766 and then Scope (Etype (Designator)) = Current_Scope
4767 and then not Is_Generic_Actual_Type (Etype (Designator))
4768 then
4769 Set_Is_Private_Primitive (Designator);
4770
4771 elsif Present (First_Formal (Designator)) then
4772 declare
4773 Formal_Typ : constant Entity_Id :=
4774 Etype (First_Formal (Designator));
4775 begin
4776 Set_Is_Private_Primitive (Designator,
4777 Is_Tagged_Type (Formal_Typ)
4778 and then Scope (Formal_Typ) = Current_Scope
4779 and then Is_Private_Type (Formal_Typ)
4780 and then not Is_Generic_Actual_Type (Formal_Typ));
4781 end;
4782 end if;
4783
4784 -- Ada 2005 (AI-251): Abstract interface primitives must be abstract
4785 -- or null.
4786
4787 if Ada_Version >= Ada_2005
4788 and then Comes_From_Source (N)
4789 and then Is_Dispatching_Operation (Designator)
4790 then
4791 declare
4792 E : Entity_Id;
4793 Etyp : Entity_Id;
4794
4795 begin
4796 if Has_Controlling_Result (Designator) then
4797 Etyp := Etype (Designator);
4798
4799 else
4800 E := First_Entity (Designator);
4801 while Present (E)
4802 and then Is_Formal (E)
4803 and then not Is_Controlling_Formal (E)
4804 loop
4805 Next_Entity (E);
4806 end loop;
4807
4808 Etyp := Etype (E);
4809 end if;
4810
4811 if Is_Access_Type (Etyp) then
4812 Etyp := Directly_Designated_Type (Etyp);
4813 end if;
4814
4815 if Is_Interface (Etyp)
4816 and then not Is_Abstract_Subprogram (Designator)
4817 and then not (Ekind (Designator) = E_Procedure
4818 and then Null_Present (Specification (N)))
4819 then
4820 Error_Msg_Name_1 := Chars (Defining_Entity (N));
4821
4822 -- Specialize error message based on procedures vs. functions,
4823 -- since functions can't be null subprograms.
4824
4825 if Ekind (Designator) = E_Procedure then
4826 Error_Msg_N
4827 ("interface procedure % must be abstract or null", N);
4828 else
4829 Error_Msg_N
4830 ("interface function % must be abstract", N);
4831 end if;
4832 end if;
4833 end;
4834 end if;
4835
4836 -- What is the following code for, it used to be
4837
4838 -- ??? Set_Suppress_Elaboration_Checks
4839 -- ??? (Designator, Elaboration_Checks_Suppressed (Designator));
4840
4841 -- The following seems equivalent, but a bit dubious
4842
4843 if Elaboration_Checks_Suppressed (Designator) then
4844 Set_Kill_Elaboration_Checks (Designator);
4845 end if;
4846
4847 -- For a compilation unit, set body required. This flag will only be
4848 -- reset if a valid Import or Interface pragma is processed later on.
4849
4850 if Nkind (Parent (N)) = N_Compilation_Unit then
4851 Set_Body_Required (Parent (N), True);
4852
4853 if Ada_Version >= Ada_2005
4854 and then Nkind (Specification (N)) = N_Procedure_Specification
4855 and then Null_Present (Specification (N))
4856 then
4857 Error_Msg_N
4858 ("null procedure cannot be declared at library level", N);
4859 end if;
4860 end if;
4861
4862 Generate_Reference_To_Formals (Designator);
4863 Check_Eliminated (Designator);
4864
4865 if Debug_Flag_C then
4866 Outdent;
4867 Write_Str ("<== subprogram spec ");
4868 Write_Name (Chars (Designator));
4869 Write_Str (" from ");
4870 Write_Location (Sloc (N));
4871 Write_Eol;
4872 end if;
4873
4874 -- Indicate that this is a protected operation, because it may be used
4875 -- in subsequent declarations within the protected type.
4876
4877 if Is_Protected_Type (Current_Scope) then
4878 Set_Convention (Designator, Convention_Protected);
4879 end if;
4880
4881 List_Inherited_Pre_Post_Aspects (Designator);
4882
4883 -- Process the aspects before establishing the proper categorization in
4884 -- case the subprogram is a compilation unit and one of its aspects is
4885 -- converted into a categorization pragma.
4886
4887 if Has_Aspects (N) then
4888 Analyze_Aspect_Specifications (N, Designator);
4889 end if;
4890
4891 if Scop /= Standard_Standard and then not Is_Child_Unit (Designator) then
4892 Set_Categorization_From_Scope (Designator, Scop);
4893
4894 -- Otherwise the unit is a compilation unit and/or a child unit. Set the
4895 -- proper categorization of the unit based on its pragmas.
4896
4897 else
4898 Push_Scope (Designator);
4899 Set_Categorization_From_Pragmas (N);
4900 Validate_Categorization_Dependency (N, Designator);
4901 Pop_Scope;
4902 end if;
4903 end Analyze_Subprogram_Declaration;
4904
4905 --------------------------------------
4906 -- Analyze_Subprogram_Specification --
4907 --------------------------------------
4908
4909 -- Reminder: N here really is a subprogram specification (not a subprogram
4910 -- declaration). This procedure is called to analyze the specification in
4911 -- both subprogram bodies and subprogram declarations (specs).
4912
4913 function Analyze_Subprogram_Specification (N : Node_Id) return Entity_Id is
4914 function Is_Invariant_Procedure_Or_Body (E : Entity_Id) return Boolean;
4915 -- Determine whether entity E denotes the spec or body of an invariant
4916 -- procedure.
4917
4918 ------------------------------------
4919 -- Is_Invariant_Procedure_Or_Body --
4920 ------------------------------------
4921
4922 function Is_Invariant_Procedure_Or_Body (E : Entity_Id) return Boolean is
4923 Decl : constant Node_Id := Unit_Declaration_Node (E);
4924 Spec : Entity_Id;
4925
4926 begin
4927 if Nkind (Decl) = N_Subprogram_Body then
4928 Spec := Corresponding_Spec (Decl);
4929 else
4930 Spec := E;
4931 end if;
4932
4933 return
4934 Present (Spec)
4935 and then Ekind (Spec) = E_Procedure
4936 and then (Is_Partial_Invariant_Procedure (Spec)
4937 or else Is_Invariant_Procedure (Spec));
4938 end Is_Invariant_Procedure_Or_Body;
4939
4940 -- Local variables
4941
4942 Designator : constant Entity_Id := Defining_Entity (N);
4943 Formals : constant List_Id := Parameter_Specifications (N);
4944
4945 -- Start of processing for Analyze_Subprogram_Specification
4946
4947 begin
4948 -- User-defined operator is not allowed in SPARK, except as a renaming
4949
4950 if Nkind (Defining_Unit_Name (N)) = N_Defining_Operator_Symbol
4951 and then Nkind (Parent (N)) /= N_Subprogram_Renaming_Declaration
4952 then
4953 Check_SPARK_05_Restriction
4954 ("user-defined operator is not allowed", N);
4955 end if;
4956
4957 -- Proceed with analysis. Do not emit a cross-reference entry if the
4958 -- specification comes from an expression function, because it may be
4959 -- the completion of a previous declaration. If it is not, the cross-
4960 -- reference entry will be emitted for the new subprogram declaration.
4961
4962 if Nkind (Parent (N)) /= N_Expression_Function then
4963 Generate_Definition (Designator);
4964 end if;
4965
4966 if Nkind (N) = N_Function_Specification then
4967 Set_Ekind (Designator, E_Function);
4968 Set_Mechanism (Designator, Default_Mechanism);
4969 else
4970 Set_Ekind (Designator, E_Procedure);
4971 Set_Etype (Designator, Standard_Void_Type);
4972 end if;
4973
4974 -- Flag Is_Inlined_Always is True by default, and reversed to False for
4975 -- those subprograms which could be inlined in GNATprove mode (because
4976 -- Body_To_Inline is non-Empty) but should not be inlined.
4977
4978 if GNATprove_Mode then
4979 Set_Is_Inlined_Always (Designator);
4980 end if;
4981
4982 -- Introduce new scope for analysis of the formals and the return type
4983
4984 Set_Scope (Designator, Current_Scope);
4985
4986 if Present (Formals) then
4987 Push_Scope (Designator);
4988 Process_Formals (Formals, N);
4989
4990 -- Check dimensions in N for formals with default expression
4991
4992 Analyze_Dimension_Formals (N, Formals);
4993
4994 -- Ada 2005 (AI-345): If this is an overriding operation of an
4995 -- inherited interface operation, and the controlling type is
4996 -- a synchronized type, replace the type with its corresponding
4997 -- record, to match the proper signature of an overriding operation.
4998 -- Same processing for an access parameter whose designated type is
4999 -- derived from a synchronized interface.
5000
5001 -- This modification is not done for invariant procedures because
5002 -- the corresponding record may not necessarely be visible when the
5003 -- concurrent type acts as the full view of a private type.
5004
5005 -- package Pack is
5006 -- type Prot is private with Type_Invariant => ...;
5007 -- procedure ConcInvariant (Obj : Prot);
5008 -- private
5009 -- protected type Prot is ...;
5010 -- type Concurrent_Record_Prot is record ...;
5011 -- procedure ConcInvariant (Obj : Prot) is
5012 -- ...
5013 -- end ConcInvariant;
5014 -- end Pack;
5015
5016 -- In the example above, both the spec and body of the invariant
5017 -- procedure must utilize the private type as the controlling type.
5018
5019 if Ada_Version >= Ada_2005
5020 and then not Is_Invariant_Procedure_Or_Body (Designator)
5021 then
5022 declare
5023 Formal : Entity_Id;
5024 Formal_Typ : Entity_Id;
5025 Rec_Typ : Entity_Id;
5026 Desig_Typ : Entity_Id;
5027
5028 begin
5029 Formal := First_Formal (Designator);
5030 while Present (Formal) loop
5031 Formal_Typ := Etype (Formal);
5032
5033 if Is_Concurrent_Type (Formal_Typ)
5034 and then Present (Corresponding_Record_Type (Formal_Typ))
5035 then
5036 Rec_Typ := Corresponding_Record_Type (Formal_Typ);
5037
5038 if Present (Interfaces (Rec_Typ)) then
5039 Set_Etype (Formal, Rec_Typ);
5040 end if;
5041
5042 elsif Ekind (Formal_Typ) = E_Anonymous_Access_Type then
5043 Desig_Typ := Designated_Type (Formal_Typ);
5044
5045 if Is_Concurrent_Type (Desig_Typ)
5046 and then Present (Corresponding_Record_Type (Desig_Typ))
5047 then
5048 Rec_Typ := Corresponding_Record_Type (Desig_Typ);
5049
5050 if Present (Interfaces (Rec_Typ)) then
5051 Set_Directly_Designated_Type (Formal_Typ, Rec_Typ);
5052 end if;
5053 end if;
5054 end if;
5055
5056 Next_Formal (Formal);
5057 end loop;
5058 end;
5059 end if;
5060
5061 End_Scope;
5062
5063 -- The subprogram scope is pushed and popped around the processing of
5064 -- the return type for consistency with call above to Process_Formals
5065 -- (which itself can call Analyze_Return_Type), and to ensure that any
5066 -- itype created for the return type will be associated with the proper
5067 -- scope.
5068
5069 elsif Nkind (N) = N_Function_Specification then
5070 Push_Scope (Designator);
5071 Analyze_Return_Type (N);
5072 End_Scope;
5073 end if;
5074
5075 -- Function case
5076
5077 if Nkind (N) = N_Function_Specification then
5078
5079 -- Deal with operator symbol case
5080
5081 if Nkind (Designator) = N_Defining_Operator_Symbol then
5082 Valid_Operator_Definition (Designator);
5083 end if;
5084
5085 May_Need_Actuals (Designator);
5086
5087 -- Ada 2005 (AI-251): If the return type is abstract, verify that
5088 -- the subprogram is abstract also. This does not apply to renaming
5089 -- declarations, where abstractness is inherited, and to subprogram
5090 -- bodies generated for stream operations, which become renamings as
5091 -- bodies.
5092
5093 -- In case of primitives associated with abstract interface types
5094 -- the check is applied later (see Analyze_Subprogram_Declaration).
5095
5096 if not Nkind_In (Original_Node (Parent (N)),
5097 N_Abstract_Subprogram_Declaration,
5098 N_Formal_Abstract_Subprogram_Declaration,
5099 N_Subprogram_Renaming_Declaration)
5100 then
5101 if Is_Abstract_Type (Etype (Designator))
5102 and then not Is_Interface (Etype (Designator))
5103 then
5104 Error_Msg_N
5105 ("function that returns abstract type must be abstract", N);
5106
5107 -- Ada 2012 (AI-0073): Extend this test to subprograms with an
5108 -- access result whose designated type is abstract.
5109
5110 elsif Ada_Version >= Ada_2012
5111 and then Nkind (Result_Definition (N)) = N_Access_Definition
5112 and then
5113 not Is_Class_Wide_Type (Designated_Type (Etype (Designator)))
5114 and then Is_Abstract_Type (Designated_Type (Etype (Designator)))
5115 then
5116 Error_Msg_N
5117 ("function whose access result designates abstract type "
5118 & "must be abstract", N);
5119 end if;
5120 end if;
5121 end if;
5122
5123 return Designator;
5124 end Analyze_Subprogram_Specification;
5125
5126 -----------------------
5127 -- Check_Conformance --
5128 -----------------------
5129
5130 procedure Check_Conformance
5131 (New_Id : Entity_Id;
5132 Old_Id : Entity_Id;
5133 Ctype : Conformance_Type;
5134 Errmsg : Boolean;
5135 Conforms : out Boolean;
5136 Err_Loc : Node_Id := Empty;
5137 Get_Inst : Boolean := False;
5138 Skip_Controlling_Formals : Boolean := False)
5139 is
5140 procedure Conformance_Error (Msg : String; N : Node_Id := New_Id);
5141 -- Sets Conforms to False. If Errmsg is False, then that's all it does.
5142 -- If Errmsg is True, then processing continues to post an error message
5143 -- for conformance error on given node. Two messages are output. The
5144 -- first message points to the previous declaration with a general "no
5145 -- conformance" message. The second is the detailed reason, supplied as
5146 -- Msg. The parameter N provide information for a possible & insertion
5147 -- in the message, and also provides the location for posting the
5148 -- message in the absence of a specified Err_Loc location.
5149
5150 function Conventions_Match
5151 (Id1 : Entity_Id;
5152 Id2 : Entity_Id) return Boolean;
5153 -- Determine whether the conventions of arbitrary entities Id1 and Id2
5154 -- match.
5155
5156 -----------------------
5157 -- Conformance_Error --
5158 -----------------------
5159
5160 procedure Conformance_Error (Msg : String; N : Node_Id := New_Id) is
5161 Enode : Node_Id;
5162
5163 begin
5164 Conforms := False;
5165
5166 if Errmsg then
5167 if No (Err_Loc) then
5168 Enode := N;
5169 else
5170 Enode := Err_Loc;
5171 end if;
5172
5173 Error_Msg_Sloc := Sloc (Old_Id);
5174
5175 case Ctype is
5176 when Type_Conformant =>
5177 Error_Msg_N -- CODEFIX
5178 ("not type conformant with declaration#!", Enode);
5179
5180 when Mode_Conformant =>
5181 if Nkind (Parent (Old_Id)) = N_Full_Type_Declaration then
5182 Error_Msg_N
5183 ("not mode conformant with operation inherited#!",
5184 Enode);
5185 else
5186 Error_Msg_N
5187 ("not mode conformant with declaration#!", Enode);
5188 end if;
5189
5190 when Subtype_Conformant =>
5191 if Nkind (Parent (Old_Id)) = N_Full_Type_Declaration then
5192 Error_Msg_N
5193 ("not subtype conformant with operation inherited#!",
5194 Enode);
5195 else
5196 Error_Msg_N
5197 ("not subtype conformant with declaration#!", Enode);
5198 end if;
5199
5200 when Fully_Conformant =>
5201 if Nkind (Parent (Old_Id)) = N_Full_Type_Declaration then
5202 Error_Msg_N -- CODEFIX
5203 ("not fully conformant with operation inherited#!",
5204 Enode);
5205 else
5206 Error_Msg_N -- CODEFIX
5207 ("not fully conformant with declaration#!", Enode);
5208 end if;
5209 end case;
5210
5211 Error_Msg_NE (Msg, Enode, N);
5212 end if;
5213 end Conformance_Error;
5214
5215 -----------------------
5216 -- Conventions_Match --
5217 -----------------------
5218
5219 function Conventions_Match
5220 (Id1 : Entity_Id;
5221 Id2 : Entity_Id) return Boolean
5222 is
5223 begin
5224 -- Ignore the conventions of anonymous access-to-subprogram types
5225 -- and subprogram types because these are internally generated and
5226 -- the only way these may receive a convention is if they inherit
5227 -- the convention of a related subprogram.
5228
5229 if Ekind_In (Id1, E_Anonymous_Access_Subprogram_Type,
5230 E_Subprogram_Type)
5231 or else
5232 Ekind_In (Id2, E_Anonymous_Access_Subprogram_Type,
5233 E_Subprogram_Type)
5234 then
5235 return True;
5236
5237 -- Otherwise compare the conventions directly
5238
5239 else
5240 return Convention (Id1) = Convention (Id2);
5241 end if;
5242 end Conventions_Match;
5243
5244 -- Local Variables
5245
5246 Old_Type : constant Entity_Id := Etype (Old_Id);
5247 New_Type : constant Entity_Id := Etype (New_Id);
5248 Old_Formal : Entity_Id;
5249 New_Formal : Entity_Id;
5250 Access_Types_Match : Boolean;
5251 Old_Formal_Base : Entity_Id;
5252 New_Formal_Base : Entity_Id;
5253
5254 -- Start of processing for Check_Conformance
5255
5256 begin
5257 Conforms := True;
5258
5259 -- We need a special case for operators, since they don't appear
5260 -- explicitly.
5261
5262 if Ctype = Type_Conformant then
5263 if Ekind (New_Id) = E_Operator
5264 and then Operator_Matches_Spec (New_Id, Old_Id)
5265 then
5266 return;
5267 end if;
5268 end if;
5269
5270 -- If both are functions/operators, check return types conform
5271
5272 if Old_Type /= Standard_Void_Type
5273 and then
5274 New_Type /= Standard_Void_Type
5275 then
5276 -- If we are checking interface conformance we omit controlling
5277 -- arguments and result, because we are only checking the conformance
5278 -- of the remaining parameters.
5279
5280 if Has_Controlling_Result (Old_Id)
5281 and then Has_Controlling_Result (New_Id)
5282 and then Skip_Controlling_Formals
5283 then
5284 null;
5285
5286 elsif not Conforming_Types (Old_Type, New_Type, Ctype, Get_Inst) then
5287 if Ctype >= Subtype_Conformant
5288 and then not Predicates_Match (Old_Type, New_Type)
5289 then
5290 Conformance_Error
5291 ("\predicate of return type does not match!", New_Id);
5292 else
5293 Conformance_Error
5294 ("\return type does not match!", New_Id);
5295 end if;
5296
5297 return;
5298 end if;
5299
5300 -- Ada 2005 (AI-231): In case of anonymous access types check the
5301 -- null-exclusion and access-to-constant attributes match.
5302
5303 if Ada_Version >= Ada_2005
5304 and then Ekind (Etype (Old_Type)) = E_Anonymous_Access_Type
5305 and then
5306 (Can_Never_Be_Null (Old_Type) /= Can_Never_Be_Null (New_Type)
5307 or else Is_Access_Constant (Etype (Old_Type)) /=
5308 Is_Access_Constant (Etype (New_Type)))
5309 then
5310 Conformance_Error ("\return type does not match!", New_Id);
5311 return;
5312 end if;
5313
5314 -- If either is a function/operator and the other isn't, error
5315
5316 elsif Old_Type /= Standard_Void_Type
5317 or else New_Type /= Standard_Void_Type
5318 then
5319 Conformance_Error ("\functions can only match functions!", New_Id);
5320 return;
5321 end if;
5322
5323 -- In subtype conformant case, conventions must match (RM 6.3.1(16)).
5324 -- If this is a renaming as body, refine error message to indicate that
5325 -- the conflict is with the original declaration. If the entity is not
5326 -- frozen, the conventions don't have to match, the one of the renamed
5327 -- entity is inherited.
5328
5329 if Ctype >= Subtype_Conformant then
5330 if not Conventions_Match (Old_Id, New_Id) then
5331 if not Is_Frozen (New_Id) then
5332 null;
5333
5334 elsif Present (Err_Loc)
5335 and then Nkind (Err_Loc) = N_Subprogram_Renaming_Declaration
5336 and then Present (Corresponding_Spec (Err_Loc))
5337 then
5338 Error_Msg_Name_1 := Chars (New_Id);
5339 Error_Msg_Name_2 :=
5340 Name_Ada + Convention_Id'Pos (Convention (New_Id));
5341 Conformance_Error ("\prior declaration for% has convention %!");
5342
5343 else
5344 Conformance_Error ("\calling conventions do not match!");
5345 end if;
5346
5347 return;
5348
5349 elsif Is_Formal_Subprogram (Old_Id)
5350 or else Is_Formal_Subprogram (New_Id)
5351 then
5352 Conformance_Error ("\formal subprograms not allowed!");
5353 return;
5354 end if;
5355 end if;
5356
5357 -- Deal with parameters
5358
5359 -- Note: we use the entity information, rather than going directly
5360 -- to the specification in the tree. This is not only simpler, but
5361 -- absolutely necessary for some cases of conformance tests between
5362 -- operators, where the declaration tree simply does not exist.
5363
5364 Old_Formal := First_Formal (Old_Id);
5365 New_Formal := First_Formal (New_Id);
5366 while Present (Old_Formal) and then Present (New_Formal) loop
5367 if Is_Controlling_Formal (Old_Formal)
5368 and then Is_Controlling_Formal (New_Formal)
5369 and then Skip_Controlling_Formals
5370 then
5371 -- The controlling formals will have different types when
5372 -- comparing an interface operation with its match, but both
5373 -- or neither must be access parameters.
5374
5375 if Is_Access_Type (Etype (Old_Formal))
5376 =
5377 Is_Access_Type (Etype (New_Formal))
5378 then
5379 goto Skip_Controlling_Formal;
5380 else
5381 Conformance_Error
5382 ("\access parameter does not match!", New_Formal);
5383 end if;
5384 end if;
5385
5386 -- Ada 2012: Mode conformance also requires that formal parameters
5387 -- be both aliased, or neither.
5388
5389 if Ctype >= Mode_Conformant and then Ada_Version >= Ada_2012 then
5390 if Is_Aliased (Old_Formal) /= Is_Aliased (New_Formal) then
5391 Conformance_Error
5392 ("\aliased parameter mismatch!", New_Formal);
5393 end if;
5394 end if;
5395
5396 if Ctype = Fully_Conformant then
5397
5398 -- Names must match. Error message is more accurate if we do
5399 -- this before checking that the types of the formals match.
5400
5401 if Chars (Old_Formal) /= Chars (New_Formal) then
5402 Conformance_Error ("\name& does not match!", New_Formal);
5403
5404 -- Set error posted flag on new formal as well to stop
5405 -- junk cascaded messages in some cases.
5406
5407 Set_Error_Posted (New_Formal);
5408 return;
5409 end if;
5410
5411 -- Null exclusion must match
5412
5413 if Null_Exclusion_Present (Parent (Old_Formal))
5414 /=
5415 Null_Exclusion_Present (Parent (New_Formal))
5416 then
5417 -- Only give error if both come from source. This should be
5418 -- investigated some time, since it should not be needed ???
5419
5420 if Comes_From_Source (Old_Formal)
5421 and then
5422 Comes_From_Source (New_Formal)
5423 then
5424 Conformance_Error
5425 ("\null exclusion for& does not match", New_Formal);
5426
5427 -- Mark error posted on the new formal to avoid duplicated
5428 -- complaint about types not matching.
5429
5430 Set_Error_Posted (New_Formal);
5431 end if;
5432 end if;
5433 end if;
5434
5435 -- Ada 2005 (AI-423): Possible access [sub]type and itype match. This
5436 -- case occurs whenever a subprogram is being renamed and one of its
5437 -- parameters imposes a null exclusion. For example:
5438
5439 -- type T is null record;
5440 -- type Acc_T is access T;
5441 -- subtype Acc_T_Sub is Acc_T;
5442
5443 -- procedure P (Obj : not null Acc_T_Sub); -- itype
5444 -- procedure Ren_P (Obj : Acc_T_Sub) -- subtype
5445 -- renames P;
5446
5447 Old_Formal_Base := Etype (Old_Formal);
5448 New_Formal_Base := Etype (New_Formal);
5449
5450 if Get_Inst then
5451 Old_Formal_Base := Get_Instance_Of (Old_Formal_Base);
5452 New_Formal_Base := Get_Instance_Of (New_Formal_Base);
5453 end if;
5454
5455 Access_Types_Match := Ada_Version >= Ada_2005
5456
5457 -- Ensure that this rule is only applied when New_Id is a
5458 -- renaming of Old_Id.
5459
5460 and then Nkind (Parent (Parent (New_Id))) =
5461 N_Subprogram_Renaming_Declaration
5462 and then Nkind (Name (Parent (Parent (New_Id)))) in N_Has_Entity
5463 and then Present (Entity (Name (Parent (Parent (New_Id)))))
5464 and then Entity (Name (Parent (Parent (New_Id)))) = Old_Id
5465
5466 -- Now handle the allowed access-type case
5467
5468 and then Is_Access_Type (Old_Formal_Base)
5469 and then Is_Access_Type (New_Formal_Base)
5470
5471 -- The type kinds must match. The only exception occurs with
5472 -- multiple generics of the form:
5473
5474 -- generic generic
5475 -- type F is private; type A is private;
5476 -- type F_Ptr is access F; type A_Ptr is access A;
5477 -- with proc F_P (X : F_Ptr); with proc A_P (X : A_Ptr);
5478 -- package F_Pack is ... package A_Pack is
5479 -- package F_Inst is
5480 -- new F_Pack (A, A_Ptr, A_P);
5481
5482 -- When checking for conformance between the parameters of A_P
5483 -- and F_P, the type kinds of F_Ptr and A_Ptr will not match
5484 -- because the compiler has transformed A_Ptr into a subtype of
5485 -- F_Ptr. We catch this case in the code below.
5486
5487 and then (Ekind (Old_Formal_Base) = Ekind (New_Formal_Base)
5488 or else
5489 (Is_Generic_Type (Old_Formal_Base)
5490 and then Is_Generic_Type (New_Formal_Base)
5491 and then Is_Internal (New_Formal_Base)
5492 and then Etype (Etype (New_Formal_Base)) =
5493 Old_Formal_Base))
5494 and then Directly_Designated_Type (Old_Formal_Base) =
5495 Directly_Designated_Type (New_Formal_Base)
5496 and then ((Is_Itype (Old_Formal_Base)
5497 and then Can_Never_Be_Null (Old_Formal_Base))
5498 or else
5499 (Is_Itype (New_Formal_Base)
5500 and then Can_Never_Be_Null (New_Formal_Base)));
5501
5502 -- Types must always match. In the visible part of an instance,
5503 -- usual overloading rules for dispatching operations apply, and
5504 -- we check base types (not the actual subtypes).
5505
5506 if In_Instance_Visible_Part
5507 and then Is_Dispatching_Operation (New_Id)
5508 then
5509 if not Conforming_Types
5510 (T1 => Base_Type (Etype (Old_Formal)),
5511 T2 => Base_Type (Etype (New_Formal)),
5512 Ctype => Ctype,
5513 Get_Inst => Get_Inst)
5514 and then not Access_Types_Match
5515 then
5516 Conformance_Error ("\type of & does not match!", New_Formal);
5517 return;
5518 end if;
5519
5520 elsif not Conforming_Types
5521 (T1 => Old_Formal_Base,
5522 T2 => New_Formal_Base,
5523 Ctype => Ctype,
5524 Get_Inst => Get_Inst)
5525 and then not Access_Types_Match
5526 then
5527 -- Don't give error message if old type is Any_Type. This test
5528 -- avoids some cascaded errors, e.g. in case of a bad spec.
5529
5530 if Errmsg and then Old_Formal_Base = Any_Type then
5531 Conforms := False;
5532 else
5533 if Ctype >= Subtype_Conformant
5534 and then
5535 not Predicates_Match (Old_Formal_Base, New_Formal_Base)
5536 then
5537 Conformance_Error
5538 ("\predicate of & does not match!", New_Formal);
5539 else
5540 Conformance_Error
5541 ("\type of & does not match!", New_Formal);
5542
5543 if not Dimensions_Match (Old_Formal_Base, New_Formal_Base)
5544 then
5545 Error_Msg_N ("\dimensions mismatch!", New_Formal);
5546 end if;
5547 end if;
5548 end if;
5549
5550 return;
5551 end if;
5552
5553 -- For mode conformance, mode must match
5554
5555 if Ctype >= Mode_Conformant then
5556 if Parameter_Mode (Old_Formal) /= Parameter_Mode (New_Formal) then
5557 if not Ekind_In (New_Id, E_Function, E_Procedure)
5558 or else not Is_Primitive_Wrapper (New_Id)
5559 then
5560 Conformance_Error ("\mode of & does not match!", New_Formal);
5561
5562 else
5563 declare
5564 T : constant Entity_Id := Find_Dispatching_Type (New_Id);
5565 begin
5566 if Is_Protected_Type (Corresponding_Concurrent_Type (T))
5567 then
5568 Error_Msg_PT (New_Id, Ultimate_Alias (Old_Id));
5569 else
5570 Conformance_Error
5571 ("\mode of & does not match!", New_Formal);
5572 end if;
5573 end;
5574 end if;
5575
5576 return;
5577
5578 -- Part of mode conformance for access types is having the same
5579 -- constant modifier.
5580
5581 elsif Access_Types_Match
5582 and then Is_Access_Constant (Old_Formal_Base) /=
5583 Is_Access_Constant (New_Formal_Base)
5584 then
5585 Conformance_Error
5586 ("\constant modifier does not match!", New_Formal);
5587 return;
5588 end if;
5589 end if;
5590
5591 if Ctype >= Subtype_Conformant then
5592
5593 -- Ada 2005 (AI-231): In case of anonymous access types check
5594 -- the null-exclusion and access-to-constant attributes must
5595 -- match. For null exclusion, we test the types rather than the
5596 -- formals themselves, since the attribute is only set reliably
5597 -- on the formals in the Ada 95 case, and we exclude the case
5598 -- where Old_Formal is marked as controlling, to avoid errors
5599 -- when matching completing bodies with dispatching declarations
5600 -- (access formals in the bodies aren't marked Can_Never_Be_Null).
5601
5602 if Ada_Version >= Ada_2005
5603 and then Ekind (Etype (Old_Formal)) = E_Anonymous_Access_Type
5604 and then Ekind (Etype (New_Formal)) = E_Anonymous_Access_Type
5605 and then
5606 ((Can_Never_Be_Null (Etype (Old_Formal)) /=
5607 Can_Never_Be_Null (Etype (New_Formal))
5608 and then
5609 not Is_Controlling_Formal (Old_Formal))
5610 or else
5611 Is_Access_Constant (Etype (Old_Formal)) /=
5612 Is_Access_Constant (Etype (New_Formal)))
5613
5614 -- Do not complain if error already posted on New_Formal. This
5615 -- avoids some redundant error messages.
5616
5617 and then not Error_Posted (New_Formal)
5618 then
5619 -- It is allowed to omit the null-exclusion in case of stream
5620 -- attribute subprograms. We recognize stream subprograms
5621 -- through their TSS-generated suffix.
5622
5623 declare
5624 TSS_Name : constant TSS_Name_Type := Get_TSS_Name (New_Id);
5625
5626 begin
5627 if TSS_Name /= TSS_Stream_Read
5628 and then TSS_Name /= TSS_Stream_Write
5629 and then TSS_Name /= TSS_Stream_Input
5630 and then TSS_Name /= TSS_Stream_Output
5631 then
5632 -- Here we have a definite conformance error. It is worth
5633 -- special casing the error message for the case of a
5634 -- controlling formal (which excludes null).
5635
5636 if Is_Controlling_Formal (New_Formal) then
5637 Error_Msg_Node_2 := Scope (New_Formal);
5638 Conformance_Error
5639 ("\controlling formal & of & excludes null, "
5640 & "declaration must exclude null as well",
5641 New_Formal);
5642
5643 -- Normal case (couldn't we give more detail here???)
5644
5645 else
5646 Conformance_Error
5647 ("\type of & does not match!", New_Formal);
5648 end if;
5649
5650 return;
5651 end if;
5652 end;
5653 end if;
5654 end if;
5655
5656 -- Full conformance checks
5657
5658 if Ctype = Fully_Conformant then
5659
5660 -- We have checked already that names match
5661
5662 if Parameter_Mode (Old_Formal) = E_In_Parameter then
5663
5664 -- Check default expressions for in parameters
5665
5666 declare
5667 NewD : constant Boolean :=
5668 Present (Default_Value (New_Formal));
5669 OldD : constant Boolean :=
5670 Present (Default_Value (Old_Formal));
5671 begin
5672 if NewD or OldD then
5673
5674 -- The old default value has been analyzed because the
5675 -- current full declaration will have frozen everything
5676 -- before. The new default value has not been analyzed,
5677 -- so analyze it now before we check for conformance.
5678
5679 if NewD then
5680 Push_Scope (New_Id);
5681 Preanalyze_Spec_Expression
5682 (Default_Value (New_Formal), Etype (New_Formal));
5683 End_Scope;
5684 end if;
5685
5686 if not (NewD and OldD)
5687 or else not Fully_Conformant_Expressions
5688 (Default_Value (Old_Formal),
5689 Default_Value (New_Formal))
5690 then
5691 Conformance_Error
5692 ("\default expression for & does not match!",
5693 New_Formal);
5694 return;
5695 end if;
5696 end if;
5697 end;
5698 end if;
5699 end if;
5700
5701 -- A couple of special checks for Ada 83 mode. These checks are
5702 -- skipped if either entity is an operator in package Standard,
5703 -- or if either old or new instance is not from the source program.
5704
5705 if Ada_Version = Ada_83
5706 and then Sloc (Old_Id) > Standard_Location
5707 and then Sloc (New_Id) > Standard_Location
5708 and then Comes_From_Source (Old_Id)
5709 and then Comes_From_Source (New_Id)
5710 then
5711 declare
5712 Old_Param : constant Node_Id := Declaration_Node (Old_Formal);
5713 New_Param : constant Node_Id := Declaration_Node (New_Formal);
5714
5715 begin
5716 -- Explicit IN must be present or absent in both cases. This
5717 -- test is required only in the full conformance case.
5718
5719 if In_Present (Old_Param) /= In_Present (New_Param)
5720 and then Ctype = Fully_Conformant
5721 then
5722 Conformance_Error
5723 ("\(Ada 83) IN must appear in both declarations",
5724 New_Formal);
5725 return;
5726 end if;
5727
5728 -- Grouping (use of comma in param lists) must be the same
5729 -- This is where we catch a misconformance like:
5730
5731 -- A, B : Integer
5732 -- A : Integer; B : Integer
5733
5734 -- which are represented identically in the tree except
5735 -- for the setting of the flags More_Ids and Prev_Ids.
5736
5737 if More_Ids (Old_Param) /= More_Ids (New_Param)
5738 or else Prev_Ids (Old_Param) /= Prev_Ids (New_Param)
5739 then
5740 Conformance_Error
5741 ("\grouping of & does not match!", New_Formal);
5742 return;
5743 end if;
5744 end;
5745 end if;
5746
5747 -- This label is required when skipping controlling formals
5748
5749 <<Skip_Controlling_Formal>>
5750
5751 Next_Formal (Old_Formal);
5752 Next_Formal (New_Formal);
5753 end loop;
5754
5755 if Present (Old_Formal) then
5756 Conformance_Error ("\too few parameters!");
5757 return;
5758
5759 elsif Present (New_Formal) then
5760 Conformance_Error ("\too many parameters!", New_Formal);
5761 return;
5762 end if;
5763 end Check_Conformance;
5764
5765 -----------------------
5766 -- Check_Conventions --
5767 -----------------------
5768
5769 procedure Check_Conventions (Typ : Entity_Id) is
5770 Ifaces_List : Elist_Id;
5771
5772 procedure Check_Convention (Op : Entity_Id);
5773 -- Verify that the convention of inherited dispatching operation Op is
5774 -- consistent among all subprograms it overrides. In order to minimize
5775 -- the search, Search_From is utilized to designate a specific point in
5776 -- the list rather than iterating over the whole list once more.
5777
5778 ----------------------
5779 -- Check_Convention --
5780 ----------------------
5781
5782 procedure Check_Convention (Op : Entity_Id) is
5783 Op_Conv : constant Convention_Id := Convention (Op);
5784 Iface_Conv : Convention_Id;
5785 Iface_Elmt : Elmt_Id;
5786 Iface_Prim_Elmt : Elmt_Id;
5787 Iface_Prim : Entity_Id;
5788
5789 begin
5790 Iface_Elmt := First_Elmt (Ifaces_List);
5791 while Present (Iface_Elmt) loop
5792 Iface_Prim_Elmt :=
5793 First_Elmt (Primitive_Operations (Node (Iface_Elmt)));
5794 while Present (Iface_Prim_Elmt) loop
5795 Iface_Prim := Node (Iface_Prim_Elmt);
5796 Iface_Conv := Convention (Iface_Prim);
5797
5798 if Is_Interface_Conformant (Typ, Iface_Prim, Op)
5799 and then Iface_Conv /= Op_Conv
5800 then
5801 Error_Msg_N
5802 ("inconsistent conventions in primitive operations", Typ);
5803
5804 Error_Msg_Name_1 := Chars (Op);
5805 Error_Msg_Name_2 := Get_Convention_Name (Op_Conv);
5806 Error_Msg_Sloc := Sloc (Op);
5807
5808 if Comes_From_Source (Op) or else No (Alias (Op)) then
5809 if not Present (Overridden_Operation (Op)) then
5810 Error_Msg_N ("\\primitive % defined #", Typ);
5811 else
5812 Error_Msg_N
5813 ("\\overriding operation % with "
5814 & "convention % defined #", Typ);
5815 end if;
5816
5817 else pragma Assert (Present (Alias (Op)));
5818 Error_Msg_Sloc := Sloc (Alias (Op));
5819 Error_Msg_N ("\\inherited operation % with "
5820 & "convention % defined #", Typ);
5821 end if;
5822
5823 Error_Msg_Name_1 := Chars (Op);
5824 Error_Msg_Name_2 := Get_Convention_Name (Iface_Conv);
5825 Error_Msg_Sloc := Sloc (Iface_Prim);
5826 Error_Msg_N ("\\overridden operation % with "
5827 & "convention % defined #", Typ);
5828
5829 -- Avoid cascading errors
5830
5831 return;
5832 end if;
5833
5834 Next_Elmt (Iface_Prim_Elmt);
5835 end loop;
5836
5837 Next_Elmt (Iface_Elmt);
5838 end loop;
5839 end Check_Convention;
5840
5841 -- Local variables
5842
5843 Prim_Op : Entity_Id;
5844 Prim_Op_Elmt : Elmt_Id;
5845
5846 -- Start of processing for Check_Conventions
5847
5848 begin
5849 if not Has_Interfaces (Typ) then
5850 return;
5851 end if;
5852
5853 Collect_Interfaces (Typ, Ifaces_List);
5854
5855 -- The algorithm checks every overriding dispatching operation against
5856 -- all the corresponding overridden dispatching operations, detecting
5857 -- differences in conventions.
5858
5859 Prim_Op_Elmt := First_Elmt (Primitive_Operations (Typ));
5860 while Present (Prim_Op_Elmt) loop
5861 Prim_Op := Node (Prim_Op_Elmt);
5862
5863 -- A small optimization: skip the predefined dispatching operations
5864 -- since they always have the same convention.
5865
5866 if not Is_Predefined_Dispatching_Operation (Prim_Op) then
5867 Check_Convention (Prim_Op);
5868 end if;
5869
5870 Next_Elmt (Prim_Op_Elmt);
5871 end loop;
5872 end Check_Conventions;
5873
5874 ------------------------------
5875 -- Check_Delayed_Subprogram --
5876 ------------------------------
5877
5878 procedure Check_Delayed_Subprogram (Designator : Entity_Id) is
5879 procedure Possible_Freeze (T : Entity_Id);
5880 -- T is the type of either a formal parameter or of the return type. If
5881 -- T is not yet frozen and needs a delayed freeze, then the subprogram
5882 -- itself must be delayed.
5883
5884 ---------------------
5885 -- Possible_Freeze --
5886 ---------------------
5887
5888 procedure Possible_Freeze (T : Entity_Id) is
5889 Scop : constant Entity_Id := Scope (Designator);
5890
5891 begin
5892 -- If the subprogram appears within a package instance (which may be
5893 -- the wrapper package of a subprogram instance) the freeze node for
5894 -- that package will freeze the subprogram at the proper place, so
5895 -- do not emit a freeze node for the subprogram, given that it may
5896 -- appear in the wrong scope.
5897
5898 if Ekind (Scop) = E_Package
5899 and then not Comes_From_Source (Scop)
5900 and then Is_Generic_Instance (Scop)
5901 then
5902 null;
5903
5904 elsif Has_Delayed_Freeze (T) and then not Is_Frozen (T) then
5905 Set_Has_Delayed_Freeze (Designator);
5906
5907 elsif Is_Access_Type (T)
5908 and then Has_Delayed_Freeze (Designated_Type (T))
5909 and then not Is_Frozen (Designated_Type (T))
5910 then
5911 Set_Has_Delayed_Freeze (Designator);
5912 end if;
5913 end Possible_Freeze;
5914
5915 -- Local variables
5916
5917 F : Entity_Id;
5918
5919 -- Start of processing for Check_Delayed_Subprogram
5920
5921 begin
5922 -- All subprograms, including abstract subprograms, may need a freeze
5923 -- node if some formal type or the return type needs one.
5924
5925 Possible_Freeze (Etype (Designator));
5926 Possible_Freeze (Base_Type (Etype (Designator))); -- needed ???
5927
5928 -- Need delayed freeze if any of the formal types themselves need a
5929 -- delayed freeze and are not yet frozen.
5930
5931 F := First_Formal (Designator);
5932 while Present (F) loop
5933 Possible_Freeze (Etype (F));
5934 Possible_Freeze (Base_Type (Etype (F))); -- needed ???
5935 Next_Formal (F);
5936 end loop;
5937
5938 -- Mark functions that return by reference. Note that it cannot be done
5939 -- for delayed_freeze subprograms because the underlying returned type
5940 -- may not be known yet (for private types).
5941
5942 if not Has_Delayed_Freeze (Designator) and then Expander_Active then
5943 declare
5944 Typ : constant Entity_Id := Etype (Designator);
5945 Utyp : constant Entity_Id := Underlying_Type (Typ);
5946
5947 begin
5948 if Is_Limited_View (Typ) then
5949 Set_Returns_By_Ref (Designator);
5950
5951 elsif Present (Utyp) and then CW_Or_Has_Controlled_Part (Utyp) then
5952 Set_Returns_By_Ref (Designator);
5953 end if;
5954 end;
5955 end if;
5956 end Check_Delayed_Subprogram;
5957
5958 ------------------------------------
5959 -- Check_Discriminant_Conformance --
5960 ------------------------------------
5961
5962 procedure Check_Discriminant_Conformance
5963 (N : Node_Id;
5964 Prev : Entity_Id;
5965 Prev_Loc : Node_Id)
5966 is
5967 Old_Discr : Entity_Id := First_Discriminant (Prev);
5968 New_Discr : Node_Id := First (Discriminant_Specifications (N));
5969 New_Discr_Id : Entity_Id;
5970 New_Discr_Type : Entity_Id;
5971
5972 procedure Conformance_Error (Msg : String; N : Node_Id);
5973 -- Post error message for conformance error on given node. Two messages
5974 -- are output. The first points to the previous declaration with a
5975 -- general "no conformance" message. The second is the detailed reason,
5976 -- supplied as Msg. The parameter N provide information for a possible
5977 -- & insertion in the message.
5978
5979 -----------------------
5980 -- Conformance_Error --
5981 -----------------------
5982
5983 procedure Conformance_Error (Msg : String; N : Node_Id) is
5984 begin
5985 Error_Msg_Sloc := Sloc (Prev_Loc);
5986 Error_Msg_N -- CODEFIX
5987 ("not fully conformant with declaration#!", N);
5988 Error_Msg_NE (Msg, N, N);
5989 end Conformance_Error;
5990
5991 -- Start of processing for Check_Discriminant_Conformance
5992
5993 begin
5994 while Present (Old_Discr) and then Present (New_Discr) loop
5995 New_Discr_Id := Defining_Identifier (New_Discr);
5996
5997 -- The subtype mark of the discriminant on the full type has not
5998 -- been analyzed so we do it here. For an access discriminant a new
5999 -- type is created.
6000
6001 if Nkind (Discriminant_Type (New_Discr)) = N_Access_Definition then
6002 New_Discr_Type :=
6003 Access_Definition (N, Discriminant_Type (New_Discr));
6004
6005 else
6006 Analyze (Discriminant_Type (New_Discr));
6007 New_Discr_Type := Etype (Discriminant_Type (New_Discr));
6008
6009 -- Ada 2005: if the discriminant definition carries a null
6010 -- exclusion, create an itype to check properly for consistency
6011 -- with partial declaration.
6012
6013 if Is_Access_Type (New_Discr_Type)
6014 and then Null_Exclusion_Present (New_Discr)
6015 then
6016 New_Discr_Type :=
6017 Create_Null_Excluding_Itype
6018 (T => New_Discr_Type,
6019 Related_Nod => New_Discr,
6020 Scope_Id => Current_Scope);
6021 end if;
6022 end if;
6023
6024 if not Conforming_Types
6025 (Etype (Old_Discr), New_Discr_Type, Fully_Conformant)
6026 then
6027 Conformance_Error ("type of & does not match!", New_Discr_Id);
6028 return;
6029 else
6030 -- Treat the new discriminant as an occurrence of the old one,
6031 -- for navigation purposes, and fill in some semantic
6032 -- information, for completeness.
6033
6034 Generate_Reference (Old_Discr, New_Discr_Id, 'r');
6035 Set_Etype (New_Discr_Id, Etype (Old_Discr));
6036 Set_Scope (New_Discr_Id, Scope (Old_Discr));
6037 end if;
6038
6039 -- Names must match
6040
6041 if Chars (Old_Discr) /= Chars (Defining_Identifier (New_Discr)) then
6042 Conformance_Error ("name & does not match!", New_Discr_Id);
6043 return;
6044 end if;
6045
6046 -- Default expressions must match
6047
6048 declare
6049 NewD : constant Boolean :=
6050 Present (Expression (New_Discr));
6051 OldD : constant Boolean :=
6052 Present (Expression (Parent (Old_Discr)));
6053
6054 begin
6055 if NewD or OldD then
6056
6057 -- The old default value has been analyzed and expanded,
6058 -- because the current full declaration will have frozen
6059 -- everything before. The new default values have not been
6060 -- expanded, so expand now to check conformance.
6061
6062 if NewD then
6063 Preanalyze_Spec_Expression
6064 (Expression (New_Discr), New_Discr_Type);
6065 end if;
6066
6067 if not (NewD and OldD)
6068 or else not Fully_Conformant_Expressions
6069 (Expression (Parent (Old_Discr)),
6070 Expression (New_Discr))
6071
6072 then
6073 Conformance_Error
6074 ("default expression for & does not match!",
6075 New_Discr_Id);
6076 return;
6077 end if;
6078 end if;
6079 end;
6080
6081 -- In Ada 83 case, grouping must match: (A,B : X) /= (A : X; B : X)
6082
6083 if Ada_Version = Ada_83 then
6084 declare
6085 Old_Disc : constant Node_Id := Declaration_Node (Old_Discr);
6086
6087 begin
6088 -- Grouping (use of comma in param lists) must be the same
6089 -- This is where we catch a misconformance like:
6090
6091 -- A, B : Integer
6092 -- A : Integer; B : Integer
6093
6094 -- which are represented identically in the tree except
6095 -- for the setting of the flags More_Ids and Prev_Ids.
6096
6097 if More_Ids (Old_Disc) /= More_Ids (New_Discr)
6098 or else Prev_Ids (Old_Disc) /= Prev_Ids (New_Discr)
6099 then
6100 Conformance_Error
6101 ("grouping of & does not match!", New_Discr_Id);
6102 return;
6103 end if;
6104 end;
6105 end if;
6106
6107 Next_Discriminant (Old_Discr);
6108 Next (New_Discr);
6109 end loop;
6110
6111 if Present (Old_Discr) then
6112 Conformance_Error ("too few discriminants!", Defining_Identifier (N));
6113 return;
6114
6115 elsif Present (New_Discr) then
6116 Conformance_Error
6117 ("too many discriminants!", Defining_Identifier (New_Discr));
6118 return;
6119 end if;
6120 end Check_Discriminant_Conformance;
6121
6122 ----------------------------
6123 -- Check_Fully_Conformant --
6124 ----------------------------
6125
6126 procedure Check_Fully_Conformant
6127 (New_Id : Entity_Id;
6128 Old_Id : Entity_Id;
6129 Err_Loc : Node_Id := Empty)
6130 is
6131 Result : Boolean;
6132 pragma Warnings (Off, Result);
6133 begin
6134 Check_Conformance
6135 (New_Id, Old_Id, Fully_Conformant, True, Result, Err_Loc);
6136 end Check_Fully_Conformant;
6137
6138 --------------------------
6139 -- Check_Limited_Return --
6140 --------------------------
6141
6142 procedure Check_Limited_Return
6143 (N : Node_Id;
6144 Expr : Node_Id;
6145 R_Type : Entity_Id)
6146 is
6147 begin
6148 -- Ada 2005 (AI-318-02): Return-by-reference types have been removed and
6149 -- replaced by anonymous access results. This is an incompatibility with
6150 -- Ada 95. Not clear whether this should be enforced yet or perhaps
6151 -- controllable with special switch. ???
6152
6153 -- A limited interface that is not immutably limited is OK
6154
6155 if Is_Limited_Interface (R_Type)
6156 and then
6157 not (Is_Task_Interface (R_Type)
6158 or else Is_Protected_Interface (R_Type)
6159 or else Is_Synchronized_Interface (R_Type))
6160 then
6161 null;
6162
6163 elsif Is_Limited_Type (R_Type)
6164 and then not Is_Interface (R_Type)
6165 and then Comes_From_Source (N)
6166 and then not In_Instance_Body
6167 and then not OK_For_Limited_Init_In_05 (R_Type, Expr)
6168 then
6169 -- Error in Ada 2005
6170
6171 if Ada_Version >= Ada_2005
6172 and then not Debug_Flag_Dot_L
6173 and then not GNAT_Mode
6174 then
6175 Error_Msg_N
6176 ("(Ada 2005) cannot copy object of a limited type "
6177 & "(RM-2005 6.5(5.5/2))", Expr);
6178
6179 if Is_Limited_View (R_Type) then
6180 Error_Msg_N
6181 ("\return by reference not permitted in Ada 2005", Expr);
6182 end if;
6183
6184 -- Warn in Ada 95 mode, to give folks a heads up about this
6185 -- incompatibility.
6186
6187 -- In GNAT mode, this is just a warning, to allow it to be evilly
6188 -- turned off. Otherwise it is a real error.
6189
6190 -- In a generic context, simplify the warning because it makes no
6191 -- sense to discuss pass-by-reference or copy.
6192
6193 elsif Warn_On_Ada_2005_Compatibility or GNAT_Mode then
6194 if Inside_A_Generic then
6195 Error_Msg_N
6196 ("return of limited object not permitted in Ada 2005 "
6197 & "(RM-2005 6.5(5.5/2))?y?", Expr);
6198
6199 elsif Is_Limited_View (R_Type) then
6200 Error_Msg_N
6201 ("return by reference not permitted in Ada 2005 "
6202 & "(RM-2005 6.5(5.5/2))?y?", Expr);
6203 else
6204 Error_Msg_N
6205 ("cannot copy object of a limited type in Ada 2005 "
6206 & "(RM-2005 6.5(5.5/2))?y?", Expr);
6207 end if;
6208
6209 -- Ada 95 mode, and compatibility warnings disabled
6210
6211 else
6212 pragma Assert (Ada_Version <= Ada_95);
6213 pragma Assert (not (Warn_On_Ada_2005_Compatibility or GNAT_Mode));
6214 return; -- skip continuation messages below
6215 end if;
6216
6217 if not Inside_A_Generic then
6218 Error_Msg_N
6219 ("\consider switching to return of access type", Expr);
6220 Explain_Limited_Type (R_Type, Expr);
6221 end if;
6222 end if;
6223 end Check_Limited_Return;
6224
6225 ---------------------------
6226 -- Check_Mode_Conformant --
6227 ---------------------------
6228
6229 procedure Check_Mode_Conformant
6230 (New_Id : Entity_Id;
6231 Old_Id : Entity_Id;
6232 Err_Loc : Node_Id := Empty;
6233 Get_Inst : Boolean := False)
6234 is
6235 Result : Boolean;
6236 pragma Warnings (Off, Result);
6237 begin
6238 Check_Conformance
6239 (New_Id, Old_Id, Mode_Conformant, True, Result, Err_Loc, Get_Inst);
6240 end Check_Mode_Conformant;
6241
6242 --------------------------------
6243 -- Check_Overriding_Indicator --
6244 --------------------------------
6245
6246 procedure Check_Overriding_Indicator
6247 (Subp : Entity_Id;
6248 Overridden_Subp : Entity_Id;
6249 Is_Primitive : Boolean)
6250 is
6251 Decl : Node_Id;
6252 Spec : Node_Id;
6253
6254 begin
6255 -- No overriding indicator for literals
6256
6257 if Ekind (Subp) = E_Enumeration_Literal then
6258 return;
6259
6260 elsif Ekind (Subp) = E_Entry then
6261 Decl := Parent (Subp);
6262
6263 -- No point in analyzing a malformed operator
6264
6265 elsif Nkind (Subp) = N_Defining_Operator_Symbol
6266 and then Error_Posted (Subp)
6267 then
6268 return;
6269
6270 else
6271 Decl := Unit_Declaration_Node (Subp);
6272 end if;
6273
6274 if Nkind_In (Decl, N_Subprogram_Body,
6275 N_Subprogram_Body_Stub,
6276 N_Subprogram_Declaration,
6277 N_Abstract_Subprogram_Declaration,
6278 N_Subprogram_Renaming_Declaration)
6279 then
6280 Spec := Specification (Decl);
6281
6282 elsif Nkind (Decl) = N_Entry_Declaration then
6283 Spec := Decl;
6284
6285 else
6286 return;
6287 end if;
6288
6289 -- The overriding operation is type conformant with the overridden one,
6290 -- but the names of the formals are not required to match. If the names
6291 -- appear permuted in the overriding operation, this is a possible
6292 -- source of confusion that is worth diagnosing. Controlling formals
6293 -- often carry names that reflect the type, and it is not worthwhile
6294 -- requiring that their names match.
6295
6296 if Present (Overridden_Subp)
6297 and then Nkind (Subp) /= N_Defining_Operator_Symbol
6298 then
6299 declare
6300 Form1 : Entity_Id;
6301 Form2 : Entity_Id;
6302
6303 begin
6304 Form1 := First_Formal (Subp);
6305 Form2 := First_Formal (Overridden_Subp);
6306
6307 -- If the overriding operation is a synchronized operation, skip
6308 -- the first parameter of the overridden operation, which is
6309 -- implicit in the new one. If the operation is declared in the
6310 -- body it is not primitive and all formals must match.
6311
6312 if Is_Concurrent_Type (Scope (Subp))
6313 and then Is_Tagged_Type (Scope (Subp))
6314 and then not Has_Completion (Scope (Subp))
6315 then
6316 Form2 := Next_Formal (Form2);
6317 end if;
6318
6319 if Present (Form1) then
6320 Form1 := Next_Formal (Form1);
6321 Form2 := Next_Formal (Form2);
6322 end if;
6323
6324 while Present (Form1) loop
6325 if not Is_Controlling_Formal (Form1)
6326 and then Present (Next_Formal (Form2))
6327 and then Chars (Form1) = Chars (Next_Formal (Form2))
6328 then
6329 Error_Msg_Node_2 := Alias (Overridden_Subp);
6330 Error_Msg_Sloc := Sloc (Error_Msg_Node_2);
6331 Error_Msg_NE
6332 ("& does not match corresponding formal of&#",
6333 Form1, Form1);
6334 exit;
6335 end if;
6336
6337 Next_Formal (Form1);
6338 Next_Formal (Form2);
6339 end loop;
6340 end;
6341 end if;
6342
6343 -- If there is an overridden subprogram, then check that there is no
6344 -- "not overriding" indicator, and mark the subprogram as overriding.
6345 -- This is not done if the overridden subprogram is marked as hidden,
6346 -- which can occur for the case of inherited controlled operations
6347 -- (see Derive_Subprogram), unless the inherited subprogram's parent
6348 -- subprogram is not itself hidden. (Note: This condition could probably
6349 -- be simplified, leaving out the testing for the specific controlled
6350 -- cases, but it seems safer and clearer this way, and echoes similar
6351 -- special-case tests of this kind in other places.)
6352
6353 if Present (Overridden_Subp)
6354 and then (not Is_Hidden (Overridden_Subp)
6355 or else
6356 (Nam_In (Chars (Overridden_Subp), Name_Initialize,
6357 Name_Adjust,
6358 Name_Finalize)
6359 and then Present (Alias (Overridden_Subp))
6360 and then not Is_Hidden (Alias (Overridden_Subp))))
6361 then
6362 if Must_Not_Override (Spec) then
6363 Error_Msg_Sloc := Sloc (Overridden_Subp);
6364
6365 if Ekind (Subp) = E_Entry then
6366 Error_Msg_NE
6367 ("entry & overrides inherited operation #", Spec, Subp);
6368 else
6369 Error_Msg_NE
6370 ("subprogram & overrides inherited operation #", Spec, Subp);
6371 end if;
6372
6373 -- Special-case to fix a GNAT oddity: Limited_Controlled is declared
6374 -- as an extension of Root_Controlled, and thus has a useless Adjust
6375 -- operation. This operation should not be inherited by other limited
6376 -- controlled types. An explicit Adjust for them is not overriding.
6377
6378 elsif Must_Override (Spec)
6379 and then Chars (Overridden_Subp) = Name_Adjust
6380 and then Is_Limited_Type (Etype (First_Formal (Subp)))
6381 and then Present (Alias (Overridden_Subp))
6382 and then In_Predefined_Unit (Alias (Overridden_Subp))
6383 then
6384 Get_Name_String
6385 (Unit_File_Name (Get_Source_Unit (Alias (Overridden_Subp))));
6386 Error_Msg_NE ("subprogram & is not overriding", Spec, Subp);
6387
6388 elsif Is_Subprogram (Subp) then
6389 if Is_Init_Proc (Subp) then
6390 null;
6391
6392 elsif No (Overridden_Operation (Subp)) then
6393
6394 -- For entities generated by Derive_Subprograms the overridden
6395 -- operation is the inherited primitive (which is available
6396 -- through the attribute alias)
6397
6398 if (Is_Dispatching_Operation (Subp)
6399 or else Is_Dispatching_Operation (Overridden_Subp))
6400 and then not Comes_From_Source (Overridden_Subp)
6401 and then Find_Dispatching_Type (Overridden_Subp) =
6402 Find_Dispatching_Type (Subp)
6403 and then Present (Alias (Overridden_Subp))
6404 and then Comes_From_Source (Alias (Overridden_Subp))
6405 then
6406 Set_Overridden_Operation (Subp, Alias (Overridden_Subp));
6407 Inherit_Subprogram_Contract (Subp, Alias (Overridden_Subp));
6408
6409 else
6410 Set_Overridden_Operation (Subp, Overridden_Subp);
6411 Inherit_Subprogram_Contract (Subp, Overridden_Subp);
6412 end if;
6413 end if;
6414 end if;
6415
6416 -- If primitive flag is set or this is a protected operation, then
6417 -- the operation is overriding at the point of its declaration, so
6418 -- warn if necessary. Otherwise it may have been declared before the
6419 -- operation it overrides and no check is required.
6420
6421 if Style_Check
6422 and then not Must_Override (Spec)
6423 and then (Is_Primitive
6424 or else Ekind (Scope (Subp)) = E_Protected_Type)
6425 then
6426 Style.Missing_Overriding (Decl, Subp);
6427 end if;
6428
6429 -- If Subp is an operator, it may override a predefined operation, if
6430 -- it is defined in the same scope as the type to which it applies.
6431 -- In that case Overridden_Subp is empty because of our implicit
6432 -- representation for predefined operators. We have to check whether the
6433 -- signature of Subp matches that of a predefined operator. Note that
6434 -- first argument provides the name of the operator, and the second
6435 -- argument the signature that may match that of a standard operation.
6436 -- If the indicator is overriding, then the operator must match a
6437 -- predefined signature, because we know already that there is no
6438 -- explicit overridden operation.
6439
6440 elsif Nkind (Subp) = N_Defining_Operator_Symbol then
6441 if Must_Not_Override (Spec) then
6442
6443 -- If this is not a primitive or a protected subprogram, then
6444 -- "not overriding" is illegal.
6445
6446 if not Is_Primitive
6447 and then Ekind (Scope (Subp)) /= E_Protected_Type
6448 then
6449 Error_Msg_N ("overriding indicator only allowed "
6450 & "if subprogram is primitive", Subp);
6451
6452 elsif Can_Override_Operator (Subp) then
6453 Error_Msg_NE
6454 ("subprogram& overrides predefined operator ", Spec, Subp);
6455 end if;
6456
6457 elsif Must_Override (Spec) then
6458 if No (Overridden_Operation (Subp))
6459 and then not Can_Override_Operator (Subp)
6460 then
6461 Error_Msg_NE ("subprogram & is not overriding", Spec, Subp);
6462 end if;
6463
6464 elsif not Error_Posted (Subp)
6465 and then Style_Check
6466 and then Can_Override_Operator (Subp)
6467 and then not In_Predefined_Unit (Subp)
6468 then
6469 -- If style checks are enabled, indicate that the indicator is
6470 -- missing. However, at the point of declaration, the type of
6471 -- which this is a primitive operation may be private, in which
6472 -- case the indicator would be premature.
6473
6474 if Has_Private_Declaration (Etype (Subp))
6475 or else Has_Private_Declaration (Etype (First_Formal (Subp)))
6476 then
6477 null;
6478 else
6479 Style.Missing_Overriding (Decl, Subp);
6480 end if;
6481 end if;
6482
6483 elsif Must_Override (Spec) then
6484 if Ekind (Subp) = E_Entry then
6485 Error_Msg_NE ("entry & is not overriding", Spec, Subp);
6486 else
6487 Error_Msg_NE ("subprogram & is not overriding", Spec, Subp);
6488 end if;
6489
6490 -- If the operation is marked "not overriding" and it's not primitive
6491 -- then an error is issued, unless this is an operation of a task or
6492 -- protected type (RM05-8.3.1(3/2-4/2)). Error cases where "overriding"
6493 -- has been specified have already been checked above.
6494
6495 elsif Must_Not_Override (Spec)
6496 and then not Is_Primitive
6497 and then Ekind (Subp) /= E_Entry
6498 and then Ekind (Scope (Subp)) /= E_Protected_Type
6499 then
6500 Error_Msg_N
6501 ("overriding indicator only allowed if subprogram is primitive",
6502 Subp);
6503 return;
6504 end if;
6505 end Check_Overriding_Indicator;
6506
6507 -------------------
6508 -- Check_Returns --
6509 -------------------
6510
6511 -- Note: this procedure needs to know far too much about how the expander
6512 -- messes with exceptions. The use of the flag Exception_Junk and the
6513 -- incorporation of knowledge of Exp_Ch11.Expand_Local_Exception_Handlers
6514 -- works, but is not very clean. It would be better if the expansion
6515 -- routines would leave Original_Node working nicely, and we could use
6516 -- Original_Node here to ignore all the peculiar expander messing ???
6517
6518 procedure Check_Returns
6519 (HSS : Node_Id;
6520 Mode : Character;
6521 Err : out Boolean;
6522 Proc : Entity_Id := Empty)
6523 is
6524 Handler : Node_Id;
6525
6526 procedure Check_Statement_Sequence (L : List_Id);
6527 -- Internal recursive procedure to check a list of statements for proper
6528 -- termination by a return statement (or a transfer of control or a
6529 -- compound statement that is itself internally properly terminated).
6530
6531 ------------------------------
6532 -- Check_Statement_Sequence --
6533 ------------------------------
6534
6535 procedure Check_Statement_Sequence (L : List_Id) is
6536 Last_Stm : Node_Id;
6537 Stm : Node_Id;
6538 Kind : Node_Kind;
6539
6540 function Assert_False return Boolean;
6541 -- Returns True if Last_Stm is a pragma Assert (False) that has been
6542 -- rewritten as a null statement when assertions are off. The assert
6543 -- is not active, but it is still enough to kill the warning.
6544
6545 ------------------
6546 -- Assert_False --
6547 ------------------
6548
6549 function Assert_False return Boolean is
6550 Orig : constant Node_Id := Original_Node (Last_Stm);
6551
6552 begin
6553 if Nkind (Orig) = N_Pragma
6554 and then Pragma_Name (Orig) = Name_Assert
6555 and then not Error_Posted (Orig)
6556 then
6557 declare
6558 Arg : constant Node_Id :=
6559 First (Pragma_Argument_Associations (Orig));
6560 Exp : constant Node_Id := Expression (Arg);
6561 begin
6562 return Nkind (Exp) = N_Identifier
6563 and then Chars (Exp) = Name_False;
6564 end;
6565
6566 else
6567 return False;
6568 end if;
6569 end Assert_False;
6570
6571 -- Local variables
6572
6573 Raise_Exception_Call : Boolean;
6574 -- Set True if statement sequence terminated by Raise_Exception call
6575 -- or a Reraise_Occurrence call.
6576
6577 -- Start of processing for Check_Statement_Sequence
6578
6579 begin
6580 Raise_Exception_Call := False;
6581
6582 -- Get last real statement
6583
6584 Last_Stm := Last (L);
6585
6586 -- Deal with digging out exception handler statement sequences that
6587 -- have been transformed by the local raise to goto optimization.
6588 -- See Exp_Ch11.Expand_Local_Exception_Handlers for details. If this
6589 -- optimization has occurred, we are looking at something like:
6590
6591 -- begin
6592 -- original stmts in block
6593
6594 -- exception \
6595 -- when excep1 => |
6596 -- goto L1; | omitted if No_Exception_Propagation
6597 -- when excep2 => |
6598 -- goto L2; /
6599 -- end;
6600
6601 -- goto L3; -- skip handler when exception not raised
6602
6603 -- <<L1>> -- target label for local exception
6604 -- begin
6605 -- estmts1
6606 -- end;
6607
6608 -- goto L3;
6609
6610 -- <<L2>>
6611 -- begin
6612 -- estmts2
6613 -- end;
6614
6615 -- <<L3>>
6616
6617 -- and what we have to do is to dig out the estmts1 and estmts2
6618 -- sequences (which were the original sequences of statements in
6619 -- the exception handlers) and check them.
6620
6621 if Nkind (Last_Stm) = N_Label and then Exception_Junk (Last_Stm) then
6622 Stm := Last_Stm;
6623 loop
6624 Prev (Stm);
6625 exit when No (Stm);
6626 exit when Nkind (Stm) /= N_Block_Statement;
6627 exit when not Exception_Junk (Stm);
6628 Prev (Stm);
6629 exit when No (Stm);
6630 exit when Nkind (Stm) /= N_Label;
6631 exit when not Exception_Junk (Stm);
6632 Check_Statement_Sequence
6633 (Statements (Handled_Statement_Sequence (Next (Stm))));
6634
6635 Prev (Stm);
6636 Last_Stm := Stm;
6637 exit when No (Stm);
6638 exit when Nkind (Stm) /= N_Goto_Statement;
6639 exit when not Exception_Junk (Stm);
6640 end loop;
6641 end if;
6642
6643 -- Don't count pragmas
6644
6645 while Nkind (Last_Stm) = N_Pragma
6646
6647 -- Don't count call to SS_Release (can happen after Raise_Exception)
6648
6649 or else
6650 (Nkind (Last_Stm) = N_Procedure_Call_Statement
6651 and then
6652 Nkind (Name (Last_Stm)) = N_Identifier
6653 and then
6654 Is_RTE (Entity (Name (Last_Stm)), RE_SS_Release))
6655
6656 -- Don't count exception junk
6657
6658 or else
6659 (Nkind_In (Last_Stm, N_Goto_Statement,
6660 N_Label,
6661 N_Object_Declaration)
6662 and then Exception_Junk (Last_Stm))
6663 or else Nkind (Last_Stm) in N_Push_xxx_Label
6664 or else Nkind (Last_Stm) in N_Pop_xxx_Label
6665
6666 -- Inserted code, such as finalization calls, is irrelevant: we only
6667 -- need to check original source.
6668
6669 or else Is_Rewrite_Insertion (Last_Stm)
6670 loop
6671 Prev (Last_Stm);
6672 end loop;
6673
6674 -- Here we have the "real" last statement
6675
6676 Kind := Nkind (Last_Stm);
6677
6678 -- Transfer of control, OK. Note that in the No_Return procedure
6679 -- case, we already diagnosed any explicit return statements, so
6680 -- we can treat them as OK in this context.
6681
6682 if Is_Transfer (Last_Stm) then
6683 return;
6684
6685 -- Check cases of explicit non-indirect procedure calls
6686
6687 elsif Kind = N_Procedure_Call_Statement
6688 and then Is_Entity_Name (Name (Last_Stm))
6689 then
6690 -- Check call to Raise_Exception procedure which is treated
6691 -- specially, as is a call to Reraise_Occurrence.
6692
6693 -- We suppress the warning in these cases since it is likely that
6694 -- the programmer really does not expect to deal with the case
6695 -- of Null_Occurrence, and thus would find a warning about a
6696 -- missing return curious, and raising Program_Error does not
6697 -- seem such a bad behavior if this does occur.
6698
6699 -- Note that in the Ada 2005 case for Raise_Exception, the actual
6700 -- behavior will be to raise Constraint_Error (see AI-329).
6701
6702 if Is_RTE (Entity (Name (Last_Stm)), RE_Raise_Exception)
6703 or else
6704 Is_RTE (Entity (Name (Last_Stm)), RE_Reraise_Occurrence)
6705 then
6706 Raise_Exception_Call := True;
6707
6708 -- For Raise_Exception call, test first argument, if it is
6709 -- an attribute reference for a 'Identity call, then we know
6710 -- that the call cannot possibly return.
6711
6712 declare
6713 Arg : constant Node_Id :=
6714 Original_Node (First_Actual (Last_Stm));
6715 begin
6716 if Nkind (Arg) = N_Attribute_Reference
6717 and then Attribute_Name (Arg) = Name_Identity
6718 then
6719 return;
6720 end if;
6721 end;
6722 end if;
6723
6724 -- If statement, need to look inside if there is an else and check
6725 -- each constituent statement sequence for proper termination.
6726
6727 elsif Kind = N_If_Statement
6728 and then Present (Else_Statements (Last_Stm))
6729 then
6730 Check_Statement_Sequence (Then_Statements (Last_Stm));
6731 Check_Statement_Sequence (Else_Statements (Last_Stm));
6732
6733 if Present (Elsif_Parts (Last_Stm)) then
6734 declare
6735 Elsif_Part : Node_Id := First (Elsif_Parts (Last_Stm));
6736
6737 begin
6738 while Present (Elsif_Part) loop
6739 Check_Statement_Sequence (Then_Statements (Elsif_Part));
6740 Next (Elsif_Part);
6741 end loop;
6742 end;
6743 end if;
6744
6745 return;
6746
6747 -- Case statement, check each case for proper termination
6748
6749 elsif Kind = N_Case_Statement then
6750 declare
6751 Case_Alt : Node_Id;
6752 begin
6753 Case_Alt := First_Non_Pragma (Alternatives (Last_Stm));
6754 while Present (Case_Alt) loop
6755 Check_Statement_Sequence (Statements (Case_Alt));
6756 Next_Non_Pragma (Case_Alt);
6757 end loop;
6758 end;
6759
6760 return;
6761
6762 -- Block statement, check its handled sequence of statements
6763
6764 elsif Kind = N_Block_Statement then
6765 declare
6766 Err1 : Boolean;
6767
6768 begin
6769 Check_Returns
6770 (Handled_Statement_Sequence (Last_Stm), Mode, Err1);
6771
6772 if Err1 then
6773 Err := True;
6774 end if;
6775
6776 return;
6777 end;
6778
6779 -- Loop statement. If there is an iteration scheme, we can definitely
6780 -- fall out of the loop. Similarly if there is an exit statement, we
6781 -- can fall out. In either case we need a following return.
6782
6783 elsif Kind = N_Loop_Statement then
6784 if Present (Iteration_Scheme (Last_Stm))
6785 or else Has_Exit (Entity (Identifier (Last_Stm)))
6786 then
6787 null;
6788
6789 -- A loop with no exit statement or iteration scheme is either
6790 -- an infinite loop, or it has some other exit (raise/return).
6791 -- In either case, no warning is required.
6792
6793 else
6794 return;
6795 end if;
6796
6797 -- Timed entry call, check entry call and delay alternatives
6798
6799 -- Note: in expanded code, the timed entry call has been converted
6800 -- to a set of expanded statements on which the check will work
6801 -- correctly in any case.
6802
6803 elsif Kind = N_Timed_Entry_Call then
6804 declare
6805 ECA : constant Node_Id := Entry_Call_Alternative (Last_Stm);
6806 DCA : constant Node_Id := Delay_Alternative (Last_Stm);
6807
6808 begin
6809 -- If statement sequence of entry call alternative is missing,
6810 -- then we can definitely fall through, and we post the error
6811 -- message on the entry call alternative itself.
6812
6813 if No (Statements (ECA)) then
6814 Last_Stm := ECA;
6815
6816 -- If statement sequence of delay alternative is missing, then
6817 -- we can definitely fall through, and we post the error
6818 -- message on the delay alternative itself.
6819
6820 -- Note: if both ECA and DCA are missing the return, then we
6821 -- post only one message, should be enough to fix the bugs.
6822 -- If not we will get a message next time on the DCA when the
6823 -- ECA is fixed.
6824
6825 elsif No (Statements (DCA)) then
6826 Last_Stm := DCA;
6827
6828 -- Else check both statement sequences
6829
6830 else
6831 Check_Statement_Sequence (Statements (ECA));
6832 Check_Statement_Sequence (Statements (DCA));
6833 return;
6834 end if;
6835 end;
6836
6837 -- Conditional entry call, check entry call and else part
6838
6839 -- Note: in expanded code, the conditional entry call has been
6840 -- converted to a set of expanded statements on which the check
6841 -- will work correctly in any case.
6842
6843 elsif Kind = N_Conditional_Entry_Call then
6844 declare
6845 ECA : constant Node_Id := Entry_Call_Alternative (Last_Stm);
6846
6847 begin
6848 -- If statement sequence of entry call alternative is missing,
6849 -- then we can definitely fall through, and we post the error
6850 -- message on the entry call alternative itself.
6851
6852 if No (Statements (ECA)) then
6853 Last_Stm := ECA;
6854
6855 -- Else check statement sequence and else part
6856
6857 else
6858 Check_Statement_Sequence (Statements (ECA));
6859 Check_Statement_Sequence (Else_Statements (Last_Stm));
6860 return;
6861 end if;
6862 end;
6863 end if;
6864
6865 -- If we fall through, issue appropriate message
6866
6867 if Mode = 'F' then
6868
6869 -- Kill warning if last statement is a raise exception call,
6870 -- or a pragma Assert (False). Note that with assertions enabled,
6871 -- such a pragma has been converted into a raise exception call
6872 -- already, so the Assert_False is for the assertions off case.
6873
6874 if not Raise_Exception_Call and then not Assert_False then
6875
6876 -- In GNATprove mode, it is an error to have a missing return
6877
6878 Error_Msg_Warn := SPARK_Mode /= On;
6879
6880 -- Issue error message or warning
6881
6882 Error_Msg_N
6883 ("RETURN statement missing following this statement<<!",
6884 Last_Stm);
6885 Error_Msg_N
6886 ("\Program_Error ]<<!", Last_Stm);
6887 end if;
6888
6889 -- Note: we set Err even though we have not issued a warning
6890 -- because we still have a case of a missing return. This is
6891 -- an extremely marginal case, probably will never be noticed
6892 -- but we might as well get it right.
6893
6894 Err := True;
6895
6896 -- Otherwise we have the case of a procedure marked No_Return
6897
6898 else
6899 if not Raise_Exception_Call then
6900 if GNATprove_Mode then
6901 Error_Msg_N
6902 ("implied return after this statement would have raised "
6903 & "Program_Error", Last_Stm);
6904
6905 -- In normal compilation mode, do not warn on a generated call
6906 -- (e.g. in the body of a renaming as completion).
6907
6908 elsif Comes_From_Source (Last_Stm) then
6909 Error_Msg_N
6910 ("implied return after this statement will raise "
6911 & "Program_Error??", Last_Stm);
6912 end if;
6913
6914 Error_Msg_Warn := SPARK_Mode /= On;
6915 Error_Msg_NE
6916 ("\procedure & is marked as No_Return<<!", Last_Stm, Proc);
6917 end if;
6918
6919 declare
6920 RE : constant Node_Id :=
6921 Make_Raise_Program_Error (Sloc (Last_Stm),
6922 Reason => PE_Implicit_Return);
6923 begin
6924 Insert_After (Last_Stm, RE);
6925 Analyze (RE);
6926 end;
6927 end if;
6928 end Check_Statement_Sequence;
6929
6930 -- Start of processing for Check_Returns
6931
6932 begin
6933 Err := False;
6934 Check_Statement_Sequence (Statements (HSS));
6935
6936 if Present (Exception_Handlers (HSS)) then
6937 Handler := First_Non_Pragma (Exception_Handlers (HSS));
6938 while Present (Handler) loop
6939 Check_Statement_Sequence (Statements (Handler));
6940 Next_Non_Pragma (Handler);
6941 end loop;
6942 end if;
6943 end Check_Returns;
6944
6945 ----------------------------
6946 -- Check_Subprogram_Order --
6947 ----------------------------
6948
6949 procedure Check_Subprogram_Order (N : Node_Id) is
6950
6951 function Subprogram_Name_Greater (S1, S2 : String) return Boolean;
6952 -- This is used to check if S1 > S2 in the sense required by this test,
6953 -- for example nameab < namec, but name2 < name10.
6954
6955 -----------------------------
6956 -- Subprogram_Name_Greater --
6957 -----------------------------
6958
6959 function Subprogram_Name_Greater (S1, S2 : String) return Boolean is
6960 L1, L2 : Positive;
6961 N1, N2 : Natural;
6962
6963 begin
6964 -- Deal with special case where names are identical except for a
6965 -- numerical suffix. These are handled specially, taking the numeric
6966 -- ordering from the suffix into account.
6967
6968 L1 := S1'Last;
6969 while S1 (L1) in '0' .. '9' loop
6970 L1 := L1 - 1;
6971 end loop;
6972
6973 L2 := S2'Last;
6974 while S2 (L2) in '0' .. '9' loop
6975 L2 := L2 - 1;
6976 end loop;
6977
6978 -- If non-numeric parts non-equal, do straight compare
6979
6980 if S1 (S1'First .. L1) /= S2 (S2'First .. L2) then
6981 return S1 > S2;
6982
6983 -- If non-numeric parts equal, compare suffixed numeric parts. Note
6984 -- that a missing suffix is treated as numeric zero in this test.
6985
6986 else
6987 N1 := 0;
6988 while L1 < S1'Last loop
6989 L1 := L1 + 1;
6990 N1 := N1 * 10 + Character'Pos (S1 (L1)) - Character'Pos ('0');
6991 end loop;
6992
6993 N2 := 0;
6994 while L2 < S2'Last loop
6995 L2 := L2 + 1;
6996 N2 := N2 * 10 + Character'Pos (S2 (L2)) - Character'Pos ('0');
6997 end loop;
6998
6999 return N1 > N2;
7000 end if;
7001 end Subprogram_Name_Greater;
7002
7003 -- Start of processing for Check_Subprogram_Order
7004
7005 begin
7006 -- Check body in alpha order if this is option
7007
7008 if Style_Check
7009 and then Style_Check_Order_Subprograms
7010 and then Nkind (N) = N_Subprogram_Body
7011 and then Comes_From_Source (N)
7012 and then In_Extended_Main_Source_Unit (N)
7013 then
7014 declare
7015 LSN : String_Ptr
7016 renames Scope_Stack.Table
7017 (Scope_Stack.Last).Last_Subprogram_Name;
7018
7019 Body_Id : constant Entity_Id :=
7020 Defining_Entity (Specification (N));
7021
7022 begin
7023 Get_Decoded_Name_String (Chars (Body_Id));
7024
7025 if LSN /= null then
7026 if Subprogram_Name_Greater
7027 (LSN.all, Name_Buffer (1 .. Name_Len))
7028 then
7029 Style.Subprogram_Not_In_Alpha_Order (Body_Id);
7030 end if;
7031
7032 Free (LSN);
7033 end if;
7034
7035 LSN := new String'(Name_Buffer (1 .. Name_Len));
7036 end;
7037 end if;
7038 end Check_Subprogram_Order;
7039
7040 ------------------------------
7041 -- Check_Subtype_Conformant --
7042 ------------------------------
7043
7044 procedure Check_Subtype_Conformant
7045 (New_Id : Entity_Id;
7046 Old_Id : Entity_Id;
7047 Err_Loc : Node_Id := Empty;
7048 Skip_Controlling_Formals : Boolean := False;
7049 Get_Inst : Boolean := False)
7050 is
7051 Result : Boolean;
7052 pragma Warnings (Off, Result);
7053 begin
7054 Check_Conformance
7055 (New_Id, Old_Id, Subtype_Conformant, True, Result, Err_Loc,
7056 Skip_Controlling_Formals => Skip_Controlling_Formals,
7057 Get_Inst => Get_Inst);
7058 end Check_Subtype_Conformant;
7059
7060 -----------------------------------
7061 -- Check_Synchronized_Overriding --
7062 -----------------------------------
7063
7064 procedure Check_Synchronized_Overriding
7065 (Def_Id : Entity_Id;
7066 Overridden_Subp : out Entity_Id)
7067 is
7068 Ifaces_List : Elist_Id;
7069 In_Scope : Boolean;
7070 Typ : Entity_Id;
7071
7072 function Matches_Prefixed_View_Profile
7073 (Prim_Params : List_Id;
7074 Iface_Params : List_Id) return Boolean;
7075 -- Determine whether a subprogram's parameter profile Prim_Params
7076 -- matches that of a potentially overridden interface subprogram
7077 -- Iface_Params. Also determine if the type of first parameter of
7078 -- Iface_Params is an implemented interface.
7079
7080 -----------------------------------
7081 -- Matches_Prefixed_View_Profile --
7082 -----------------------------------
7083
7084 function Matches_Prefixed_View_Profile
7085 (Prim_Params : List_Id;
7086 Iface_Params : List_Id) return Boolean
7087 is
7088 function Is_Implemented
7089 (Ifaces_List : Elist_Id;
7090 Iface : Entity_Id) return Boolean;
7091 -- Determine if Iface is implemented by the current task or
7092 -- protected type.
7093
7094 --------------------
7095 -- Is_Implemented --
7096 --------------------
7097
7098 function Is_Implemented
7099 (Ifaces_List : Elist_Id;
7100 Iface : Entity_Id) return Boolean
7101 is
7102 Iface_Elmt : Elmt_Id;
7103
7104 begin
7105 Iface_Elmt := First_Elmt (Ifaces_List);
7106 while Present (Iface_Elmt) loop
7107 if Node (Iface_Elmt) = Iface then
7108 return True;
7109 end if;
7110
7111 Next_Elmt (Iface_Elmt);
7112 end loop;
7113
7114 return False;
7115 end Is_Implemented;
7116
7117 -- Local variables
7118
7119 Iface_Id : Entity_Id;
7120 Iface_Param : Node_Id;
7121 Iface_Typ : Entity_Id;
7122 Prim_Id : Entity_Id;
7123 Prim_Param : Node_Id;
7124 Prim_Typ : Entity_Id;
7125
7126 -- Start of processing for Matches_Prefixed_View_Profile
7127
7128 begin
7129 Iface_Param := First (Iface_Params);
7130 Iface_Typ := Etype (Defining_Identifier (Iface_Param));
7131
7132 if Is_Access_Type (Iface_Typ) then
7133 Iface_Typ := Designated_Type (Iface_Typ);
7134 end if;
7135
7136 Prim_Param := First (Prim_Params);
7137
7138 -- The first parameter of the potentially overridden subprogram must
7139 -- be an interface implemented by Prim.
7140
7141 if not Is_Interface (Iface_Typ)
7142 or else not Is_Implemented (Ifaces_List, Iface_Typ)
7143 then
7144 return False;
7145 end if;
7146
7147 -- The checks on the object parameters are done, so move on to the
7148 -- rest of the parameters.
7149
7150 if not In_Scope then
7151 Prim_Param := Next (Prim_Param);
7152 end if;
7153
7154 Iface_Param := Next (Iface_Param);
7155 while Present (Iface_Param) and then Present (Prim_Param) loop
7156 Iface_Id := Defining_Identifier (Iface_Param);
7157 Iface_Typ := Find_Parameter_Type (Iface_Param);
7158
7159 Prim_Id := Defining_Identifier (Prim_Param);
7160 Prim_Typ := Find_Parameter_Type (Prim_Param);
7161
7162 if Ekind (Iface_Typ) = E_Anonymous_Access_Type
7163 and then Ekind (Prim_Typ) = E_Anonymous_Access_Type
7164 and then Is_Concurrent_Type (Designated_Type (Prim_Typ))
7165 then
7166 Iface_Typ := Designated_Type (Iface_Typ);
7167 Prim_Typ := Designated_Type (Prim_Typ);
7168 end if;
7169
7170 -- Case of multiple interface types inside a parameter profile
7171
7172 -- (Obj_Param : in out Iface; ...; Param : Iface)
7173
7174 -- If the interface type is implemented, then the matching type in
7175 -- the primitive should be the implementing record type.
7176
7177 if Ekind (Iface_Typ) = E_Record_Type
7178 and then Is_Interface (Iface_Typ)
7179 and then Is_Implemented (Ifaces_List, Iface_Typ)
7180 then
7181 if Prim_Typ /= Typ then
7182 return False;
7183 end if;
7184
7185 -- The two parameters must be both mode and subtype conformant
7186
7187 elsif Ekind (Iface_Id) /= Ekind (Prim_Id)
7188 or else not
7189 Conforming_Types (Iface_Typ, Prim_Typ, Subtype_Conformant)
7190 then
7191 return False;
7192 end if;
7193
7194 Next (Iface_Param);
7195 Next (Prim_Param);
7196 end loop;
7197
7198 -- One of the two lists contains more parameters than the other
7199
7200 if Present (Iface_Param) or else Present (Prim_Param) then
7201 return False;
7202 end if;
7203
7204 return True;
7205 end Matches_Prefixed_View_Profile;
7206
7207 -- Start of processing for Check_Synchronized_Overriding
7208
7209 begin
7210 Overridden_Subp := Empty;
7211
7212 -- Def_Id must be an entry or a subprogram. We should skip predefined
7213 -- primitives internally generated by the front end; however at this
7214 -- stage predefined primitives are still not fully decorated. As a
7215 -- minor optimization we skip here internally generated subprograms.
7216
7217 if (Ekind (Def_Id) /= E_Entry
7218 and then Ekind (Def_Id) /= E_Function
7219 and then Ekind (Def_Id) /= E_Procedure)
7220 or else not Comes_From_Source (Def_Id)
7221 then
7222 return;
7223 end if;
7224
7225 -- Search for the concurrent declaration since it contains the list of
7226 -- all implemented interfaces. In this case, the subprogram is declared
7227 -- within the scope of a protected or a task type.
7228
7229 if Present (Scope (Def_Id))
7230 and then Is_Concurrent_Type (Scope (Def_Id))
7231 and then not Is_Generic_Actual_Type (Scope (Def_Id))
7232 then
7233 Typ := Scope (Def_Id);
7234 In_Scope := True;
7235
7236 -- The enclosing scope is not a synchronized type and the subprogram
7237 -- has no formals.
7238
7239 elsif No (First_Formal (Def_Id)) then
7240 return;
7241
7242 -- The subprogram has formals and hence it may be a primitive of a
7243 -- concurrent type.
7244
7245 else
7246 Typ := Etype (First_Formal (Def_Id));
7247
7248 if Is_Access_Type (Typ) then
7249 Typ := Directly_Designated_Type (Typ);
7250 end if;
7251
7252 if Is_Concurrent_Type (Typ)
7253 and then not Is_Generic_Actual_Type (Typ)
7254 then
7255 In_Scope := False;
7256
7257 -- This case occurs when the concurrent type is declared within a
7258 -- generic unit. As a result the corresponding record has been built
7259 -- and used as the type of the first formal, we just have to retrieve
7260 -- the corresponding concurrent type.
7261
7262 elsif Is_Concurrent_Record_Type (Typ)
7263 and then not Is_Class_Wide_Type (Typ)
7264 and then Present (Corresponding_Concurrent_Type (Typ))
7265 then
7266 Typ := Corresponding_Concurrent_Type (Typ);
7267 In_Scope := False;
7268
7269 else
7270 return;
7271 end if;
7272 end if;
7273
7274 -- There is no overriding to check if this is an inherited operation in
7275 -- a type derivation for a generic actual.
7276
7277 Collect_Interfaces (Typ, Ifaces_List);
7278
7279 if Is_Empty_Elmt_List (Ifaces_List) then
7280 return;
7281 end if;
7282
7283 -- Determine whether entry or subprogram Def_Id overrides a primitive
7284 -- operation that belongs to one of the interfaces in Ifaces_List.
7285
7286 declare
7287 Candidate : Entity_Id := Empty;
7288 Hom : Entity_Id := Empty;
7289 Subp : Entity_Id := Empty;
7290
7291 begin
7292 -- Traverse the homonym chain, looking for a potentially overridden
7293 -- subprogram that belongs to an implemented interface.
7294
7295 Hom := Current_Entity_In_Scope (Def_Id);
7296 while Present (Hom) loop
7297 Subp := Hom;
7298
7299 if Subp = Def_Id
7300 or else not Is_Overloadable (Subp)
7301 or else not Is_Primitive (Subp)
7302 or else not Is_Dispatching_Operation (Subp)
7303 or else not Present (Find_Dispatching_Type (Subp))
7304 or else not Is_Interface (Find_Dispatching_Type (Subp))
7305 then
7306 null;
7307
7308 -- Entries and procedures can override abstract or null interface
7309 -- procedures.
7310
7311 elsif Ekind_In (Def_Id, E_Entry, E_Procedure)
7312 and then Ekind (Subp) = E_Procedure
7313 and then Matches_Prefixed_View_Profile
7314 (Parameter_Specifications (Parent (Def_Id)),
7315 Parameter_Specifications (Parent (Subp)))
7316 then
7317 Candidate := Subp;
7318
7319 -- For an overridden subprogram Subp, check whether the mode
7320 -- of its first parameter is correct depending on the kind of
7321 -- synchronized type.
7322
7323 declare
7324 Formal : constant Node_Id := First_Formal (Candidate);
7325
7326 begin
7327 -- In order for an entry or a protected procedure to
7328 -- override, the first parameter of the overridden routine
7329 -- must be of mode "out", "in out", or access-to-variable.
7330
7331 if Ekind_In (Candidate, E_Entry, E_Procedure)
7332 and then Is_Protected_Type (Typ)
7333 and then Ekind (Formal) /= E_In_Out_Parameter
7334 and then Ekind (Formal) /= E_Out_Parameter
7335 and then Nkind (Parameter_Type (Parent (Formal))) /=
7336 N_Access_Definition
7337 then
7338 null;
7339
7340 -- All other cases are OK since a task entry or routine does
7341 -- not have a restriction on the mode of the first parameter
7342 -- of the overridden interface routine.
7343
7344 else
7345 Overridden_Subp := Candidate;
7346 return;
7347 end if;
7348 end;
7349
7350 -- Functions can override abstract interface functions
7351
7352 elsif Ekind (Def_Id) = E_Function
7353 and then Ekind (Subp) = E_Function
7354 and then Matches_Prefixed_View_Profile
7355 (Parameter_Specifications (Parent (Def_Id)),
7356 Parameter_Specifications (Parent (Subp)))
7357 and then Etype (Def_Id) = Etype (Subp)
7358 then
7359 Candidate := Subp;
7360
7361 -- If an inherited subprogram is implemented by a protected
7362 -- function, then the first parameter of the inherited
7363 -- subprogram shall be of mode in, but not an access-to-
7364 -- variable parameter (RM 9.4(11/9)).
7365
7366 if Present (First_Formal (Subp))
7367 and then Ekind (First_Formal (Subp)) = E_In_Parameter
7368 and then
7369 (not Is_Access_Type (Etype (First_Formal (Subp)))
7370 or else
7371 Is_Access_Constant (Etype (First_Formal (Subp))))
7372 then
7373 Overridden_Subp := Subp;
7374 return;
7375 end if;
7376 end if;
7377
7378 Hom := Homonym (Hom);
7379 end loop;
7380
7381 -- After examining all candidates for overriding, we are left with
7382 -- the best match, which is a mode-incompatible interface routine.
7383
7384 if In_Scope and then Present (Candidate) then
7385 Error_Msg_PT (Def_Id, Candidate);
7386 end if;
7387
7388 Overridden_Subp := Candidate;
7389 return;
7390 end;
7391 end Check_Synchronized_Overriding;
7392
7393 ---------------------------
7394 -- Check_Type_Conformant --
7395 ---------------------------
7396
7397 procedure Check_Type_Conformant
7398 (New_Id : Entity_Id;
7399 Old_Id : Entity_Id;
7400 Err_Loc : Node_Id := Empty)
7401 is
7402 Result : Boolean;
7403 pragma Warnings (Off, Result);
7404 begin
7405 Check_Conformance
7406 (New_Id, Old_Id, Type_Conformant, True, Result, Err_Loc);
7407 end Check_Type_Conformant;
7408
7409 ---------------------------
7410 -- Can_Override_Operator --
7411 ---------------------------
7412
7413 function Can_Override_Operator (Subp : Entity_Id) return Boolean is
7414 Typ : Entity_Id;
7415
7416 begin
7417 if Nkind (Subp) /= N_Defining_Operator_Symbol then
7418 return False;
7419
7420 else
7421 Typ := Base_Type (Etype (First_Formal (Subp)));
7422
7423 -- Check explicitly that the operation is a primitive of the type
7424
7425 return Operator_Matches_Spec (Subp, Subp)
7426 and then not Is_Generic_Type (Typ)
7427 and then Scope (Subp) = Scope (Typ)
7428 and then not Is_Class_Wide_Type (Typ);
7429 end if;
7430 end Can_Override_Operator;
7431
7432 ----------------------
7433 -- Conforming_Types --
7434 ----------------------
7435
7436 function Conforming_Types
7437 (T1 : Entity_Id;
7438 T2 : Entity_Id;
7439 Ctype : Conformance_Type;
7440 Get_Inst : Boolean := False) return Boolean
7441 is
7442 function Base_Types_Match
7443 (Typ_1 : Entity_Id;
7444 Typ_2 : Entity_Id) return Boolean;
7445 -- If neither Typ_1 nor Typ_2 are generic actual types, or if they are
7446 -- in different scopes (e.g. parent and child instances), then verify
7447 -- that the base types are equal. Otherwise Typ_1 and Typ_2 must be on
7448 -- the same subtype chain. The whole purpose of this procedure is to
7449 -- prevent spurious ambiguities in an instantiation that may arise if
7450 -- two distinct generic types are instantiated with the same actual.
7451
7452 function Find_Designated_Type (Typ : Entity_Id) return Entity_Id;
7453 -- An access parameter can designate an incomplete type. If the
7454 -- incomplete type is the limited view of a type from a limited_
7455 -- with_clause, check whether the non-limited view is available.
7456 -- If it is a (non-limited) incomplete type, get the full view.
7457
7458 function Matches_Limited_With_View
7459 (Typ_1 : Entity_Id;
7460 Typ_2 : Entity_Id) return Boolean;
7461 -- Returns True if and only if either Typ_1 denotes a limited view of
7462 -- Typ_2 or Typ_2 denotes a limited view of Typ_1. This can arise when
7463 -- the limited with view of a type is used in a subprogram declaration
7464 -- and the subprogram body is in the scope of a regular with clause for
7465 -- the same unit. In such a case, the two type entities are considered
7466 -- identical for purposes of conformance checking.
7467
7468 ----------------------
7469 -- Base_Types_Match --
7470 ----------------------
7471
7472 function Base_Types_Match
7473 (Typ_1 : Entity_Id;
7474 Typ_2 : Entity_Id) return Boolean
7475 is
7476 Base_1 : constant Entity_Id := Base_Type (Typ_1);
7477 Base_2 : constant Entity_Id := Base_Type (Typ_2);
7478
7479 begin
7480 if Typ_1 = Typ_2 then
7481 return True;
7482
7483 elsif Base_1 = Base_2 then
7484
7485 -- The following is too permissive. A more precise test should
7486 -- check that the generic actual is an ancestor subtype of the
7487 -- other ???.
7488
7489 -- See code in Find_Corresponding_Spec that applies an additional
7490 -- filter to handle accidental amiguities in instances.
7491
7492 return
7493 not Is_Generic_Actual_Type (Typ_1)
7494 or else not Is_Generic_Actual_Type (Typ_2)
7495 or else Scope (Typ_1) /= Scope (Typ_2);
7496
7497 -- If Typ_2 is a generic actual type it is declared as the subtype of
7498 -- the actual. If that actual is itself a subtype we need to use its
7499 -- own base type to check for compatibility.
7500
7501 elsif Ekind (Base_2) = Ekind (Typ_2)
7502 and then Base_1 = Base_Type (Base_2)
7503 then
7504 return True;
7505
7506 elsif Ekind (Base_1) = Ekind (Typ_1)
7507 and then Base_2 = Base_Type (Base_1)
7508 then
7509 return True;
7510
7511 else
7512 return False;
7513 end if;
7514 end Base_Types_Match;
7515
7516 --------------------------
7517 -- Find_Designated_Type --
7518 --------------------------
7519
7520 function Find_Designated_Type (Typ : Entity_Id) return Entity_Id is
7521 Desig : Entity_Id;
7522
7523 begin
7524 Desig := Directly_Designated_Type (Typ);
7525
7526 if Ekind (Desig) = E_Incomplete_Type then
7527
7528 -- If regular incomplete type, get full view if available
7529
7530 if Present (Full_View (Desig)) then
7531 Desig := Full_View (Desig);
7532
7533 -- If limited view of a type, get non-limited view if available,
7534 -- and check again for a regular incomplete type.
7535
7536 elsif Present (Non_Limited_View (Desig)) then
7537 Desig := Get_Full_View (Non_Limited_View (Desig));
7538 end if;
7539 end if;
7540
7541 return Desig;
7542 end Find_Designated_Type;
7543
7544 -------------------------------
7545 -- Matches_Limited_With_View --
7546 -------------------------------
7547
7548 function Matches_Limited_With_View
7549 (Typ_1 : Entity_Id;
7550 Typ_2 : Entity_Id) return Boolean
7551 is
7552 function Is_Matching_Limited_View
7553 (Typ : Entity_Id;
7554 View : Entity_Id) return Boolean;
7555 -- Determine whether non-limited view View denotes type Typ in some
7556 -- conformant fashion.
7557
7558 ------------------------------
7559 -- Is_Matching_Limited_View --
7560 ------------------------------
7561
7562 function Is_Matching_Limited_View
7563 (Typ : Entity_Id;
7564 View : Entity_Id) return Boolean
7565 is
7566 Root_Typ : Entity_Id;
7567 Root_View : Entity_Id;
7568
7569 begin
7570 -- The non-limited view directly denotes the type
7571
7572 if Typ = View then
7573 return True;
7574
7575 -- The type is a subtype of the non-limited view
7576
7577 elsif Is_Subtype_Of (Typ, View) then
7578 return True;
7579
7580 -- Both the non-limited view and the type denote class-wide types
7581
7582 elsif Is_Class_Wide_Type (Typ)
7583 and then Is_Class_Wide_Type (View)
7584 then
7585 Root_Typ := Root_Type (Typ);
7586 Root_View := Root_Type (View);
7587
7588 if Root_Typ = Root_View then
7589 return True;
7590
7591 -- An incomplete tagged type and its full view may receive two
7592 -- distinct class-wide types when the related package has not
7593 -- been analyzed yet.
7594
7595 -- package Pack is
7596 -- type T is tagged; -- CW_1
7597 -- type T is tagged null record; -- CW_2
7598 -- end Pack;
7599
7600 -- This is because the package lacks any semantic information
7601 -- that may eventually link both views of T. As a consequence,
7602 -- a client of the limited view of Pack will see CW_2 while a
7603 -- client of the non-limited view of Pack will see CW_1.
7604
7605 elsif Is_Incomplete_Type (Root_Typ)
7606 and then Present (Full_View (Root_Typ))
7607 and then Full_View (Root_Typ) = Root_View
7608 then
7609 return True;
7610
7611 elsif Is_Incomplete_Type (Root_View)
7612 and then Present (Full_View (Root_View))
7613 and then Full_View (Root_View) = Root_Typ
7614 then
7615 return True;
7616 end if;
7617 end if;
7618
7619 return False;
7620 end Is_Matching_Limited_View;
7621
7622 -- Start of processing for Matches_Limited_With_View
7623
7624 begin
7625 -- In some cases a type imported through a limited_with clause, and
7626 -- its non-limited view are both visible, for example in an anonymous
7627 -- access-to-class-wide type in a formal, or when building the body
7628 -- for a subprogram renaming after the subprogram has been frozen.
7629 -- In these cases both entities designate the same type. In addition,
7630 -- if one of them is an actual in an instance, it may be a subtype of
7631 -- the non-limited view of the other.
7632
7633 if From_Limited_With (Typ_1)
7634 and then From_Limited_With (Typ_2)
7635 and then Available_View (Typ_1) = Available_View (Typ_2)
7636 then
7637 return True;
7638
7639 elsif From_Limited_With (Typ_1) then
7640 return Is_Matching_Limited_View (Typ_2, Available_View (Typ_1));
7641
7642 elsif From_Limited_With (Typ_2) then
7643 return Is_Matching_Limited_View (Typ_1, Available_View (Typ_2));
7644
7645 else
7646 return False;
7647 end if;
7648 end Matches_Limited_With_View;
7649
7650 -- Local variables
7651
7652 Are_Anonymous_Access_To_Subprogram_Types : Boolean := False;
7653
7654 Type_1 : Entity_Id := T1;
7655 Type_2 : Entity_Id := T2;
7656
7657 -- Start of processing for Conforming_Types
7658
7659 begin
7660 -- The context is an instance association for a formal access-to-
7661 -- subprogram type; the formal parameter types require mapping because
7662 -- they may denote other formal parameters of the generic unit.
7663
7664 if Get_Inst then
7665 Type_1 := Get_Instance_Of (T1);
7666 Type_2 := Get_Instance_Of (T2);
7667 end if;
7668
7669 -- If one of the types is a view of the other introduced by a limited
7670 -- with clause, treat these as conforming for all purposes.
7671
7672 if Matches_Limited_With_View (T1, T2) then
7673 return True;
7674
7675 elsif Base_Types_Match (Type_1, Type_2) then
7676 if Ctype <= Mode_Conformant then
7677 return True;
7678
7679 else
7680 return
7681 Subtypes_Statically_Match (Type_1, Type_2)
7682 and then Dimensions_Match (Type_1, Type_2);
7683 end if;
7684
7685 elsif Is_Incomplete_Or_Private_Type (Type_1)
7686 and then Present (Full_View (Type_1))
7687 and then Base_Types_Match (Full_View (Type_1), Type_2)
7688 then
7689 return
7690 Ctype <= Mode_Conformant
7691 or else Subtypes_Statically_Match (Full_View (Type_1), Type_2);
7692
7693 elsif Ekind (Type_2) = E_Incomplete_Type
7694 and then Present (Full_View (Type_2))
7695 and then Base_Types_Match (Type_1, Full_View (Type_2))
7696 then
7697 return
7698 Ctype <= Mode_Conformant
7699 or else Subtypes_Statically_Match (Type_1, Full_View (Type_2));
7700
7701 elsif Is_Private_Type (Type_2)
7702 and then In_Instance
7703 and then Present (Full_View (Type_2))
7704 and then Base_Types_Match (Type_1, Full_View (Type_2))
7705 then
7706 return
7707 Ctype <= Mode_Conformant
7708 or else Subtypes_Statically_Match (Type_1, Full_View (Type_2));
7709
7710 -- Another confusion between views in a nested instance with an
7711 -- actual private type whose full view is not in scope.
7712
7713 elsif Ekind (Type_2) = E_Private_Subtype
7714 and then In_Instance
7715 and then Etype (Type_2) = Type_1
7716 then
7717 return True;
7718
7719 -- In Ada 2012, incomplete types (including limited views) can appear
7720 -- as actuals in instantiations, where they are conformant to the
7721 -- corresponding incomplete formal.
7722
7723 elsif Is_Incomplete_Type (Type_1)
7724 and then Is_Incomplete_Type (Type_2)
7725 and then In_Instance
7726 and then (Used_As_Generic_Actual (Type_1)
7727 or else Used_As_Generic_Actual (Type_2))
7728 then
7729 return True;
7730 end if;
7731
7732 -- Ada 2005 (AI-254): Anonymous access-to-subprogram types must be
7733 -- treated recursively because they carry a signature. As far as
7734 -- conformance is concerned, convention plays no role, and either
7735 -- or both could be access to protected subprograms.
7736
7737 Are_Anonymous_Access_To_Subprogram_Types :=
7738 Ekind_In (Type_1, E_Anonymous_Access_Subprogram_Type,
7739 E_Anonymous_Access_Protected_Subprogram_Type)
7740 and then
7741 Ekind_In (Type_2, E_Anonymous_Access_Subprogram_Type,
7742 E_Anonymous_Access_Protected_Subprogram_Type);
7743
7744 -- Test anonymous access type case. For this case, static subtype
7745 -- matching is required for mode conformance (RM 6.3.1(15)). We check
7746 -- the base types because we may have built internal subtype entities
7747 -- to handle null-excluding types (see Process_Formals).
7748
7749 if (Ekind (Base_Type (Type_1)) = E_Anonymous_Access_Type
7750 and then
7751 Ekind (Base_Type (Type_2)) = E_Anonymous_Access_Type)
7752
7753 -- Ada 2005 (AI-254)
7754
7755 or else Are_Anonymous_Access_To_Subprogram_Types
7756 then
7757 declare
7758 Desig_1 : Entity_Id;
7759 Desig_2 : Entity_Id;
7760
7761 begin
7762 -- In Ada 2005, access constant indicators must match for
7763 -- subtype conformance.
7764
7765 if Ada_Version >= Ada_2005
7766 and then Ctype >= Subtype_Conformant
7767 and then
7768 Is_Access_Constant (Type_1) /= Is_Access_Constant (Type_2)
7769 then
7770 return False;
7771 end if;
7772
7773 Desig_1 := Find_Designated_Type (Type_1);
7774 Desig_2 := Find_Designated_Type (Type_2);
7775
7776 -- If the context is an instance association for a formal
7777 -- access-to-subprogram type; formal access parameter designated
7778 -- types require mapping because they may denote other formal
7779 -- parameters of the generic unit.
7780
7781 if Get_Inst then
7782 Desig_1 := Get_Instance_Of (Desig_1);
7783 Desig_2 := Get_Instance_Of (Desig_2);
7784 end if;
7785
7786 -- It is possible for a Class_Wide_Type to be introduced for an
7787 -- incomplete type, in which case there is a separate class_ wide
7788 -- type for the full view. The types conform if their Etypes
7789 -- conform, i.e. one may be the full view of the other. This can
7790 -- only happen in the context of an access parameter, other uses
7791 -- of an incomplete Class_Wide_Type are illegal.
7792
7793 if Is_Class_Wide_Type (Desig_1)
7794 and then
7795 Is_Class_Wide_Type (Desig_2)
7796 then
7797 return
7798 Conforming_Types
7799 (Etype (Base_Type (Desig_1)),
7800 Etype (Base_Type (Desig_2)), Ctype);
7801
7802 elsif Are_Anonymous_Access_To_Subprogram_Types then
7803 if Ada_Version < Ada_2005 then
7804 return
7805 Ctype = Type_Conformant
7806 or else Subtypes_Statically_Match (Desig_1, Desig_2);
7807
7808 -- We must check the conformance of the signatures themselves
7809
7810 else
7811 declare
7812 Conformant : Boolean;
7813 begin
7814 Check_Conformance
7815 (Desig_1, Desig_2, Ctype, False, Conformant);
7816 return Conformant;
7817 end;
7818 end if;
7819
7820 -- A limited view of an actual matches the corresponding
7821 -- incomplete formal.
7822
7823 elsif Ekind (Desig_2) = E_Incomplete_Subtype
7824 and then From_Limited_With (Desig_2)
7825 and then Used_As_Generic_Actual (Etype (Desig_2))
7826 then
7827 return True;
7828
7829 else
7830 return Base_Type (Desig_1) = Base_Type (Desig_2)
7831 and then (Ctype = Type_Conformant
7832 or else
7833 Subtypes_Statically_Match (Desig_1, Desig_2));
7834 end if;
7835 end;
7836
7837 -- Otherwise definitely no match
7838
7839 else
7840 if ((Ekind (Type_1) = E_Anonymous_Access_Type
7841 and then Is_Access_Type (Type_2))
7842 or else (Ekind (Type_2) = E_Anonymous_Access_Type
7843 and then Is_Access_Type (Type_1)))
7844 and then
7845 Conforming_Types
7846 (Designated_Type (Type_1), Designated_Type (Type_2), Ctype)
7847 then
7848 May_Hide_Profile := True;
7849 end if;
7850
7851 return False;
7852 end if;
7853 end Conforming_Types;
7854
7855 --------------------------
7856 -- Create_Extra_Formals --
7857 --------------------------
7858
7859 procedure Create_Extra_Formals (E : Entity_Id) is
7860 First_Extra : Entity_Id := Empty;
7861 Formal : Entity_Id;
7862 Last_Extra : Entity_Id := Empty;
7863
7864 function Add_Extra_Formal
7865 (Assoc_Entity : Entity_Id;
7866 Typ : Entity_Id;
7867 Scope : Entity_Id;
7868 Suffix : String) return Entity_Id;
7869 -- Add an extra formal to the current list of formals and extra formals.
7870 -- The extra formal is added to the end of the list of extra formals,
7871 -- and also returned as the result. These formals are always of mode IN.
7872 -- The new formal has the type Typ, is declared in Scope, and its name
7873 -- is given by a concatenation of the name of Assoc_Entity and Suffix.
7874 -- The following suffixes are currently used. They should not be changed
7875 -- without coordinating with CodePeer, which makes use of these to
7876 -- provide better messages.
7877
7878 -- O denotes the Constrained bit.
7879 -- L denotes the accessibility level.
7880 -- BIP_xxx denotes an extra formal for a build-in-place function. See
7881 -- the full list in exp_ch6.BIP_Formal_Kind.
7882
7883 ----------------------
7884 -- Add_Extra_Formal --
7885 ----------------------
7886
7887 function Add_Extra_Formal
7888 (Assoc_Entity : Entity_Id;
7889 Typ : Entity_Id;
7890 Scope : Entity_Id;
7891 Suffix : String) return Entity_Id
7892 is
7893 EF : constant Entity_Id :=
7894 Make_Defining_Identifier (Sloc (Assoc_Entity),
7895 Chars => New_External_Name (Chars (Assoc_Entity),
7896 Suffix => Suffix));
7897
7898 begin
7899 -- A little optimization. Never generate an extra formal for the
7900 -- _init operand of an initialization procedure, since it could
7901 -- never be used.
7902
7903 if Chars (Formal) = Name_uInit then
7904 return Empty;
7905 end if;
7906
7907 Set_Ekind (EF, E_In_Parameter);
7908 Set_Actual_Subtype (EF, Typ);
7909 Set_Etype (EF, Typ);
7910 Set_Scope (EF, Scope);
7911 Set_Mechanism (EF, Default_Mechanism);
7912 Set_Formal_Validity (EF);
7913
7914 if No (First_Extra) then
7915 First_Extra := EF;
7916 Set_Extra_Formals (Scope, EF);
7917 end if;
7918
7919 if Present (Last_Extra) then
7920 Set_Extra_Formal (Last_Extra, EF);
7921 end if;
7922
7923 Last_Extra := EF;
7924
7925 return EF;
7926 end Add_Extra_Formal;
7927
7928 -- Local variables
7929
7930 Formal_Type : Entity_Id;
7931 P_Formal : Entity_Id := Empty;
7932
7933 -- Start of processing for Create_Extra_Formals
7934
7935 begin
7936 -- We never generate extra formals if expansion is not active because we
7937 -- don't need them unless we are generating code.
7938
7939 if not Expander_Active then
7940 return;
7941 end if;
7942
7943 -- No need to generate extra formals in interface thunks whose target
7944 -- primitive has no extra formals.
7945
7946 if Is_Thunk (E) and then No (Extra_Formals (Thunk_Entity (E))) then
7947 return;
7948 end if;
7949
7950 -- If this is a derived subprogram then the subtypes of the parent
7951 -- subprogram's formal parameters will be used to determine the need
7952 -- for extra formals.
7953
7954 if Is_Overloadable (E) and then Present (Alias (E)) then
7955 P_Formal := First_Formal (Alias (E));
7956 end if;
7957
7958 Formal := First_Formal (E);
7959 while Present (Formal) loop
7960 Last_Extra := Formal;
7961 Next_Formal (Formal);
7962 end loop;
7963
7964 -- If Extra_Formals were already created, don't do it again. This
7965 -- situation may arise for subprogram types created as part of
7966 -- dispatching calls (see Expand_Dispatching_Call).
7967
7968 if Present (Last_Extra) and then Present (Extra_Formal (Last_Extra)) then
7969 return;
7970 end if;
7971
7972 -- If the subprogram is a predefined dispatching subprogram then don't
7973 -- generate any extra constrained or accessibility level formals. In
7974 -- general we suppress these for internal subprograms (by not calling
7975 -- Freeze_Subprogram and Create_Extra_Formals at all), but internally
7976 -- generated stream attributes do get passed through because extra
7977 -- build-in-place formals are needed in some cases (limited 'Input).
7978
7979 if Is_Predefined_Internal_Operation (E) then
7980 goto Test_For_Func_Result_Extras;
7981 end if;
7982
7983 Formal := First_Formal (E);
7984 while Present (Formal) loop
7985
7986 -- Create extra formal for supporting the attribute 'Constrained.
7987 -- The case of a private type view without discriminants also
7988 -- requires the extra formal if the underlying type has defaulted
7989 -- discriminants.
7990
7991 if Ekind (Formal) /= E_In_Parameter then
7992 if Present (P_Formal) then
7993 Formal_Type := Etype (P_Formal);
7994 else
7995 Formal_Type := Etype (Formal);
7996 end if;
7997
7998 -- Do not produce extra formals for Unchecked_Union parameters.
7999 -- Jump directly to the end of the loop.
8000
8001 if Is_Unchecked_Union (Base_Type (Formal_Type)) then
8002 goto Skip_Extra_Formal_Generation;
8003 end if;
8004
8005 if not Has_Discriminants (Formal_Type)
8006 and then Ekind (Formal_Type) in Private_Kind
8007 and then Present (Underlying_Type (Formal_Type))
8008 then
8009 Formal_Type := Underlying_Type (Formal_Type);
8010 end if;
8011
8012 -- Suppress the extra formal if formal's subtype is constrained or
8013 -- indefinite, or we're compiling for Ada 2012 and the underlying
8014 -- type is tagged and limited. In Ada 2012, a limited tagged type
8015 -- can have defaulted discriminants, but 'Constrained is required
8016 -- to return True, so the formal is never needed (see AI05-0214).
8017 -- Note that this ensures consistency of calling sequences for
8018 -- dispatching operations when some types in a class have defaults
8019 -- on discriminants and others do not (and requiring the extra
8020 -- formal would introduce distributed overhead).
8021
8022 -- If the type does not have a completion yet, treat as prior to
8023 -- Ada 2012 for consistency.
8024
8025 if Has_Discriminants (Formal_Type)
8026 and then not Is_Constrained (Formal_Type)
8027 and then Is_Definite_Subtype (Formal_Type)
8028 and then (Ada_Version < Ada_2012
8029 or else No (Underlying_Type (Formal_Type))
8030 or else not
8031 (Is_Limited_Type (Formal_Type)
8032 and then
8033 (Is_Tagged_Type
8034 (Underlying_Type (Formal_Type)))))
8035 then
8036 Set_Extra_Constrained
8037 (Formal, Add_Extra_Formal (Formal, Standard_Boolean, E, "O"));
8038 end if;
8039 end if;
8040
8041 -- Create extra formal for supporting accessibility checking. This
8042 -- is done for both anonymous access formals and formals of named
8043 -- access types that are marked as controlling formals. The latter
8044 -- case can occur when Expand_Dispatching_Call creates a subprogram
8045 -- type and substitutes the types of access-to-class-wide actuals
8046 -- for the anonymous access-to-specific-type of controlling formals.
8047 -- Base_Type is applied because in cases where there is a null
8048 -- exclusion the formal may have an access subtype.
8049
8050 -- This is suppressed if we specifically suppress accessibility
8051 -- checks at the package level for either the subprogram, or the
8052 -- package in which it resides. However, we do not suppress it
8053 -- simply if the scope has accessibility checks suppressed, since
8054 -- this could cause trouble when clients are compiled with a
8055 -- different suppression setting. The explicit checks at the
8056 -- package level are safe from this point of view.
8057
8058 if (Ekind (Base_Type (Etype (Formal))) = E_Anonymous_Access_Type
8059 or else (Is_Controlling_Formal (Formal)
8060 and then Is_Access_Type (Base_Type (Etype (Formal)))))
8061 and then not
8062 (Explicit_Suppress (E, Accessibility_Check)
8063 or else
8064 Explicit_Suppress (Scope (E), Accessibility_Check))
8065 and then
8066 (No (P_Formal)
8067 or else Present (Extra_Accessibility (P_Formal)))
8068 then
8069 Set_Extra_Accessibility
8070 (Formal, Add_Extra_Formal (Formal, Standard_Natural, E, "L"));
8071 end if;
8072
8073 -- This label is required when skipping extra formal generation for
8074 -- Unchecked_Union parameters.
8075
8076 <<Skip_Extra_Formal_Generation>>
8077
8078 if Present (P_Formal) then
8079 Next_Formal (P_Formal);
8080 end if;
8081
8082 Next_Formal (Formal);
8083 end loop;
8084
8085 <<Test_For_Func_Result_Extras>>
8086
8087 -- Ada 2012 (AI05-234): "the accessibility level of the result of a
8088 -- function call is ... determined by the point of call ...".
8089
8090 if Needs_Result_Accessibility_Level (E) then
8091 Set_Extra_Accessibility_Of_Result
8092 (E, Add_Extra_Formal (E, Standard_Natural, E, "L"));
8093 end if;
8094
8095 -- Ada 2005 (AI-318-02): In the case of build-in-place functions, add
8096 -- appropriate extra formals. See type Exp_Ch6.BIP_Formal_Kind.
8097
8098 if Is_Build_In_Place_Function (E) then
8099 declare
8100 Result_Subt : constant Entity_Id := Etype (E);
8101 Full_Subt : constant Entity_Id := Available_View (Result_Subt);
8102 Formal_Typ : Entity_Id;
8103 Subp_Decl : Node_Id;
8104 Discard : Entity_Id;
8105
8106 begin
8107 -- In the case of functions with unconstrained result subtypes,
8108 -- add a 4-state formal indicating whether the return object is
8109 -- allocated by the caller (1), or should be allocated by the
8110 -- callee on the secondary stack (2), in the global heap (3), or
8111 -- in a user-defined storage pool (4). For the moment we just use
8112 -- Natural for the type of this formal. Note that this formal
8113 -- isn't usually needed in the case where the result subtype is
8114 -- constrained, but it is needed when the function has a tagged
8115 -- result, because generally such functions can be called in a
8116 -- dispatching context and such calls must be handled like calls
8117 -- to a class-wide function.
8118
8119 if Needs_BIP_Alloc_Form (E) then
8120 Discard :=
8121 Add_Extra_Formal
8122 (E, Standard_Natural,
8123 E, BIP_Formal_Suffix (BIP_Alloc_Form));
8124
8125 -- Add BIP_Storage_Pool, in case BIP_Alloc_Form indicates to
8126 -- use a user-defined pool. This formal is not added on
8127 -- ZFP as those targets do not support pools.
8128
8129 if RTE_Available (RE_Root_Storage_Pool_Ptr) then
8130 Discard :=
8131 Add_Extra_Formal
8132 (E, RTE (RE_Root_Storage_Pool_Ptr),
8133 E, BIP_Formal_Suffix (BIP_Storage_Pool));
8134 end if;
8135 end if;
8136
8137 -- In the case of functions whose result type needs finalization,
8138 -- add an extra formal which represents the finalization master.
8139
8140 if Needs_BIP_Finalization_Master (E) then
8141 Discard :=
8142 Add_Extra_Formal
8143 (E, RTE (RE_Finalization_Master_Ptr),
8144 E, BIP_Formal_Suffix (BIP_Finalization_Master));
8145 end if;
8146
8147 -- When the result type contains tasks, add two extra formals: the
8148 -- master of the tasks to be created, and the caller's activation
8149 -- chain.
8150
8151 if Has_Task (Full_Subt) then
8152 Discard :=
8153 Add_Extra_Formal
8154 (E, RTE (RE_Master_Id),
8155 E, BIP_Formal_Suffix (BIP_Task_Master));
8156 Discard :=
8157 Add_Extra_Formal
8158 (E, RTE (RE_Activation_Chain_Access),
8159 E, BIP_Formal_Suffix (BIP_Activation_Chain));
8160 end if;
8161
8162 -- All build-in-place functions get an extra formal that will be
8163 -- passed the address of the return object within the caller.
8164
8165 Formal_Typ :=
8166 Create_Itype (E_Anonymous_Access_Type, E, Scope_Id => Scope (E));
8167
8168 -- Incomplete_View_From_Limited_With is needed here because
8169 -- gigi gets confused if the designated type is the full view
8170 -- coming from a limited-with'ed package. In the normal case,
8171 -- (no limited with) Incomplete_View_From_Limited_With
8172 -- returns Result_Subt.
8173
8174 Set_Directly_Designated_Type
8175 (Formal_Typ, Incomplete_View_From_Limited_With (Result_Subt));
8176 Set_Etype (Formal_Typ, Formal_Typ);
8177 Set_Depends_On_Private
8178 (Formal_Typ, Has_Private_Component (Formal_Typ));
8179 Set_Is_Public (Formal_Typ, Is_Public (Scope (Formal_Typ)));
8180 Set_Is_Access_Constant (Formal_Typ, False);
8181
8182 -- Ada 2005 (AI-50217): Propagate the attribute that indicates
8183 -- the designated type comes from the limited view (for back-end
8184 -- purposes).
8185
8186 Set_From_Limited_With
8187 (Formal_Typ, From_Limited_With (Result_Subt));
8188
8189 Layout_Type (Formal_Typ);
8190
8191 -- Force the definition of the Itype in case of internal function
8192 -- calls within the same or nested scope.
8193
8194 if Is_Subprogram_Or_Generic_Subprogram (E) then
8195 Subp_Decl := Parent (E);
8196
8197 -- The insertion point for an Itype reference should be after
8198 -- the unit declaration node of the subprogram. An exception
8199 -- to this are inherited operations from a parent type in which
8200 -- case the derived type acts as their parent.
8201
8202 if Nkind_In (Subp_Decl, N_Function_Specification,
8203 N_Procedure_Specification)
8204 then
8205 Subp_Decl := Parent (Subp_Decl);
8206 end if;
8207
8208 Build_Itype_Reference (Formal_Typ, Subp_Decl);
8209 end if;
8210
8211 Discard :=
8212 Add_Extra_Formal
8213 (E, Formal_Typ, E, BIP_Formal_Suffix (BIP_Object_Access));
8214 end;
8215 end if;
8216
8217 -- If this is an instance of a generic, we need to have extra formals
8218 -- for the Alias.
8219
8220 if Is_Generic_Instance (E) and then Present (Alias (E)) then
8221 Set_Extra_Formals (Alias (E), Extra_Formals (E));
8222 end if;
8223 end Create_Extra_Formals;
8224
8225 -----------------------------
8226 -- Enter_Overloaded_Entity --
8227 -----------------------------
8228
8229 procedure Enter_Overloaded_Entity (S : Entity_Id) is
8230 function Matches_Predefined_Op return Boolean;
8231 -- This returns an approximation of whether S matches a predefined
8232 -- operator, based on the operator symbol, and the parameter and result
8233 -- types. The rules are scattered throughout chapter 4 of the Ada RM.
8234
8235 ---------------------------
8236 -- Matches_Predefined_Op --
8237 ---------------------------
8238
8239 function Matches_Predefined_Op return Boolean is
8240 Formal_1 : constant Entity_Id := First_Formal (S);
8241 Formal_2 : constant Entity_Id := Next_Formal (Formal_1);
8242 Op : constant Name_Id := Chars (S);
8243 Result_Type : constant Entity_Id := Base_Type (Etype (S));
8244 Type_1 : constant Entity_Id := Base_Type (Etype (Formal_1));
8245
8246 begin
8247 -- Binary operator
8248
8249 if Present (Formal_2) then
8250 declare
8251 Type_2 : constant Entity_Id := Base_Type (Etype (Formal_2));
8252
8253 begin
8254 -- All but "&" and "**" have same-types parameters
8255
8256 case Op is
8257 when Name_Op_Concat
8258 | Name_Op_Expon
8259 =>
8260 null;
8261
8262 when others =>
8263 if Type_1 /= Type_2 then
8264 return False;
8265 end if;
8266 end case;
8267
8268 -- Check parameter and result types
8269
8270 case Op is
8271 when Name_Op_And
8272 | Name_Op_Or
8273 | Name_Op_Xor
8274 =>
8275 return
8276 Is_Boolean_Type (Result_Type)
8277 and then Result_Type = Type_1;
8278
8279 when Name_Op_Mod
8280 | Name_Op_Rem
8281 =>
8282 return
8283 Is_Integer_Type (Result_Type)
8284 and then Result_Type = Type_1;
8285
8286 when Name_Op_Add
8287 | Name_Op_Divide
8288 | Name_Op_Multiply
8289 | Name_Op_Subtract
8290 =>
8291 return
8292 Is_Numeric_Type (Result_Type)
8293 and then Result_Type = Type_1;
8294
8295 when Name_Op_Eq
8296 | Name_Op_Ne
8297 =>
8298 return
8299 Is_Boolean_Type (Result_Type)
8300 and then not Is_Limited_Type (Type_1);
8301
8302 when Name_Op_Ge
8303 | Name_Op_Gt
8304 | Name_Op_Le
8305 | Name_Op_Lt
8306 =>
8307 return
8308 Is_Boolean_Type (Result_Type)
8309 and then (Is_Array_Type (Type_1)
8310 or else Is_Scalar_Type (Type_1));
8311
8312 when Name_Op_Concat =>
8313 return Is_Array_Type (Result_Type);
8314
8315 when Name_Op_Expon =>
8316 return
8317 (Is_Integer_Type (Result_Type)
8318 or else Is_Floating_Point_Type (Result_Type))
8319 and then Result_Type = Type_1
8320 and then Type_2 = Standard_Integer;
8321
8322 when others =>
8323 raise Program_Error;
8324 end case;
8325 end;
8326
8327 -- Unary operator
8328
8329 else
8330 case Op is
8331 when Name_Op_Abs
8332 | Name_Op_Add
8333 | Name_Op_Subtract
8334 =>
8335 return
8336 Is_Numeric_Type (Result_Type)
8337 and then Result_Type = Type_1;
8338
8339 when Name_Op_Not =>
8340 return
8341 Is_Boolean_Type (Result_Type)
8342 and then Result_Type = Type_1;
8343
8344 when others =>
8345 raise Program_Error;
8346 end case;
8347 end if;
8348 end Matches_Predefined_Op;
8349
8350 -- Local variables
8351
8352 E : Entity_Id := Current_Entity_In_Scope (S);
8353 C_E : Entity_Id := Current_Entity (S);
8354
8355 -- Start of processing for Enter_Overloaded_Entity
8356
8357 begin
8358 if Present (E) then
8359 Set_Has_Homonym (E);
8360 Set_Has_Homonym (S);
8361 end if;
8362
8363 Set_Is_Immediately_Visible (S);
8364 Set_Scope (S, Current_Scope);
8365
8366 -- Chain new entity if front of homonym in current scope, so that
8367 -- homonyms are contiguous.
8368
8369 if Present (E) and then E /= C_E then
8370 while Homonym (C_E) /= E loop
8371 C_E := Homonym (C_E);
8372 end loop;
8373
8374 Set_Homonym (C_E, S);
8375
8376 else
8377 E := C_E;
8378 Set_Current_Entity (S);
8379 end if;
8380
8381 Set_Homonym (S, E);
8382
8383 if Is_Inherited_Operation (S) then
8384 Append_Inherited_Subprogram (S);
8385 else
8386 Append_Entity (S, Current_Scope);
8387 end if;
8388
8389 Set_Public_Status (S);
8390
8391 if Debug_Flag_E then
8392 Write_Str ("New overloaded entity chain: ");
8393 Write_Name (Chars (S));
8394
8395 E := S;
8396 while Present (E) loop
8397 Write_Str (" "); Write_Int (Int (E));
8398 E := Homonym (E);
8399 end loop;
8400
8401 Write_Eol;
8402 end if;
8403
8404 -- Generate warning for hiding
8405
8406 if Warn_On_Hiding
8407 and then Comes_From_Source (S)
8408 and then In_Extended_Main_Source_Unit (S)
8409 then
8410 E := S;
8411 loop
8412 E := Homonym (E);
8413 exit when No (E);
8414
8415 -- Warn unless genuine overloading. Do not emit warning on
8416 -- hiding predefined operators in Standard (these are either an
8417 -- (artifact of our implicit declarations, or simple noise) but
8418 -- keep warning on a operator defined on a local subtype, because
8419 -- of the real danger that different operators may be applied in
8420 -- various parts of the program.
8421
8422 -- Note that if E and S have the same scope, there is never any
8423 -- hiding. Either the two conflict, and the program is illegal,
8424 -- or S is overriding an implicit inherited subprogram.
8425
8426 if Scope (E) /= Scope (S)
8427 and then (not Is_Overloadable (E)
8428 or else Subtype_Conformant (E, S))
8429 and then (Is_Immediately_Visible (E)
8430 or else Is_Potentially_Use_Visible (S))
8431 then
8432 if Scope (E) = Standard_Standard then
8433 if Nkind (S) = N_Defining_Operator_Symbol
8434 and then Scope (Base_Type (Etype (First_Formal (S)))) /=
8435 Scope (S)
8436 and then Matches_Predefined_Op
8437 then
8438 Error_Msg_N
8439 ("declaration of & hides predefined operator?h?", S);
8440 end if;
8441
8442 -- E not immediately within Standard
8443
8444 else
8445 Error_Msg_Sloc := Sloc (E);
8446 Error_Msg_N ("declaration of & hides one #?h?", S);
8447 end if;
8448 end if;
8449 end loop;
8450 end if;
8451 end Enter_Overloaded_Entity;
8452
8453 -----------------------------
8454 -- Check_Untagged_Equality --
8455 -----------------------------
8456
8457 procedure Check_Untagged_Equality (Eq_Op : Entity_Id) is
8458 Typ : constant Entity_Id := Etype (First_Formal (Eq_Op));
8459 Decl : constant Node_Id := Unit_Declaration_Node (Eq_Op);
8460 Obj_Decl : Node_Id;
8461
8462 begin
8463 -- This check applies only if we have a subprogram declaration with an
8464 -- untagged record type.
8465
8466 if Nkind (Decl) /= N_Subprogram_Declaration
8467 or else not Is_Record_Type (Typ)
8468 or else Is_Tagged_Type (Typ)
8469 then
8470 return;
8471 end if;
8472
8473 -- In Ada 2012 case, we will output errors or warnings depending on
8474 -- the setting of debug flag -gnatd.E.
8475
8476 if Ada_Version >= Ada_2012 then
8477 Error_Msg_Warn := Debug_Flag_Dot_EE;
8478
8479 -- In earlier versions of Ada, nothing to do unless we are warning on
8480 -- Ada 2012 incompatibilities (Warn_On_Ada_2012_Incompatibility set).
8481
8482 else
8483 if not Warn_On_Ada_2012_Compatibility then
8484 return;
8485 end if;
8486 end if;
8487
8488 -- Cases where the type has already been frozen
8489
8490 if Is_Frozen (Typ) then
8491
8492 -- If the type is not declared in a package, or if we are in the body
8493 -- of the package or in some other scope, the new operation is not
8494 -- primitive, and therefore legal, though suspicious. Should we
8495 -- generate a warning in this case ???
8496
8497 if Ekind (Scope (Typ)) /= E_Package
8498 or else Scope (Typ) /= Current_Scope
8499 then
8500 return;
8501
8502 -- If the type is a generic actual (sub)type, the operation is not
8503 -- primitive either because the base type is declared elsewhere.
8504
8505 elsif Is_Generic_Actual_Type (Typ) then
8506 return;
8507
8508 -- Here we have a definite error of declaration after freezing
8509
8510 else
8511 if Ada_Version >= Ada_2012 then
8512 Error_Msg_NE
8513 ("equality operator must be declared before type & is "
8514 & "frozen (RM 4.5.2 (9.8)) (Ada 2012)<<", Eq_Op, Typ);
8515
8516 -- In Ada 2012 mode with error turned to warning, output one
8517 -- more warning to warn that the equality operation may not
8518 -- compose. This is the consequence of ignoring the error.
8519
8520 if Error_Msg_Warn then
8521 Error_Msg_N ("\equality operation may not compose??", Eq_Op);
8522 end if;
8523
8524 else
8525 Error_Msg_NE
8526 ("equality operator must be declared before type& is "
8527 & "frozen (RM 4.5.2 (9.8)) (Ada 2012)?y?", Eq_Op, Typ);
8528 end if;
8529
8530 -- If we are in the package body, we could just move the
8531 -- declaration to the package spec, so add a message saying that.
8532
8533 if In_Package_Body (Scope (Typ)) then
8534 if Ada_Version >= Ada_2012 then
8535 Error_Msg_N
8536 ("\move declaration to package spec<<", Eq_Op);
8537 else
8538 Error_Msg_N
8539 ("\move declaration to package spec (Ada 2012)?y?", Eq_Op);
8540 end if;
8541
8542 -- Otherwise try to find the freezing point
8543
8544 else
8545 Obj_Decl := Next (Parent (Typ));
8546 while Present (Obj_Decl) and then Obj_Decl /= Decl loop
8547 if Nkind (Obj_Decl) = N_Object_Declaration
8548 and then Etype (Defining_Identifier (Obj_Decl)) = Typ
8549 then
8550 -- Freezing point, output warnings
8551
8552 if Ada_Version >= Ada_2012 then
8553 Error_Msg_NE
8554 ("type& is frozen by declaration??", Obj_Decl, Typ);
8555 Error_Msg_N
8556 ("\an equality operator cannot be declared after "
8557 & "this point??",
8558 Obj_Decl);
8559 else
8560 Error_Msg_NE
8561 ("type& is frozen by declaration (Ada 2012)?y?",
8562 Obj_Decl, Typ);
8563 Error_Msg_N
8564 ("\an equality operator cannot be declared after "
8565 & "this point (Ada 2012)?y?",
8566 Obj_Decl);
8567 end if;
8568
8569 exit;
8570 end if;
8571
8572 Next (Obj_Decl);
8573 end loop;
8574 end if;
8575 end if;
8576
8577 -- Here if type is not frozen yet. It is illegal to have a primitive
8578 -- equality declared in the private part if the type is visible.
8579
8580 elsif not In_Same_List (Parent (Typ), Decl)
8581 and then not Is_Limited_Type (Typ)
8582 then
8583 -- Shouldn't we give an RM reference here???
8584
8585 if Ada_Version >= Ada_2012 then
8586 Error_Msg_N
8587 ("equality operator appears too late<<", Eq_Op);
8588 else
8589 Error_Msg_N
8590 ("equality operator appears too late (Ada 2012)?y?", Eq_Op);
8591 end if;
8592
8593 -- No error detected
8594
8595 else
8596 return;
8597 end if;
8598 end Check_Untagged_Equality;
8599
8600 -----------------------------
8601 -- Find_Corresponding_Spec --
8602 -----------------------------
8603
8604 function Find_Corresponding_Spec
8605 (N : Node_Id;
8606 Post_Error : Boolean := True) return Entity_Id
8607 is
8608 Spec : constant Node_Id := Specification (N);
8609 Designator : constant Entity_Id := Defining_Entity (Spec);
8610
8611 E : Entity_Id;
8612
8613 function Different_Generic_Profile (E : Entity_Id) return Boolean;
8614 -- Even if fully conformant, a body may depend on a generic actual when
8615 -- the spec does not, or vice versa, in which case they were distinct
8616 -- entities in the generic.
8617
8618 -------------------------------
8619 -- Different_Generic_Profile --
8620 -------------------------------
8621
8622 function Different_Generic_Profile (E : Entity_Id) return Boolean is
8623 F1, F2 : Entity_Id;
8624
8625 function Same_Generic_Actual (T1, T2 : Entity_Id) return Boolean;
8626 -- Check that the types of corresponding formals have the same
8627 -- generic actual if any. We have to account for subtypes of a
8628 -- generic formal, declared between a spec and a body, which may
8629 -- appear distinct in an instance but matched in the generic, and
8630 -- the subtype may be used either in the spec or the body of the
8631 -- subprogram being checked.
8632
8633 -------------------------
8634 -- Same_Generic_Actual --
8635 -------------------------
8636
8637 function Same_Generic_Actual (T1, T2 : Entity_Id) return Boolean is
8638
8639 function Is_Declared_Subtype (S1, S2 : Entity_Id) return Boolean;
8640 -- Predicate to check whether S1 is a subtype of S2 in the source
8641 -- of the instance.
8642
8643 -------------------------
8644 -- Is_Declared_Subtype --
8645 -------------------------
8646
8647 function Is_Declared_Subtype (S1, S2 : Entity_Id) return Boolean is
8648 begin
8649 return Comes_From_Source (Parent (S1))
8650 and then Nkind (Parent (S1)) = N_Subtype_Declaration
8651 and then Is_Entity_Name (Subtype_Indication (Parent (S1)))
8652 and then Entity (Subtype_Indication (Parent (S1))) = S2;
8653 end Is_Declared_Subtype;
8654
8655 -- Start of processing for Same_Generic_Actual
8656
8657 begin
8658 return Is_Generic_Actual_Type (T1) = Is_Generic_Actual_Type (T2)
8659 or else Is_Declared_Subtype (T1, T2)
8660 or else Is_Declared_Subtype (T2, T1);
8661 end Same_Generic_Actual;
8662
8663 -- Start of processing for Different_Generic_Profile
8664
8665 begin
8666 if not In_Instance then
8667 return False;
8668
8669 elsif Ekind (E) = E_Function
8670 and then not Same_Generic_Actual (Etype (E), Etype (Designator))
8671 then
8672 return True;
8673 end if;
8674
8675 F1 := First_Formal (Designator);
8676 F2 := First_Formal (E);
8677 while Present (F1) loop
8678 if not Same_Generic_Actual (Etype (F1), Etype (F2)) then
8679 return True;
8680 end if;
8681
8682 Next_Formal (F1);
8683 Next_Formal (F2);
8684 end loop;
8685
8686 return False;
8687 end Different_Generic_Profile;
8688
8689 -- Start of processing for Find_Corresponding_Spec
8690
8691 begin
8692 E := Current_Entity (Designator);
8693 while Present (E) loop
8694
8695 -- We are looking for a matching spec. It must have the same scope,
8696 -- and the same name, and either be type conformant, or be the case
8697 -- of a library procedure spec and its body (which belong to one
8698 -- another regardless of whether they are type conformant or not).
8699
8700 if Scope (E) = Current_Scope then
8701 if Current_Scope = Standard_Standard
8702 or else (Ekind (E) = Ekind (Designator)
8703 and then Type_Conformant (E, Designator))
8704 then
8705 -- Within an instantiation, we know that spec and body are
8706 -- subtype conformant, because they were subtype conformant in
8707 -- the generic. We choose the subtype-conformant entity here as
8708 -- well, to resolve spurious ambiguities in the instance that
8709 -- were not present in the generic (i.e. when two different
8710 -- types are given the same actual). If we are looking for a
8711 -- spec to match a body, full conformance is expected.
8712
8713 if In_Instance then
8714
8715 -- Inherit the convention and "ghostness" of the matching
8716 -- spec to ensure proper full and subtype conformance.
8717
8718 Set_Convention (Designator, Convention (E));
8719
8720 -- Skip past subprogram bodies and subprogram renamings that
8721 -- may appear to have a matching spec, but that aren't fully
8722 -- conformant with it. That can occur in cases where an
8723 -- actual type causes unrelated homographs in the instance.
8724
8725 if Nkind_In (N, N_Subprogram_Body,
8726 N_Subprogram_Renaming_Declaration)
8727 and then Present (Homonym (E))
8728 and then not Fully_Conformant (Designator, E)
8729 then
8730 goto Next_Entity;
8731
8732 elsif not Subtype_Conformant (Designator, E) then
8733 goto Next_Entity;
8734
8735 elsif Different_Generic_Profile (E) then
8736 goto Next_Entity;
8737 end if;
8738 end if;
8739
8740 -- Ada 2012 (AI05-0165): For internally generated bodies of
8741 -- null procedures locate the internally generated spec. We
8742 -- enforce mode conformance since a tagged type may inherit
8743 -- from interfaces several null primitives which differ only
8744 -- in the mode of the formals.
8745
8746 if not (Comes_From_Source (E))
8747 and then Is_Null_Procedure (E)
8748 and then not Mode_Conformant (Designator, E)
8749 then
8750 null;
8751
8752 -- For null procedures coming from source that are completions,
8753 -- analysis of the generated body will establish the link.
8754
8755 elsif Comes_From_Source (E)
8756 and then Nkind (Spec) = N_Procedure_Specification
8757 and then Null_Present (Spec)
8758 then
8759 return E;
8760
8761 -- Expression functions can be completions, but cannot be
8762 -- completed by an explicit body.
8763
8764 elsif Comes_From_Source (E)
8765 and then Comes_From_Source (N)
8766 and then Nkind (N) = N_Subprogram_Body
8767 and then Nkind (Original_Node (Unit_Declaration_Node (E))) =
8768 N_Expression_Function
8769 then
8770 Error_Msg_Sloc := Sloc (E);
8771 Error_Msg_N ("body conflicts with expression function#", N);
8772 return Empty;
8773
8774 elsif not Has_Completion (E) then
8775 if Nkind (N) /= N_Subprogram_Body_Stub then
8776 Set_Corresponding_Spec (N, E);
8777 end if;
8778
8779 Set_Has_Completion (E);
8780 return E;
8781
8782 elsif Nkind (Parent (N)) = N_Subunit then
8783
8784 -- If this is the proper body of a subunit, the completion
8785 -- flag is set when analyzing the stub.
8786
8787 return E;
8788
8789 -- If E is an internal function with a controlling result that
8790 -- was created for an operation inherited by a null extension,
8791 -- it may be overridden by a body without a previous spec (one
8792 -- more reason why these should be shunned). In that case we
8793 -- remove the generated body if present, because the current
8794 -- one is the explicit overriding.
8795
8796 elsif Ekind (E) = E_Function
8797 and then Ada_Version >= Ada_2005
8798 and then not Comes_From_Source (E)
8799 and then Has_Controlling_Result (E)
8800 and then Is_Null_Extension (Etype (E))
8801 and then Comes_From_Source (Spec)
8802 then
8803 Set_Has_Completion (E, False);
8804
8805 if Expander_Active
8806 and then Nkind (Parent (E)) = N_Function_Specification
8807 then
8808 Remove
8809 (Unit_Declaration_Node
8810 (Corresponding_Body (Unit_Declaration_Node (E))));
8811
8812 return E;
8813
8814 -- If expansion is disabled, or if the wrapper function has
8815 -- not been generated yet, this a late body overriding an
8816 -- inherited operation, or it is an overriding by some other
8817 -- declaration before the controlling result is frozen. In
8818 -- either case this is a declaration of a new entity.
8819
8820 else
8821 return Empty;
8822 end if;
8823
8824 -- If the body already exists, then this is an error unless
8825 -- the previous declaration is the implicit declaration of a
8826 -- derived subprogram. It is also legal for an instance to
8827 -- contain type conformant overloadable declarations (but the
8828 -- generic declaration may not), per 8.3(26/2).
8829
8830 elsif No (Alias (E))
8831 and then not Is_Intrinsic_Subprogram (E)
8832 and then not In_Instance
8833 and then Post_Error
8834 then
8835 Error_Msg_Sloc := Sloc (E);
8836
8837 if Is_Imported (E) then
8838 Error_Msg_NE
8839 ("body not allowed for imported subprogram & declared#",
8840 N, E);
8841 else
8842 Error_Msg_NE ("duplicate body for & declared#", N, E);
8843 end if;
8844 end if;
8845
8846 -- Child units cannot be overloaded, so a conformance mismatch
8847 -- between body and a previous spec is an error.
8848
8849 elsif Is_Child_Unit (E)
8850 and then
8851 Nkind (Unit_Declaration_Node (Designator)) = N_Subprogram_Body
8852 and then
8853 Nkind (Parent (Unit_Declaration_Node (Designator))) =
8854 N_Compilation_Unit
8855 and then Post_Error
8856 then
8857 Error_Msg_N
8858 ("body of child unit does not match previous declaration", N);
8859 end if;
8860 end if;
8861
8862 <<Next_Entity>>
8863 E := Homonym (E);
8864 end loop;
8865
8866 -- On exit, we know that no previous declaration of subprogram exists
8867
8868 return Empty;
8869 end Find_Corresponding_Spec;
8870
8871 ----------------------
8872 -- Fully_Conformant --
8873 ----------------------
8874
8875 function Fully_Conformant (New_Id, Old_Id : Entity_Id) return Boolean is
8876 Result : Boolean;
8877 begin
8878 Check_Conformance (New_Id, Old_Id, Fully_Conformant, False, Result);
8879 return Result;
8880 end Fully_Conformant;
8881
8882 ----------------------------------
8883 -- Fully_Conformant_Expressions --
8884 ----------------------------------
8885
8886 function Fully_Conformant_Expressions
8887 (Given_E1 : Node_Id;
8888 Given_E2 : Node_Id) return Boolean
8889 is
8890 E1 : constant Node_Id := Original_Node (Given_E1);
8891 E2 : constant Node_Id := Original_Node (Given_E2);
8892 -- We always test conformance on original nodes, since it is possible
8893 -- for analysis and/or expansion to make things look as though they
8894 -- conform when they do not, e.g. by converting 1+2 into 3.
8895
8896 function FCE (Given_E1, Given_E2 : Node_Id) return Boolean
8897 renames Fully_Conformant_Expressions;
8898
8899 function FCL (L1, L2 : List_Id) return Boolean;
8900 -- Compare elements of two lists for conformance. Elements have to be
8901 -- conformant, and actuals inserted as default parameters do not match
8902 -- explicit actuals with the same value.
8903
8904 function FCO (Op_Node, Call_Node : Node_Id) return Boolean;
8905 -- Compare an operator node with a function call
8906
8907 ---------
8908 -- FCL --
8909 ---------
8910
8911 function FCL (L1, L2 : List_Id) return Boolean is
8912 N1, N2 : Node_Id;
8913
8914 begin
8915 if L1 = No_List then
8916 N1 := Empty;
8917 else
8918 N1 := First (L1);
8919 end if;
8920
8921 if L2 = No_List then
8922 N2 := Empty;
8923 else
8924 N2 := First (L2);
8925 end if;
8926
8927 -- Compare two lists, skipping rewrite insertions (we want to compare
8928 -- the original trees, not the expanded versions).
8929
8930 loop
8931 if Is_Rewrite_Insertion (N1) then
8932 Next (N1);
8933 elsif Is_Rewrite_Insertion (N2) then
8934 Next (N2);
8935 elsif No (N1) then
8936 return No (N2);
8937 elsif No (N2) then
8938 return False;
8939 elsif not FCE (N1, N2) then
8940 return False;
8941 else
8942 Next (N1);
8943 Next (N2);
8944 end if;
8945 end loop;
8946 end FCL;
8947
8948 ---------
8949 -- FCO --
8950 ---------
8951
8952 function FCO (Op_Node, Call_Node : Node_Id) return Boolean is
8953 Actuals : constant List_Id := Parameter_Associations (Call_Node);
8954 Act : Node_Id;
8955
8956 begin
8957 if No (Actuals)
8958 or else Entity (Op_Node) /= Entity (Name (Call_Node))
8959 then
8960 return False;
8961
8962 else
8963 Act := First (Actuals);
8964
8965 if Nkind (Op_Node) in N_Binary_Op then
8966 if not FCE (Left_Opnd (Op_Node), Act) then
8967 return False;
8968 end if;
8969
8970 Next (Act);
8971 end if;
8972
8973 return Present (Act)
8974 and then FCE (Right_Opnd (Op_Node), Act)
8975 and then No (Next (Act));
8976 end if;
8977 end FCO;
8978
8979 -- Start of processing for Fully_Conformant_Expressions
8980
8981 begin
8982 -- Nonconformant if paren count does not match. Note: if some idiot
8983 -- complains that we don't do this right for more than 3 levels of
8984 -- parentheses, they will be treated with the respect they deserve.
8985
8986 if Paren_Count (E1) /= Paren_Count (E2) then
8987 return False;
8988
8989 -- If same entities are referenced, then they are conformant even if
8990 -- they have different forms (RM 8.3.1(19-20)).
8991
8992 elsif Is_Entity_Name (E1) and then Is_Entity_Name (E2) then
8993 if Present (Entity (E1)) then
8994 return Entity (E1) = Entity (E2)
8995
8996 -- One may be a discriminant that has been replaced by the
8997 -- corresponding discriminal.
8998
8999 or else
9000 (Chars (Entity (E1)) = Chars (Entity (E2))
9001 and then Ekind (Entity (E1)) = E_Discriminant
9002 and then Ekind (Entity (E2)) = E_In_Parameter)
9003
9004 -- The discriminant of a protected type is transformed into
9005 -- a local constant and then into a parameter of a protected
9006 -- operation.
9007
9008 or else
9009 (Ekind (Entity (E1)) = E_Constant
9010 and then Ekind (Entity (E2)) = E_In_Parameter
9011 and then Present (Discriminal_Link (Entity (E1)))
9012 and then Discriminal_Link (Entity (E1)) =
9013 Discriminal_Link (Entity (E2)))
9014
9015 -- AI12-050: The loop variables of quantified expressions
9016 -- match if they have the same identifier, even though they
9017 -- are different entities.
9018
9019 or else
9020 (Chars (Entity (E1)) = Chars (Entity (E2))
9021 and then Ekind (Entity (E1)) = E_Loop_Parameter
9022 and then Ekind (Entity (E2)) = E_Loop_Parameter);
9023
9024 elsif Nkind (E1) = N_Expanded_Name
9025 and then Nkind (E2) = N_Expanded_Name
9026 and then Nkind (Selector_Name (E1)) = N_Character_Literal
9027 and then Nkind (Selector_Name (E2)) = N_Character_Literal
9028 then
9029 return Chars (Selector_Name (E1)) = Chars (Selector_Name (E2));
9030
9031 else
9032 -- Identifiers in component associations don't always have
9033 -- entities, but their names must conform.
9034
9035 return Nkind (E1) = N_Identifier
9036 and then Nkind (E2) = N_Identifier
9037 and then Chars (E1) = Chars (E2);
9038 end if;
9039
9040 elsif Nkind (E1) = N_Character_Literal
9041 and then Nkind (E2) = N_Expanded_Name
9042 then
9043 return Nkind (Selector_Name (E2)) = N_Character_Literal
9044 and then Chars (E1) = Chars (Selector_Name (E2));
9045
9046 elsif Nkind (E2) = N_Character_Literal
9047 and then Nkind (E1) = N_Expanded_Name
9048 then
9049 return Nkind (Selector_Name (E1)) = N_Character_Literal
9050 and then Chars (E2) = Chars (Selector_Name (E1));
9051
9052 elsif Nkind (E1) in N_Op and then Nkind (E2) = N_Function_Call then
9053 return FCO (E1, E2);
9054
9055 elsif Nkind (E2) in N_Op and then Nkind (E1) = N_Function_Call then
9056 return FCO (E2, E1);
9057
9058 -- Otherwise we must have the same syntactic entity
9059
9060 elsif Nkind (E1) /= Nkind (E2) then
9061 return False;
9062
9063 -- At this point, we specialize by node type
9064
9065 else
9066 case Nkind (E1) is
9067 when N_Aggregate =>
9068 return
9069 FCL (Expressions (E1), Expressions (E2))
9070 and then
9071 FCL (Component_Associations (E1),
9072 Component_Associations (E2));
9073
9074 when N_Allocator =>
9075 if Nkind (Expression (E1)) = N_Qualified_Expression
9076 or else
9077 Nkind (Expression (E2)) = N_Qualified_Expression
9078 then
9079 return FCE (Expression (E1), Expression (E2));
9080
9081 -- Check that the subtype marks and any constraints
9082 -- are conformant
9083
9084 else
9085 declare
9086 Indic1 : constant Node_Id := Expression (E1);
9087 Indic2 : constant Node_Id := Expression (E2);
9088 Elt1 : Node_Id;
9089 Elt2 : Node_Id;
9090
9091 begin
9092 if Nkind (Indic1) /= N_Subtype_Indication then
9093 return
9094 Nkind (Indic2) /= N_Subtype_Indication
9095 and then Entity (Indic1) = Entity (Indic2);
9096
9097 elsif Nkind (Indic2) /= N_Subtype_Indication then
9098 return
9099 Nkind (Indic1) /= N_Subtype_Indication
9100 and then Entity (Indic1) = Entity (Indic2);
9101
9102 else
9103 if Entity (Subtype_Mark (Indic1)) /=
9104 Entity (Subtype_Mark (Indic2))
9105 then
9106 return False;
9107 end if;
9108
9109 Elt1 := First (Constraints (Constraint (Indic1)));
9110 Elt2 := First (Constraints (Constraint (Indic2)));
9111 while Present (Elt1) and then Present (Elt2) loop
9112 if not FCE (Elt1, Elt2) then
9113 return False;
9114 end if;
9115
9116 Next (Elt1);
9117 Next (Elt2);
9118 end loop;
9119
9120 return True;
9121 end if;
9122 end;
9123 end if;
9124
9125 when N_Attribute_Reference =>
9126 return
9127 Attribute_Name (E1) = Attribute_Name (E2)
9128 and then FCL (Expressions (E1), Expressions (E2));
9129
9130 when N_Binary_Op =>
9131 return
9132 Entity (E1) = Entity (E2)
9133 and then FCE (Left_Opnd (E1), Left_Opnd (E2))
9134 and then FCE (Right_Opnd (E1), Right_Opnd (E2));
9135
9136 when N_Membership_Test
9137 | N_Short_Circuit
9138 =>
9139 return
9140 FCE (Left_Opnd (E1), Left_Opnd (E2))
9141 and then
9142 FCE (Right_Opnd (E1), Right_Opnd (E2));
9143
9144 when N_Case_Expression =>
9145 declare
9146 Alt1 : Node_Id;
9147 Alt2 : Node_Id;
9148
9149 begin
9150 if not FCE (Expression (E1), Expression (E2)) then
9151 return False;
9152
9153 else
9154 Alt1 := First (Alternatives (E1));
9155 Alt2 := First (Alternatives (E2));
9156 loop
9157 if Present (Alt1) /= Present (Alt2) then
9158 return False;
9159 elsif No (Alt1) then
9160 return True;
9161 end if;
9162
9163 if not FCE (Expression (Alt1), Expression (Alt2))
9164 or else not FCL (Discrete_Choices (Alt1),
9165 Discrete_Choices (Alt2))
9166 then
9167 return False;
9168 end if;
9169
9170 Next (Alt1);
9171 Next (Alt2);
9172 end loop;
9173 end if;
9174 end;
9175
9176 when N_Character_Literal =>
9177 return
9178 Char_Literal_Value (E1) = Char_Literal_Value (E2);
9179
9180 when N_Component_Association =>
9181 return
9182 FCL (Choices (E1), Choices (E2))
9183 and then
9184 FCE (Expression (E1), Expression (E2));
9185
9186 when N_Explicit_Dereference =>
9187 return
9188 FCE (Prefix (E1), Prefix (E2));
9189
9190 when N_Extension_Aggregate =>
9191 return
9192 FCL (Expressions (E1), Expressions (E2))
9193 and then Null_Record_Present (E1) =
9194 Null_Record_Present (E2)
9195 and then FCL (Component_Associations (E1),
9196 Component_Associations (E2));
9197
9198 when N_Function_Call =>
9199 return
9200 FCE (Name (E1), Name (E2))
9201 and then
9202 FCL (Parameter_Associations (E1),
9203 Parameter_Associations (E2));
9204
9205 when N_If_Expression =>
9206 return
9207 FCL (Expressions (E1), Expressions (E2));
9208
9209 when N_Indexed_Component =>
9210 return
9211 FCE (Prefix (E1), Prefix (E2))
9212 and then
9213 FCL (Expressions (E1), Expressions (E2));
9214
9215 when N_Integer_Literal =>
9216 return (Intval (E1) = Intval (E2));
9217
9218 when N_Null =>
9219 return True;
9220
9221 when N_Operator_Symbol =>
9222 return
9223 Chars (E1) = Chars (E2);
9224
9225 when N_Others_Choice =>
9226 return True;
9227
9228 when N_Parameter_Association =>
9229 return
9230 Chars (Selector_Name (E1)) = Chars (Selector_Name (E2))
9231 and then FCE (Explicit_Actual_Parameter (E1),
9232 Explicit_Actual_Parameter (E2));
9233
9234 when N_Qualified_Expression
9235 | N_Type_Conversion
9236 | N_Unchecked_Type_Conversion
9237 =>
9238 return
9239 FCE (Subtype_Mark (E1), Subtype_Mark (E2))
9240 and then
9241 FCE (Expression (E1), Expression (E2));
9242
9243 when N_Quantified_Expression =>
9244 if not FCE (Condition (E1), Condition (E2)) then
9245 return False;
9246 end if;
9247
9248 if Present (Loop_Parameter_Specification (E1))
9249 and then Present (Loop_Parameter_Specification (E2))
9250 then
9251 declare
9252 L1 : constant Node_Id :=
9253 Loop_Parameter_Specification (E1);
9254 L2 : constant Node_Id :=
9255 Loop_Parameter_Specification (E2);
9256
9257 begin
9258 return
9259 Reverse_Present (L1) = Reverse_Present (L2)
9260 and then
9261 FCE (Defining_Identifier (L1),
9262 Defining_Identifier (L2))
9263 and then
9264 FCE (Discrete_Subtype_Definition (L1),
9265 Discrete_Subtype_Definition (L2));
9266 end;
9267
9268 elsif Present (Iterator_Specification (E1))
9269 and then Present (Iterator_Specification (E2))
9270 then
9271 declare
9272 I1 : constant Node_Id := Iterator_Specification (E1);
9273 I2 : constant Node_Id := Iterator_Specification (E2);
9274
9275 begin
9276 return
9277 FCE (Defining_Identifier (I1),
9278 Defining_Identifier (I2))
9279 and then
9280 Of_Present (I1) = Of_Present (I2)
9281 and then
9282 Reverse_Present (I1) = Reverse_Present (I2)
9283 and then FCE (Name (I1), Name (I2))
9284 and then FCE (Subtype_Indication (I1),
9285 Subtype_Indication (I2));
9286 end;
9287
9288 -- The quantified expressions used different specifications to
9289 -- walk their respective ranges.
9290
9291 else
9292 return False;
9293 end if;
9294
9295 when N_Range =>
9296 return
9297 FCE (Low_Bound (E1), Low_Bound (E2))
9298 and then
9299 FCE (High_Bound (E1), High_Bound (E2));
9300
9301 when N_Real_Literal =>
9302 return (Realval (E1) = Realval (E2));
9303
9304 when N_Selected_Component =>
9305 return
9306 FCE (Prefix (E1), Prefix (E2))
9307 and then
9308 FCE (Selector_Name (E1), Selector_Name (E2));
9309
9310 when N_Slice =>
9311 return
9312 FCE (Prefix (E1), Prefix (E2))
9313 and then
9314 FCE (Discrete_Range (E1), Discrete_Range (E2));
9315
9316 when N_String_Literal =>
9317 declare
9318 S1 : constant String_Id := Strval (E1);
9319 S2 : constant String_Id := Strval (E2);
9320 L1 : constant Nat := String_Length (S1);
9321 L2 : constant Nat := String_Length (S2);
9322
9323 begin
9324 if L1 /= L2 then
9325 return False;
9326
9327 else
9328 for J in 1 .. L1 loop
9329 if Get_String_Char (S1, J) /=
9330 Get_String_Char (S2, J)
9331 then
9332 return False;
9333 end if;
9334 end loop;
9335
9336 return True;
9337 end if;
9338 end;
9339
9340 when N_Unary_Op =>
9341 return
9342 Entity (E1) = Entity (E2)
9343 and then
9344 FCE (Right_Opnd (E1), Right_Opnd (E2));
9345
9346 -- All other node types cannot appear in this context. Strictly
9347 -- we should raise a fatal internal error. Instead we just ignore
9348 -- the nodes. This means that if anyone makes a mistake in the
9349 -- expander and mucks an expression tree irretrievably, the result
9350 -- will be a failure to detect a (probably very obscure) case
9351 -- of non-conformance, which is better than bombing on some
9352 -- case where two expressions do in fact conform.
9353
9354 when others =>
9355 return True;
9356 end case;
9357 end if;
9358 end Fully_Conformant_Expressions;
9359
9360 ----------------------------------------
9361 -- Fully_Conformant_Discrete_Subtypes --
9362 ----------------------------------------
9363
9364 function Fully_Conformant_Discrete_Subtypes
9365 (Given_S1 : Node_Id;
9366 Given_S2 : Node_Id) return Boolean
9367 is
9368 S1 : constant Node_Id := Original_Node (Given_S1);
9369 S2 : constant Node_Id := Original_Node (Given_S2);
9370
9371 function Conforming_Bounds (B1, B2 : Node_Id) return Boolean;
9372 -- Special-case for a bound given by a discriminant, which in the body
9373 -- is replaced with the discriminal of the enclosing type.
9374
9375 function Conforming_Ranges (R1, R2 : Node_Id) return Boolean;
9376 -- Check both bounds
9377
9378 -----------------------
9379 -- Conforming_Bounds --
9380 -----------------------
9381
9382 function Conforming_Bounds (B1, B2 : Node_Id) return Boolean is
9383 begin
9384 if Is_Entity_Name (B1)
9385 and then Is_Entity_Name (B2)
9386 and then Ekind (Entity (B1)) = E_Discriminant
9387 then
9388 return Chars (B1) = Chars (B2);
9389
9390 else
9391 return Fully_Conformant_Expressions (B1, B2);
9392 end if;
9393 end Conforming_Bounds;
9394
9395 -----------------------
9396 -- Conforming_Ranges --
9397 -----------------------
9398
9399 function Conforming_Ranges (R1, R2 : Node_Id) return Boolean is
9400 begin
9401 return
9402 Conforming_Bounds (Low_Bound (R1), Low_Bound (R2))
9403 and then
9404 Conforming_Bounds (High_Bound (R1), High_Bound (R2));
9405 end Conforming_Ranges;
9406
9407 -- Start of processing for Fully_Conformant_Discrete_Subtypes
9408
9409 begin
9410 if Nkind (S1) /= Nkind (S2) then
9411 return False;
9412
9413 elsif Is_Entity_Name (S1) then
9414 return Entity (S1) = Entity (S2);
9415
9416 elsif Nkind (S1) = N_Range then
9417 return Conforming_Ranges (S1, S2);
9418
9419 elsif Nkind (S1) = N_Subtype_Indication then
9420 return
9421 Entity (Subtype_Mark (S1)) = Entity (Subtype_Mark (S2))
9422 and then
9423 Conforming_Ranges
9424 (Range_Expression (Constraint (S1)),
9425 Range_Expression (Constraint (S2)));
9426 else
9427 return True;
9428 end if;
9429 end Fully_Conformant_Discrete_Subtypes;
9430
9431 --------------------
9432 -- Install_Entity --
9433 --------------------
9434
9435 procedure Install_Entity (E : Entity_Id) is
9436 Prev : constant Entity_Id := Current_Entity (E);
9437 begin
9438 Set_Is_Immediately_Visible (E);
9439 Set_Current_Entity (E);
9440 Set_Homonym (E, Prev);
9441 end Install_Entity;
9442
9443 ---------------------
9444 -- Install_Formals --
9445 ---------------------
9446
9447 procedure Install_Formals (Id : Entity_Id) is
9448 F : Entity_Id;
9449 begin
9450 F := First_Formal (Id);
9451 while Present (F) loop
9452 Install_Entity (F);
9453 Next_Formal (F);
9454 end loop;
9455 end Install_Formals;
9456
9457 -----------------------------
9458 -- Is_Interface_Conformant --
9459 -----------------------------
9460
9461 function Is_Interface_Conformant
9462 (Tagged_Type : Entity_Id;
9463 Iface_Prim : Entity_Id;
9464 Prim : Entity_Id) return Boolean
9465 is
9466 -- The operation may in fact be an inherited (implicit) operation
9467 -- rather than the original interface primitive, so retrieve the
9468 -- ultimate ancestor.
9469
9470 Iface : constant Entity_Id :=
9471 Find_Dispatching_Type (Ultimate_Alias (Iface_Prim));
9472 Typ : constant Entity_Id := Find_Dispatching_Type (Prim);
9473
9474 function Controlling_Formal (Prim : Entity_Id) return Entity_Id;
9475 -- Return the controlling formal of Prim
9476
9477 ------------------------
9478 -- Controlling_Formal --
9479 ------------------------
9480
9481 function Controlling_Formal (Prim : Entity_Id) return Entity_Id is
9482 E : Entity_Id;
9483
9484 begin
9485 E := First_Entity (Prim);
9486 while Present (E) loop
9487 if Is_Formal (E) and then Is_Controlling_Formal (E) then
9488 return E;
9489 end if;
9490
9491 Next_Entity (E);
9492 end loop;
9493
9494 return Empty;
9495 end Controlling_Formal;
9496
9497 -- Local variables
9498
9499 Iface_Ctrl_F : constant Entity_Id := Controlling_Formal (Iface_Prim);
9500 Prim_Ctrl_F : constant Entity_Id := Controlling_Formal (Prim);
9501
9502 -- Start of processing for Is_Interface_Conformant
9503
9504 begin
9505 pragma Assert (Is_Subprogram (Iface_Prim)
9506 and then Is_Subprogram (Prim)
9507 and then Is_Dispatching_Operation (Iface_Prim)
9508 and then Is_Dispatching_Operation (Prim));
9509
9510 pragma Assert (Is_Interface (Iface)
9511 or else (Present (Alias (Iface_Prim))
9512 and then
9513 Is_Interface
9514 (Find_Dispatching_Type (Ultimate_Alias (Iface_Prim)))));
9515
9516 if Prim = Iface_Prim
9517 or else not Is_Subprogram (Prim)
9518 or else Ekind (Prim) /= Ekind (Iface_Prim)
9519 or else not Is_Dispatching_Operation (Prim)
9520 or else Scope (Prim) /= Scope (Tagged_Type)
9521 or else No (Typ)
9522 or else Base_Type (Typ) /= Base_Type (Tagged_Type)
9523 or else not Primitive_Names_Match (Iface_Prim, Prim)
9524 then
9525 return False;
9526
9527 -- The mode of the controlling formals must match
9528
9529 elsif Present (Iface_Ctrl_F)
9530 and then Present (Prim_Ctrl_F)
9531 and then Ekind (Iface_Ctrl_F) /= Ekind (Prim_Ctrl_F)
9532 then
9533 return False;
9534
9535 -- Case of a procedure, or a function whose result type matches the
9536 -- result type of the interface primitive, or a function that has no
9537 -- controlling result (I or access I).
9538
9539 elsif Ekind (Iface_Prim) = E_Procedure
9540 or else Etype (Prim) = Etype (Iface_Prim)
9541 or else not Has_Controlling_Result (Prim)
9542 then
9543 return Type_Conformant
9544 (Iface_Prim, Prim, Skip_Controlling_Formals => True);
9545
9546 -- Case of a function returning an interface, or an access to one. Check
9547 -- that the return types correspond.
9548
9549 elsif Implements_Interface (Typ, Iface) then
9550 if (Ekind (Etype (Prim)) = E_Anonymous_Access_Type)
9551 /=
9552 (Ekind (Etype (Iface_Prim)) = E_Anonymous_Access_Type)
9553 then
9554 return False;
9555 else
9556 return
9557 Type_Conformant (Prim, Ultimate_Alias (Iface_Prim),
9558 Skip_Controlling_Formals => True);
9559 end if;
9560
9561 else
9562 return False;
9563 end if;
9564 end Is_Interface_Conformant;
9565
9566 ---------------------------------
9567 -- Is_Non_Overriding_Operation --
9568 ---------------------------------
9569
9570 function Is_Non_Overriding_Operation
9571 (Prev_E : Entity_Id;
9572 New_E : Entity_Id) return Boolean
9573 is
9574 Formal : Entity_Id;
9575 F_Typ : Entity_Id;
9576 G_Typ : Entity_Id := Empty;
9577
9578 function Get_Generic_Parent_Type (F_Typ : Entity_Id) return Entity_Id;
9579 -- If F_Type is a derived type associated with a generic actual subtype,
9580 -- then return its Generic_Parent_Type attribute, else return Empty.
9581
9582 function Types_Correspond
9583 (P_Type : Entity_Id;
9584 N_Type : Entity_Id) return Boolean;
9585 -- Returns true if and only if the types (or designated types in the
9586 -- case of anonymous access types) are the same or N_Type is derived
9587 -- directly or indirectly from P_Type.
9588
9589 -----------------------------
9590 -- Get_Generic_Parent_Type --
9591 -----------------------------
9592
9593 function Get_Generic_Parent_Type (F_Typ : Entity_Id) return Entity_Id is
9594 G_Typ : Entity_Id;
9595 Defn : Node_Id;
9596 Indic : Node_Id;
9597
9598 begin
9599 if Is_Derived_Type (F_Typ)
9600 and then Nkind (Parent (F_Typ)) = N_Full_Type_Declaration
9601 then
9602 -- The tree must be traversed to determine the parent subtype in
9603 -- the generic unit, which unfortunately isn't always available
9604 -- via semantic attributes. ??? (Note: The use of Original_Node
9605 -- is needed for cases where a full derived type has been
9606 -- rewritten.)
9607
9608 -- If the parent type is a scalar type, the derivation creates
9609 -- an anonymous base type for it, and the source type is its
9610 -- first subtype.
9611
9612 if Is_Scalar_Type (F_Typ)
9613 and then not Comes_From_Source (F_Typ)
9614 then
9615 Defn :=
9616 Type_Definition
9617 (Original_Node (Parent (First_Subtype (F_Typ))));
9618 else
9619 Defn := Type_Definition (Original_Node (Parent (F_Typ)));
9620 end if;
9621 if Nkind (Defn) = N_Derived_Type_Definition then
9622 Indic := Subtype_Indication (Defn);
9623
9624 if Nkind (Indic) = N_Subtype_Indication then
9625 G_Typ := Entity (Subtype_Mark (Indic));
9626 else
9627 G_Typ := Entity (Indic);
9628 end if;
9629
9630 if Nkind (Parent (G_Typ)) = N_Subtype_Declaration
9631 and then Present (Generic_Parent_Type (Parent (G_Typ)))
9632 then
9633 return Generic_Parent_Type (Parent (G_Typ));
9634 end if;
9635 end if;
9636 end if;
9637
9638 return Empty;
9639 end Get_Generic_Parent_Type;
9640
9641 ----------------------
9642 -- Types_Correspond --
9643 ----------------------
9644
9645 function Types_Correspond
9646 (P_Type : Entity_Id;
9647 N_Type : Entity_Id) return Boolean
9648 is
9649 Prev_Type : Entity_Id := Base_Type (P_Type);
9650 New_Type : Entity_Id := Base_Type (N_Type);
9651
9652 begin
9653 if Ekind (Prev_Type) = E_Anonymous_Access_Type then
9654 Prev_Type := Designated_Type (Prev_Type);
9655 end if;
9656
9657 if Ekind (New_Type) = E_Anonymous_Access_Type then
9658 New_Type := Designated_Type (New_Type);
9659 end if;
9660
9661 if Prev_Type = New_Type then
9662 return True;
9663
9664 elsif not Is_Class_Wide_Type (New_Type) then
9665 while Etype (New_Type) /= New_Type loop
9666 New_Type := Etype (New_Type);
9667
9668 if New_Type = Prev_Type then
9669 return True;
9670 end if;
9671 end loop;
9672 end if;
9673 return False;
9674 end Types_Correspond;
9675
9676 -- Start of processing for Is_Non_Overriding_Operation
9677
9678 begin
9679 -- In the case where both operations are implicit derived subprograms
9680 -- then neither overrides the other. This can only occur in certain
9681 -- obscure cases (e.g., derivation from homographs created in a generic
9682 -- instantiation).
9683
9684 if Present (Alias (Prev_E)) and then Present (Alias (New_E)) then
9685 return True;
9686
9687 elsif Ekind (Current_Scope) = E_Package
9688 and then Is_Generic_Instance (Current_Scope)
9689 and then In_Private_Part (Current_Scope)
9690 and then Comes_From_Source (New_E)
9691 then
9692 -- We examine the formals and result type of the inherited operation,
9693 -- to determine whether their type is derived from (the instance of)
9694 -- a generic type. The first such formal or result type is the one
9695 -- tested.
9696
9697 Formal := First_Formal (Prev_E);
9698 F_Typ := Empty;
9699 while Present (Formal) loop
9700 F_Typ := Base_Type (Etype (Formal));
9701
9702 if Ekind (F_Typ) = E_Anonymous_Access_Type then
9703 F_Typ := Designated_Type (F_Typ);
9704 end if;
9705
9706 G_Typ := Get_Generic_Parent_Type (F_Typ);
9707 exit when Present (G_Typ);
9708
9709 Next_Formal (Formal);
9710 end loop;
9711
9712 -- If the function dispatches on result check the result type
9713
9714 if No (G_Typ) and then Ekind (Prev_E) = E_Function then
9715 G_Typ := Get_Generic_Parent_Type (Base_Type (Etype (Prev_E)));
9716 end if;
9717
9718 if No (G_Typ) then
9719 return False;
9720 end if;
9721
9722 -- If the generic type is a private type, then the original operation
9723 -- was not overriding in the generic, because there was no primitive
9724 -- operation to override.
9725
9726 if Nkind (Parent (G_Typ)) = N_Formal_Type_Declaration
9727 and then Nkind (Formal_Type_Definition (Parent (G_Typ))) =
9728 N_Formal_Private_Type_Definition
9729 then
9730 return True;
9731
9732 -- The generic parent type is the ancestor of a formal derived
9733 -- type declaration. We need to check whether it has a primitive
9734 -- operation that should be overridden by New_E in the generic.
9735
9736 else
9737 declare
9738 P_Formal : Entity_Id;
9739 N_Formal : Entity_Id;
9740 P_Typ : Entity_Id;
9741 N_Typ : Entity_Id;
9742 P_Prim : Entity_Id;
9743 Prim_Elt : Elmt_Id := First_Elmt (Primitive_Operations (G_Typ));
9744
9745 begin
9746 while Present (Prim_Elt) loop
9747 P_Prim := Node (Prim_Elt);
9748
9749 if Chars (P_Prim) = Chars (New_E)
9750 and then Ekind (P_Prim) = Ekind (New_E)
9751 then
9752 P_Formal := First_Formal (P_Prim);
9753 N_Formal := First_Formal (New_E);
9754 while Present (P_Formal) and then Present (N_Formal) loop
9755 P_Typ := Etype (P_Formal);
9756 N_Typ := Etype (N_Formal);
9757
9758 if not Types_Correspond (P_Typ, N_Typ) then
9759 exit;
9760 end if;
9761
9762 Next_Entity (P_Formal);
9763 Next_Entity (N_Formal);
9764 end loop;
9765
9766 -- Found a matching primitive operation belonging to the
9767 -- formal ancestor type, so the new subprogram is
9768 -- overriding.
9769
9770 if No (P_Formal)
9771 and then No (N_Formal)
9772 and then (Ekind (New_E) /= E_Function
9773 or else
9774 Types_Correspond
9775 (Etype (P_Prim), Etype (New_E)))
9776 then
9777 return False;
9778 end if;
9779 end if;
9780
9781 Next_Elmt (Prim_Elt);
9782 end loop;
9783
9784 -- If no match found, then the new subprogram does not override
9785 -- in the generic (nor in the instance).
9786
9787 -- If the type in question is not abstract, and the subprogram
9788 -- is, this will be an error if the new operation is in the
9789 -- private part of the instance. Emit a warning now, which will
9790 -- make the subsequent error message easier to understand.
9791
9792 if Present (F_Typ) and then not Is_Abstract_Type (F_Typ)
9793 and then Is_Abstract_Subprogram (Prev_E)
9794 and then In_Private_Part (Current_Scope)
9795 then
9796 Error_Msg_Node_2 := F_Typ;
9797 Error_Msg_NE
9798 ("private operation& in generic unit does not override "
9799 & "any primitive operation of& (RM 12.3 (18))??",
9800 New_E, New_E);
9801 end if;
9802
9803 return True;
9804 end;
9805 end if;
9806 else
9807 return False;
9808 end if;
9809 end Is_Non_Overriding_Operation;
9810
9811 -------------------------------------
9812 -- List_Inherited_Pre_Post_Aspects --
9813 -------------------------------------
9814
9815 procedure List_Inherited_Pre_Post_Aspects (E : Entity_Id) is
9816 begin
9817 if Opt.List_Inherited_Aspects
9818 and then Is_Subprogram_Or_Generic_Subprogram (E)
9819 then
9820 declare
9821 Subps : constant Subprogram_List := Inherited_Subprograms (E);
9822 Items : Node_Id;
9823 Prag : Node_Id;
9824
9825 begin
9826 for Index in Subps'Range loop
9827 Items := Contract (Subps (Index));
9828
9829 if Present (Items) then
9830 Prag := Pre_Post_Conditions (Items);
9831 while Present (Prag) loop
9832 Error_Msg_Sloc := Sloc (Prag);
9833
9834 if Class_Present (Prag)
9835 and then not Split_PPC (Prag)
9836 then
9837 if Pragma_Name (Prag) = Name_Precondition then
9838 Error_Msg_N
9839 ("info: & inherits `Pre''Class` aspect from "
9840 & "#?L?", E);
9841 else
9842 Error_Msg_N
9843 ("info: & inherits `Post''Class` aspect from "
9844 & "#?L?", E);
9845 end if;
9846 end if;
9847
9848 Prag := Next_Pragma (Prag);
9849 end loop;
9850 end if;
9851 end loop;
9852 end;
9853 end if;
9854 end List_Inherited_Pre_Post_Aspects;
9855
9856 ------------------------------
9857 -- Make_Inequality_Operator --
9858 ------------------------------
9859
9860 -- S is the defining identifier of an equality operator. We build a
9861 -- subprogram declaration with the right signature. This operation is
9862 -- intrinsic, because it is always expanded as the negation of the
9863 -- call to the equality function.
9864
9865 procedure Make_Inequality_Operator (S : Entity_Id) is
9866 Loc : constant Source_Ptr := Sloc (S);
9867 Decl : Node_Id;
9868 Formals : List_Id;
9869 Op_Name : Entity_Id;
9870
9871 FF : constant Entity_Id := First_Formal (S);
9872 NF : constant Entity_Id := Next_Formal (FF);
9873
9874 begin
9875 -- Check that equality was properly defined, ignore call if not
9876
9877 if No (NF) then
9878 return;
9879 end if;
9880
9881 declare
9882 A : constant Entity_Id :=
9883 Make_Defining_Identifier (Sloc (FF),
9884 Chars => Chars (FF));
9885
9886 B : constant Entity_Id :=
9887 Make_Defining_Identifier (Sloc (NF),
9888 Chars => Chars (NF));
9889
9890 begin
9891 Op_Name := Make_Defining_Operator_Symbol (Loc, Name_Op_Ne);
9892
9893 Formals := New_List (
9894 Make_Parameter_Specification (Loc,
9895 Defining_Identifier => A,
9896 Parameter_Type =>
9897 New_Occurrence_Of (Etype (First_Formal (S)),
9898 Sloc (Etype (First_Formal (S))))),
9899
9900 Make_Parameter_Specification (Loc,
9901 Defining_Identifier => B,
9902 Parameter_Type =>
9903 New_Occurrence_Of (Etype (Next_Formal (First_Formal (S))),
9904 Sloc (Etype (Next_Formal (First_Formal (S)))))));
9905
9906 Decl :=
9907 Make_Subprogram_Declaration (Loc,
9908 Specification =>
9909 Make_Function_Specification (Loc,
9910 Defining_Unit_Name => Op_Name,
9911 Parameter_Specifications => Formals,
9912 Result_Definition =>
9913 New_Occurrence_Of (Standard_Boolean, Loc)));
9914
9915 -- Insert inequality right after equality if it is explicit or after
9916 -- the derived type when implicit. These entities are created only
9917 -- for visibility purposes, and eventually replaced in the course
9918 -- of expansion, so they do not need to be attached to the tree and
9919 -- seen by the back-end. Keeping them internal also avoids spurious
9920 -- freezing problems. The declaration is inserted in the tree for
9921 -- analysis, and removed afterwards. If the equality operator comes
9922 -- from an explicit declaration, attach the inequality immediately
9923 -- after. Else the equality is inherited from a derived type
9924 -- declaration, so insert inequality after that declaration.
9925
9926 if No (Alias (S)) then
9927 Insert_After (Unit_Declaration_Node (S), Decl);
9928 elsif Is_List_Member (Parent (S)) then
9929 Insert_After (Parent (S), Decl);
9930 else
9931 Insert_After (Parent (Etype (First_Formal (S))), Decl);
9932 end if;
9933
9934 Mark_Rewrite_Insertion (Decl);
9935 Set_Is_Intrinsic_Subprogram (Op_Name);
9936 Analyze (Decl);
9937 Remove (Decl);
9938 Set_Has_Completion (Op_Name);
9939 Set_Corresponding_Equality (Op_Name, S);
9940 Set_Is_Abstract_Subprogram (Op_Name, Is_Abstract_Subprogram (S));
9941 end;
9942 end Make_Inequality_Operator;
9943
9944 ----------------------
9945 -- May_Need_Actuals --
9946 ----------------------
9947
9948 procedure May_Need_Actuals (Fun : Entity_Id) is
9949 F : Entity_Id;
9950 B : Boolean;
9951
9952 begin
9953 F := First_Formal (Fun);
9954 B := True;
9955 while Present (F) loop
9956 if No (Default_Value (F)) then
9957 B := False;
9958 exit;
9959 end if;
9960
9961 Next_Formal (F);
9962 end loop;
9963
9964 Set_Needs_No_Actuals (Fun, B);
9965 end May_Need_Actuals;
9966
9967 ---------------------
9968 -- Mode_Conformant --
9969 ---------------------
9970
9971 function Mode_Conformant (New_Id, Old_Id : Entity_Id) return Boolean is
9972 Result : Boolean;
9973 begin
9974 Check_Conformance (New_Id, Old_Id, Mode_Conformant, False, Result);
9975 return Result;
9976 end Mode_Conformant;
9977
9978 ---------------------------
9979 -- New_Overloaded_Entity --
9980 ---------------------------
9981
9982 procedure New_Overloaded_Entity
9983 (S : Entity_Id;
9984 Derived_Type : Entity_Id := Empty)
9985 is
9986 Overridden_Subp : Entity_Id := Empty;
9987 -- Set if the current scope has an operation that is type-conformant
9988 -- with S, and becomes hidden by S.
9989
9990 Is_Primitive_Subp : Boolean;
9991 -- Set to True if the new subprogram is primitive
9992
9993 E : Entity_Id;
9994 -- Entity that S overrides
9995
9996 Prev_Vis : Entity_Id := Empty;
9997 -- Predecessor of E in Homonym chain
9998
9999 procedure Check_For_Primitive_Subprogram
10000 (Is_Primitive : out Boolean;
10001 Is_Overriding : Boolean := False);
10002 -- If the subprogram being analyzed is a primitive operation of the type
10003 -- of a formal or result, set the Has_Primitive_Operations flag on the
10004 -- type, and set Is_Primitive to True (otherwise set to False). Set the
10005 -- corresponding flag on the entity itself for later use.
10006
10007 function Has_Matching_Entry_Or_Subprogram (E : Entity_Id) return Boolean;
10008 -- True if a) E is a subprogram whose first formal is a concurrent type
10009 -- defined in the scope of E that has some entry or subprogram whose
10010 -- profile matches E, or b) E is an internally built dispatching
10011 -- subprogram of a protected type and there is a matching subprogram
10012 -- defined in the enclosing scope of the protected type, or c) E is
10013 -- an entry of a synchronized type and a matching procedure has been
10014 -- previously defined in the enclosing scope of the synchronized type.
10015
10016 function Is_Private_Declaration (E : Entity_Id) return Boolean;
10017 -- Check that E is declared in the private part of the current package,
10018 -- or in the package body, where it may hide a previous declaration.
10019 -- We can't use In_Private_Part by itself because this flag is also
10020 -- set when freezing entities, so we must examine the place of the
10021 -- declaration in the tree, and recognize wrapper packages as well.
10022
10023 function Is_Overriding_Alias
10024 (Old_E : Entity_Id;
10025 New_E : Entity_Id) return Boolean;
10026 -- Check whether new subprogram and old subprogram are both inherited
10027 -- from subprograms that have distinct dispatch table entries. This can
10028 -- occur with derivations from instances with accidental homonyms. The
10029 -- function is conservative given that the converse is only true within
10030 -- instances that contain accidental overloadings.
10031
10032 procedure Report_Conflict (S : Entity_Id; E : Entity_Id);
10033 -- Report conflict between entities S and E
10034
10035 ------------------------------------
10036 -- Check_For_Primitive_Subprogram --
10037 ------------------------------------
10038
10039 procedure Check_For_Primitive_Subprogram
10040 (Is_Primitive : out Boolean;
10041 Is_Overriding : Boolean := False)
10042 is
10043 Formal : Entity_Id;
10044 F_Typ : Entity_Id;
10045 B_Typ : Entity_Id;
10046
10047 function Visible_Part_Type (T : Entity_Id) return Boolean;
10048 -- Returns true if T is declared in the visible part of the current
10049 -- package scope; otherwise returns false. Assumes that T is declared
10050 -- in a package.
10051
10052 procedure Check_Private_Overriding (T : Entity_Id);
10053 -- Checks that if a primitive abstract subprogram of a visible
10054 -- abstract type is declared in a private part, then it must override
10055 -- an abstract subprogram declared in the visible part. Also checks
10056 -- that if a primitive function with a controlling result is declared
10057 -- in a private part, then it must override a function declared in
10058 -- the visible part.
10059
10060 ------------------------------
10061 -- Check_Private_Overriding --
10062 ------------------------------
10063
10064 procedure Check_Private_Overriding (T : Entity_Id) is
10065 function Overrides_Private_Part_Op return Boolean;
10066 -- This detects the special case where the overriding subprogram
10067 -- is overriding a subprogram that was declared in the same
10068 -- private part. That case is illegal by 3.9.3(10).
10069
10070 function Overrides_Visible_Function
10071 (Partial_View : Entity_Id) return Boolean;
10072 -- True if S overrides a function in the visible part. The
10073 -- overridden function could be explicitly or implicitly declared.
10074
10075 -------------------------------
10076 -- Overrides_Private_Part_Op --
10077 -------------------------------
10078
10079 function Overrides_Private_Part_Op return Boolean is
10080 Over_Decl : constant Node_Id :=
10081 Unit_Declaration_Node (Overridden_Operation (S));
10082 Subp_Decl : constant Node_Id := Unit_Declaration_Node (S);
10083
10084 begin
10085 pragma Assert (Is_Overriding);
10086 pragma Assert
10087 (Nkind (Over_Decl) = N_Abstract_Subprogram_Declaration);
10088 pragma Assert
10089 (Nkind (Subp_Decl) = N_Abstract_Subprogram_Declaration);
10090
10091 return In_Same_List (Over_Decl, Subp_Decl);
10092 end Overrides_Private_Part_Op;
10093
10094 --------------------------------
10095 -- Overrides_Visible_Function --
10096 --------------------------------
10097
10098 function Overrides_Visible_Function
10099 (Partial_View : Entity_Id) return Boolean
10100 is
10101 begin
10102 if not Is_Overriding or else not Has_Homonym (S) then
10103 return False;
10104 end if;
10105
10106 if not Present (Partial_View) then
10107 return True;
10108 end if;
10109
10110 -- Search through all the homonyms H of S in the current
10111 -- package spec, and return True if we find one that matches.
10112 -- Note that Parent (H) will be the declaration of the
10113 -- partial view of T for a match.
10114
10115 declare
10116 H : Entity_Id := S;
10117 begin
10118 loop
10119 H := Homonym (H);
10120 exit when not Present (H) or else Scope (H) /= Scope (S);
10121
10122 if Nkind_In
10123 (Parent (H),
10124 N_Private_Extension_Declaration,
10125 N_Private_Type_Declaration)
10126 and then Defining_Identifier (Parent (H)) = Partial_View
10127 then
10128 return True;
10129 end if;
10130 end loop;
10131 end;
10132
10133 return False;
10134 end Overrides_Visible_Function;
10135
10136 -- Start of processing for Check_Private_Overriding
10137
10138 begin
10139 if Is_Package_Or_Generic_Package (Current_Scope)
10140 and then In_Private_Part (Current_Scope)
10141 and then Visible_Part_Type (T)
10142 and then not In_Instance
10143 then
10144 if Is_Abstract_Type (T)
10145 and then Is_Abstract_Subprogram (S)
10146 and then (not Is_Overriding
10147 or else not Is_Abstract_Subprogram (E)
10148 or else Overrides_Private_Part_Op)
10149 then
10150 Error_Msg_N
10151 ("abstract subprograms must be visible (RM 3.9.3(10))!",
10152 S);
10153
10154 elsif Ekind (S) = E_Function then
10155 declare
10156 Partial_View : constant Entity_Id :=
10157 Incomplete_Or_Partial_View (T);
10158
10159 begin
10160 if not Overrides_Visible_Function (Partial_View) then
10161
10162 -- Here, S is "function ... return T;" declared in
10163 -- the private part, not overriding some visible
10164 -- operation. That's illegal in the tagged case
10165 -- (but not if the private type is untagged).
10166
10167 if ((Present (Partial_View)
10168 and then Is_Tagged_Type (Partial_View))
10169 or else (not Present (Partial_View)
10170 and then Is_Tagged_Type (T)))
10171 and then T = Base_Type (Etype (S))
10172 then
10173 Error_Msg_N
10174 ("private function with tagged result must"
10175 & " override visible-part function", S);
10176 Error_Msg_N
10177 ("\move subprogram to the visible part"
10178 & " (RM 3.9.3(10))", S);
10179
10180 -- AI05-0073: extend this test to the case of a
10181 -- function with a controlling access result.
10182
10183 elsif Ekind (Etype (S)) = E_Anonymous_Access_Type
10184 and then Is_Tagged_Type (Designated_Type (Etype (S)))
10185 and then
10186 not Is_Class_Wide_Type
10187 (Designated_Type (Etype (S)))
10188 and then Ada_Version >= Ada_2012
10189 then
10190 Error_Msg_N
10191 ("private function with controlling access "
10192 & "result must override visible-part function",
10193 S);
10194 Error_Msg_N
10195 ("\move subprogram to the visible part"
10196 & " (RM 3.9.3(10))", S);
10197 end if;
10198 end if;
10199 end;
10200 end if;
10201 end if;
10202 end Check_Private_Overriding;
10203
10204 -----------------------
10205 -- Visible_Part_Type --
10206 -----------------------
10207
10208 function Visible_Part_Type (T : Entity_Id) return Boolean is
10209 P : constant Node_Id := Unit_Declaration_Node (Scope (T));
10210
10211 begin
10212 -- If the entity is a private type, then it must be declared in a
10213 -- visible part.
10214
10215 if Ekind (T) in Private_Kind then
10216 return True;
10217
10218 elsif Is_Type (T) and then Has_Private_Declaration (T) then
10219 return True;
10220
10221 elsif Is_List_Member (Declaration_Node (T))
10222 and then List_Containing (Declaration_Node (T)) =
10223 Visible_Declarations (Specification (P))
10224 then
10225 return True;
10226
10227 else
10228 return False;
10229 end if;
10230 end Visible_Part_Type;
10231
10232 -- Start of processing for Check_For_Primitive_Subprogram
10233
10234 begin
10235 Is_Primitive := False;
10236
10237 if not Comes_From_Source (S) then
10238 null;
10239
10240 -- If subprogram is at library level, it is not primitive operation
10241
10242 elsif Current_Scope = Standard_Standard then
10243 null;
10244
10245 elsif (Is_Package_Or_Generic_Package (Current_Scope)
10246 and then not In_Package_Body (Current_Scope))
10247 or else Is_Overriding
10248 then
10249 -- For function, check return type
10250
10251 if Ekind (S) = E_Function then
10252 if Ekind (Etype (S)) = E_Anonymous_Access_Type then
10253 F_Typ := Designated_Type (Etype (S));
10254 else
10255 F_Typ := Etype (S);
10256 end if;
10257
10258 B_Typ := Base_Type (F_Typ);
10259
10260 if Scope (B_Typ) = Current_Scope
10261 and then not Is_Class_Wide_Type (B_Typ)
10262 and then not Is_Generic_Type (B_Typ)
10263 then
10264 Is_Primitive := True;
10265 Set_Has_Primitive_Operations (B_Typ);
10266 Set_Is_Primitive (S);
10267 Check_Private_Overriding (B_Typ);
10268
10269 -- The Ghost policy in effect at the point of declaration
10270 -- or a tagged type and a primitive operation must match
10271 -- (SPARK RM 6.9(16)).
10272
10273 Check_Ghost_Primitive (S, B_Typ);
10274 end if;
10275 end if;
10276
10277 -- For all subprograms, check formals
10278
10279 Formal := First_Formal (S);
10280 while Present (Formal) loop
10281 if Ekind (Etype (Formal)) = E_Anonymous_Access_Type then
10282 F_Typ := Designated_Type (Etype (Formal));
10283 else
10284 F_Typ := Etype (Formal);
10285 end if;
10286
10287 B_Typ := Base_Type (F_Typ);
10288
10289 if Ekind (B_Typ) = E_Access_Subtype then
10290 B_Typ := Base_Type (B_Typ);
10291 end if;
10292
10293 if Scope (B_Typ) = Current_Scope
10294 and then not Is_Class_Wide_Type (B_Typ)
10295 and then not Is_Generic_Type (B_Typ)
10296 then
10297 Is_Primitive := True;
10298 Set_Is_Primitive (S);
10299 Set_Has_Primitive_Operations (B_Typ);
10300 Check_Private_Overriding (B_Typ);
10301
10302 -- The Ghost policy in effect at the point of declaration
10303 -- of a tagged type and a primitive operation must match
10304 -- (SPARK RM 6.9(16)).
10305
10306 Check_Ghost_Primitive (S, B_Typ);
10307 end if;
10308
10309 Next_Formal (Formal);
10310 end loop;
10311
10312 -- Special case: An equality function can be redefined for a type
10313 -- occurring in a declarative part, and won't otherwise be treated as
10314 -- a primitive because it doesn't occur in a package spec and doesn't
10315 -- override an inherited subprogram. It's important that we mark it
10316 -- primitive so it can be returned by Collect_Primitive_Operations
10317 -- and be used in composing the equality operation of later types
10318 -- that have a component of the type.
10319
10320 elsif Chars (S) = Name_Op_Eq
10321 and then Etype (S) = Standard_Boolean
10322 then
10323 B_Typ := Base_Type (Etype (First_Formal (S)));
10324
10325 if Scope (B_Typ) = Current_Scope
10326 and then
10327 Base_Type (Etype (Next_Formal (First_Formal (S)))) = B_Typ
10328 and then not Is_Limited_Type (B_Typ)
10329 then
10330 Is_Primitive := True;
10331 Set_Is_Primitive (S);
10332 Set_Has_Primitive_Operations (B_Typ);
10333 Check_Private_Overriding (B_Typ);
10334
10335 -- The Ghost policy in effect at the point of declaration of a
10336 -- tagged type and a primitive operation must match
10337 -- (SPARK RM 6.9(16)).
10338
10339 Check_Ghost_Primitive (S, B_Typ);
10340 end if;
10341 end if;
10342 end Check_For_Primitive_Subprogram;
10343
10344 --------------------------------------
10345 -- Has_Matching_Entry_Or_Subprogram --
10346 --------------------------------------
10347
10348 function Has_Matching_Entry_Or_Subprogram
10349 (E : Entity_Id) return Boolean
10350 is
10351 function Check_Conforming_Parameters
10352 (E1_Param : Node_Id;
10353 E2_Param : Node_Id) return Boolean;
10354 -- Starting from the given parameters, check that all the parameters
10355 -- of two entries or subprograms are subtype conformant. Used to skip
10356 -- the check on the controlling argument.
10357
10358 function Matching_Entry_Or_Subprogram
10359 (Conc_Typ : Entity_Id;
10360 Subp : Entity_Id) return Entity_Id;
10361 -- Return the first entry or subprogram of the given concurrent type
10362 -- whose name matches the name of Subp and has a profile conformant
10363 -- with Subp; return Empty if not found.
10364
10365 function Matching_Dispatching_Subprogram
10366 (Conc_Typ : Entity_Id;
10367 Ent : Entity_Id) return Entity_Id;
10368 -- Return the first dispatching primitive of Conc_Type defined in the
10369 -- enclosing scope of Conc_Type (i.e. before the full definition of
10370 -- this concurrent type) whose name matches the entry Ent and has a
10371 -- profile conformant with the profile of the corresponding (not yet
10372 -- built) dispatching primitive of Ent; return Empty if not found.
10373
10374 function Matching_Original_Protected_Subprogram
10375 (Prot_Typ : Entity_Id;
10376 Subp : Entity_Id) return Entity_Id;
10377 -- Return the first subprogram defined in the enclosing scope of
10378 -- Prot_Typ (before the full definition of this protected type)
10379 -- whose name matches the original name of Subp and has a profile
10380 -- conformant with the profile of Subp; return Empty if not found.
10381
10382 ---------------------------------
10383 -- Check_Conforming_Parameters --
10384 ---------------------------------
10385
10386 function Check_Conforming_Parameters
10387 (E1_Param : Node_Id;
10388 E2_Param : Node_Id) return Boolean
10389 is
10390 Param_E1 : Node_Id := E1_Param;
10391 Param_E2 : Node_Id := E2_Param;
10392
10393 begin
10394 while Present (Param_E1) and then Present (Param_E2) loop
10395 if Ekind (Defining_Identifier (Param_E1)) /=
10396 Ekind (Defining_Identifier (Param_E2))
10397 or else not
10398 Conforming_Types
10399 (Find_Parameter_Type (Param_E1),
10400 Find_Parameter_Type (Param_E2),
10401 Subtype_Conformant)
10402 then
10403 return False;
10404 end if;
10405
10406 Next (Param_E1);
10407 Next (Param_E2);
10408 end loop;
10409
10410 -- The candidate is not valid if one of the two lists contains
10411 -- more parameters than the other
10412
10413 return No (Param_E1) and then No (Param_E2);
10414 end Check_Conforming_Parameters;
10415
10416 ----------------------------------
10417 -- Matching_Entry_Or_Subprogram --
10418 ----------------------------------
10419
10420 function Matching_Entry_Or_Subprogram
10421 (Conc_Typ : Entity_Id;
10422 Subp : Entity_Id) return Entity_Id
10423 is
10424 E : Entity_Id;
10425
10426 begin
10427 E := First_Entity (Conc_Typ);
10428 while Present (E) loop
10429 if Chars (Subp) = Chars (E)
10430 and then (Ekind (E) = E_Entry or else Is_Subprogram (E))
10431 and then
10432 Check_Conforming_Parameters
10433 (First (Parameter_Specifications (Parent (E))),
10434 Next (First (Parameter_Specifications (Parent (Subp)))))
10435 then
10436 return E;
10437 end if;
10438
10439 Next_Entity (E);
10440 end loop;
10441
10442 return Empty;
10443 end Matching_Entry_Or_Subprogram;
10444
10445 -------------------------------------
10446 -- Matching_Dispatching_Subprogram --
10447 -------------------------------------
10448
10449 function Matching_Dispatching_Subprogram
10450 (Conc_Typ : Entity_Id;
10451 Ent : Entity_Id) return Entity_Id
10452 is
10453 E : Entity_Id;
10454
10455 begin
10456 -- Search for entities in the enclosing scope of this synchonized
10457 -- type.
10458
10459 pragma Assert (Is_Concurrent_Type (Conc_Typ));
10460 Push_Scope (Scope (Conc_Typ));
10461 E := Current_Entity_In_Scope (Ent);
10462 Pop_Scope;
10463
10464 while Present (E) loop
10465 if Scope (E) = Scope (Conc_Typ)
10466 and then Comes_From_Source (E)
10467 and then Ekind (E) = E_Procedure
10468 and then Present (First_Entity (E))
10469 and then Is_Controlling_Formal (First_Entity (E))
10470 and then Etype (First_Entity (E)) = Conc_Typ
10471 and then
10472 Check_Conforming_Parameters
10473 (First (Parameter_Specifications (Parent (Ent))),
10474 Next (First (Parameter_Specifications (Parent (E)))))
10475 then
10476 return E;
10477 end if;
10478
10479 E := Homonym (E);
10480 end loop;
10481
10482 return Empty;
10483 end Matching_Dispatching_Subprogram;
10484
10485 --------------------------------------------
10486 -- Matching_Original_Protected_Subprogram --
10487 --------------------------------------------
10488
10489 function Matching_Original_Protected_Subprogram
10490 (Prot_Typ : Entity_Id;
10491 Subp : Entity_Id) return Entity_Id
10492 is
10493 ICF : constant Boolean :=
10494 Is_Controlling_Formal (First_Entity (Subp));
10495 E : Entity_Id;
10496
10497 begin
10498 -- Temporarily decorate the first parameter of Subp as controlling
10499 -- formal, required to invoke Subtype_Conformant.
10500
10501 Set_Is_Controlling_Formal (First_Entity (Subp));
10502
10503 E :=
10504 Current_Entity_In_Scope (Original_Protected_Subprogram (Subp));
10505
10506 while Present (E) loop
10507 if Scope (E) = Scope (Prot_Typ)
10508 and then Comes_From_Source (E)
10509 and then Ekind (Subp) = Ekind (E)
10510 and then Present (First_Entity (E))
10511 and then Is_Controlling_Formal (First_Entity (E))
10512 and then Etype (First_Entity (E)) = Prot_Typ
10513 and then Subtype_Conformant (Subp, E,
10514 Skip_Controlling_Formals => True)
10515 then
10516 Set_Is_Controlling_Formal (First_Entity (Subp), ICF);
10517 return E;
10518 end if;
10519
10520 E := Homonym (E);
10521 end loop;
10522
10523 Set_Is_Controlling_Formal (First_Entity (Subp), ICF);
10524
10525 return Empty;
10526 end Matching_Original_Protected_Subprogram;
10527
10528 -- Start of processing for Has_Matching_Entry_Or_Subprogram
10529
10530 begin
10531 -- Case 1: E is a subprogram whose first formal is a concurrent type
10532 -- defined in the scope of E that has an entry or subprogram whose
10533 -- profile matches E.
10534
10535 if Comes_From_Source (E)
10536 and then Is_Subprogram (E)
10537 and then Present (First_Entity (E))
10538 and then Is_Concurrent_Record_Type (Etype (First_Entity (E)))
10539 then
10540 if Scope (E) =
10541 Scope (Corresponding_Concurrent_Type
10542 (Etype (First_Entity (E))))
10543 and then
10544 Present
10545 (Matching_Entry_Or_Subprogram
10546 (Corresponding_Concurrent_Type (Etype (First_Entity (E))),
10547 Subp => E))
10548 then
10549 Report_Conflict (E,
10550 Matching_Entry_Or_Subprogram
10551 (Corresponding_Concurrent_Type (Etype (First_Entity (E))),
10552 Subp => E));
10553 return True;
10554 end if;
10555
10556 -- Case 2: E is an internally built dispatching subprogram of a
10557 -- protected type and there is a subprogram defined in the enclosing
10558 -- scope of the protected type that has the original name of E and
10559 -- its profile is conformant with the profile of E. We check the
10560 -- name of the original protected subprogram associated with E since
10561 -- the expander builds dispatching primitives of protected functions
10562 -- and procedures with other names (see Exp_Ch9.Build_Selected_Name).
10563
10564 elsif not Comes_From_Source (E)
10565 and then Is_Subprogram (E)
10566 and then Present (First_Entity (E))
10567 and then Is_Concurrent_Record_Type (Etype (First_Entity (E)))
10568 and then Present (Original_Protected_Subprogram (E))
10569 and then
10570 Present
10571 (Matching_Original_Protected_Subprogram
10572 (Corresponding_Concurrent_Type (Etype (First_Entity (E))),
10573 Subp => E))
10574 then
10575 Report_Conflict (E,
10576 Matching_Original_Protected_Subprogram
10577 (Corresponding_Concurrent_Type (Etype (First_Entity (E))),
10578 Subp => E));
10579 return True;
10580
10581 -- Case 3: E is an entry of a synchronized type and a matching
10582 -- procedure has been previously defined in the enclosing scope
10583 -- of the synchronized type.
10584
10585 elsif Comes_From_Source (E)
10586 and then Ekind (E) = E_Entry
10587 and then
10588 Present (Matching_Dispatching_Subprogram (Current_Scope, E))
10589 then
10590 Report_Conflict (E,
10591 Matching_Dispatching_Subprogram (Current_Scope, E));
10592 return True;
10593 end if;
10594
10595 return False;
10596 end Has_Matching_Entry_Or_Subprogram;
10597
10598 ----------------------------
10599 -- Is_Private_Declaration --
10600 ----------------------------
10601
10602 function Is_Private_Declaration (E : Entity_Id) return Boolean is
10603 Decl : constant Node_Id := Unit_Declaration_Node (E);
10604 Priv_Decls : List_Id;
10605
10606 begin
10607 if Is_Package_Or_Generic_Package (Current_Scope)
10608 and then In_Private_Part (Current_Scope)
10609 then
10610 Priv_Decls :=
10611 Private_Declarations (Package_Specification (Current_Scope));
10612
10613 return In_Package_Body (Current_Scope)
10614 or else
10615 (Is_List_Member (Decl)
10616 and then List_Containing (Decl) = Priv_Decls)
10617 or else (Nkind (Parent (Decl)) = N_Package_Specification
10618 and then not
10619 Is_Compilation_Unit
10620 (Defining_Entity (Parent (Decl)))
10621 and then List_Containing (Parent (Parent (Decl))) =
10622 Priv_Decls);
10623 else
10624 return False;
10625 end if;
10626 end Is_Private_Declaration;
10627
10628 --------------------------
10629 -- Is_Overriding_Alias --
10630 --------------------------
10631
10632 function Is_Overriding_Alias
10633 (Old_E : Entity_Id;
10634 New_E : Entity_Id) return Boolean
10635 is
10636 AO : constant Entity_Id := Alias (Old_E);
10637 AN : constant Entity_Id := Alias (New_E);
10638
10639 begin
10640 return Scope (AO) /= Scope (AN)
10641 or else No (DTC_Entity (AO))
10642 or else No (DTC_Entity (AN))
10643 or else DT_Position (AO) = DT_Position (AN);
10644 end Is_Overriding_Alias;
10645
10646 ---------------------
10647 -- Report_Conflict --
10648 ---------------------
10649
10650 procedure Report_Conflict (S : Entity_Id; E : Entity_Id) is
10651 begin
10652 Error_Msg_Sloc := Sloc (E);
10653
10654 -- Generate message, with useful additional warning if in generic
10655
10656 if Is_Generic_Unit (E) then
10657 Error_Msg_N ("previous generic unit cannot be overloaded", S);
10658 Error_Msg_N ("\& conflicts with declaration#", S);
10659 else
10660 Error_Msg_N ("& conflicts with declaration#", S);
10661 end if;
10662 end Report_Conflict;
10663
10664 -- Start of processing for New_Overloaded_Entity
10665
10666 begin
10667 -- We need to look for an entity that S may override. This must be a
10668 -- homonym in the current scope, so we look for the first homonym of
10669 -- S in the current scope as the starting point for the search.
10670
10671 E := Current_Entity_In_Scope (S);
10672
10673 -- Ada 2005 (AI-251): Derivation of abstract interface primitives.
10674 -- They are directly added to the list of primitive operations of
10675 -- Derived_Type, unless this is a rederivation in the private part
10676 -- of an operation that was already derived in the visible part of
10677 -- the current package.
10678
10679 if Ada_Version >= Ada_2005
10680 and then Present (Derived_Type)
10681 and then Present (Alias (S))
10682 and then Is_Dispatching_Operation (Alias (S))
10683 and then Present (Find_Dispatching_Type (Alias (S)))
10684 and then Is_Interface (Find_Dispatching_Type (Alias (S)))
10685 then
10686 -- For private types, when the full-view is processed we propagate to
10687 -- the full view the non-overridden entities whose attribute "alias"
10688 -- references an interface primitive. These entities were added by
10689 -- Derive_Subprograms to ensure that interface primitives are
10690 -- covered.
10691
10692 -- Inside_Freeze_Actions is non zero when S corresponds with an
10693 -- internal entity that links an interface primitive with its
10694 -- covering primitive through attribute Interface_Alias (see
10695 -- Add_Internal_Interface_Entities).
10696
10697 if Inside_Freezing_Actions = 0
10698 and then Is_Package_Or_Generic_Package (Current_Scope)
10699 and then In_Private_Part (Current_Scope)
10700 and then Nkind (Parent (E)) = N_Private_Extension_Declaration
10701 and then Nkind (Parent (S)) = N_Full_Type_Declaration
10702 and then Full_View (Defining_Identifier (Parent (E)))
10703 = Defining_Identifier (Parent (S))
10704 and then Alias (E) = Alias (S)
10705 then
10706 Check_Operation_From_Private_View (S, E);
10707 Set_Is_Dispatching_Operation (S);
10708
10709 -- Common case
10710
10711 else
10712 Enter_Overloaded_Entity (S);
10713 Check_Dispatching_Operation (S, Empty);
10714 Check_For_Primitive_Subprogram (Is_Primitive_Subp);
10715 end if;
10716
10717 return;
10718 end if;
10719
10720 -- For synchronized types check conflicts of this entity with previously
10721 -- defined entities.
10722
10723 if Ada_Version >= Ada_2005
10724 and then Has_Matching_Entry_Or_Subprogram (S)
10725 then
10726 return;
10727 end if;
10728
10729 -- If there is no homonym then this is definitely not overriding
10730
10731 if No (E) then
10732 Enter_Overloaded_Entity (S);
10733 Check_Dispatching_Operation (S, Empty);
10734 Check_For_Primitive_Subprogram (Is_Primitive_Subp);
10735
10736 -- If subprogram has an explicit declaration, check whether it has an
10737 -- overriding indicator.
10738
10739 if Comes_From_Source (S) then
10740 Check_Synchronized_Overriding (S, Overridden_Subp);
10741
10742 -- (Ada 2012: AI05-0125-1): If S is a dispatching operation then
10743 -- it may have overridden some hidden inherited primitive. Update
10744 -- Overridden_Subp to avoid spurious errors when checking the
10745 -- overriding indicator.
10746
10747 if Ada_Version >= Ada_2012
10748 and then No (Overridden_Subp)
10749 and then Is_Dispatching_Operation (S)
10750 and then Present (Overridden_Operation (S))
10751 then
10752 Overridden_Subp := Overridden_Operation (S);
10753 end if;
10754
10755 Check_Overriding_Indicator
10756 (S, Overridden_Subp, Is_Primitive => Is_Primitive_Subp);
10757
10758 -- The Ghost policy in effect at the point of declaration of a
10759 -- parent subprogram and an overriding subprogram must match
10760 -- (SPARK RM 6.9(17)).
10761
10762 Check_Ghost_Overriding (S, Overridden_Subp);
10763 end if;
10764
10765 -- If there is a homonym that is not overloadable, then we have an
10766 -- error, except for the special cases checked explicitly below.
10767
10768 elsif not Is_Overloadable (E) then
10769
10770 -- Check for spurious conflict produced by a subprogram that has the
10771 -- same name as that of the enclosing generic package. The conflict
10772 -- occurs within an instance, between the subprogram and the renaming
10773 -- declaration for the package. After the subprogram, the package
10774 -- renaming declaration becomes hidden.
10775
10776 if Ekind (E) = E_Package
10777 and then Present (Renamed_Object (E))
10778 and then Renamed_Object (E) = Current_Scope
10779 and then Nkind (Parent (Renamed_Object (E))) =
10780 N_Package_Specification
10781 and then Present (Generic_Parent (Parent (Renamed_Object (E))))
10782 then
10783 Set_Is_Hidden (E);
10784 Set_Is_Immediately_Visible (E, False);
10785 Enter_Overloaded_Entity (S);
10786 Set_Homonym (S, Homonym (E));
10787 Check_Dispatching_Operation (S, Empty);
10788 Check_Overriding_Indicator (S, Empty, Is_Primitive => False);
10789
10790 -- If the subprogram is implicit it is hidden by the previous
10791 -- declaration. However if it is dispatching, it must appear in the
10792 -- dispatch table anyway, because it can be dispatched to even if it
10793 -- cannot be called directly.
10794
10795 elsif Present (Alias (S)) and then not Comes_From_Source (S) then
10796 Set_Scope (S, Current_Scope);
10797
10798 if Is_Dispatching_Operation (Alias (S)) then
10799 Check_Dispatching_Operation (S, Empty);
10800 end if;
10801
10802 return;
10803
10804 else
10805 Report_Conflict (S, E);
10806 return;
10807 end if;
10808
10809 -- E exists and is overloadable
10810
10811 else
10812 Check_Synchronized_Overriding (S, Overridden_Subp);
10813
10814 -- Loop through E and its homonyms to determine if any of them is
10815 -- the candidate for overriding by S.
10816
10817 while Present (E) loop
10818
10819 -- Definitely not interesting if not in the current scope
10820
10821 if Scope (E) /= Current_Scope then
10822 null;
10823
10824 -- A function can overload the name of an abstract state. The
10825 -- state can be viewed as a function with a profile that cannot
10826 -- be matched by anything.
10827
10828 elsif Ekind (S) = E_Function
10829 and then Ekind (E) = E_Abstract_State
10830 then
10831 Enter_Overloaded_Entity (S);
10832 return;
10833
10834 -- Ada 2012 (AI05-0165): For internally generated bodies of null
10835 -- procedures locate the internally generated spec. We enforce
10836 -- mode conformance since a tagged type may inherit from
10837 -- interfaces several null primitives which differ only in
10838 -- the mode of the formals.
10839
10840 elsif not Comes_From_Source (S)
10841 and then Is_Null_Procedure (S)
10842 and then not Mode_Conformant (E, S)
10843 then
10844 null;
10845
10846 -- Check if we have type conformance
10847
10848 elsif Type_Conformant (E, S) then
10849
10850 -- If the old and new entities have the same profile and one
10851 -- is not the body of the other, then this is an error, unless
10852 -- one of them is implicitly declared.
10853
10854 -- There are some cases when both can be implicit, for example
10855 -- when both a literal and a function that overrides it are
10856 -- inherited in a derivation, or when an inherited operation
10857 -- of a tagged full type overrides the inherited operation of
10858 -- a private extension. Ada 83 had a special rule for the
10859 -- literal case. In Ada 95, the later implicit operation hides
10860 -- the former, and the literal is always the former. In the
10861 -- odd case where both are derived operations declared at the
10862 -- same point, both operations should be declared, and in that
10863 -- case we bypass the following test and proceed to the next
10864 -- part. This can only occur for certain obscure cases in
10865 -- instances, when an operation on a type derived from a formal
10866 -- private type does not override a homograph inherited from
10867 -- the actual. In subsequent derivations of such a type, the
10868 -- DT positions of these operations remain distinct, if they
10869 -- have been set.
10870
10871 if Present (Alias (S))
10872 and then (No (Alias (E))
10873 or else Comes_From_Source (E)
10874 or else Is_Abstract_Subprogram (S)
10875 or else
10876 (Is_Dispatching_Operation (E)
10877 and then Is_Overriding_Alias (E, S)))
10878 and then Ekind (E) /= E_Enumeration_Literal
10879 then
10880 -- When an derived operation is overloaded it may be due to
10881 -- the fact that the full view of a private extension
10882 -- re-inherits. It has to be dealt with.
10883
10884 if Is_Package_Or_Generic_Package (Current_Scope)
10885 and then In_Private_Part (Current_Scope)
10886 then
10887 Check_Operation_From_Private_View (S, E);
10888 end if;
10889
10890 -- In any case the implicit operation remains hidden by the
10891 -- existing declaration, which is overriding. Indicate that
10892 -- E overrides the operation from which S is inherited.
10893
10894 if Present (Alias (S)) then
10895 Set_Overridden_Operation (E, Alias (S));
10896 Inherit_Subprogram_Contract (E, Alias (S));
10897
10898 else
10899 Set_Overridden_Operation (E, S);
10900 Inherit_Subprogram_Contract (E, S);
10901 end if;
10902
10903 if Comes_From_Source (E) then
10904 Check_Overriding_Indicator (E, S, Is_Primitive => False);
10905
10906 -- The Ghost policy in effect at the point of declaration
10907 -- of a parent subprogram and an overriding subprogram
10908 -- must match (SPARK RM 6.9(17)).
10909
10910 Check_Ghost_Overriding (E, S);
10911 end if;
10912
10913 return;
10914
10915 -- Within an instance, the renaming declarations for actual
10916 -- subprograms may become ambiguous, but they do not hide each
10917 -- other.
10918
10919 elsif Ekind (E) /= E_Entry
10920 and then not Comes_From_Source (E)
10921 and then not Is_Generic_Instance (E)
10922 and then (Present (Alias (E))
10923 or else Is_Intrinsic_Subprogram (E))
10924 and then (not In_Instance
10925 or else No (Parent (E))
10926 or else Nkind (Unit_Declaration_Node (E)) /=
10927 N_Subprogram_Renaming_Declaration)
10928 then
10929 -- A subprogram child unit is not allowed to override an
10930 -- inherited subprogram (10.1.1(20)).
10931
10932 if Is_Child_Unit (S) then
10933 Error_Msg_N
10934 ("child unit overrides inherited subprogram in parent",
10935 S);
10936 return;
10937 end if;
10938
10939 if Is_Non_Overriding_Operation (E, S) then
10940 Enter_Overloaded_Entity (S);
10941
10942 if No (Derived_Type)
10943 or else Is_Tagged_Type (Derived_Type)
10944 then
10945 Check_Dispatching_Operation (S, Empty);
10946 end if;
10947
10948 return;
10949 end if;
10950
10951 -- E is a derived operation or an internal operator which
10952 -- is being overridden. Remove E from further visibility.
10953 -- Furthermore, if E is a dispatching operation, it must be
10954 -- replaced in the list of primitive operations of its type
10955 -- (see Override_Dispatching_Operation).
10956
10957 Overridden_Subp := E;
10958
10959 declare
10960 Prev : Entity_Id;
10961
10962 begin
10963 Prev := First_Entity (Current_Scope);
10964 while Present (Prev) and then Next_Entity (Prev) /= E loop
10965 Next_Entity (Prev);
10966 end loop;
10967
10968 -- It is possible for E to be in the current scope and
10969 -- yet not in the entity chain. This can only occur in a
10970 -- generic context where E is an implicit concatenation
10971 -- in the formal part, because in a generic body the
10972 -- entity chain starts with the formals.
10973
10974 -- In GNATprove mode, a wrapper for an operation with
10975 -- axiomatization may be a homonym of another declaration
10976 -- for an actual subprogram (needs refinement ???).
10977
10978 if No (Prev) then
10979 if In_Instance
10980 and then GNATprove_Mode
10981 and then
10982 Nkind (Original_Node (Unit_Declaration_Node (S))) =
10983 N_Subprogram_Renaming_Declaration
10984 then
10985 return;
10986 else
10987 pragma Assert (Chars (E) = Name_Op_Concat);
10988 null;
10989 end if;
10990 end if;
10991
10992 -- E must be removed both from the entity_list of the
10993 -- current scope, and from the visibility chain.
10994
10995 if Debug_Flag_E then
10996 Write_Str ("Override implicit operation ");
10997 Write_Int (Int (E));
10998 Write_Eol;
10999 end if;
11000
11001 -- If E is a predefined concatenation, it stands for four
11002 -- different operations. As a result, a single explicit
11003 -- declaration does not hide it. In a possible ambiguous
11004 -- situation, Disambiguate chooses the user-defined op,
11005 -- so it is correct to retain the previous internal one.
11006
11007 if Chars (E) /= Name_Op_Concat
11008 or else Ekind (E) /= E_Operator
11009 then
11010 -- For nondispatching derived operations that are
11011 -- overridden by a subprogram declared in the private
11012 -- part of a package, we retain the derived subprogram
11013 -- but mark it as not immediately visible. If the
11014 -- derived operation was declared in the visible part
11015 -- then this ensures that it will still be visible
11016 -- outside the package with the proper signature
11017 -- (calls from outside must also be directed to this
11018 -- version rather than the overriding one, unlike the
11019 -- dispatching case). Calls from inside the package
11020 -- will still resolve to the overriding subprogram
11021 -- since the derived one is marked as not visible
11022 -- within the package.
11023
11024 -- If the private operation is dispatching, we achieve
11025 -- the overriding by keeping the implicit operation
11026 -- but setting its alias to be the overriding one. In
11027 -- this fashion the proper body is executed in all
11028 -- cases, but the original signature is used outside
11029 -- of the package.
11030
11031 -- If the overriding is not in the private part, we
11032 -- remove the implicit operation altogether.
11033
11034 if Is_Private_Declaration (S) then
11035 if not Is_Dispatching_Operation (E) then
11036 Set_Is_Immediately_Visible (E, False);
11037 else
11038 -- Work done in Override_Dispatching_Operation,
11039 -- so nothing else needs to be done here.
11040
11041 null;
11042 end if;
11043
11044 else
11045 -- Find predecessor of E in Homonym chain
11046
11047 if E = Current_Entity (E) then
11048 Prev_Vis := Empty;
11049 else
11050 Prev_Vis := Current_Entity (E);
11051 while Homonym (Prev_Vis) /= E loop
11052 Prev_Vis := Homonym (Prev_Vis);
11053 end loop;
11054 end if;
11055
11056 if Prev_Vis /= Empty then
11057
11058 -- Skip E in the visibility chain
11059
11060 Set_Homonym (Prev_Vis, Homonym (E));
11061
11062 else
11063 Set_Name_Entity_Id (Chars (E), Homonym (E));
11064 end if;
11065
11066 Set_Next_Entity (Prev, Next_Entity (E));
11067
11068 if No (Next_Entity (Prev)) then
11069 Set_Last_Entity (Current_Scope, Prev);
11070 end if;
11071 end if;
11072 end if;
11073
11074 Enter_Overloaded_Entity (S);
11075
11076 -- For entities generated by Derive_Subprograms the
11077 -- overridden operation is the inherited primitive
11078 -- (which is available through the attribute alias).
11079
11080 if not (Comes_From_Source (E))
11081 and then Is_Dispatching_Operation (E)
11082 and then Find_Dispatching_Type (E) =
11083 Find_Dispatching_Type (S)
11084 and then Present (Alias (E))
11085 and then Comes_From_Source (Alias (E))
11086 then
11087 Set_Overridden_Operation (S, Alias (E));
11088 Inherit_Subprogram_Contract (S, Alias (E));
11089
11090 -- Normal case of setting entity as overridden
11091
11092 -- Note: Static_Initialization and Overridden_Operation
11093 -- attributes use the same field in subprogram entities.
11094 -- Static_Initialization is only defined for internal
11095 -- initialization procedures, where Overridden_Operation
11096 -- is irrelevant. Therefore the setting of this attribute
11097 -- must check whether the target is an init_proc.
11098
11099 elsif not Is_Init_Proc (S) then
11100 Set_Overridden_Operation (S, E);
11101 Inherit_Subprogram_Contract (S, E);
11102 end if;
11103
11104 Check_Overriding_Indicator (S, E, Is_Primitive => True);
11105
11106 -- The Ghost policy in effect at the point of declaration
11107 -- of a parent subprogram and an overriding subprogram
11108 -- must match (SPARK RM 6.9(17)).
11109
11110 Check_Ghost_Overriding (S, E);
11111
11112 -- If S is a user-defined subprogram or a null procedure
11113 -- expanded to override an inherited null procedure, or a
11114 -- predefined dispatching primitive then indicate that E
11115 -- overrides the operation from which S is inherited.
11116
11117 if Comes_From_Source (S)
11118 or else
11119 (Present (Parent (S))
11120 and then
11121 Nkind (Parent (S)) = N_Procedure_Specification
11122 and then
11123 Null_Present (Parent (S)))
11124 or else
11125 (Present (Alias (E))
11126 and then
11127 Is_Predefined_Dispatching_Operation (Alias (E)))
11128 then
11129 if Present (Alias (E)) then
11130 Set_Overridden_Operation (S, Alias (E));
11131 Inherit_Subprogram_Contract (S, Alias (E));
11132 end if;
11133 end if;
11134
11135 if Is_Dispatching_Operation (E) then
11136
11137 -- An overriding dispatching subprogram inherits the
11138 -- convention of the overridden subprogram (AI-117).
11139
11140 Set_Convention (S, Convention (E));
11141 Check_Dispatching_Operation (S, E);
11142
11143 else
11144 Check_Dispatching_Operation (S, Empty);
11145 end if;
11146
11147 Check_For_Primitive_Subprogram
11148 (Is_Primitive_Subp, Is_Overriding => True);
11149 goto Check_Inequality;
11150 end;
11151
11152 -- Apparent redeclarations in instances can occur when two
11153 -- formal types get the same actual type. The subprograms in
11154 -- in the instance are legal, even if not callable from the
11155 -- outside. Calls from within are disambiguated elsewhere.
11156 -- For dispatching operations in the visible part, the usual
11157 -- rules apply, and operations with the same profile are not
11158 -- legal (B830001).
11159
11160 elsif (In_Instance_Visible_Part
11161 and then not Is_Dispatching_Operation (E))
11162 or else In_Instance_Not_Visible
11163 then
11164 null;
11165
11166 -- Here we have a real error (identical profile)
11167
11168 else
11169 Error_Msg_Sloc := Sloc (E);
11170
11171 -- Avoid cascaded errors if the entity appears in
11172 -- subsequent calls.
11173
11174 Set_Scope (S, Current_Scope);
11175
11176 -- Generate error, with extra useful warning for the case
11177 -- of a generic instance with no completion.
11178
11179 if Is_Generic_Instance (S)
11180 and then not Has_Completion (E)
11181 then
11182 Error_Msg_N
11183 ("instantiation cannot provide body for&", S);
11184 Error_Msg_N ("\& conflicts with declaration#", S);
11185 else
11186 Error_Msg_N ("& conflicts with declaration#", S);
11187 end if;
11188
11189 return;
11190 end if;
11191
11192 else
11193 -- If one subprogram has an access parameter and the other
11194 -- a parameter of an access type, calls to either might be
11195 -- ambiguous. Verify that parameters match except for the
11196 -- access parameter.
11197
11198 if May_Hide_Profile then
11199 declare
11200 F1 : Entity_Id;
11201 F2 : Entity_Id;
11202
11203 begin
11204 F1 := First_Formal (S);
11205 F2 := First_Formal (E);
11206 while Present (F1) and then Present (F2) loop
11207 if Is_Access_Type (Etype (F1)) then
11208 if not Is_Access_Type (Etype (F2))
11209 or else not Conforming_Types
11210 (Designated_Type (Etype (F1)),
11211 Designated_Type (Etype (F2)),
11212 Type_Conformant)
11213 then
11214 May_Hide_Profile := False;
11215 end if;
11216
11217 elsif
11218 not Conforming_Types
11219 (Etype (F1), Etype (F2), Type_Conformant)
11220 then
11221 May_Hide_Profile := False;
11222 end if;
11223
11224 Next_Formal (F1);
11225 Next_Formal (F2);
11226 end loop;
11227
11228 if May_Hide_Profile
11229 and then No (F1)
11230 and then No (F2)
11231 then
11232 Error_Msg_NE ("calls to& may be ambiguous??", S, S);
11233 end if;
11234 end;
11235 end if;
11236 end if;
11237
11238 E := Homonym (E);
11239 end loop;
11240
11241 -- On exit, we know that S is a new entity
11242
11243 Enter_Overloaded_Entity (S);
11244 Check_For_Primitive_Subprogram (Is_Primitive_Subp);
11245 Check_Overriding_Indicator
11246 (S, Overridden_Subp, Is_Primitive => Is_Primitive_Subp);
11247
11248 -- The Ghost policy in effect at the point of declaration of a parent
11249 -- subprogram and an overriding subprogram must match
11250 -- (SPARK RM 6.9(17)).
11251
11252 Check_Ghost_Overriding (S, Overridden_Subp);
11253
11254 -- Overloading is not allowed in SPARK, except for operators
11255
11256 if Nkind (S) /= N_Defining_Operator_Symbol then
11257 Error_Msg_Sloc := Sloc (Homonym (S));
11258 Check_SPARK_05_Restriction
11259 ("overloading not allowed with entity#", S);
11260 end if;
11261
11262 -- If S is a derived operation for an untagged type then by
11263 -- definition it's not a dispatching operation (even if the parent
11264 -- operation was dispatching), so Check_Dispatching_Operation is not
11265 -- called in that case.
11266
11267 if No (Derived_Type)
11268 or else Is_Tagged_Type (Derived_Type)
11269 then
11270 Check_Dispatching_Operation (S, Empty);
11271 end if;
11272 end if;
11273
11274 -- If this is a user-defined equality operator that is not a derived
11275 -- subprogram, create the corresponding inequality. If the operation is
11276 -- dispatching, the expansion is done elsewhere, and we do not create
11277 -- an explicit inequality operation.
11278
11279 <<Check_Inequality>>
11280 if Chars (S) = Name_Op_Eq
11281 and then Etype (S) = Standard_Boolean
11282 and then Present (Parent (S))
11283 and then not Is_Dispatching_Operation (S)
11284 then
11285 Make_Inequality_Operator (S);
11286 Check_Untagged_Equality (S);
11287 end if;
11288 end New_Overloaded_Entity;
11289
11290 ---------------------
11291 -- Process_Formals --
11292 ---------------------
11293
11294 procedure Process_Formals
11295 (T : List_Id;
11296 Related_Nod : Node_Id)
11297 is
11298 function Designates_From_Limited_With (Typ : Entity_Id) return Boolean;
11299 -- Determine whether an access type designates a type coming from a
11300 -- limited view.
11301
11302 function Is_Class_Wide_Default (D : Node_Id) return Boolean;
11303 -- Check whether the default has a class-wide type. After analysis the
11304 -- default has the type of the formal, so we must also check explicitly
11305 -- for an access attribute.
11306
11307 ----------------------------------
11308 -- Designates_From_Limited_With --
11309 ----------------------------------
11310
11311 function Designates_From_Limited_With (Typ : Entity_Id) return Boolean is
11312 Desig : Entity_Id := Typ;
11313
11314 begin
11315 if Is_Access_Type (Desig) then
11316 Desig := Directly_Designated_Type (Desig);
11317 end if;
11318
11319 if Is_Class_Wide_Type (Desig) then
11320 Desig := Root_Type (Desig);
11321 end if;
11322
11323 return
11324 Ekind (Desig) = E_Incomplete_Type
11325 and then From_Limited_With (Desig);
11326 end Designates_From_Limited_With;
11327
11328 ---------------------------
11329 -- Is_Class_Wide_Default --
11330 ---------------------------
11331
11332 function Is_Class_Wide_Default (D : Node_Id) return Boolean is
11333 begin
11334 return Is_Class_Wide_Type (Designated_Type (Etype (D)))
11335 or else (Nkind (D) = N_Attribute_Reference
11336 and then Attribute_Name (D) = Name_Access
11337 and then Is_Class_Wide_Type (Etype (Prefix (D))));
11338 end Is_Class_Wide_Default;
11339
11340 -- Local variables
11341
11342 Context : constant Node_Id := Parent (Parent (T));
11343 Default : Node_Id;
11344 Formal : Entity_Id;
11345 Formal_Type : Entity_Id;
11346 Param_Spec : Node_Id;
11347 Ptype : Entity_Id;
11348
11349 Num_Out_Params : Nat := 0;
11350 First_Out_Param : Entity_Id := Empty;
11351 -- Used for setting Is_Only_Out_Parameter
11352
11353 -- Start of processing for Process_Formals
11354
11355 begin
11356 -- In order to prevent premature use of the formals in the same formal
11357 -- part, the Ekind is left undefined until all default expressions are
11358 -- analyzed. The Ekind is established in a separate loop at the end.
11359
11360 Param_Spec := First (T);
11361 while Present (Param_Spec) loop
11362 Formal := Defining_Identifier (Param_Spec);
11363 Set_Never_Set_In_Source (Formal, True);
11364 Enter_Name (Formal);
11365
11366 -- Case of ordinary parameters
11367
11368 if Nkind (Parameter_Type (Param_Spec)) /= N_Access_Definition then
11369 Find_Type (Parameter_Type (Param_Spec));
11370 Ptype := Parameter_Type (Param_Spec);
11371
11372 if Ptype = Error then
11373 goto Continue;
11374 end if;
11375
11376 Formal_Type := Entity (Ptype);
11377
11378 if Is_Incomplete_Type (Formal_Type)
11379 or else
11380 (Is_Class_Wide_Type (Formal_Type)
11381 and then Is_Incomplete_Type (Root_Type (Formal_Type)))
11382 then
11383 -- Ada 2005 (AI-326): Tagged incomplete types allowed in
11384 -- primitive operations, as long as their completion is
11385 -- in the same declarative part. If in the private part
11386 -- this means that the type cannot be a Taft-amendment type.
11387 -- Check is done on package exit. For access to subprograms,
11388 -- the use is legal for Taft-amendment types.
11389
11390 -- Ada 2012: tagged incomplete types are allowed as generic
11391 -- formal types. They do not introduce dependencies and the
11392 -- corresponding generic subprogram does not have a delayed
11393 -- freeze, because it does not need a freeze node. However,
11394 -- it is still the case that untagged incomplete types cannot
11395 -- be Taft-amendment types and must be completed in private
11396 -- part, so the subprogram must appear in the list of private
11397 -- dependents of the type.
11398
11399 if Is_Tagged_Type (Formal_Type)
11400 or else (Ada_Version >= Ada_2012
11401 and then not From_Limited_With (Formal_Type)
11402 and then not Is_Generic_Type (Formal_Type))
11403 then
11404 if Ekind (Scope (Current_Scope)) = E_Package
11405 and then not Is_Generic_Type (Formal_Type)
11406 and then not Is_Class_Wide_Type (Formal_Type)
11407 then
11408 if not Nkind_In
11409 (Parent (T), N_Access_Function_Definition,
11410 N_Access_Procedure_Definition)
11411 then
11412 Append_Elmt (Current_Scope,
11413 Private_Dependents (Base_Type (Formal_Type)));
11414
11415 -- Freezing is delayed to ensure that Register_Prim
11416 -- will get called for this operation, which is needed
11417 -- in cases where static dispatch tables aren't built.
11418 -- (Note that the same is done for controlling access
11419 -- parameter cases in function Access_Definition.)
11420
11421 if not Is_Thunk (Current_Scope) then
11422 Set_Has_Delayed_Freeze (Current_Scope);
11423 end if;
11424 end if;
11425 end if;
11426
11427 elsif not Nkind_In (Parent (T), N_Access_Function_Definition,
11428 N_Access_Procedure_Definition)
11429 then
11430 -- AI05-0151: Tagged incomplete types are allowed in all
11431 -- formal parts. Untagged incomplete types are not allowed
11432 -- in bodies. Limited views of either kind are not allowed
11433 -- if there is no place at which the non-limited view can
11434 -- become available.
11435
11436 -- Incomplete formal untagged types are not allowed in
11437 -- subprogram bodies (but are legal in their declarations).
11438 -- This excludes bodies created for null procedures, which
11439 -- are basic declarations.
11440
11441 if Is_Generic_Type (Formal_Type)
11442 and then not Is_Tagged_Type (Formal_Type)
11443 and then Nkind (Parent (Related_Nod)) = N_Subprogram_Body
11444 then
11445 Error_Msg_N
11446 ("invalid use of formal incomplete type", Param_Spec);
11447
11448 elsif Ada_Version >= Ada_2012 then
11449 if Is_Tagged_Type (Formal_Type)
11450 and then (not From_Limited_With (Formal_Type)
11451 or else not In_Package_Body)
11452 then
11453 null;
11454
11455 elsif Nkind_In (Context, N_Accept_Statement,
11456 N_Accept_Alternative,
11457 N_Entry_Body)
11458 or else (Nkind (Context) = N_Subprogram_Body
11459 and then Comes_From_Source (Context))
11460 then
11461 Error_Msg_NE
11462 ("invalid use of untagged incomplete type &",
11463 Ptype, Formal_Type);
11464 end if;
11465
11466 else
11467 Error_Msg_NE
11468 ("invalid use of incomplete type&",
11469 Param_Spec, Formal_Type);
11470
11471 -- Further checks on the legality of incomplete types
11472 -- in formal parts are delayed until the freeze point
11473 -- of the enclosing subprogram or access to subprogram.
11474 end if;
11475 end if;
11476
11477 elsif Ekind (Formal_Type) = E_Void then
11478 Error_Msg_NE
11479 ("premature use of&",
11480 Parameter_Type (Param_Spec), Formal_Type);
11481 end if;
11482
11483 -- Ada 2012 (AI-142): Handle aliased parameters
11484
11485 if Ada_Version >= Ada_2012
11486 and then Aliased_Present (Param_Spec)
11487 then
11488 Set_Is_Aliased (Formal);
11489 end if;
11490
11491 -- Ada 2005 (AI-231): Create and decorate an internal subtype
11492 -- declaration corresponding to the null-excluding type of the
11493 -- formal in the enclosing scope. Finally, replace the parameter
11494 -- type of the formal with the internal subtype.
11495
11496 if Ada_Version >= Ada_2005
11497 and then Null_Exclusion_Present (Param_Spec)
11498 then
11499 if not Is_Access_Type (Formal_Type) then
11500 Error_Msg_N
11501 ("`NOT NULL` allowed only for an access type", Param_Spec);
11502
11503 else
11504 if Can_Never_Be_Null (Formal_Type)
11505 and then Comes_From_Source (Related_Nod)
11506 then
11507 Error_Msg_NE
11508 ("`NOT NULL` not allowed (& already excludes null)",
11509 Param_Spec, Formal_Type);
11510 end if;
11511
11512 Formal_Type :=
11513 Create_Null_Excluding_Itype
11514 (T => Formal_Type,
11515 Related_Nod => Related_Nod,
11516 Scope_Id => Scope (Current_Scope));
11517
11518 -- If the designated type of the itype is an itype that is
11519 -- not frozen yet, we set the Has_Delayed_Freeze attribute
11520 -- on the access subtype, to prevent order-of-elaboration
11521 -- issues in the backend.
11522
11523 -- Example:
11524 -- type T is access procedure;
11525 -- procedure Op (O : not null T);
11526
11527 if Is_Itype (Directly_Designated_Type (Formal_Type))
11528 and then
11529 not Is_Frozen (Directly_Designated_Type (Formal_Type))
11530 then
11531 Set_Has_Delayed_Freeze (Formal_Type);
11532 end if;
11533 end if;
11534 end if;
11535
11536 -- An access formal type
11537
11538 else
11539 Formal_Type :=
11540 Access_Definition (Related_Nod, Parameter_Type (Param_Spec));
11541
11542 -- No need to continue if we already notified errors
11543
11544 if not Present (Formal_Type) then
11545 return;
11546 end if;
11547
11548 -- Ada 2005 (AI-254)
11549
11550 declare
11551 AD : constant Node_Id :=
11552 Access_To_Subprogram_Definition
11553 (Parameter_Type (Param_Spec));
11554 begin
11555 if Present (AD) and then Protected_Present (AD) then
11556 Formal_Type :=
11557 Replace_Anonymous_Access_To_Protected_Subprogram
11558 (Param_Spec);
11559 end if;
11560 end;
11561 end if;
11562
11563 Set_Etype (Formal, Formal_Type);
11564
11565 -- Deal with default expression if present
11566
11567 Default := Expression (Param_Spec);
11568
11569 if Present (Default) then
11570 Check_SPARK_05_Restriction
11571 ("default expression is not allowed", Default);
11572
11573 if Out_Present (Param_Spec) then
11574 Error_Msg_N
11575 ("default initialization only allowed for IN parameters",
11576 Param_Spec);
11577 end if;
11578
11579 -- Do the special preanalysis of the expression (see section on
11580 -- "Handling of Default Expressions" in the spec of package Sem).
11581
11582 Preanalyze_Spec_Expression (Default, Formal_Type);
11583
11584 -- An access to constant cannot be the default for
11585 -- an access parameter that is an access to variable.
11586
11587 if Ekind (Formal_Type) = E_Anonymous_Access_Type
11588 and then not Is_Access_Constant (Formal_Type)
11589 and then Is_Access_Type (Etype (Default))
11590 and then Is_Access_Constant (Etype (Default))
11591 then
11592 Error_Msg_N
11593 ("formal that is access to variable cannot be initialized "
11594 & "with an access-to-constant expression", Default);
11595 end if;
11596
11597 -- Check that the designated type of an access parameter's default
11598 -- is not a class-wide type unless the parameter's designated type
11599 -- is also class-wide.
11600
11601 if Ekind (Formal_Type) = E_Anonymous_Access_Type
11602 and then not Designates_From_Limited_With (Formal_Type)
11603 and then Is_Class_Wide_Default (Default)
11604 and then not Is_Class_Wide_Type (Designated_Type (Formal_Type))
11605 then
11606 Error_Msg_N
11607 ("access to class-wide expression not allowed here", Default);
11608 end if;
11609
11610 -- Check incorrect use of dynamically tagged expressions
11611
11612 if Is_Tagged_Type (Formal_Type) then
11613 Check_Dynamically_Tagged_Expression
11614 (Expr => Default,
11615 Typ => Formal_Type,
11616 Related_Nod => Default);
11617 end if;
11618 end if;
11619
11620 -- Ada 2005 (AI-231): Static checks
11621
11622 if Ada_Version >= Ada_2005
11623 and then Is_Access_Type (Etype (Formal))
11624 and then Can_Never_Be_Null (Etype (Formal))
11625 then
11626 Null_Exclusion_Static_Checks (Param_Spec);
11627 end if;
11628
11629 -- The following checks are relevant only when SPARK_Mode is on as
11630 -- these are not standard Ada legality rules.
11631
11632 if SPARK_Mode = On then
11633 if Ekind_In (Scope (Formal), E_Function, E_Generic_Function) then
11634
11635 -- A function cannot have a parameter of mode IN OUT or OUT
11636 -- (SPARK RM 6.1).
11637
11638 if Ekind_In (Formal, E_In_Out_Parameter, E_Out_Parameter) then
11639 Error_Msg_N
11640 ("function cannot have parameter of mode `OUT` or "
11641 & "`IN OUT`", Formal);
11642 end if;
11643
11644 -- A procedure cannot have an effectively volatile formal
11645 -- parameter of mode IN because it behaves as a constant
11646 -- (SPARK RM 7.1.3(6)). -- ??? maybe 7.1.3(4)
11647
11648 elsif Ekind (Scope (Formal)) = E_Procedure
11649 and then Ekind (Formal) = E_In_Parameter
11650 and then Is_Effectively_Volatile (Formal)
11651 then
11652 Error_Msg_N
11653 ("formal parameter of mode `IN` cannot be volatile", Formal);
11654 end if;
11655 end if;
11656
11657 <<Continue>>
11658 Next (Param_Spec);
11659 end loop;
11660
11661 -- If this is the formal part of a function specification, analyze the
11662 -- subtype mark in the context where the formals are visible but not
11663 -- yet usable, and may hide outer homographs.
11664
11665 if Nkind (Related_Nod) = N_Function_Specification then
11666 Analyze_Return_Type (Related_Nod);
11667 end if;
11668
11669 -- Now set the kind (mode) of each formal
11670
11671 Param_Spec := First (T);
11672 while Present (Param_Spec) loop
11673 Formal := Defining_Identifier (Param_Spec);
11674 Set_Formal_Mode (Formal);
11675
11676 if Ekind (Formal) = E_In_Parameter then
11677 Set_Default_Value (Formal, Expression (Param_Spec));
11678
11679 if Present (Expression (Param_Spec)) then
11680 Default := Expression (Param_Spec);
11681
11682 if Is_Scalar_Type (Etype (Default)) then
11683 if Nkind (Parameter_Type (Param_Spec)) /=
11684 N_Access_Definition
11685 then
11686 Formal_Type := Entity (Parameter_Type (Param_Spec));
11687 else
11688 Formal_Type :=
11689 Access_Definition
11690 (Related_Nod, Parameter_Type (Param_Spec));
11691 end if;
11692
11693 Apply_Scalar_Range_Check (Default, Formal_Type);
11694 end if;
11695 end if;
11696
11697 elsif Ekind (Formal) = E_Out_Parameter then
11698 Num_Out_Params := Num_Out_Params + 1;
11699
11700 if Num_Out_Params = 1 then
11701 First_Out_Param := Formal;
11702 end if;
11703
11704 elsif Ekind (Formal) = E_In_Out_Parameter then
11705 Num_Out_Params := Num_Out_Params + 1;
11706 end if;
11707
11708 -- Skip remaining processing if formal type was in error
11709
11710 if Etype (Formal) = Any_Type or else Error_Posted (Formal) then
11711 goto Next_Parameter;
11712 end if;
11713
11714 -- Force call by reference if aliased
11715
11716 declare
11717 Conv : constant Convention_Id := Convention (Etype (Formal));
11718 begin
11719 if Is_Aliased (Formal) then
11720 Set_Mechanism (Formal, By_Reference);
11721
11722 -- Warn if user asked this to be passed by copy
11723
11724 if Conv = Convention_Ada_Pass_By_Copy then
11725 Error_Msg_N
11726 ("cannot pass aliased parameter & by copy??", Formal);
11727 end if;
11728
11729 -- Force mechanism if type has Convention Ada_Pass_By_Ref/Copy
11730
11731 elsif Conv = Convention_Ada_Pass_By_Copy then
11732 Set_Mechanism (Formal, By_Copy);
11733
11734 elsif Conv = Convention_Ada_Pass_By_Reference then
11735 Set_Mechanism (Formal, By_Reference);
11736 end if;
11737 end;
11738
11739 <<Next_Parameter>>
11740 Next (Param_Spec);
11741 end loop;
11742
11743 if Present (First_Out_Param) and then Num_Out_Params = 1 then
11744 Set_Is_Only_Out_Parameter (First_Out_Param);
11745 end if;
11746 end Process_Formals;
11747
11748 ----------------------------
11749 -- Reference_Body_Formals --
11750 ----------------------------
11751
11752 procedure Reference_Body_Formals (Spec : Entity_Id; Bod : Entity_Id) is
11753 Fs : Entity_Id;
11754 Fb : Entity_Id;
11755
11756 begin
11757 if Error_Posted (Spec) then
11758 return;
11759 end if;
11760
11761 -- Iterate over both lists. They may be of different lengths if the two
11762 -- specs are not conformant.
11763
11764 Fs := First_Formal (Spec);
11765 Fb := First_Formal (Bod);
11766 while Present (Fs) and then Present (Fb) loop
11767 Generate_Reference (Fs, Fb, 'b');
11768
11769 if Style_Check then
11770 Style.Check_Identifier (Fb, Fs);
11771 end if;
11772
11773 Set_Spec_Entity (Fb, Fs);
11774 Set_Referenced (Fs, False);
11775 Next_Formal (Fs);
11776 Next_Formal (Fb);
11777 end loop;
11778 end Reference_Body_Formals;
11779
11780 -------------------------
11781 -- Set_Actual_Subtypes --
11782 -------------------------
11783
11784 procedure Set_Actual_Subtypes (N : Node_Id; Subp : Entity_Id) is
11785 Decl : Node_Id;
11786 Formal : Entity_Id;
11787 T : Entity_Id;
11788 First_Stmt : Node_Id := Empty;
11789 AS_Needed : Boolean;
11790
11791 begin
11792 -- If this is an empty initialization procedure, no need to create
11793 -- actual subtypes (small optimization).
11794
11795 if Ekind (Subp) = E_Procedure and then Is_Null_Init_Proc (Subp) then
11796 return;
11797
11798 -- Within a predicate function we do not want to generate local
11799 -- subtypes that may generate nested predicate functions.
11800
11801 elsif Is_Subprogram (Subp) and then Is_Predicate_Function (Subp) then
11802 return;
11803 end if;
11804
11805 -- The subtype declarations may freeze the formals. The body generated
11806 -- for an expression function is not a freeze point, so do not emit
11807 -- these declarations (small loss of efficiency in rare cases).
11808
11809 if Nkind (N) = N_Subprogram_Body
11810 and then Was_Expression_Function (N)
11811 then
11812 return;
11813 end if;
11814
11815 Formal := First_Formal (Subp);
11816 while Present (Formal) loop
11817 T := Etype (Formal);
11818
11819 -- We never need an actual subtype for a constrained formal
11820
11821 if Is_Constrained (T) then
11822 AS_Needed := False;
11823
11824 -- If we have unknown discriminants, then we do not need an actual
11825 -- subtype, or more accurately we cannot figure it out. Note that
11826 -- all class-wide types have unknown discriminants.
11827
11828 elsif Has_Unknown_Discriminants (T) then
11829 AS_Needed := False;
11830
11831 -- At this stage we have an unconstrained type that may need an
11832 -- actual subtype. For sure the actual subtype is needed if we have
11833 -- an unconstrained array type. However, in an instance, the type
11834 -- may appear as a subtype of the full view, while the actual is
11835 -- in fact private (in which case no actual subtype is needed) so
11836 -- check the kind of the base type.
11837
11838 elsif Is_Array_Type (Base_Type (T)) then
11839 AS_Needed := True;
11840
11841 -- The only other case needing an actual subtype is an unconstrained
11842 -- record type which is an IN parameter (we cannot generate actual
11843 -- subtypes for the OUT or IN OUT case, since an assignment can
11844 -- change the discriminant values. However we exclude the case of
11845 -- initialization procedures, since discriminants are handled very
11846 -- specially in this context, see the section entitled "Handling of
11847 -- Discriminants" in Einfo.
11848
11849 -- We also exclude the case of Discrim_SO_Functions (functions used
11850 -- in front-end layout mode for size/offset values), since in such
11851 -- functions only discriminants are referenced, and not only are such
11852 -- subtypes not needed, but they cannot always be generated, because
11853 -- of order of elaboration issues.
11854
11855 elsif Is_Record_Type (T)
11856 and then Ekind (Formal) = E_In_Parameter
11857 and then Chars (Formal) /= Name_uInit
11858 and then not Is_Unchecked_Union (T)
11859 and then not Is_Discrim_SO_Function (Subp)
11860 then
11861 AS_Needed := True;
11862
11863 -- All other cases do not need an actual subtype
11864
11865 else
11866 AS_Needed := False;
11867 end if;
11868
11869 -- Generate actual subtypes for unconstrained arrays and
11870 -- unconstrained discriminated records.
11871
11872 if AS_Needed then
11873 if Nkind (N) = N_Accept_Statement then
11874
11875 -- If expansion is active, the formal is replaced by a local
11876 -- variable that renames the corresponding entry of the
11877 -- parameter block, and it is this local variable that may
11878 -- require an actual subtype.
11879
11880 if Expander_Active then
11881 Decl := Build_Actual_Subtype (T, Renamed_Object (Formal));
11882 else
11883 Decl := Build_Actual_Subtype (T, Formal);
11884 end if;
11885
11886 if Present (Handled_Statement_Sequence (N)) then
11887 First_Stmt :=
11888 First (Statements (Handled_Statement_Sequence (N)));
11889 Prepend (Decl, Statements (Handled_Statement_Sequence (N)));
11890 Mark_Rewrite_Insertion (Decl);
11891 else
11892 -- If the accept statement has no body, there will be no
11893 -- reference to the actuals, so no need to compute actual
11894 -- subtypes.
11895
11896 return;
11897 end if;
11898
11899 else
11900 Decl := Build_Actual_Subtype (T, Formal);
11901 Prepend (Decl, Declarations (N));
11902 Mark_Rewrite_Insertion (Decl);
11903 end if;
11904
11905 -- The declaration uses the bounds of an existing object, and
11906 -- therefore needs no constraint checks.
11907
11908 Analyze (Decl, Suppress => All_Checks);
11909 Set_Is_Actual_Subtype (Defining_Identifier (Decl));
11910
11911 -- We need to freeze manually the generated type when it is
11912 -- inserted anywhere else than in a declarative part.
11913
11914 if Present (First_Stmt) then
11915 Insert_List_Before_And_Analyze (First_Stmt,
11916 Freeze_Entity (Defining_Identifier (Decl), N));
11917
11918 -- Ditto if the type has a dynamic predicate, because the
11919 -- generated function will mention the actual subtype. The
11920 -- predicate may come from an explicit aspect of be inherited.
11921
11922 elsif Has_Predicates (T) then
11923 Insert_List_Before_And_Analyze (Decl,
11924 Freeze_Entity (Defining_Identifier (Decl), N));
11925 end if;
11926
11927 if Nkind (N) = N_Accept_Statement
11928 and then Expander_Active
11929 then
11930 Set_Actual_Subtype (Renamed_Object (Formal),
11931 Defining_Identifier (Decl));
11932 else
11933 Set_Actual_Subtype (Formal, Defining_Identifier (Decl));
11934 end if;
11935 end if;
11936
11937 Next_Formal (Formal);
11938 end loop;
11939 end Set_Actual_Subtypes;
11940
11941 ---------------------
11942 -- Set_Formal_Mode --
11943 ---------------------
11944
11945 procedure Set_Formal_Mode (Formal_Id : Entity_Id) is
11946 Spec : constant Node_Id := Parent (Formal_Id);
11947 Id : constant Entity_Id := Scope (Formal_Id);
11948
11949 begin
11950 -- Note: we set Is_Known_Valid for IN parameters and IN OUT parameters
11951 -- since we ensure that corresponding actuals are always valid at the
11952 -- point of the call.
11953
11954 if Out_Present (Spec) then
11955 if Ekind_In (Id, E_Entry, E_Entry_Family)
11956 or else Is_Subprogram_Or_Generic_Subprogram (Id)
11957 then
11958 Set_Has_Out_Or_In_Out_Parameter (Id, True);
11959 end if;
11960
11961 if Ekind_In (Id, E_Function, E_Generic_Function) then
11962
11963 -- [IN] OUT parameters allowed for functions in Ada 2012
11964
11965 if Ada_Version >= Ada_2012 then
11966
11967 -- Even in Ada 2012 operators can only have IN parameters
11968
11969 if Is_Operator_Symbol_Name (Chars (Scope (Formal_Id))) then
11970 Error_Msg_N ("operators can only have IN parameters", Spec);
11971 end if;
11972
11973 if In_Present (Spec) then
11974 Set_Ekind (Formal_Id, E_In_Out_Parameter);
11975 else
11976 Set_Ekind (Formal_Id, E_Out_Parameter);
11977 end if;
11978
11979 -- But not in earlier versions of Ada
11980
11981 else
11982 Error_Msg_N ("functions can only have IN parameters", Spec);
11983 Set_Ekind (Formal_Id, E_In_Parameter);
11984 end if;
11985
11986 elsif In_Present (Spec) then
11987 Set_Ekind (Formal_Id, E_In_Out_Parameter);
11988
11989 else
11990 Set_Ekind (Formal_Id, E_Out_Parameter);
11991 Set_Never_Set_In_Source (Formal_Id, True);
11992 Set_Is_True_Constant (Formal_Id, False);
11993 Set_Current_Value (Formal_Id, Empty);
11994 end if;
11995
11996 else
11997 Set_Ekind (Formal_Id, E_In_Parameter);
11998 end if;
11999
12000 -- Set Is_Known_Non_Null for access parameters since the language
12001 -- guarantees that access parameters are always non-null. We also set
12002 -- Can_Never_Be_Null, since there is no way to change the value.
12003
12004 if Nkind (Parameter_Type (Spec)) = N_Access_Definition then
12005
12006 -- Ada 2005 (AI-231): In Ada 95, access parameters are always non-
12007 -- null; In Ada 2005, only if then null_exclusion is explicit.
12008
12009 if Ada_Version < Ada_2005
12010 or else Can_Never_Be_Null (Etype (Formal_Id))
12011 then
12012 Set_Is_Known_Non_Null (Formal_Id);
12013 Set_Can_Never_Be_Null (Formal_Id);
12014 end if;
12015
12016 -- Ada 2005 (AI-231): Null-exclusion access subtype
12017
12018 elsif Is_Access_Type (Etype (Formal_Id))
12019 and then Can_Never_Be_Null (Etype (Formal_Id))
12020 then
12021 Set_Is_Known_Non_Null (Formal_Id);
12022
12023 -- We can also set Can_Never_Be_Null (thus preventing some junk
12024 -- access checks) for the case of an IN parameter, which cannot
12025 -- be changed, or for an IN OUT parameter, which can be changed but
12026 -- not to a null value. But for an OUT parameter, the initial value
12027 -- passed in can be null, so we can't set this flag in that case.
12028
12029 if Ekind (Formal_Id) /= E_Out_Parameter then
12030 Set_Can_Never_Be_Null (Formal_Id);
12031 end if;
12032 end if;
12033
12034 Set_Mechanism (Formal_Id, Default_Mechanism);
12035 Set_Formal_Validity (Formal_Id);
12036 end Set_Formal_Mode;
12037
12038 -------------------------
12039 -- Set_Formal_Validity --
12040 -------------------------
12041
12042 procedure Set_Formal_Validity (Formal_Id : Entity_Id) is
12043 begin
12044 -- If no validity checking, then we cannot assume anything about the
12045 -- validity of parameters, since we do not know there is any checking
12046 -- of the validity on the call side.
12047
12048 if not Validity_Checks_On then
12049 return;
12050
12051 -- If validity checking for parameters is enabled, this means we are
12052 -- not supposed to make any assumptions about argument values.
12053
12054 elsif Validity_Check_Parameters then
12055 return;
12056
12057 -- If we are checking in parameters, we will assume that the caller is
12058 -- also checking parameters, so we can assume the parameter is valid.
12059
12060 elsif Ekind (Formal_Id) = E_In_Parameter
12061 and then Validity_Check_In_Params
12062 then
12063 Set_Is_Known_Valid (Formal_Id, True);
12064
12065 -- Similar treatment for IN OUT parameters
12066
12067 elsif Ekind (Formal_Id) = E_In_Out_Parameter
12068 and then Validity_Check_In_Out_Params
12069 then
12070 Set_Is_Known_Valid (Formal_Id, True);
12071 end if;
12072 end Set_Formal_Validity;
12073
12074 ------------------------
12075 -- Subtype_Conformant --
12076 ------------------------
12077
12078 function Subtype_Conformant
12079 (New_Id : Entity_Id;
12080 Old_Id : Entity_Id;
12081 Skip_Controlling_Formals : Boolean := False) return Boolean
12082 is
12083 Result : Boolean;
12084 begin
12085 Check_Conformance (New_Id, Old_Id, Subtype_Conformant, False, Result,
12086 Skip_Controlling_Formals => Skip_Controlling_Formals);
12087 return Result;
12088 end Subtype_Conformant;
12089
12090 ---------------------
12091 -- Type_Conformant --
12092 ---------------------
12093
12094 function Type_Conformant
12095 (New_Id : Entity_Id;
12096 Old_Id : Entity_Id;
12097 Skip_Controlling_Formals : Boolean := False) return Boolean
12098 is
12099 Result : Boolean;
12100 begin
12101 May_Hide_Profile := False;
12102 Check_Conformance
12103 (New_Id, Old_Id, Type_Conformant, False, Result,
12104 Skip_Controlling_Formals => Skip_Controlling_Formals);
12105 return Result;
12106 end Type_Conformant;
12107
12108 -------------------------------
12109 -- Valid_Operator_Definition --
12110 -------------------------------
12111
12112 procedure Valid_Operator_Definition (Designator : Entity_Id) is
12113 N : Integer := 0;
12114 F : Entity_Id;
12115 Id : constant Name_Id := Chars (Designator);
12116 N_OK : Boolean;
12117
12118 begin
12119 F := First_Formal (Designator);
12120 while Present (F) loop
12121 N := N + 1;
12122
12123 if Present (Default_Value (F)) then
12124 Error_Msg_N
12125 ("default values not allowed for operator parameters",
12126 Parent (F));
12127
12128 -- For function instantiations that are operators, we must check
12129 -- separately that the corresponding generic only has in-parameters.
12130 -- For subprogram declarations this is done in Set_Formal_Mode. Such
12131 -- an error could not arise in earlier versions of the language.
12132
12133 elsif Ekind (F) /= E_In_Parameter then
12134 Error_Msg_N ("operators can only have IN parameters", F);
12135 end if;
12136
12137 Next_Formal (F);
12138 end loop;
12139
12140 -- Verify that user-defined operators have proper number of arguments
12141 -- First case of operators which can only be unary
12142
12143 if Nam_In (Id, Name_Op_Not, Name_Op_Abs) then
12144 N_OK := (N = 1);
12145
12146 -- Case of operators which can be unary or binary
12147
12148 elsif Nam_In (Id, Name_Op_Add, Name_Op_Subtract) then
12149 N_OK := (N in 1 .. 2);
12150
12151 -- All other operators can only be binary
12152
12153 else
12154 N_OK := (N = 2);
12155 end if;
12156
12157 if not N_OK then
12158 Error_Msg_N
12159 ("incorrect number of arguments for operator", Designator);
12160 end if;
12161
12162 if Id = Name_Op_Ne
12163 and then Base_Type (Etype (Designator)) = Standard_Boolean
12164 and then not Is_Intrinsic_Subprogram (Designator)
12165 then
12166 Error_Msg_N
12167 ("explicit definition of inequality not allowed", Designator);
12168 end if;
12169 end Valid_Operator_Definition;
12170
12171 end Sem_Ch6;