OSDN Git Service

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