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