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