OSDN Git Service

PR bootstrap/38262
[pf3gnuchains/gcc-fork.git] / gcc / ada / sem_ch6.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                              S E M _ C H 6                               --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --          Copyright (C) 1992-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       if Nkind (Decl) = N_Subprogram_Declaration
3097         and then Present (Body_To_Inline (Decl))
3098       then
3099          return;    --  Done already.
3100
3101       --  Functions that return unconstrained composite types require
3102       --  secondary stack handling, and cannot currently be inlined, unless
3103       --  all return statements return a local variable that is the first
3104       --  local declaration in the body.
3105
3106       elsif Ekind (Subp) = E_Function
3107         and then not Is_Scalar_Type (Etype (Subp))
3108         and then not Is_Access_Type (Etype (Subp))
3109         and then not Is_Constrained (Etype (Subp))
3110       then
3111          if not Has_Single_Return then
3112             Cannot_Inline
3113               ("cannot inline & (unconstrained return type)?", N, Subp);
3114             return;
3115          end if;
3116
3117       --  Ditto for functions that return controlled types, where controlled
3118       --  actions interfere in complex ways with inlining.
3119
3120       elsif Ekind (Subp) = E_Function
3121         and then Needs_Finalization (Etype (Subp))
3122       then
3123          Cannot_Inline
3124            ("cannot inline & (controlled return type)?", N, Subp);
3125          return;
3126       end if;
3127
3128       if Present (Declarations (N))
3129         and then Has_Excluded_Declaration (Declarations (N))
3130       then
3131          return;
3132       end if;
3133
3134       if Present (Handled_Statement_Sequence (N)) then
3135          if Present (Exception_Handlers (Handled_Statement_Sequence (N))) then
3136             Cannot_Inline
3137               ("cannot inline& (exception handler)?",
3138                First (Exception_Handlers (Handled_Statement_Sequence (N))),
3139                Subp);
3140             return;
3141          elsif
3142            Has_Excluded_Statement
3143              (Statements (Handled_Statement_Sequence (N)))
3144          then
3145             return;
3146          end if;
3147       end if;
3148
3149       --  We do not inline a subprogram  that is too large, unless it is
3150       --  marked Inline_Always. This pragma does not suppress the other
3151       --  checks on inlining (forbidden declarations, handlers, etc).
3152
3153       if Stat_Count > Max_Size
3154         and then not Has_Pragma_Inline_Always (Subp)
3155       then
3156          Cannot_Inline ("cannot inline& (body too large)?", N, Subp);
3157          return;
3158       end if;
3159
3160       if Has_Pending_Instantiation then
3161          Cannot_Inline
3162            ("cannot inline& (forward instance within enclosing body)?",
3163              N, Subp);
3164          return;
3165       end if;
3166
3167       --  Within an instance, the body to inline must be treated as a nested
3168       --  generic, so that the proper global references are preserved.
3169
3170       --  Note that we do not do this at the library level, because it is not
3171       --  needed, and furthermore this causes trouble if front end inlining
3172       --  is activated (-gnatN).
3173
3174       if In_Instance and then Scope (Current_Scope) /= Standard_Standard then
3175          Save_Env (Scope (Current_Scope), Scope (Current_Scope));
3176          Original_Body := Copy_Generic_Node (N, Empty, True);
3177       else
3178          Original_Body := Copy_Separate_Tree (N);
3179       end if;
3180
3181       --  We need to capture references to the formals in order to substitute
3182       --  the actuals at the point of inlining, i.e. instantiation. To treat
3183       --  the formals as globals to the body to inline, we nest it within
3184       --  a dummy parameterless subprogram, declared within the real one.
3185       --  To avoid generating an internal name (which is never public, and
3186       --  which affects serial numbers of other generated names), we use
3187       --  an internal symbol that cannot conflict with user declarations.
3188
3189       Set_Parameter_Specifications (Specification (Original_Body), No_List);
3190       Set_Defining_Unit_Name
3191         (Specification (Original_Body),
3192           Make_Defining_Identifier (Sloc (N), Name_uParent));
3193       Set_Corresponding_Spec (Original_Body, Empty);
3194
3195       Body_To_Analyze := Copy_Generic_Node (Original_Body, Empty, False);
3196
3197       --  Set return type of function, which is also global and does not need
3198       --  to be resolved.
3199
3200       if Ekind (Subp) = E_Function then
3201          Set_Result_Definition (Specification (Body_To_Analyze),
3202            New_Occurrence_Of (Etype (Subp), Sloc (N)));
3203       end if;
3204
3205       if No (Declarations (N)) then
3206          Set_Declarations (N, New_List (Body_To_Analyze));
3207       else
3208          Append (Body_To_Analyze, Declarations (N));
3209       end if;
3210
3211       Expander_Mode_Save_And_Set (False);
3212       Remove_Pragmas;
3213
3214       Analyze (Body_To_Analyze);
3215       Push_Scope (Defining_Entity (Body_To_Analyze));
3216       Save_Global_References (Original_Body);
3217       End_Scope;
3218       Remove (Body_To_Analyze);
3219
3220       Expander_Mode_Restore;
3221
3222       --  Restore environment if previously saved
3223
3224       if In_Instance and then Scope (Current_Scope) /= Standard_Standard then
3225          Restore_Env;
3226       end if;
3227
3228       --  If secondary stk used there is no point in inlining. We have
3229       --  already issued the warning in this case, so nothing to do.
3230
3231       if Uses_Secondary_Stack (Body_To_Analyze) then
3232          return;
3233       end if;
3234
3235       Set_Body_To_Inline (Decl, Original_Body);
3236       Set_Ekind (Defining_Entity (Original_Body), Ekind (Subp));
3237       Set_Is_Inlined (Subp);
3238    end Build_Body_To_Inline;
3239
3240    -------------------
3241    -- Cannot_Inline --
3242    -------------------
3243
3244    procedure Cannot_Inline (Msg : String; N : Node_Id; Subp : Entity_Id) is
3245    begin
3246       --  Do not emit warning if this is a predefined unit which is not
3247       --  the main unit. With validity checks enabled, some predefined
3248       --  subprograms may contain nested subprograms and become ineligible
3249       --  for inlining.
3250
3251       if Is_Predefined_File_Name (Unit_File_Name (Get_Source_Unit (Subp)))
3252         and then not In_Extended_Main_Source_Unit (Subp)
3253       then
3254          null;
3255
3256       elsif Has_Pragma_Inline_Always (Subp) then
3257
3258          --  Remove last character (question mark) to make this into an error,
3259          --  because the Inline_Always pragma cannot be obeyed.
3260
3261          Error_Msg_NE (Msg (Msg'First .. Msg'Last - 1), N, Subp);
3262
3263       elsif Ineffective_Inline_Warnings then
3264          Error_Msg_NE (Msg, N, Subp);
3265       end if;
3266    end Cannot_Inline;
3267
3268    -----------------------
3269    -- Check_Conformance --
3270    -----------------------
3271
3272    procedure Check_Conformance
3273      (New_Id                   : Entity_Id;
3274       Old_Id                   : Entity_Id;
3275       Ctype                    : Conformance_Type;
3276       Errmsg                   : Boolean;
3277       Conforms                 : out Boolean;
3278       Err_Loc                  : Node_Id := Empty;
3279       Get_Inst                 : Boolean := False;
3280       Skip_Controlling_Formals : Boolean := False)
3281    is
3282       procedure Conformance_Error (Msg : String; N : Node_Id := New_Id);
3283       --  Post error message for conformance error on given node. Two messages
3284       --  are output. The first points to the previous declaration with a
3285       --  general "no conformance" message. The second is the detailed reason,
3286       --  supplied as Msg. The parameter N provide information for a possible
3287       --  & insertion in the message, and also provides the location for
3288       --  posting the message in the absence of a specified Err_Loc location.
3289
3290       -----------------------
3291       -- Conformance_Error --
3292       -----------------------
3293
3294       procedure Conformance_Error (Msg : String; N : Node_Id := New_Id) is
3295          Enode : Node_Id;
3296
3297       begin
3298          Conforms := False;
3299
3300          if Errmsg then
3301             if No (Err_Loc) then
3302                Enode := N;
3303             else
3304                Enode := Err_Loc;
3305             end if;
3306
3307             Error_Msg_Sloc := Sloc (Old_Id);
3308
3309             case Ctype is
3310                when Type_Conformant =>
3311                   Error_Msg_N
3312                     ("not type conformant with declaration#!", Enode);
3313
3314                when Mode_Conformant =>
3315                   if Nkind (Parent (Old_Id)) = N_Full_Type_Declaration then
3316                      Error_Msg_N
3317                        ("not mode conformant with operation inherited#!",
3318                          Enode);
3319                   else
3320                      Error_Msg_N
3321                        ("not mode conformant with declaration#!", Enode);
3322                   end if;
3323
3324                when Subtype_Conformant =>
3325                   if Nkind (Parent (Old_Id)) = N_Full_Type_Declaration then
3326                      Error_Msg_N
3327                        ("not subtype conformant with operation inherited#!",
3328                          Enode);
3329                   else
3330                      Error_Msg_N
3331                        ("not subtype conformant with declaration#!", Enode);
3332                   end if;
3333
3334                when Fully_Conformant =>
3335                   if Nkind (Parent (Old_Id)) = N_Full_Type_Declaration then
3336                      Error_Msg_N
3337                        ("not fully conformant with operation inherited#!",
3338                          Enode);
3339                   else
3340                      Error_Msg_N
3341                        ("not fully conformant with declaration#!", Enode);
3342                   end if;
3343             end case;
3344
3345             Error_Msg_NE (Msg, Enode, N);
3346          end if;
3347       end Conformance_Error;
3348
3349       --  Local Variables
3350
3351       Old_Type           : constant Entity_Id := Etype (Old_Id);
3352       New_Type           : constant Entity_Id := Etype (New_Id);
3353       Old_Formal         : Entity_Id;
3354       New_Formal         : Entity_Id;
3355       Access_Types_Match : Boolean;
3356       Old_Formal_Base    : Entity_Id;
3357       New_Formal_Base    : Entity_Id;
3358
3359    --  Start of processing for Check_Conformance
3360
3361    begin
3362       Conforms := True;
3363
3364       --  We need a special case for operators, since they don't appear
3365       --  explicitly.
3366
3367       if Ctype = Type_Conformant then
3368          if Ekind (New_Id) = E_Operator
3369            and then Operator_Matches_Spec (New_Id, Old_Id)
3370          then
3371             return;
3372          end if;
3373       end if;
3374
3375       --  If both are functions/operators, check return types conform
3376
3377       if Old_Type /= Standard_Void_Type
3378         and then New_Type /= Standard_Void_Type
3379       then
3380
3381          --  If we are checking interface conformance we omit controlling
3382          --  arguments and result, because we are only checking the conformance
3383          --  of the remaining parameters.
3384
3385          if Has_Controlling_Result (Old_Id)
3386            and then Has_Controlling_Result (New_Id)
3387            and then Skip_Controlling_Formals
3388          then
3389             null;
3390
3391          elsif not Conforming_Types (Old_Type, New_Type, Ctype, Get_Inst) then
3392             Conformance_Error ("\return type does not match!", New_Id);
3393             return;
3394          end if;
3395
3396          --  Ada 2005 (AI-231): In case of anonymous access types check the
3397          --  null-exclusion and access-to-constant attributes match.
3398
3399          if Ada_Version >= Ada_05
3400            and then Ekind (Etype (Old_Type)) = E_Anonymous_Access_Type
3401            and then
3402              (Can_Never_Be_Null (Old_Type)
3403                 /= Can_Never_Be_Null (New_Type)
3404               or else Is_Access_Constant (Etype (Old_Type))
3405                         /= Is_Access_Constant (Etype (New_Type)))
3406          then
3407             Conformance_Error ("\return type does not match!", New_Id);
3408             return;
3409          end if;
3410
3411       --  If either is a function/operator and the other isn't, error
3412
3413       elsif Old_Type /= Standard_Void_Type
3414         or else New_Type /= Standard_Void_Type
3415       then
3416          Conformance_Error ("\functions can only match functions!", New_Id);
3417          return;
3418       end if;
3419
3420       --  In subtype conformant case, conventions must match (RM 6.3.1(16)).
3421       --  If this is a renaming as body, refine error message to indicate that
3422       --  the conflict is with the original declaration. If the entity is not
3423       --  frozen, the conventions don't have to match, the one of the renamed
3424       --  entity is inherited.
3425
3426       if Ctype >= Subtype_Conformant then
3427          if Convention (Old_Id) /= Convention (New_Id) then
3428
3429             if not Is_Frozen (New_Id) then
3430                null;
3431
3432             elsif Present (Err_Loc)
3433               and then Nkind (Err_Loc) = N_Subprogram_Renaming_Declaration
3434               and then Present (Corresponding_Spec (Err_Loc))
3435             then
3436                Error_Msg_Name_1 := Chars (New_Id);
3437                Error_Msg_Name_2 :=
3438                  Name_Ada + Convention_Id'Pos (Convention (New_Id));
3439
3440                Conformance_Error ("\prior declaration for% has convention %!");
3441
3442             else
3443                Conformance_Error ("\calling conventions do not match!");
3444             end if;
3445
3446             return;
3447
3448          elsif Is_Formal_Subprogram (Old_Id)
3449            or else Is_Formal_Subprogram (New_Id)
3450          then
3451             Conformance_Error ("\formal subprograms not allowed!");
3452             return;
3453          end if;
3454       end if;
3455
3456       --  Deal with parameters
3457
3458       --  Note: we use the entity information, rather than going directly
3459       --  to the specification in the tree. This is not only simpler, but
3460       --  absolutely necessary for some cases of conformance tests between
3461       --  operators, where the declaration tree simply does not exist!
3462
3463       Old_Formal := First_Formal (Old_Id);
3464       New_Formal := First_Formal (New_Id);
3465
3466       while Present (Old_Formal) and then Present (New_Formal) loop
3467          if Is_Controlling_Formal (Old_Formal)
3468            and then Is_Controlling_Formal (New_Formal)
3469            and then Skip_Controlling_Formals
3470          then
3471             goto Skip_Controlling_Formal;
3472          end if;
3473
3474          if Ctype = Fully_Conformant then
3475
3476             --  Names must match. Error message is more accurate if we do
3477             --  this before checking that the types of the formals match.
3478
3479             if Chars (Old_Formal) /= Chars (New_Formal) then
3480                Conformance_Error ("\name & does not match!", New_Formal);
3481
3482                --  Set error posted flag on new formal as well to stop
3483                --  junk cascaded messages in some cases.
3484
3485                Set_Error_Posted (New_Formal);
3486                return;
3487             end if;
3488          end if;
3489
3490          --  Ada 2005 (AI-423): Possible access [sub]type and itype match. This
3491          --  case occurs whenever a subprogram is being renamed and one of its
3492          --  parameters imposes a null exclusion. For example:
3493
3494          --     type T is null record;
3495          --     type Acc_T is access T;
3496          --     subtype Acc_T_Sub is Acc_T;
3497
3498          --     procedure P     (Obj : not null Acc_T_Sub);  --  itype
3499          --     procedure Ren_P (Obj :          Acc_T_Sub)   --  subtype
3500          --       renames P;
3501
3502          Old_Formal_Base := Etype (Old_Formal);
3503          New_Formal_Base := Etype (New_Formal);
3504
3505          if Get_Inst then
3506             Old_Formal_Base := Get_Instance_Of (Old_Formal_Base);
3507             New_Formal_Base := Get_Instance_Of (New_Formal_Base);
3508          end if;
3509
3510          Access_Types_Match := Ada_Version >= Ada_05
3511
3512             --  Ensure that this rule is only applied when New_Id is a
3513             --  renaming of Old_Id.
3514
3515            and then Nkind (Parent (Parent (New_Id))) =
3516                       N_Subprogram_Renaming_Declaration
3517            and then Nkind (Name (Parent (Parent (New_Id)))) in N_Has_Entity
3518            and then Present (Entity (Name (Parent (Parent (New_Id)))))
3519            and then Entity (Name (Parent (Parent (New_Id)))) = Old_Id
3520
3521             --  Now handle the allowed access-type case
3522
3523            and then Is_Access_Type (Old_Formal_Base)
3524            and then Is_Access_Type (New_Formal_Base)
3525
3526             --  The type kinds must match. The only exception occurs with
3527             --  multiple generics of the form:
3528
3529             --   generic                    generic
3530             --     type F is private;         type A is private;
3531             --     type F_Ptr is access F;    type A_Ptr is access A;
3532             --     with proc F_P (X : F_Ptr); with proc A_P (X : A_Ptr);
3533             --   package F_Pack is ...      package A_Pack is
3534             --                                package F_Inst is
3535             --                                  new F_Pack (A, A_Ptr, A_P);
3536
3537             --  When checking for conformance between the parameters of A_P
3538             --  and F_P, the type kinds of F_Ptr and A_Ptr will not match
3539             --  because the compiler has transformed A_Ptr into a subtype of
3540             --  F_Ptr. We catch this case in the code below.
3541
3542            and then (Ekind (Old_Formal_Base) = Ekind (New_Formal_Base)
3543                   or else
3544                     (Is_Generic_Type (Old_Formal_Base)
3545                        and then Is_Generic_Type (New_Formal_Base)
3546                        and then Is_Internal (New_Formal_Base)
3547                        and then Etype (Etype (New_Formal_Base)) =
3548                                   Old_Formal_Base))
3549            and then Directly_Designated_Type (Old_Formal_Base) =
3550                       Directly_Designated_Type (New_Formal_Base)
3551            and then ((Is_Itype (Old_Formal_Base)
3552                        and then Can_Never_Be_Null (Old_Formal_Base))
3553                     or else
3554                      (Is_Itype (New_Formal_Base)
3555                        and then Can_Never_Be_Null (New_Formal_Base)));
3556
3557          --  Types must always match. In the visible part of an instance,
3558          --  usual overloading rules for dispatching operations apply, and
3559          --  we check base types (not the actual subtypes).
3560
3561          if In_Instance_Visible_Part
3562            and then Is_Dispatching_Operation (New_Id)
3563          then
3564             if not Conforming_Types
3565                      (T1       => Base_Type (Etype (Old_Formal)),
3566                       T2       => Base_Type (Etype (New_Formal)),
3567                       Ctype    => Ctype,
3568                       Get_Inst => Get_Inst)
3569                and then not Access_Types_Match
3570             then
3571                Conformance_Error ("\type of & does not match!", New_Formal);
3572                return;
3573             end if;
3574
3575          elsif not Conforming_Types
3576                      (T1       => Old_Formal_Base,
3577                       T2       => New_Formal_Base,
3578                       Ctype    => Ctype,
3579                       Get_Inst => Get_Inst)
3580            and then not Access_Types_Match
3581          then
3582             Conformance_Error ("\type of & does not match!", New_Formal);
3583             return;
3584          end if;
3585
3586          --  For mode conformance, mode must match
3587
3588          if Ctype >= Mode_Conformant then
3589             if Parameter_Mode (Old_Formal) /= Parameter_Mode (New_Formal) then
3590                Conformance_Error ("\mode of & does not match!", New_Formal);
3591                return;
3592
3593             --  Part of mode conformance for access types is having the same
3594             --  constant modifier.
3595
3596             elsif Access_Types_Match
3597               and then Is_Access_Constant (Old_Formal_Base) /=
3598                        Is_Access_Constant (New_Formal_Base)
3599             then
3600                Conformance_Error
3601                  ("\constant modifier does not match!", New_Formal);
3602                return;
3603             end if;
3604          end if;
3605
3606          if Ctype >= Subtype_Conformant then
3607
3608             --  Ada 2005 (AI-231): In case of anonymous access types check
3609             --  the null-exclusion and access-to-constant attributes must
3610             --  match.
3611
3612             if Ada_Version >= Ada_05
3613               and then Ekind (Etype (Old_Formal)) = E_Anonymous_Access_Type
3614               and then Ekind (Etype (New_Formal)) = E_Anonymous_Access_Type
3615               and then
3616                 (Can_Never_Be_Null (Old_Formal) /=
3617                  Can_Never_Be_Null (New_Formal)
3618                    or else
3619                  Is_Access_Constant (Etype (Old_Formal)) /=
3620                  Is_Access_Constant (Etype (New_Formal)))
3621             then
3622                --  It is allowed to omit the null-exclusion in case of stream
3623                --  attribute subprograms. We recognize stream subprograms
3624                --  through their TSS-generated suffix.
3625
3626                declare
3627                   TSS_Name : constant TSS_Name_Type := Get_TSS_Name (New_Id);
3628                begin
3629                   if TSS_Name /= TSS_Stream_Read
3630                     and then TSS_Name /= TSS_Stream_Write
3631                     and then TSS_Name /= TSS_Stream_Input
3632                     and then TSS_Name /= TSS_Stream_Output
3633                   then
3634                      Conformance_Error
3635                        ("\type of & does not match!", New_Formal);
3636                      return;
3637                   end if;
3638                end;
3639             end if;
3640          end if;
3641
3642          --  Full conformance checks
3643
3644          if Ctype = Fully_Conformant then
3645
3646             --  We have checked already that names match
3647
3648             if Parameter_Mode (Old_Formal) = E_In_Parameter then
3649
3650                --  Check default expressions for in parameters
3651
3652                declare
3653                   NewD : constant Boolean :=
3654                            Present (Default_Value (New_Formal));
3655                   OldD : constant Boolean :=
3656                            Present (Default_Value (Old_Formal));
3657                begin
3658                   if NewD or OldD then
3659
3660                      --  The old default value has been analyzed because the
3661                      --  current full declaration will have frozen everything
3662                      --  before. The new default value has not been analyzed,
3663                      --  so analyze it now before we check for conformance.
3664
3665                      if NewD then
3666                         Push_Scope (New_Id);
3667                         Preanalyze_Spec_Expression
3668                           (Default_Value (New_Formal), Etype (New_Formal));
3669                         End_Scope;
3670                      end if;
3671
3672                      if not (NewD and OldD)
3673                        or else not Fully_Conformant_Expressions
3674                                     (Default_Value (Old_Formal),
3675                                      Default_Value (New_Formal))
3676                      then
3677                         Conformance_Error
3678                           ("\default expression for & does not match!",
3679                            New_Formal);
3680                         return;
3681                      end if;
3682                   end if;
3683                end;
3684             end if;
3685          end if;
3686
3687          --  A couple of special checks for Ada 83 mode. These checks are
3688          --  skipped if either entity is an operator in package Standard,
3689          --  or if either old or new instance is not from the source program.
3690
3691          if Ada_Version = Ada_83
3692            and then Sloc (Old_Id) > Standard_Location
3693            and then Sloc (New_Id) > Standard_Location
3694            and then Comes_From_Source (Old_Id)
3695            and then Comes_From_Source (New_Id)
3696          then
3697             declare
3698                Old_Param : constant Node_Id := Declaration_Node (Old_Formal);
3699                New_Param : constant Node_Id := Declaration_Node (New_Formal);
3700
3701             begin
3702                --  Explicit IN must be present or absent in both cases. This
3703                --  test is required only in the full conformance case.
3704
3705                if In_Present (Old_Param) /= In_Present (New_Param)
3706                  and then Ctype = Fully_Conformant
3707                then
3708                   Conformance_Error
3709                     ("\(Ada 83) IN must appear in both declarations",
3710                      New_Formal);
3711                   return;
3712                end if;
3713
3714                --  Grouping (use of comma in param lists) must be the same
3715                --  This is where we catch a misconformance like:
3716
3717                --    A, B : Integer
3718                --    A : Integer; B : Integer
3719
3720                --  which are represented identically in the tree except
3721                --  for the setting of the flags More_Ids and Prev_Ids.
3722
3723                if More_Ids (Old_Param) /= More_Ids (New_Param)
3724                  or else Prev_Ids (Old_Param) /= Prev_Ids (New_Param)
3725                then
3726                   Conformance_Error
3727                     ("\grouping of & does not match!", New_Formal);
3728                   return;
3729                end if;
3730             end;
3731          end if;
3732
3733          --  This label is required when skipping controlling formals
3734
3735          <<Skip_Controlling_Formal>>
3736
3737          Next_Formal (Old_Formal);
3738          Next_Formal (New_Formal);
3739       end loop;
3740
3741       if Present (Old_Formal) then
3742          Conformance_Error ("\too few parameters!");
3743          return;
3744
3745       elsif Present (New_Formal) then
3746          Conformance_Error ("\too many parameters!", New_Formal);
3747          return;
3748       end if;
3749    end Check_Conformance;
3750
3751    -----------------------
3752    -- Check_Conventions --
3753    -----------------------
3754
3755    procedure Check_Conventions (Typ : Entity_Id) is
3756       Ifaces_List : Elist_Id;
3757
3758       procedure Check_Convention (Op : Entity_Id);
3759       --  Verify that the convention of inherited dispatching operation Op is
3760       --  consistent among all subprograms it overrides. In order to minimize
3761       --  the search, Search_From is utilized to designate a specific point in
3762       --  the list rather than iterating over the whole list once more.
3763
3764       ----------------------
3765       -- Check_Convention --
3766       ----------------------
3767
3768       procedure Check_Convention (Op : Entity_Id) is
3769          Iface_Elmt      : Elmt_Id;
3770          Iface_Prim_Elmt : Elmt_Id;
3771          Iface_Prim      : Entity_Id;
3772
3773       begin
3774          Iface_Elmt := First_Elmt (Ifaces_List);
3775          while Present (Iface_Elmt) loop
3776             Iface_Prim_Elmt :=
3777                First_Elmt (Primitive_Operations (Node (Iface_Elmt)));
3778             while Present (Iface_Prim_Elmt) loop
3779                Iface_Prim := Node (Iface_Prim_Elmt);
3780
3781                if Is_Interface_Conformant (Typ, Iface_Prim, Op)
3782                  and then Convention (Iface_Prim) /= Convention (Op)
3783                then
3784                   Error_Msg_N
3785                     ("inconsistent conventions in primitive operations", Typ);
3786
3787                   Error_Msg_Name_1 := Chars (Op);
3788                   Error_Msg_Name_2 := Get_Convention_Name (Convention (Op));
3789                   Error_Msg_Sloc   := Sloc (Op);
3790
3791                   if Comes_From_Source (Op) then
3792                      if not Is_Overriding_Operation (Op) then
3793                         Error_Msg_N ("\\primitive % defined #", Typ);
3794                      else
3795                         Error_Msg_N ("\\overriding operation % with " &
3796                                      "convention % defined #", Typ);
3797                      end if;
3798
3799                   else pragma Assert (Present (Alias (Op)));
3800                      Error_Msg_Sloc := Sloc (Alias (Op));
3801                      Error_Msg_N ("\\inherited operation % with " &
3802                                   "convention % defined #", Typ);
3803                   end if;
3804
3805                   Error_Msg_Name_1 := Chars (Op);
3806                   Error_Msg_Name_2 :=
3807                     Get_Convention_Name (Convention (Iface_Prim));
3808                   Error_Msg_Sloc := Sloc (Iface_Prim);
3809                   Error_Msg_N ("\\overridden operation % with " &
3810                                "convention % defined #", Typ);
3811
3812                   --  Avoid cascading errors
3813
3814                   return;
3815                end if;
3816
3817                Next_Elmt (Iface_Prim_Elmt);
3818             end loop;
3819
3820             Next_Elmt (Iface_Elmt);
3821          end loop;
3822       end Check_Convention;
3823
3824       --  Local variables
3825
3826       Prim_Op      : Entity_Id;
3827       Prim_Op_Elmt : Elmt_Id;
3828
3829    --  Start of processing for Check_Conventions
3830
3831    begin
3832       if not Has_Interfaces (Typ) then
3833          return;
3834       end if;
3835
3836       Collect_Interfaces (Typ, Ifaces_List);
3837
3838       --  The algorithm checks every overriding dispatching operation against
3839       --  all the corresponding overridden dispatching operations, detecting
3840       --  differences in conventions.
3841
3842       Prim_Op_Elmt := First_Elmt (Primitive_Operations (Typ));
3843       while Present (Prim_Op_Elmt) loop
3844          Prim_Op := Node (Prim_Op_Elmt);
3845
3846          --  A small optimization: skip the predefined dispatching operations
3847          --  since they always have the same convention.
3848
3849          if not Is_Predefined_Dispatching_Operation (Prim_Op) then
3850             Check_Convention (Prim_Op);
3851          end if;
3852
3853          Next_Elmt (Prim_Op_Elmt);
3854       end loop;
3855    end Check_Conventions;
3856
3857    ------------------------------
3858    -- Check_Delayed_Subprogram --
3859    ------------------------------
3860
3861    procedure Check_Delayed_Subprogram (Designator : Entity_Id) is
3862       F : Entity_Id;
3863
3864       procedure Possible_Freeze (T : Entity_Id);
3865       --  T is the type of either a formal parameter or of the return type.
3866       --  If T is not yet frozen and needs a delayed freeze, then the
3867       --  subprogram itself must be delayed.
3868
3869       ---------------------
3870       -- Possible_Freeze --
3871       ---------------------
3872
3873       procedure Possible_Freeze (T : Entity_Id) is
3874       begin
3875          if Has_Delayed_Freeze (T)
3876            and then not Is_Frozen (T)
3877          then
3878             Set_Has_Delayed_Freeze (Designator);
3879
3880          elsif Is_Access_Type (T)
3881            and then Has_Delayed_Freeze (Designated_Type (T))
3882            and then not Is_Frozen (Designated_Type (T))
3883          then
3884             Set_Has_Delayed_Freeze (Designator);
3885          end if;
3886       end Possible_Freeze;
3887
3888    --  Start of processing for Check_Delayed_Subprogram
3889
3890    begin
3891       --  Never need to freeze abstract subprogram
3892
3893       if Ekind (Designator) /= E_Subprogram_Type
3894         and then Is_Abstract_Subprogram (Designator)
3895       then
3896          null;
3897       else
3898          --  Need delayed freeze if return type itself needs a delayed
3899          --  freeze and is not yet frozen.
3900
3901          Possible_Freeze (Etype (Designator));
3902          Possible_Freeze (Base_Type (Etype (Designator))); -- needed ???
3903
3904          --  Need delayed freeze if any of the formal types themselves need
3905          --  a delayed freeze and are not yet frozen.
3906
3907          F := First_Formal (Designator);
3908          while Present (F) loop
3909             Possible_Freeze (Etype (F));
3910             Possible_Freeze (Base_Type (Etype (F))); -- needed ???
3911             Next_Formal (F);
3912          end loop;
3913       end if;
3914
3915       --  Mark functions that return by reference. Note that it cannot be
3916       --  done for delayed_freeze subprograms because the underlying
3917       --  returned type may not be known yet (for private types)
3918
3919       if not Has_Delayed_Freeze (Designator)
3920         and then Expander_Active
3921       then
3922          declare
3923             Typ  : constant Entity_Id := Etype (Designator);
3924             Utyp : constant Entity_Id := Underlying_Type (Typ);
3925
3926          begin
3927             if Is_Inherently_Limited_Type (Typ) then
3928                Set_Returns_By_Ref (Designator);
3929
3930             elsif Present (Utyp) and then CW_Or_Has_Controlled_Part (Utyp) then
3931                Set_Returns_By_Ref (Designator);
3932             end if;
3933          end;
3934       end if;
3935    end Check_Delayed_Subprogram;
3936
3937    ------------------------------------
3938    -- Check_Discriminant_Conformance --
3939    ------------------------------------
3940
3941    procedure Check_Discriminant_Conformance
3942      (N        : Node_Id;
3943       Prev     : Entity_Id;
3944       Prev_Loc : Node_Id)
3945    is
3946       Old_Discr      : Entity_Id := First_Discriminant (Prev);
3947       New_Discr      : Node_Id   := First (Discriminant_Specifications (N));
3948       New_Discr_Id   : Entity_Id;
3949       New_Discr_Type : Entity_Id;
3950
3951       procedure Conformance_Error (Msg : String; N : Node_Id);
3952       --  Post error message for conformance error on given node. Two messages
3953       --  are output. The first points to the previous declaration with a
3954       --  general "no conformance" message. The second is the detailed reason,
3955       --  supplied as Msg. The parameter N provide information for a possible
3956       --  & insertion in the message.
3957
3958       -----------------------
3959       -- Conformance_Error --
3960       -----------------------
3961
3962       procedure Conformance_Error (Msg : String; N : Node_Id) is
3963       begin
3964          Error_Msg_Sloc := Sloc (Prev_Loc);
3965          Error_Msg_N ("not fully conformant with declaration#!", N);
3966          Error_Msg_NE (Msg, N, N);
3967       end Conformance_Error;
3968
3969    --  Start of processing for Check_Discriminant_Conformance
3970
3971    begin
3972       while Present (Old_Discr) and then Present (New_Discr) loop
3973
3974          New_Discr_Id := Defining_Identifier (New_Discr);
3975
3976          --  The subtype mark of the discriminant on the full type has not
3977          --  been analyzed so we do it here. For an access discriminant a new
3978          --  type is created.
3979
3980          if Nkind (Discriminant_Type (New_Discr)) = N_Access_Definition then
3981             New_Discr_Type :=
3982               Access_Definition (N, Discriminant_Type (New_Discr));
3983
3984          else
3985             Analyze (Discriminant_Type (New_Discr));
3986             New_Discr_Type := Etype (Discriminant_Type (New_Discr));
3987          end if;
3988
3989          if not Conforming_Types
3990                   (Etype (Old_Discr), New_Discr_Type, Fully_Conformant)
3991          then
3992             Conformance_Error ("type of & does not match!", New_Discr_Id);
3993             return;
3994          else
3995             --  Treat the new discriminant as an occurrence of the old one,
3996             --  for navigation purposes, and fill in some semantic
3997             --  information, for completeness.
3998
3999             Generate_Reference (Old_Discr, New_Discr_Id, 'r');
4000             Set_Etype (New_Discr_Id, Etype (Old_Discr));
4001             Set_Scope (New_Discr_Id, Scope (Old_Discr));
4002          end if;
4003
4004          --  Names must match
4005
4006          if Chars (Old_Discr) /= Chars (Defining_Identifier (New_Discr)) then
4007             Conformance_Error ("name & does not match!", New_Discr_Id);
4008             return;
4009          end if;
4010
4011          --  Default expressions must match
4012
4013          declare
4014             NewD : constant Boolean :=
4015                      Present (Expression (New_Discr));
4016             OldD : constant Boolean :=
4017                      Present (Expression (Parent (Old_Discr)));
4018
4019          begin
4020             if NewD or OldD then
4021
4022                --  The old default value has been analyzed and expanded,
4023                --  because the current full declaration will have frozen
4024                --  everything before. The new default values have not been
4025                --  expanded, so expand now to check conformance.
4026
4027                if NewD then
4028                   Preanalyze_Spec_Expression
4029                     (Expression (New_Discr), New_Discr_Type);
4030                end if;
4031
4032                if not (NewD and OldD)
4033                  or else not Fully_Conformant_Expressions
4034                               (Expression (Parent (Old_Discr)),
4035                                Expression (New_Discr))
4036
4037                then
4038                   Conformance_Error
4039                     ("default expression for & does not match!",
4040                      New_Discr_Id);
4041                   return;
4042                end if;
4043             end if;
4044          end;
4045
4046          --  In Ada 83 case, grouping must match: (A,B : X) /= (A : X; B : X)
4047
4048          if Ada_Version = Ada_83 then
4049             declare
4050                Old_Disc : constant Node_Id := Declaration_Node (Old_Discr);
4051
4052             begin
4053                --  Grouping (use of comma in param lists) must be the same
4054                --  This is where we catch a misconformance like:
4055
4056                --    A,B : Integer
4057                --    A : Integer; B : Integer
4058
4059                --  which are represented identically in the tree except
4060                --  for the setting of the flags More_Ids and Prev_Ids.
4061
4062                if More_Ids (Old_Disc) /= More_Ids (New_Discr)
4063                  or else Prev_Ids (Old_Disc) /= Prev_Ids (New_Discr)
4064                then
4065                   Conformance_Error
4066                     ("grouping of & does not match!", New_Discr_Id);
4067                   return;
4068                end if;
4069             end;
4070          end if;
4071
4072          Next_Discriminant (Old_Discr);
4073          Next (New_Discr);
4074       end loop;
4075
4076       if Present (Old_Discr) then
4077          Conformance_Error ("too few discriminants!", Defining_Identifier (N));
4078          return;
4079
4080       elsif Present (New_Discr) then
4081          Conformance_Error
4082            ("too many discriminants!", Defining_Identifier (New_Discr));
4083          return;
4084       end if;
4085    end Check_Discriminant_Conformance;
4086
4087    ----------------------------
4088    -- Check_Fully_Conformant --
4089    ----------------------------
4090
4091    procedure Check_Fully_Conformant
4092      (New_Id  : Entity_Id;
4093       Old_Id  : Entity_Id;
4094       Err_Loc : Node_Id := Empty)
4095    is
4096       Result : Boolean;
4097       pragma Warnings (Off, Result);
4098    begin
4099       Check_Conformance
4100         (New_Id, Old_Id, Fully_Conformant, True, Result, Err_Loc);
4101    end Check_Fully_Conformant;
4102
4103    ---------------------------
4104    -- Check_Mode_Conformant --
4105    ---------------------------
4106
4107    procedure Check_Mode_Conformant
4108      (New_Id   : Entity_Id;
4109       Old_Id   : Entity_Id;
4110       Err_Loc  : Node_Id := Empty;
4111       Get_Inst : Boolean := False)
4112    is
4113       Result : Boolean;
4114       pragma Warnings (Off, Result);
4115    begin
4116       Check_Conformance
4117         (New_Id, Old_Id, Mode_Conformant, True, Result, Err_Loc, Get_Inst);
4118    end Check_Mode_Conformant;
4119
4120    --------------------------------
4121    -- Check_Overriding_Indicator --
4122    --------------------------------
4123
4124    procedure Check_Overriding_Indicator
4125      (Subp            : Entity_Id;
4126       Overridden_Subp : Entity_Id;
4127       Is_Primitive    : Boolean)
4128    is
4129       Decl : Node_Id;
4130       Spec : Node_Id;
4131
4132    begin
4133       --  No overriding indicator for literals
4134
4135       if Ekind (Subp) = E_Enumeration_Literal then
4136          return;
4137
4138       elsif Ekind (Subp) = E_Entry then
4139          Decl := Parent (Subp);
4140
4141       else
4142          Decl := Unit_Declaration_Node (Subp);
4143       end if;
4144
4145       if Nkind_In (Decl, N_Subprogram_Body,
4146                          N_Subprogram_Body_Stub,
4147                          N_Subprogram_Declaration,
4148                          N_Abstract_Subprogram_Declaration,
4149                          N_Subprogram_Renaming_Declaration)
4150       then
4151          Spec := Specification (Decl);
4152
4153       elsif Nkind (Decl) = N_Entry_Declaration then
4154          Spec := Decl;
4155
4156       else
4157          return;
4158       end if;
4159
4160       if Present (Overridden_Subp) then
4161          if Must_Not_Override (Spec) then
4162             Error_Msg_Sloc := Sloc (Overridden_Subp);
4163
4164             if Ekind (Subp) = E_Entry then
4165                Error_Msg_NE
4166                  ("entry & overrides inherited operation #", Spec, Subp);
4167             else
4168                Error_Msg_NE
4169                  ("subprogram & overrides inherited operation #", Spec, Subp);
4170             end if;
4171
4172          elsif Is_Subprogram (Subp) then
4173             Set_Is_Overriding_Operation (Subp);
4174          end if;
4175
4176          if Style_Check and then not Must_Override (Spec) then
4177             Style.Missing_Overriding (Decl, Subp);
4178          end if;
4179
4180       --  If Subp is an operator, it may override a predefined operation.
4181       --  In that case overridden_subp is empty because of our implicit
4182       --  representation for predefined operators. We have to check whether the
4183       --  signature of Subp matches that of a predefined operator. Note that
4184       --  first argument provides the name of the operator, and the second
4185       --  argument the signature that may match that of a standard operation.
4186       --  If the indicator is overriding, then the operator must match a
4187       --  predefined signature, because we know already that there is no
4188       --  explicit overridden operation.
4189
4190       elsif Nkind (Subp) = N_Defining_Operator_Symbol then
4191
4192          if Must_Not_Override (Spec) then
4193             if not Is_Primitive then
4194                Error_Msg_N
4195                  ("overriding indicator only allowed "
4196                     & "if subprogram is primitive", Subp);
4197
4198             elsif Operator_Matches_Spec (Subp, Subp) then
4199                Error_Msg_NE
4200                  ("subprogram & overrides predefined operator ", Spec, Subp);
4201             end if;
4202
4203          elsif Must_Override (Spec) then
4204             if Is_Overriding_Operation (Subp) then
4205                Set_Is_Overriding_Operation (Subp);
4206
4207             elsif not Operator_Matches_Spec (Subp, Subp) then
4208                Error_Msg_NE ("subprogram & is not overriding", Spec, Subp);
4209             end if;
4210
4211          elsif not Error_Posted (Subp)
4212            and then Style_Check
4213            and then Operator_Matches_Spec (Subp, Subp)
4214              and then
4215                not Is_Predefined_File_Name
4216                  (Unit_File_Name (Get_Source_Unit (Subp)))
4217          then
4218             Set_Is_Overriding_Operation (Subp);
4219             Style.Missing_Overriding (Decl, Subp);
4220          end if;
4221
4222       elsif Must_Override (Spec) then
4223          if Ekind (Subp) = E_Entry then
4224             Error_Msg_NE ("entry & is not overriding", Spec, Subp);
4225          else
4226             Error_Msg_NE ("subprogram & is not overriding", Spec, Subp);
4227          end if;
4228
4229       --  If the operation is marked "not overriding" and it's not primitive
4230       --  then an error is issued, unless this is an operation of a task or
4231       --  protected type (RM05-8.3.1(3/2-4/2)). Error cases where "overriding"
4232       --  has been specified have already been checked above.
4233
4234       elsif Must_Not_Override (Spec)
4235         and then not Is_Primitive
4236         and then Ekind (Subp) /= E_Entry
4237         and then Ekind (Scope (Subp)) /= E_Protected_Type
4238       then
4239          Error_Msg_N
4240            ("overriding indicator only allowed if subprogram is primitive",
4241             Subp);
4242          return;
4243       end if;
4244    end Check_Overriding_Indicator;
4245
4246    -------------------
4247    -- Check_Returns --
4248    -------------------
4249
4250    --  Note: this procedure needs to know far too much about how the expander
4251    --  messes with exceptions. The use of the flag Exception_Junk and the
4252    --  incorporation of knowledge of Exp_Ch11.Expand_Local_Exception_Handlers
4253    --  works, but is not very clean. It would be better if the expansion
4254    --  routines would leave Original_Node working nicely, and we could use
4255    --  Original_Node here to ignore all the peculiar expander messing ???
4256
4257    procedure Check_Returns
4258      (HSS  : Node_Id;
4259       Mode : Character;
4260       Err  : out Boolean;
4261       Proc : Entity_Id := Empty)
4262    is
4263       Handler : Node_Id;
4264
4265       procedure Check_Statement_Sequence (L : List_Id);
4266       --  Internal recursive procedure to check a list of statements for proper
4267       --  termination by a return statement (or a transfer of control or a
4268       --  compound statement that is itself internally properly terminated).
4269
4270       ------------------------------
4271       -- Check_Statement_Sequence --
4272       ------------------------------
4273
4274       procedure Check_Statement_Sequence (L : List_Id) is
4275          Last_Stm : Node_Id;
4276          Stm      : Node_Id;
4277          Kind     : Node_Kind;
4278
4279          Raise_Exception_Call : Boolean;
4280          --  Set True if statement sequence terminated by Raise_Exception call
4281          --  or a Reraise_Occurrence call.
4282
4283       begin
4284          Raise_Exception_Call := False;
4285
4286          --  Get last real statement
4287
4288          Last_Stm := Last (L);
4289
4290          --  Deal with digging out exception handler statement sequences that
4291          --  have been transformed by the local raise to goto optimization.
4292          --  See Exp_Ch11.Expand_Local_Exception_Handlers for details. If this
4293          --  optimization has occurred, we are looking at something like:
4294
4295          --  begin
4296          --     original stmts in block
4297
4298          --  exception            \
4299          --     when excep1 =>     |
4300          --        goto L1;        | omitted if No_Exception_Propagation
4301          --     when excep2 =>     |
4302          --        goto L2;       /
4303          --  end;
4304
4305          --  goto L3;      -- skip handler when exception not raised
4306
4307          --  <<L1>>        -- target label for local exception
4308          --     begin
4309          --        estmts1
4310          --     end;
4311
4312          --     goto L3;
4313
4314          --  <<L2>>
4315          --     begin
4316          --        estmts2
4317          --     end;
4318
4319          --  <<L3>>
4320
4321          --  and what we have to do is to dig out the estmts1 and estmts2
4322          --  sequences (which were the original sequences of statements in
4323          --  the exception handlers) and check them.
4324
4325          if Nkind (Last_Stm) = N_Label
4326            and then Exception_Junk (Last_Stm)
4327          then
4328             Stm := Last_Stm;
4329             loop
4330                Prev (Stm);
4331                exit when No (Stm);
4332                exit when Nkind (Stm) /= N_Block_Statement;
4333                exit when not Exception_Junk (Stm);
4334                Prev (Stm);
4335                exit when No (Stm);
4336                exit when Nkind (Stm) /= N_Label;
4337                exit when not Exception_Junk (Stm);
4338                Check_Statement_Sequence
4339                  (Statements (Handled_Statement_Sequence (Next (Stm))));
4340
4341                Prev (Stm);
4342                Last_Stm := Stm;
4343                exit when No (Stm);
4344                exit when Nkind (Stm) /= N_Goto_Statement;
4345                exit when not Exception_Junk (Stm);
4346             end loop;
4347          end if;
4348
4349          --  Don't count pragmas
4350
4351          while Nkind (Last_Stm) = N_Pragma
4352
4353          --  Don't count call to SS_Release (can happen after Raise_Exception)
4354
4355            or else
4356              (Nkind (Last_Stm) = N_Procedure_Call_Statement
4357                 and then
4358               Nkind (Name (Last_Stm)) = N_Identifier
4359                 and then
4360               Is_RTE (Entity (Name (Last_Stm)), RE_SS_Release))
4361
4362          --  Don't count exception junk
4363
4364            or else
4365              (Nkind_In (Last_Stm, N_Goto_Statement,
4366                                    N_Label,
4367                                    N_Object_Declaration)
4368                 and then Exception_Junk (Last_Stm))
4369            or else Nkind (Last_Stm) in N_Push_xxx_Label
4370            or else Nkind (Last_Stm) in N_Pop_xxx_Label
4371          loop
4372             Prev (Last_Stm);
4373          end loop;
4374
4375          --  Here we have the "real" last statement
4376
4377          Kind := Nkind (Last_Stm);
4378
4379          --  Transfer of control, OK. Note that in the No_Return procedure
4380          --  case, we already diagnosed any explicit return statements, so
4381          --  we can treat them as OK in this context.
4382
4383          if Is_Transfer (Last_Stm) then
4384             return;
4385
4386          --  Check cases of explicit non-indirect procedure calls
4387
4388          elsif Kind = N_Procedure_Call_Statement
4389            and then Is_Entity_Name (Name (Last_Stm))
4390          then
4391             --  Check call to Raise_Exception procedure which is treated
4392             --  specially, as is a call to Reraise_Occurrence.
4393
4394             --  We suppress the warning in these cases since it is likely that
4395             --  the programmer really does not expect to deal with the case
4396             --  of Null_Occurrence, and thus would find a warning about a
4397             --  missing return curious, and raising Program_Error does not
4398             --  seem such a bad behavior if this does occur.
4399
4400             --  Note that in the Ada 2005 case for Raise_Exception, the actual
4401             --  behavior will be to raise Constraint_Error (see AI-329).
4402
4403             if Is_RTE (Entity (Name (Last_Stm)), RE_Raise_Exception)
4404                  or else
4405                Is_RTE (Entity (Name (Last_Stm)), RE_Reraise_Occurrence)
4406             then
4407                Raise_Exception_Call := True;
4408
4409                --  For Raise_Exception call, test first argument, if it is
4410                --  an attribute reference for a 'Identity call, then we know
4411                --  that the call cannot possibly return.
4412
4413                declare
4414                   Arg : constant Node_Id :=
4415                           Original_Node (First_Actual (Last_Stm));
4416                begin
4417                   if Nkind (Arg) = N_Attribute_Reference
4418                     and then Attribute_Name (Arg) = Name_Identity
4419                   then
4420                      return;
4421                   end if;
4422                end;
4423             end if;
4424
4425          --  If statement, need to look inside if there is an else and check
4426          --  each constituent statement sequence for proper termination.
4427
4428          elsif Kind = N_If_Statement
4429            and then Present (Else_Statements (Last_Stm))
4430          then
4431             Check_Statement_Sequence (Then_Statements (Last_Stm));
4432             Check_Statement_Sequence (Else_Statements (Last_Stm));
4433
4434             if Present (Elsif_Parts (Last_Stm)) then
4435                declare
4436                   Elsif_Part : Node_Id := First (Elsif_Parts (Last_Stm));
4437
4438                begin
4439                   while Present (Elsif_Part) loop
4440                      Check_Statement_Sequence (Then_Statements (Elsif_Part));
4441                      Next (Elsif_Part);
4442                   end loop;
4443                end;
4444             end if;
4445
4446             return;
4447
4448          --  Case statement, check each case for proper termination
4449
4450          elsif Kind = N_Case_Statement then
4451             declare
4452                Case_Alt : Node_Id;
4453             begin
4454                Case_Alt := First_Non_Pragma (Alternatives (Last_Stm));
4455                while Present (Case_Alt) loop
4456                   Check_Statement_Sequence (Statements (Case_Alt));
4457                   Next_Non_Pragma (Case_Alt);
4458                end loop;
4459             end;
4460
4461             return;
4462
4463          --  Block statement, check its handled sequence of statements
4464
4465          elsif Kind = N_Block_Statement then
4466             declare
4467                Err1 : Boolean;
4468
4469             begin
4470                Check_Returns
4471                  (Handled_Statement_Sequence (Last_Stm), Mode, Err1);
4472
4473                if Err1 then
4474                   Err := True;
4475                end if;
4476
4477                return;
4478             end;
4479
4480          --  Loop statement. If there is an iteration scheme, we can definitely
4481          --  fall out of the loop. Similarly if there is an exit statement, we
4482          --  can fall out. In either case we need a following return.
4483
4484          elsif Kind = N_Loop_Statement then
4485             if Present (Iteration_Scheme (Last_Stm))
4486               or else Has_Exit (Entity (Identifier (Last_Stm)))
4487             then
4488                null;
4489
4490             --  A loop with no exit statement or iteration scheme is either
4491             --  an infinite loop, or it has some other exit (raise/return).
4492             --  In either case, no warning is required.
4493
4494             else
4495                return;
4496             end if;
4497
4498          --  Timed entry call, check entry call and delay alternatives
4499
4500          --  Note: in expanded code, the timed entry call has been converted
4501          --  to a set of expanded statements on which the check will work
4502          --  correctly in any case.
4503
4504          elsif Kind = N_Timed_Entry_Call then
4505             declare
4506                ECA : constant Node_Id := Entry_Call_Alternative (Last_Stm);
4507                DCA : constant Node_Id := Delay_Alternative      (Last_Stm);
4508
4509             begin
4510                --  If statement sequence of entry call alternative is missing,
4511                --  then we can definitely fall through, and we post the error
4512                --  message on the entry call alternative itself.
4513
4514                if No (Statements (ECA)) then
4515                   Last_Stm := ECA;
4516
4517                --  If statement sequence of delay alternative is missing, then
4518                --  we can definitely fall through, and we post the error
4519                --  message on the delay alternative itself.
4520
4521                --  Note: if both ECA and DCA are missing the return, then we
4522                --  post only one message, should be enough to fix the bugs.
4523                --  If not we will get a message next time on the DCA when the
4524                --  ECA is fixed!
4525
4526                elsif No (Statements (DCA)) then
4527                   Last_Stm := DCA;
4528
4529                --  Else check both statement sequences
4530
4531                else
4532                   Check_Statement_Sequence (Statements (ECA));
4533                   Check_Statement_Sequence (Statements (DCA));
4534                   return;
4535                end if;
4536             end;
4537
4538          --  Conditional entry call, check entry call and else part
4539
4540          --  Note: in expanded code, the conditional entry call has been
4541          --  converted to a set of expanded statements on which the check
4542          --  will work correctly in any case.
4543
4544          elsif Kind = N_Conditional_Entry_Call then
4545             declare
4546                ECA : constant Node_Id := Entry_Call_Alternative (Last_Stm);
4547
4548             begin
4549                --  If statement sequence of entry call alternative is missing,
4550                --  then we can definitely fall through, and we post the error
4551                --  message on the entry call alternative itself.
4552
4553                if No (Statements (ECA)) then
4554                   Last_Stm := ECA;
4555
4556                --  Else check statement sequence and else part
4557
4558                else
4559                   Check_Statement_Sequence (Statements (ECA));
4560                   Check_Statement_Sequence (Else_Statements (Last_Stm));
4561                   return;
4562                end if;
4563             end;
4564          end if;
4565
4566          --  If we fall through, issue appropriate message
4567
4568          if Mode = 'F' then
4569             if not Raise_Exception_Call then
4570                Error_Msg_N
4571                  ("?RETURN statement missing following this statement!",
4572                   Last_Stm);
4573                Error_Msg_N
4574                  ("\?Program_Error may be raised at run time!",
4575                   Last_Stm);
4576             end if;
4577
4578             --  Note: we set Err even though we have not issued a warning
4579             --  because we still have a case of a missing return. This is
4580             --  an extremely marginal case, probably will never be noticed
4581             --  but we might as well get it right.
4582
4583             Err := True;
4584
4585          --  Otherwise we have the case of a procedure marked No_Return
4586
4587          else
4588             if not Raise_Exception_Call then
4589                Error_Msg_N
4590                  ("?implied return after this statement " &
4591                   "will raise Program_Error",
4592                   Last_Stm);
4593                Error_Msg_NE
4594                  ("\?procedure & is marked as No_Return!",
4595                   Last_Stm, Proc);
4596             end if;
4597
4598             declare
4599                RE : constant Node_Id :=
4600                       Make_Raise_Program_Error (Sloc (Last_Stm),
4601                         Reason => PE_Implicit_Return);
4602             begin
4603                Insert_After (Last_Stm, RE);
4604                Analyze (RE);
4605             end;
4606          end if;
4607       end Check_Statement_Sequence;
4608
4609    --  Start of processing for Check_Returns
4610
4611    begin
4612       Err := False;
4613       Check_Statement_Sequence (Statements (HSS));
4614
4615       if Present (Exception_Handlers (HSS)) then
4616          Handler := First_Non_Pragma (Exception_Handlers (HSS));
4617          while Present (Handler) loop
4618             Check_Statement_Sequence (Statements (Handler));
4619             Next_Non_Pragma (Handler);
4620          end loop;
4621       end if;
4622    end Check_Returns;
4623
4624    ----------------------------
4625    -- Check_Subprogram_Order --
4626    ----------------------------
4627
4628    procedure Check_Subprogram_Order (N : Node_Id) is
4629
4630       function Subprogram_Name_Greater (S1, S2 : String) return Boolean;
4631       --  This is used to check if S1 > S2 in the sense required by this
4632       --  test, for example nameab < namec, but name2 < name10.
4633
4634       -----------------------------
4635       -- Subprogram_Name_Greater --
4636       -----------------------------
4637
4638       function Subprogram_Name_Greater (S1, S2 : String) return Boolean is
4639          L1, L2 : Positive;
4640          N1, N2 : Natural;
4641
4642       begin
4643          --  Remove trailing numeric parts
4644
4645          L1 := S1'Last;
4646          while S1 (L1) in '0' .. '9' loop
4647             L1 := L1 - 1;
4648          end loop;
4649
4650          L2 := S2'Last;
4651          while S2 (L2) in '0' .. '9' loop
4652             L2 := L2 - 1;
4653          end loop;
4654
4655          --  If non-numeric parts non-equal, that's decisive
4656
4657          if S1 (S1'First .. L1) < S2 (S2'First .. L2) then
4658             return False;
4659
4660          elsif S1 (S1'First .. L1) > S2 (S2'First .. L2) then
4661             return True;
4662
4663          --  If non-numeric parts equal, compare suffixed numeric parts. Note
4664          --  that a missing suffix is treated as numeric zero in this test.
4665
4666          else
4667             N1 := 0;
4668             while L1 < S1'Last loop
4669                L1 := L1 + 1;
4670                N1 := N1 * 10 + Character'Pos (S1 (L1)) - Character'Pos ('0');
4671             end loop;
4672
4673             N2 := 0;
4674             while L2 < S2'Last loop
4675                L2 := L2 + 1;
4676                N2 := N2 * 10 + Character'Pos (S2 (L2)) - Character'Pos ('0');
4677             end loop;
4678
4679             return N1 > N2;
4680          end if;
4681       end Subprogram_Name_Greater;
4682
4683    --  Start of processing for Check_Subprogram_Order
4684
4685    begin
4686       --  Check body in alpha order if this is option
4687
4688       if Style_Check
4689         and then Style_Check_Order_Subprograms
4690         and then Nkind (N) = N_Subprogram_Body
4691         and then Comes_From_Source (N)
4692         and then In_Extended_Main_Source_Unit (N)
4693       then
4694          declare
4695             LSN : String_Ptr
4696                     renames Scope_Stack.Table
4697                               (Scope_Stack.Last).Last_Subprogram_Name;
4698
4699             Body_Id : constant Entity_Id :=
4700                         Defining_Entity (Specification (N));
4701
4702          begin
4703             Get_Decoded_Name_String (Chars (Body_Id));
4704
4705             if LSN /= null then
4706                if Subprogram_Name_Greater
4707                     (LSN.all, Name_Buffer (1 .. Name_Len))
4708                then
4709                   Style.Subprogram_Not_In_Alpha_Order (Body_Id);
4710                end if;
4711
4712                Free (LSN);
4713             end if;
4714
4715             LSN := new String'(Name_Buffer (1 .. Name_Len));
4716          end;
4717       end if;
4718    end Check_Subprogram_Order;
4719
4720    ------------------------------
4721    -- Check_Subtype_Conformant --
4722    ------------------------------
4723
4724    procedure Check_Subtype_Conformant
4725      (New_Id                   : Entity_Id;
4726       Old_Id                   : Entity_Id;
4727       Err_Loc                  : Node_Id := Empty;
4728       Skip_Controlling_Formals : Boolean := False)
4729    is
4730       Result : Boolean;
4731       pragma Warnings (Off, Result);
4732    begin
4733       Check_Conformance
4734         (New_Id, Old_Id, Subtype_Conformant, True, Result, Err_Loc,
4735          Skip_Controlling_Formals => Skip_Controlling_Formals);
4736    end Check_Subtype_Conformant;
4737
4738    ---------------------------
4739    -- Check_Type_Conformant --
4740    ---------------------------
4741
4742    procedure Check_Type_Conformant
4743      (New_Id  : Entity_Id;
4744       Old_Id  : Entity_Id;
4745       Err_Loc : Node_Id := Empty)
4746    is
4747       Result : Boolean;
4748       pragma Warnings (Off, Result);
4749    begin
4750       Check_Conformance
4751         (New_Id, Old_Id, Type_Conformant, True, Result, Err_Loc);
4752    end Check_Type_Conformant;
4753
4754    ----------------------
4755    -- Conforming_Types --
4756    ----------------------
4757
4758    function Conforming_Types
4759      (T1       : Entity_Id;
4760       T2       : Entity_Id;
4761       Ctype    : Conformance_Type;
4762       Get_Inst : Boolean := False) return Boolean
4763    is
4764       Type_1 : Entity_Id := T1;
4765       Type_2 : Entity_Id := T2;
4766       Are_Anonymous_Access_To_Subprogram_Types : Boolean := False;
4767
4768       function Base_Types_Match (T1, T2 : Entity_Id) return Boolean;
4769       --  If neither T1 nor T2 are generic actual types, or if they are in
4770       --  different scopes (e.g. parent and child instances), then verify that
4771       --  the base types are equal. Otherwise T1 and T2 must be on the same
4772       --  subtype chain. The whole purpose of this procedure is to prevent
4773       --  spurious ambiguities in an instantiation that may arise if two
4774       --  distinct generic types are instantiated with the same actual.
4775
4776       function Find_Designated_Type (T : Entity_Id) return Entity_Id;
4777       --  An access parameter can designate an incomplete type. If the
4778       --  incomplete type is the limited view of a type from a limited_
4779       --  with_clause, check whether the non-limited view is available. If
4780       --  it is a (non-limited) incomplete type, get the full view.
4781
4782       function Matches_Limited_With_View (T1, T2 : Entity_Id) return Boolean;
4783       --  Returns True if and only if either T1 denotes a limited view of T2
4784       --  or T2 denotes a limited view of T1. This can arise when the limited
4785       --  with view of a type is used in a subprogram declaration and the
4786       --  subprogram body is in the scope of a regular with clause for the
4787       --  same unit. In such a case, the two type entities can be considered
4788       --  identical for purposes of conformance checking.
4789
4790       ----------------------
4791       -- Base_Types_Match --
4792       ----------------------
4793
4794       function Base_Types_Match (T1, T2 : Entity_Id) return Boolean is
4795       begin
4796          if T1 = T2 then
4797             return True;
4798
4799          elsif Base_Type (T1) = Base_Type (T2) then
4800
4801             --  The following is too permissive. A more precise test should
4802             --  check that the generic actual is an ancestor subtype of the
4803             --  other ???.
4804
4805             return not Is_Generic_Actual_Type (T1)
4806               or else not Is_Generic_Actual_Type (T2)
4807               or else Scope (T1) /= Scope (T2);
4808
4809          else
4810             return False;
4811          end if;
4812       end Base_Types_Match;
4813
4814       --------------------------
4815       -- Find_Designated_Type --
4816       --------------------------
4817
4818       function Find_Designated_Type (T : Entity_Id) return Entity_Id is
4819          Desig : Entity_Id;
4820
4821       begin
4822          Desig := Directly_Designated_Type (T);
4823
4824          if Ekind (Desig) = E_Incomplete_Type then
4825
4826             --  If regular incomplete type, get full view if available
4827
4828             if Present (Full_View (Desig)) then
4829                Desig := Full_View (Desig);
4830
4831             --  If limited view of a type, get non-limited view if available,
4832             --  and check again for a regular incomplete type.
4833
4834             elsif Present (Non_Limited_View (Desig)) then
4835                Desig := Get_Full_View (Non_Limited_View (Desig));
4836             end if;
4837          end if;
4838
4839          return Desig;
4840       end Find_Designated_Type;
4841
4842       -------------------------------
4843       -- Matches_Limited_With_View --
4844       -------------------------------
4845
4846       function Matches_Limited_With_View (T1, T2 : Entity_Id) return Boolean is
4847       begin
4848          --  In some cases a type imported through a limited_with clause, and
4849          --  its nonlimited view are both visible, for example in an anonymous
4850          --  access-to-class-wide type in a formal. Both entities designate the
4851          --  same type.
4852
4853          if From_With_Type (T1)
4854            and then T2 = Available_View (T1)
4855          then
4856             return True;
4857
4858          elsif From_With_Type (T2)
4859            and then T1 = Available_View (T2)
4860          then
4861             return True;
4862
4863          else
4864             return False;
4865          end if;
4866       end Matches_Limited_With_View;
4867
4868    --  Start of processing for Conforming_Types
4869
4870    begin
4871       --  The context is an instance association for a formal
4872       --  access-to-subprogram type; the formal parameter types require
4873       --  mapping because they may denote other formal parameters of the
4874       --  generic unit.
4875
4876       if Get_Inst then
4877          Type_1 := Get_Instance_Of (T1);
4878          Type_2 := Get_Instance_Of (T2);
4879       end if;
4880
4881       --  If one of the types is a view of the other introduced by a limited
4882       --  with clause, treat these as conforming for all purposes.
4883
4884       if Matches_Limited_With_View (T1, T2) then
4885          return True;
4886
4887       elsif Base_Types_Match (Type_1, Type_2) then
4888          return Ctype <= Mode_Conformant
4889            or else Subtypes_Statically_Match (Type_1, Type_2);
4890
4891       elsif Is_Incomplete_Or_Private_Type (Type_1)
4892         and then Present (Full_View (Type_1))
4893         and then Base_Types_Match (Full_View (Type_1), Type_2)
4894       then
4895          return Ctype <= Mode_Conformant
4896            or else Subtypes_Statically_Match (Full_View (Type_1), Type_2);
4897
4898       elsif Ekind (Type_2) = E_Incomplete_Type
4899         and then Present (Full_View (Type_2))
4900         and then Base_Types_Match (Type_1, Full_View (Type_2))
4901       then
4902          return Ctype <= Mode_Conformant
4903            or else Subtypes_Statically_Match (Type_1, Full_View (Type_2));
4904
4905       elsif Is_Private_Type (Type_2)
4906         and then In_Instance
4907         and then Present (Full_View (Type_2))
4908         and then Base_Types_Match (Type_1, Full_View (Type_2))
4909       then
4910          return Ctype <= Mode_Conformant
4911            or else Subtypes_Statically_Match (Type_1, Full_View (Type_2));
4912       end if;
4913
4914       --  Ada 2005 (AI-254): Anonymous access-to-subprogram types must be
4915       --  treated recursively because they carry a signature.
4916
4917       Are_Anonymous_Access_To_Subprogram_Types :=
4918         Ekind (Type_1) = Ekind (Type_2)
4919           and then
4920             (Ekind (Type_1) = E_Anonymous_Access_Subprogram_Type
4921              or else
4922                Ekind (Type_1) = E_Anonymous_Access_Protected_Subprogram_Type);
4923
4924       --  Test anonymous access type case. For this case, static subtype
4925       --  matching is required for mode conformance (RM 6.3.1(15)). We check
4926       --  the base types because we may have built internal subtype entities
4927       --  to handle null-excluding types (see Process_Formals).
4928
4929       if (Ekind (Base_Type (Type_1)) = E_Anonymous_Access_Type
4930             and then
4931           Ekind (Base_Type (Type_2)) = E_Anonymous_Access_Type)
4932         or else Are_Anonymous_Access_To_Subprogram_Types -- Ada 2005 (AI-254)
4933       then
4934          declare
4935             Desig_1 : Entity_Id;
4936             Desig_2 : Entity_Id;
4937
4938          begin
4939             --  In Ada2005, access constant indicators must match for
4940             --  subtype conformance.
4941
4942             if Ada_Version >= Ada_05
4943               and then Ctype >= Subtype_Conformant
4944               and then
4945                 Is_Access_Constant (Type_1) /= Is_Access_Constant (Type_2)
4946             then
4947                return False;
4948             end if;
4949
4950             Desig_1 := Find_Designated_Type (Type_1);
4951
4952             Desig_2 := Find_Designated_Type (Type_2);
4953
4954             --  If the context is an instance association for a formal
4955             --  access-to-subprogram type; formal access parameter designated
4956             --  types require mapping because they may denote other formal
4957             --  parameters of the generic unit.
4958
4959             if Get_Inst then
4960                Desig_1 := Get_Instance_Of (Desig_1);
4961                Desig_2 := Get_Instance_Of (Desig_2);
4962             end if;
4963
4964             --  It is possible for a Class_Wide_Type to be introduced for an
4965             --  incomplete type, in which case there is a separate class_ wide
4966             --  type for the full view. The types conform if their Etypes
4967             --  conform, i.e. one may be the full view of the other. This can
4968             --  only happen in the context of an access parameter, other uses
4969             --  of an incomplete Class_Wide_Type are illegal.
4970
4971             if Is_Class_Wide_Type (Desig_1)
4972               and then Is_Class_Wide_Type (Desig_2)
4973             then
4974                return
4975                  Conforming_Types
4976                    (Etype (Base_Type (Desig_1)),
4977                     Etype (Base_Type (Desig_2)), Ctype);
4978
4979             elsif Are_Anonymous_Access_To_Subprogram_Types then
4980                if Ada_Version < Ada_05 then
4981                   return Ctype = Type_Conformant
4982                     or else
4983                       Subtypes_Statically_Match (Desig_1, Desig_2);
4984
4985                --  We must check the conformance of the signatures themselves
4986
4987                else
4988                   declare
4989                      Conformant : Boolean;
4990                   begin
4991                      Check_Conformance
4992                        (Desig_1, Desig_2, Ctype, False, Conformant);
4993                      return Conformant;
4994                   end;
4995                end if;
4996
4997             else
4998                return Base_Type (Desig_1) = Base_Type (Desig_2)
4999                 and then (Ctype = Type_Conformant
5000                             or else
5001                           Subtypes_Statically_Match (Desig_1, Desig_2));
5002             end if;
5003          end;
5004
5005       --  Otherwise definitely no match
5006
5007       else
5008          if ((Ekind (Type_1) = E_Anonymous_Access_Type
5009                and then Is_Access_Type (Type_2))
5010             or else (Ekind (Type_2) = E_Anonymous_Access_Type
5011                        and then Is_Access_Type (Type_1)))
5012            and then
5013              Conforming_Types
5014                (Designated_Type (Type_1), Designated_Type (Type_2), Ctype)
5015          then
5016             May_Hide_Profile := True;
5017          end if;
5018
5019          return False;
5020       end if;
5021    end Conforming_Types;
5022
5023    --------------------------
5024    -- Create_Extra_Formals --
5025    --------------------------
5026
5027    procedure Create_Extra_Formals (E : Entity_Id) is
5028       Formal      : Entity_Id;
5029       First_Extra : Entity_Id := Empty;
5030       Last_Extra  : Entity_Id;
5031       Formal_Type : Entity_Id;
5032       P_Formal    : Entity_Id := Empty;
5033
5034       function Add_Extra_Formal
5035         (Assoc_Entity : Entity_Id;
5036          Typ          : Entity_Id;
5037          Scope        : Entity_Id;
5038          Suffix       : String) return Entity_Id;
5039       --  Add an extra formal to the current list of formals and extra formals.
5040       --  The extra formal is added to the end of the list of extra formals,
5041       --  and also returned as the result. These formals are always of mode IN.
5042       --  The new formal has the type Typ, is declared in Scope, and its name
5043       --  is given by a concatenation of the name of Assoc_Entity and Suffix.
5044
5045       ----------------------
5046       -- Add_Extra_Formal --
5047       ----------------------
5048
5049       function Add_Extra_Formal
5050         (Assoc_Entity : Entity_Id;
5051          Typ          : Entity_Id;
5052          Scope        : Entity_Id;
5053          Suffix       : String) return Entity_Id
5054       is
5055          EF : constant Entity_Id :=
5056                 Make_Defining_Identifier (Sloc (Assoc_Entity),
5057                   Chars  => New_External_Name (Chars (Assoc_Entity),
5058                                                Suffix => Suffix));
5059
5060       begin
5061          --  A little optimization. Never generate an extra formal for the
5062          --  _init operand of an initialization procedure, since it could
5063          --  never be used.
5064
5065          if Chars (Formal) = Name_uInit then
5066             return Empty;
5067          end if;
5068
5069          Set_Ekind           (EF, E_In_Parameter);
5070          Set_Actual_Subtype  (EF, Typ);
5071          Set_Etype           (EF, Typ);
5072          Set_Scope           (EF, Scope);
5073          Set_Mechanism       (EF, Default_Mechanism);
5074          Set_Formal_Validity (EF);
5075
5076          if No (First_Extra) then
5077             First_Extra := EF;
5078             Set_Extra_Formals (Scope, First_Extra);
5079          end if;
5080
5081          if Present (Last_Extra) then
5082             Set_Extra_Formal (Last_Extra, EF);
5083          end if;
5084
5085          Last_Extra := EF;
5086
5087          return EF;
5088       end Add_Extra_Formal;
5089
5090    --  Start of processing for Create_Extra_Formals
5091
5092    begin
5093       --  We never generate extra formals if expansion is not active
5094       --  because we don't need them unless we are generating code.
5095
5096       if not Expander_Active then
5097          return;
5098       end if;
5099
5100       --  If this is a derived subprogram then the subtypes of the parent
5101       --  subprogram's formal parameters will be used to determine the need
5102       --  for extra formals.
5103
5104       if Is_Overloadable (E) and then Present (Alias (E)) then
5105          P_Formal := First_Formal (Alias (E));
5106       end if;
5107
5108       Last_Extra := Empty;
5109       Formal := First_Formal (E);
5110       while Present (Formal) loop
5111          Last_Extra := Formal;
5112          Next_Formal (Formal);
5113       end loop;
5114
5115       --  If Extra_formals were already created, don't do it again. This
5116       --  situation may arise for subprogram types created as part of
5117       --  dispatching calls (see Expand_Dispatching_Call)
5118
5119       if Present (Last_Extra) and then
5120         Present (Extra_Formal (Last_Extra))
5121       then
5122          return;
5123       end if;
5124
5125       --  If the subprogram is a predefined dispatching subprogram then don't
5126       --  generate any extra constrained or accessibility level formals. In
5127       --  general we suppress these for internal subprograms (by not calling
5128       --  Freeze_Subprogram and Create_Extra_Formals at all), but internally
5129       --  generated stream attributes do get passed through because extra
5130       --  build-in-place formals are needed in some cases (limited 'Input).
5131
5132       if Is_Predefined_Dispatching_Operation (E) then
5133          goto Test_For_BIP_Extras;
5134       end if;
5135
5136       Formal := First_Formal (E);
5137       while Present (Formal) loop
5138
5139          --  Create extra formal for supporting the attribute 'Constrained.
5140          --  The case of a private type view without discriminants also
5141          --  requires the extra formal if the underlying type has defaulted
5142          --  discriminants.
5143
5144          if Ekind (Formal) /= E_In_Parameter then
5145             if Present (P_Formal) then
5146                Formal_Type := Etype (P_Formal);
5147             else
5148                Formal_Type := Etype (Formal);
5149             end if;
5150
5151             --  Do not produce extra formals for Unchecked_Union parameters.
5152             --  Jump directly to the end of the loop.
5153
5154             if Is_Unchecked_Union (Base_Type (Formal_Type)) then
5155                goto Skip_Extra_Formal_Generation;
5156             end if;
5157
5158             if not Has_Discriminants (Formal_Type)
5159               and then Ekind (Formal_Type) in Private_Kind
5160               and then Present (Underlying_Type (Formal_Type))
5161             then
5162                Formal_Type := Underlying_Type (Formal_Type);
5163             end if;
5164
5165             if Has_Discriminants (Formal_Type)
5166               and then not Is_Constrained (Formal_Type)
5167               and then not Is_Indefinite_Subtype (Formal_Type)
5168             then
5169                Set_Extra_Constrained
5170                  (Formal, Add_Extra_Formal (Formal, Standard_Boolean, E, "F"));
5171             end if;
5172          end if;
5173
5174          --  Create extra formal for supporting accessibility checking. This
5175          --  is done for both anonymous access formals and formals of named
5176          --  access types that are marked as controlling formals. The latter
5177          --  case can occur when Expand_Dispatching_Call creates a subprogram
5178          --  type and substitutes the types of access-to-class-wide actuals
5179          --  for the anonymous access-to-specific-type of controlling formals.
5180          --  Base_Type is applied because in cases where there is a null
5181          --  exclusion the formal may have an access subtype.
5182
5183          --  This is suppressed if we specifically suppress accessibility
5184          --  checks at the package level for either the subprogram, or the
5185          --  package in which it resides. However, we do not suppress it
5186          --  simply if the scope has accessibility checks suppressed, since
5187          --  this could cause trouble when clients are compiled with a
5188          --  different suppression setting. The explicit checks at the
5189          --  package level are safe from this point of view.
5190
5191          if (Ekind (Base_Type (Etype (Formal))) = E_Anonymous_Access_Type
5192               or else (Is_Controlling_Formal (Formal)
5193                         and then Is_Access_Type (Base_Type (Etype (Formal)))))
5194            and then not
5195              (Explicit_Suppress (E, Accessibility_Check)
5196                or else
5197               Explicit_Suppress (Scope (E), Accessibility_Check))
5198            and then
5199              (No (P_Formal)
5200                or else Present (Extra_Accessibility (P_Formal)))
5201          then
5202             --  Temporary kludge: for now we avoid creating the extra formal
5203             --  for access parameters of protected operations because of
5204             --  problem with the case of internal protected calls. ???
5205
5206             if Nkind (Parent (Parent (Parent (E)))) /= N_Protected_Definition
5207               and then Nkind (Parent (Parent (Parent (E)))) /= N_Protected_Body
5208             then
5209                Set_Extra_Accessibility
5210                  (Formal, Add_Extra_Formal (Formal, Standard_Natural, E, "F"));
5211             end if;
5212          end if;
5213
5214          --  This label is required when skipping extra formal generation for
5215          --  Unchecked_Union parameters.
5216
5217          <<Skip_Extra_Formal_Generation>>
5218
5219          if Present (P_Formal) then
5220             Next_Formal (P_Formal);
5221          end if;
5222
5223          Next_Formal (Formal);
5224       end loop;
5225
5226       <<Test_For_BIP_Extras>>
5227
5228       --  Ada 2005 (AI-318-02): In the case of build-in-place functions, add
5229       --  appropriate extra formals. See type Exp_Ch6.BIP_Formal_Kind.
5230
5231       if Ada_Version >= Ada_05 and then Is_Build_In_Place_Function (E) then
5232          declare
5233             Result_Subt : constant Entity_Id := Etype (E);
5234
5235             Discard : Entity_Id;
5236             pragma Warnings (Off, Discard);
5237
5238          begin
5239             --  In the case of functions with unconstrained result subtypes,
5240             --  add a 3-state formal indicating whether the return object is
5241             --  allocated by the caller (0), or should be allocated by the
5242             --  callee on the secondary stack (1) or in the global heap (2).
5243             --  For the moment we just use Natural for the type of this formal.
5244             --  Note that this formal isn't usually needed in the case where
5245             --  the result subtype is constrained, but it is needed when the
5246             --  function has a tagged result, because generally such functions
5247             --  can be called in a dispatching context and such calls must be
5248             --  handled like calls to a class-wide function.
5249
5250             if not Is_Constrained (Underlying_Type (Result_Subt))
5251               or else Is_Tagged_Type (Underlying_Type (Result_Subt))
5252             then
5253                Discard :=
5254                  Add_Extra_Formal
5255                    (E, Standard_Natural,
5256                     E, BIP_Formal_Suffix (BIP_Alloc_Form));
5257             end if;
5258
5259             --  In the case of functions whose result type has controlled
5260             --  parts, we have an extra formal of type
5261             --  System.Finalization_Implementation.Finalizable_Ptr_Ptr. That
5262             --  is, we are passing a pointer to a finalization list (which is
5263             --  itself a pointer). This extra formal is then passed along to
5264             --  Move_Final_List in case of successful completion of a return
5265             --  statement. We cannot pass an 'in out' parameter, because we
5266             --  need to update the finalization list during an abort-deferred
5267             --  region, rather than using copy-back after the function
5268             --  returns. This is true even if we are able to get away with
5269             --  having 'in out' parameters, which are normally illegal for
5270             --  functions. This formal is also needed when the function has
5271             --  a tagged result.
5272
5273             if Needs_BIP_Final_List (E) then
5274                Discard :=
5275                  Add_Extra_Formal
5276                    (E, RTE (RE_Finalizable_Ptr_Ptr),
5277                     E, BIP_Formal_Suffix (BIP_Final_List));
5278             end if;
5279
5280             --  If the result type contains tasks, we have two extra formals:
5281             --  the master of the tasks to be created, and the caller's
5282             --  activation chain.
5283
5284             if Has_Task (Result_Subt) then
5285                Discard :=
5286                  Add_Extra_Formal
5287                    (E, RTE (RE_Master_Id),
5288                     E, BIP_Formal_Suffix (BIP_Master));
5289                Discard :=
5290                  Add_Extra_Formal
5291                    (E, RTE (RE_Activation_Chain_Access),
5292                     E, BIP_Formal_Suffix (BIP_Activation_Chain));
5293             end if;
5294
5295             --  All build-in-place functions get an extra formal that will be
5296             --  passed the address of the return object within the caller.
5297
5298             declare
5299                Formal_Type : constant Entity_Id :=
5300                                Create_Itype
5301                                  (E_Anonymous_Access_Type, E,
5302                                   Scope_Id => Scope (E));
5303             begin
5304                Set_Directly_Designated_Type (Formal_Type, Result_Subt);
5305                Set_Etype (Formal_Type, Formal_Type);
5306                Set_Depends_On_Private
5307                  (Formal_Type, Has_Private_Component (Formal_Type));
5308                Set_Is_Public (Formal_Type, Is_Public (Scope (Formal_Type)));
5309                Set_Is_Access_Constant (Formal_Type, False);
5310
5311                --  Ada 2005 (AI-50217): Propagate the attribute that indicates
5312                --  the designated type comes from the limited view (for
5313                --  back-end purposes).
5314
5315                Set_From_With_Type (Formal_Type, From_With_Type (Result_Subt));
5316
5317                Layout_Type (Formal_Type);
5318
5319                Discard :=
5320                  Add_Extra_Formal
5321                    (E, Formal_Type, E, BIP_Formal_Suffix (BIP_Object_Access));
5322             end;
5323          end;
5324       end if;
5325    end Create_Extra_Formals;
5326
5327    -----------------------------
5328    -- Enter_Overloaded_Entity --
5329    -----------------------------
5330
5331    procedure Enter_Overloaded_Entity (S : Entity_Id) is
5332       E   : Entity_Id := Current_Entity_In_Scope (S);
5333       C_E : Entity_Id := Current_Entity (S);
5334
5335    begin
5336       if Present (E) then
5337          Set_Has_Homonym (E);
5338          Set_Has_Homonym (S);
5339       end if;
5340
5341       Set_Is_Immediately_Visible (S);
5342       Set_Scope (S, Current_Scope);
5343
5344       --  Chain new entity if front of homonym in current scope, so that
5345       --  homonyms are contiguous.
5346
5347       if Present (E)
5348         and then E /= C_E
5349       then
5350          while Homonym (C_E) /= E loop
5351             C_E := Homonym (C_E);
5352          end loop;
5353
5354          Set_Homonym (C_E, S);
5355
5356       else
5357          E := C_E;
5358          Set_Current_Entity (S);
5359       end if;
5360
5361       Set_Homonym (S, E);
5362
5363       Append_Entity (S, Current_Scope);
5364       Set_Public_Status (S);
5365
5366       if Debug_Flag_E then
5367          Write_Str ("New overloaded entity chain: ");
5368          Write_Name (Chars (S));
5369
5370          E := S;
5371          while Present (E) loop
5372             Write_Str (" "); Write_Int (Int (E));
5373             E := Homonym (E);
5374          end loop;
5375
5376          Write_Eol;
5377       end if;
5378
5379       --  Generate warning for hiding
5380
5381       if Warn_On_Hiding
5382         and then Comes_From_Source (S)
5383         and then In_Extended_Main_Source_Unit (S)
5384       then
5385          E := S;
5386          loop
5387             E := Homonym (E);
5388             exit when No (E);
5389
5390             --  Warn unless genuine overloading
5391
5392             if (not Is_Overloadable (E) or else Subtype_Conformant (E, S))
5393                   and then (Is_Immediately_Visible (E)
5394                               or else
5395                             Is_Potentially_Use_Visible (S))
5396             then
5397                Error_Msg_Sloc := Sloc (E);
5398                Error_Msg_N ("declaration of & hides one#?", S);
5399             end if;
5400          end loop;
5401       end if;
5402    end Enter_Overloaded_Entity;
5403
5404    -----------------------------
5405    -- Find_Corresponding_Spec --
5406    -----------------------------
5407
5408    function Find_Corresponding_Spec
5409      (N          : Node_Id;
5410       Post_Error : Boolean := True) return Entity_Id
5411    is
5412       Spec       : constant Node_Id   := Specification (N);
5413       Designator : constant Entity_Id := Defining_Entity (Spec);
5414
5415       E : Entity_Id;
5416
5417    begin
5418       E := Current_Entity (Designator);
5419       while Present (E) loop
5420
5421          --  We are looking for a matching spec. It must have the same scope,
5422          --  and the same name, and either be type conformant, or be the case
5423          --  of a library procedure spec and its body (which belong to one
5424          --  another regardless of whether they are type conformant or not).
5425
5426          if Scope (E) = Current_Scope then
5427             if Current_Scope = Standard_Standard
5428               or else (Ekind (E) = Ekind (Designator)
5429                          and then Type_Conformant (E, Designator))
5430             then
5431                --  Within an instantiation, we know that spec and body are
5432                --  subtype conformant, because they were subtype conformant
5433                --  in the generic. We choose the subtype-conformant entity
5434                --  here as well, to resolve spurious ambiguities in the
5435                --  instance that were not present in the generic (i.e. when
5436                --  two different types are given the same actual). If we are
5437                --  looking for a spec to match a body, full conformance is
5438                --  expected.
5439
5440                if In_Instance then
5441                   Set_Convention (Designator, Convention (E));
5442
5443                   if Nkind (N) = N_Subprogram_Body
5444                     and then Present (Homonym (E))
5445                     and then not Fully_Conformant (E, Designator)
5446                   then
5447                      goto Next_Entity;
5448
5449                   elsif not Subtype_Conformant (E, Designator) then
5450                      goto Next_Entity;
5451                   end if;
5452                end if;
5453
5454                if not Has_Completion (E) then
5455                   if Nkind (N) /= N_Subprogram_Body_Stub then
5456                      Set_Corresponding_Spec (N, E);
5457                   end if;
5458
5459                   Set_Has_Completion (E);
5460                   return E;
5461
5462                elsif Nkind (Parent (N)) = N_Subunit then
5463
5464                   --  If this is the proper body of a subunit, the completion
5465                   --  flag is set when analyzing the stub.
5466
5467                   return E;
5468
5469                --  If E is an internal function with a controlling result
5470                --  that was created for an operation inherited by a null
5471                --  extension, it may be overridden by a body without a previous
5472                --  spec (one more reason why these should be shunned). In that
5473                --  case remove the generated body, because the current one is
5474                --  the explicit overriding.
5475
5476                elsif Ekind (E) = E_Function
5477                  and then Ada_Version >= Ada_05
5478                  and then not Comes_From_Source (E)
5479                  and then Has_Controlling_Result (E)
5480                  and then Is_Null_Extension (Etype (E))
5481                  and then Comes_From_Source (Spec)
5482                then
5483                   Set_Has_Completion (E, False);
5484
5485                   if Expander_Active then
5486                      Remove
5487                        (Unit_Declaration_Node
5488                          (Corresponding_Body (Unit_Declaration_Node (E))));
5489                      return E;
5490
5491                   --  If expansion is disabled, the wrapper function has not
5492                   --  been generated, and this is the standard case of a late
5493                   --  body overriding an inherited operation.
5494
5495                   else
5496                      return Empty;
5497                   end if;
5498
5499                --  If the body already exists, then this is an error unless
5500                --  the previous declaration is the implicit declaration of a
5501                --  derived subprogram, or this is a spurious overloading in an
5502                --  instance.
5503
5504                elsif No (Alias (E))
5505                  and then not Is_Intrinsic_Subprogram (E)
5506                  and then not In_Instance
5507                  and then Post_Error
5508                then
5509                   Error_Msg_Sloc := Sloc (E);
5510                   if Is_Imported (E) then
5511                      Error_Msg_NE
5512                       ("body not allowed for imported subprogram & declared#",
5513                         N, E);
5514                   else
5515                      Error_Msg_NE ("duplicate body for & declared#", N, E);
5516                   end if;
5517                end if;
5518
5519             --  Child units cannot be overloaded, so a conformance mismatch
5520             --  between body and a previous spec is an error.
5521
5522             elsif Is_Child_Unit (E)
5523               and then
5524                 Nkind (Unit_Declaration_Node (Designator)) = N_Subprogram_Body
5525               and then
5526                 Nkind (Parent (Unit_Declaration_Node (Designator))) =
5527                   N_Compilation_Unit
5528               and then Post_Error
5529             then
5530                Error_Msg_N
5531                  ("body of child unit does not match previous declaration", N);
5532             end if;
5533          end if;
5534
5535          <<Next_Entity>>
5536             E := Homonym (E);
5537       end loop;
5538
5539       --  On exit, we know that no previous declaration of subprogram exists
5540
5541       return Empty;
5542    end Find_Corresponding_Spec;
5543
5544    ----------------------
5545    -- Fully_Conformant --
5546    ----------------------
5547
5548    function Fully_Conformant (New_Id, Old_Id : Entity_Id) return Boolean is
5549       Result : Boolean;
5550    begin
5551       Check_Conformance (New_Id, Old_Id, Fully_Conformant, False, Result);
5552       return Result;
5553    end Fully_Conformant;
5554
5555    ----------------------------------
5556    -- Fully_Conformant_Expressions --
5557    ----------------------------------
5558
5559    function Fully_Conformant_Expressions
5560      (Given_E1 : Node_Id;
5561       Given_E2 : Node_Id) return Boolean
5562    is
5563       E1 : constant Node_Id := Original_Node (Given_E1);
5564       E2 : constant Node_Id := Original_Node (Given_E2);
5565       --  We always test conformance on original nodes, since it is possible
5566       --  for analysis and/or expansion to make things look as though they
5567       --  conform when they do not, e.g. by converting 1+2 into 3.
5568
5569       function FCE (Given_E1, Given_E2 : Node_Id) return Boolean
5570         renames Fully_Conformant_Expressions;
5571
5572       function FCL (L1, L2 : List_Id) return Boolean;
5573       --  Compare elements of two lists for conformance. Elements have to
5574       --  be conformant, and actuals inserted as default parameters do not
5575       --  match explicit actuals with the same value.
5576
5577       function FCO (Op_Node, Call_Node : Node_Id) return Boolean;
5578       --  Compare an operator node with a function call
5579
5580       ---------
5581       -- FCL --
5582       ---------
5583
5584       function FCL (L1, L2 : List_Id) return Boolean is
5585          N1, N2 : Node_Id;
5586
5587       begin
5588          if L1 = No_List then
5589             N1 := Empty;
5590          else
5591             N1 := First (L1);
5592          end if;
5593
5594          if L2 = No_List then
5595             N2 := Empty;
5596          else
5597             N2 := First (L2);
5598          end if;
5599
5600          --  Compare two lists, skipping rewrite insertions (we want to
5601          --  compare the original trees, not the expanded versions!)
5602
5603          loop
5604             if Is_Rewrite_Insertion (N1) then
5605                Next (N1);
5606             elsif Is_Rewrite_Insertion (N2) then
5607                Next (N2);
5608             elsif No (N1) then
5609                return No (N2);
5610             elsif No (N2) then
5611                return False;
5612             elsif not FCE (N1, N2) then
5613                return False;
5614             else
5615                Next (N1);
5616                Next (N2);
5617             end if;
5618          end loop;
5619       end FCL;
5620
5621       ---------
5622       -- FCO --
5623       ---------
5624
5625       function FCO (Op_Node, Call_Node : Node_Id) return Boolean is
5626          Actuals : constant List_Id := Parameter_Associations (Call_Node);
5627          Act     : Node_Id;
5628
5629       begin
5630          if No (Actuals)
5631             or else Entity (Op_Node) /= Entity (Name (Call_Node))
5632          then
5633             return False;
5634
5635          else
5636             Act := First (Actuals);
5637
5638             if Nkind (Op_Node) in N_Binary_Op then
5639
5640                if not FCE (Left_Opnd (Op_Node), Act) then
5641                   return False;
5642                end if;
5643
5644                Next (Act);
5645             end if;
5646
5647             return Present (Act)
5648               and then FCE (Right_Opnd (Op_Node), Act)
5649               and then No (Next (Act));
5650          end if;
5651       end FCO;
5652
5653    --  Start of processing for Fully_Conformant_Expressions
5654
5655    begin
5656       --  Non-conformant if paren count does not match. Note: if some idiot
5657       --  complains that we don't do this right for more than 3 levels of
5658       --  parentheses, they will be treated with the respect they deserve!
5659
5660       if Paren_Count (E1) /= Paren_Count (E2) then
5661          return False;
5662
5663       --  If same entities are referenced, then they are conformant even if
5664       --  they have different forms (RM 8.3.1(19-20)).
5665
5666       elsif Is_Entity_Name (E1) and then Is_Entity_Name (E2) then
5667          if Present (Entity (E1)) then
5668             return Entity (E1) = Entity (E2)
5669               or else (Chars (Entity (E1)) = Chars (Entity (E2))
5670                         and then Ekind (Entity (E1)) = E_Discriminant
5671                         and then Ekind (Entity (E2)) = E_In_Parameter);
5672
5673          elsif Nkind (E1) = N_Expanded_Name
5674            and then Nkind (E2) = N_Expanded_Name
5675            and then Nkind (Selector_Name (E1)) = N_Character_Literal
5676            and then Nkind (Selector_Name (E2)) = N_Character_Literal
5677          then
5678             return Chars (Selector_Name (E1)) = Chars (Selector_Name (E2));
5679
5680          else
5681             --  Identifiers in component associations don't always have
5682             --  entities, but their names must conform.
5683
5684             return Nkind  (E1) = N_Identifier
5685               and then Nkind (E2) = N_Identifier
5686               and then Chars (E1) = Chars (E2);
5687          end if;
5688
5689       elsif Nkind (E1) = N_Character_Literal
5690         and then Nkind (E2) = N_Expanded_Name
5691       then
5692          return Nkind (Selector_Name (E2)) = N_Character_Literal
5693            and then Chars (E1) = Chars (Selector_Name (E2));
5694
5695       elsif Nkind (E2) = N_Character_Literal
5696         and then Nkind (E1) = N_Expanded_Name
5697       then
5698          return Nkind (Selector_Name (E1)) = N_Character_Literal
5699            and then Chars (E2) = Chars (Selector_Name (E1));
5700
5701       elsif Nkind (E1) in N_Op
5702         and then Nkind (E2) = N_Function_Call
5703       then
5704          return FCO (E1, E2);
5705
5706       elsif Nkind (E2) in N_Op
5707         and then Nkind (E1) = N_Function_Call
5708       then
5709          return FCO (E2, E1);
5710
5711       --  Otherwise we must have the same syntactic entity
5712
5713       elsif Nkind (E1) /= Nkind (E2) then
5714          return False;
5715
5716       --  At this point, we specialize by node type
5717
5718       else
5719          case Nkind (E1) is
5720
5721             when N_Aggregate =>
5722                return
5723                  FCL (Expressions (E1), Expressions (E2))
5724                    and then FCL (Component_Associations (E1),
5725                                  Component_Associations (E2));
5726
5727             when N_Allocator =>
5728                if Nkind (Expression (E1)) = N_Qualified_Expression
5729                     or else
5730                   Nkind (Expression (E2)) = N_Qualified_Expression
5731                then
5732                   return FCE (Expression (E1), Expression (E2));
5733
5734                --  Check that the subtype marks and any constraints
5735                --  are conformant
5736
5737                else
5738                   declare
5739                      Indic1 : constant Node_Id := Expression (E1);
5740                      Indic2 : constant Node_Id := Expression (E2);
5741                      Elt1   : Node_Id;
5742                      Elt2   : Node_Id;
5743
5744                   begin
5745                      if Nkind (Indic1) /= N_Subtype_Indication then
5746                         return
5747                           Nkind (Indic2) /= N_Subtype_Indication
5748                             and then Entity (Indic1) = Entity (Indic2);
5749
5750                      elsif Nkind (Indic2) /= N_Subtype_Indication then
5751                         return
5752                           Nkind (Indic1) /= N_Subtype_Indication
5753                             and then Entity (Indic1) = Entity (Indic2);
5754
5755                      else
5756                         if Entity (Subtype_Mark (Indic1)) /=
5757                           Entity (Subtype_Mark (Indic2))
5758                         then
5759                            return False;
5760                         end if;
5761
5762                         Elt1 := First (Constraints (Constraint (Indic1)));
5763                         Elt2 := First (Constraints (Constraint (Indic2)));
5764
5765                         while Present (Elt1) and then Present (Elt2) loop
5766                            if not FCE (Elt1, Elt2) then
5767                               return False;
5768                            end if;
5769
5770                            Next (Elt1);
5771                            Next (Elt2);
5772                         end loop;
5773
5774                         return True;
5775                      end if;
5776                   end;
5777                end if;
5778
5779             when N_Attribute_Reference =>
5780                return
5781                  Attribute_Name (E1) = Attribute_Name (E2)
5782                    and then FCL (Expressions (E1), Expressions (E2));
5783
5784             when N_Binary_Op =>
5785                return
5786                  Entity (E1) = Entity (E2)
5787                    and then FCE (Left_Opnd  (E1), Left_Opnd  (E2))
5788                    and then FCE (Right_Opnd (E1), Right_Opnd (E2));
5789
5790             when N_And_Then | N_Or_Else | N_Membership_Test =>
5791                return
5792                  FCE (Left_Opnd  (E1), Left_Opnd  (E2))
5793                    and then
5794                  FCE (Right_Opnd (E1), Right_Opnd (E2));
5795
5796             when N_Character_Literal =>
5797                return
5798                  Char_Literal_Value (E1) = Char_Literal_Value (E2);
5799
5800             when N_Component_Association =>
5801                return
5802                  FCL (Choices (E1), Choices (E2))
5803                    and then FCE (Expression (E1), Expression (E2));
5804
5805             when N_Conditional_Expression =>
5806                return
5807                  FCL (Expressions (E1), Expressions (E2));
5808
5809             when N_Explicit_Dereference =>
5810                return
5811                  FCE (Prefix (E1), Prefix (E2));
5812
5813             when N_Extension_Aggregate =>
5814                return
5815                  FCL (Expressions (E1), Expressions (E2))
5816                    and then Null_Record_Present (E1) =
5817                             Null_Record_Present (E2)
5818                    and then FCL (Component_Associations (E1),
5819                                Component_Associations (E2));
5820
5821             when N_Function_Call =>
5822                return
5823                  FCE (Name (E1), Name (E2))
5824                    and then FCL (Parameter_Associations (E1),
5825                                  Parameter_Associations (E2));
5826
5827             when N_Indexed_Component =>
5828                return
5829                  FCE (Prefix (E1), Prefix (E2))
5830                    and then FCL (Expressions (E1), Expressions (E2));
5831
5832             when N_Integer_Literal =>
5833                return (Intval (E1) = Intval (E2));
5834
5835             when N_Null =>
5836                return True;
5837
5838             when N_Operator_Symbol =>
5839                return
5840                  Chars (E1) = Chars (E2);
5841
5842             when N_Others_Choice =>
5843                return True;
5844
5845             when N_Parameter_Association =>
5846                return
5847                  Chars (Selector_Name (E1))  = Chars (Selector_Name (E2))
5848                    and then FCE (Explicit_Actual_Parameter (E1),
5849                                  Explicit_Actual_Parameter (E2));
5850
5851             when N_Qualified_Expression =>
5852                return
5853                  FCE (Subtype_Mark (E1), Subtype_Mark (E2))
5854                    and then FCE (Expression (E1), Expression (E2));
5855
5856             when N_Range =>
5857                return
5858                  FCE (Low_Bound (E1), Low_Bound (E2))
5859                    and then FCE (High_Bound (E1), High_Bound (E2));
5860
5861             when N_Real_Literal =>
5862                return (Realval (E1) = Realval (E2));
5863
5864             when N_Selected_Component =>
5865                return
5866                  FCE (Prefix (E1), Prefix (E2))
5867                    and then FCE (Selector_Name (E1), Selector_Name (E2));
5868
5869             when N_Slice =>
5870                return
5871                  FCE (Prefix (E1), Prefix (E2))
5872                    and then FCE (Discrete_Range (E1), Discrete_Range (E2));
5873
5874             when N_String_Literal =>
5875                declare
5876                   S1 : constant String_Id := Strval (E1);
5877                   S2 : constant String_Id := Strval (E2);
5878                   L1 : constant Nat       := String_Length (S1);
5879                   L2 : constant Nat       := String_Length (S2);
5880
5881                begin
5882                   if L1 /= L2 then
5883                      return False;
5884
5885                   else
5886                      for J in 1 .. L1 loop
5887                         if Get_String_Char (S1, J) /=
5888                            Get_String_Char (S2, J)
5889                         then
5890                            return False;
5891                         end if;
5892                      end loop;
5893
5894                      return True;
5895                   end if;
5896                end;
5897
5898             when N_Type_Conversion =>
5899                return
5900                  FCE (Subtype_Mark (E1), Subtype_Mark (E2))
5901                    and then FCE (Expression (E1), Expression (E2));
5902
5903             when N_Unary_Op =>
5904                return
5905                  Entity (E1) = Entity (E2)
5906                    and then FCE (Right_Opnd (E1), Right_Opnd (E2));
5907
5908             when N_Unchecked_Type_Conversion =>
5909                return
5910                  FCE (Subtype_Mark (E1), Subtype_Mark (E2))
5911                    and then FCE (Expression (E1), Expression (E2));
5912
5913             --  All other node types cannot appear in this context. Strictly
5914             --  we should raise a fatal internal error. Instead we just ignore
5915             --  the nodes. This means that if anyone makes a mistake in the
5916             --  expander and mucks an expression tree irretrievably, the
5917             --  result will be a failure to detect a (probably very obscure)
5918             --  case of non-conformance, which is better than bombing on some
5919             --  case where two expressions do in fact conform.
5920
5921             when others =>
5922                return True;
5923
5924          end case;
5925       end if;
5926    end Fully_Conformant_Expressions;
5927
5928    ----------------------------------------
5929    -- Fully_Conformant_Discrete_Subtypes --
5930    ----------------------------------------
5931
5932    function Fully_Conformant_Discrete_Subtypes
5933      (Given_S1 : Node_Id;
5934       Given_S2 : Node_Id) return Boolean
5935    is
5936       S1 : constant Node_Id := Original_Node (Given_S1);
5937       S2 : constant Node_Id := Original_Node (Given_S2);
5938
5939       function Conforming_Bounds (B1, B2 : Node_Id) return Boolean;
5940       --  Special-case for a bound given by a discriminant, which in the body
5941       --  is replaced with the discriminal of the enclosing type.
5942
5943       function Conforming_Ranges (R1, R2 : Node_Id) return Boolean;
5944       --  Check both bounds
5945
5946       -----------------------
5947       -- Conforming_Bounds --
5948       -----------------------
5949
5950       function Conforming_Bounds (B1, B2 : Node_Id) return Boolean is
5951       begin
5952          if Is_Entity_Name (B1)
5953            and then Is_Entity_Name (B2)
5954            and then Ekind (Entity (B1)) = E_Discriminant
5955          then
5956             return Chars (B1) = Chars (B2);
5957
5958          else
5959             return Fully_Conformant_Expressions (B1, B2);
5960          end if;
5961       end Conforming_Bounds;
5962
5963       -----------------------
5964       -- Conforming_Ranges --
5965       -----------------------
5966
5967       function Conforming_Ranges (R1, R2 : Node_Id) return Boolean is
5968       begin
5969          return
5970            Conforming_Bounds (Low_Bound (R1), Low_Bound (R2))
5971              and then
5972            Conforming_Bounds (High_Bound (R1), High_Bound (R2));
5973       end Conforming_Ranges;
5974
5975    --  Start of processing for Fully_Conformant_Discrete_Subtypes
5976
5977    begin
5978       if Nkind (S1) /= Nkind (S2) then
5979          return False;
5980
5981       elsif Is_Entity_Name (S1) then
5982          return Entity (S1) = Entity (S2);
5983
5984       elsif Nkind (S1) = N_Range then
5985          return Conforming_Ranges (S1, S2);
5986
5987       elsif Nkind (S1) = N_Subtype_Indication then
5988          return
5989             Entity (Subtype_Mark (S1)) = Entity (Subtype_Mark (S2))
5990               and then
5991             Conforming_Ranges
5992               (Range_Expression (Constraint (S1)),
5993                Range_Expression (Constraint (S2)));
5994       else
5995          return True;
5996       end if;
5997    end Fully_Conformant_Discrete_Subtypes;
5998
5999    --------------------
6000    -- Install_Entity --
6001    --------------------
6002
6003    procedure Install_Entity (E : Entity_Id) is
6004       Prev : constant Entity_Id := Current_Entity (E);
6005    begin
6006       Set_Is_Immediately_Visible (E);
6007       Set_Current_Entity (E);
6008       Set_Homonym (E, Prev);
6009    end Install_Entity;
6010
6011    ---------------------
6012    -- Install_Formals --
6013    ---------------------
6014
6015    procedure Install_Formals (Id : Entity_Id) is
6016       F : Entity_Id;
6017    begin
6018       F := First_Formal (Id);
6019       while Present (F) loop
6020          Install_Entity (F);
6021          Next_Formal (F);
6022       end loop;
6023    end Install_Formals;
6024
6025    -----------------------------
6026    -- Is_Interface_Conformant --
6027    -----------------------------
6028
6029    function Is_Interface_Conformant
6030      (Tagged_Type : Entity_Id;
6031       Iface_Prim  : Entity_Id;
6032       Prim        : Entity_Id) return Boolean
6033    is
6034       Iface : constant Entity_Id := Find_Dispatching_Type (Iface_Prim);
6035       Typ   : constant Entity_Id := Find_Dispatching_Type (Prim);
6036
6037    begin
6038       pragma Assert (Is_Subprogram (Iface_Prim)
6039         and then Is_Subprogram (Prim)
6040         and then Is_Dispatching_Operation (Iface_Prim)
6041         and then Is_Dispatching_Operation (Prim));
6042
6043       pragma Assert (Is_Interface (Iface)
6044         or else (Present (Alias (Iface_Prim))
6045                    and then
6046                      Is_Interface
6047                        (Find_Dispatching_Type (Ultimate_Alias (Iface_Prim)))));
6048
6049       if Prim = Iface_Prim
6050         or else not Is_Subprogram (Prim)
6051         or else Ekind (Prim) /= Ekind (Iface_Prim)
6052         or else not Is_Dispatching_Operation (Prim)
6053         or else Scope (Prim) /= Scope (Tagged_Type)
6054         or else No (Typ)
6055         or else Base_Type (Typ) /= Tagged_Type
6056         or else not Primitive_Names_Match (Iface_Prim, Prim)
6057       then
6058          return False;
6059
6060       --  Case of a procedure, or a function that does not have a controlling
6061       --  result (I or access I).
6062
6063       elsif Ekind (Iface_Prim) = E_Procedure
6064         or else Etype (Prim) = Etype (Iface_Prim)
6065         or else not Has_Controlling_Result (Prim)
6066       then
6067          return Type_Conformant (Prim, Iface_Prim,
6068                   Skip_Controlling_Formals => True);
6069
6070       --  Case of a function returning an interface, or an access to one.
6071       --  Check that the return types correspond.
6072
6073       elsif Implements_Interface (Typ, Iface) then
6074          if (Ekind (Etype (Prim)) = E_Anonymous_Access_Type)
6075               /=
6076             (Ekind (Etype (Iface_Prim)) = E_Anonymous_Access_Type)
6077          then
6078             return False;
6079          else
6080             return
6081               Type_Conformant (Prim, Iface_Prim,
6082                 Skip_Controlling_Formals => True);
6083          end if;
6084
6085       else
6086          return False;
6087       end if;
6088    end Is_Interface_Conformant;
6089
6090    ---------------------------------
6091    -- Is_Non_Overriding_Operation --
6092    ---------------------------------
6093
6094    function Is_Non_Overriding_Operation
6095      (Prev_E : Entity_Id;
6096       New_E  : Entity_Id) return Boolean
6097    is
6098       Formal : Entity_Id;
6099       F_Typ  : Entity_Id;
6100       G_Typ  : Entity_Id := Empty;
6101
6102       function Get_Generic_Parent_Type (F_Typ : Entity_Id) return Entity_Id;
6103       --  If F_Type is a derived type associated with a generic actual subtype,
6104       --  then return its Generic_Parent_Type attribute, else return Empty.
6105
6106       function Types_Correspond
6107         (P_Type : Entity_Id;
6108          N_Type : Entity_Id) return Boolean;
6109       --  Returns true if and only if the types (or designated types in the
6110       --  case of anonymous access types) are the same or N_Type is derived
6111       --  directly or indirectly from P_Type.
6112
6113       -----------------------------
6114       -- Get_Generic_Parent_Type --
6115       -----------------------------
6116
6117       function Get_Generic_Parent_Type (F_Typ : Entity_Id) return Entity_Id is
6118          G_Typ : Entity_Id;
6119          Indic : Node_Id;
6120
6121       begin
6122          if Is_Derived_Type (F_Typ)
6123            and then Nkind (Parent (F_Typ)) = N_Full_Type_Declaration
6124          then
6125             --  The tree must be traversed to determine the parent subtype in
6126             --  the generic unit, which unfortunately isn't always available
6127             --  via semantic attributes. ??? (Note: The use of Original_Node
6128             --  is needed for cases where a full derived type has been
6129             --  rewritten.)
6130
6131             Indic := Subtype_Indication
6132                        (Type_Definition (Original_Node (Parent (F_Typ))));
6133
6134             if Nkind (Indic) = N_Subtype_Indication then
6135                G_Typ := Entity (Subtype_Mark (Indic));
6136             else
6137                G_Typ := Entity (Indic);
6138             end if;
6139
6140             if Nkind (Parent (G_Typ)) = N_Subtype_Declaration
6141               and then Present (Generic_Parent_Type (Parent (G_Typ)))
6142             then
6143                return Generic_Parent_Type (Parent (G_Typ));
6144             end if;
6145          end if;
6146
6147          return Empty;
6148       end Get_Generic_Parent_Type;
6149
6150       ----------------------
6151       -- Types_Correspond --
6152       ----------------------
6153
6154       function Types_Correspond
6155         (P_Type : Entity_Id;
6156          N_Type : Entity_Id) return Boolean
6157       is
6158          Prev_Type : Entity_Id := Base_Type (P_Type);
6159          New_Type  : Entity_Id := Base_Type (N_Type);
6160
6161       begin
6162          if Ekind (Prev_Type) = E_Anonymous_Access_Type then
6163             Prev_Type := Designated_Type (Prev_Type);
6164          end if;
6165
6166          if Ekind (New_Type) = E_Anonymous_Access_Type then
6167             New_Type := Designated_Type (New_Type);
6168          end if;
6169
6170          if Prev_Type = New_Type then
6171             return True;
6172
6173          elsif not Is_Class_Wide_Type (New_Type) then
6174             while Etype (New_Type) /= New_Type loop
6175                New_Type := Etype (New_Type);
6176                if New_Type = Prev_Type then
6177                   return True;
6178                end if;
6179             end loop;
6180          end if;
6181          return False;
6182       end Types_Correspond;
6183
6184    --  Start of processing for Is_Non_Overriding_Operation
6185
6186    begin
6187       --  In the case where both operations are implicit derived subprograms
6188       --  then neither overrides the other. This can only occur in certain
6189       --  obscure cases (e.g., derivation from homographs created in a generic
6190       --  instantiation).
6191
6192       if Present (Alias (Prev_E)) and then Present (Alias (New_E)) then
6193          return True;
6194
6195       elsif Ekind (Current_Scope) = E_Package
6196         and then Is_Generic_Instance (Current_Scope)
6197         and then In_Private_Part (Current_Scope)
6198         and then Comes_From_Source (New_E)
6199       then
6200          --  We examine the formals and result subtype of the inherited
6201          --  operation, to determine whether their type is derived from (the
6202          --  instance of) a generic type.
6203
6204          Formal := First_Formal (Prev_E);
6205
6206          while Present (Formal) loop
6207             F_Typ := Base_Type (Etype (Formal));
6208
6209             if Ekind (F_Typ) = E_Anonymous_Access_Type then
6210                F_Typ := Designated_Type (F_Typ);
6211             end if;
6212
6213             G_Typ := Get_Generic_Parent_Type (F_Typ);
6214
6215             Next_Formal (Formal);
6216          end loop;
6217
6218          if No (G_Typ) and then Ekind (Prev_E) = E_Function then
6219             G_Typ := Get_Generic_Parent_Type (Base_Type (Etype (Prev_E)));
6220          end if;
6221
6222          if No (G_Typ) then
6223             return False;
6224          end if;
6225
6226          --  If the generic type is a private type, then the original
6227          --  operation was not overriding in the generic, because there was
6228          --  no primitive operation to override.
6229
6230          if Nkind (Parent (G_Typ)) = N_Formal_Type_Declaration
6231            and then Nkind (Formal_Type_Definition (Parent (G_Typ))) =
6232              N_Formal_Private_Type_Definition
6233          then
6234             return True;
6235
6236          --  The generic parent type is the ancestor of a formal derived
6237          --  type declaration. We need to check whether it has a primitive
6238          --  operation that should be overridden by New_E in the generic.
6239
6240          else
6241             declare
6242                P_Formal : Entity_Id;
6243                N_Formal : Entity_Id;
6244                P_Typ    : Entity_Id;
6245                N_Typ    : Entity_Id;
6246                P_Prim   : Entity_Id;
6247                Prim_Elt : Elmt_Id := First_Elmt (Primitive_Operations (G_Typ));
6248
6249             begin
6250                while Present (Prim_Elt) loop
6251                   P_Prim := Node (Prim_Elt);
6252
6253                   if Chars (P_Prim) = Chars (New_E)
6254                     and then Ekind (P_Prim) = Ekind (New_E)
6255                   then
6256                      P_Formal := First_Formal (P_Prim);
6257                      N_Formal := First_Formal (New_E);
6258                      while Present (P_Formal) and then Present (N_Formal) loop
6259                         P_Typ := Etype (P_Formal);
6260                         N_Typ := Etype (N_Formal);
6261
6262                         if not Types_Correspond (P_Typ, N_Typ) then
6263                            exit;
6264                         end if;
6265
6266                         Next_Entity (P_Formal);
6267                         Next_Entity (N_Formal);
6268                      end loop;
6269
6270                      --  Found a matching primitive operation belonging to the
6271                      --  formal ancestor type, so the new subprogram is
6272                      --  overriding.
6273
6274                      if No (P_Formal)
6275                        and then No (N_Formal)
6276                        and then (Ekind (New_E) /= E_Function
6277                                   or else
6278                                  Types_Correspond
6279                                    (Etype (P_Prim), Etype (New_E)))
6280                      then
6281                         return False;
6282                      end if;
6283                   end if;
6284
6285                   Next_Elmt (Prim_Elt);
6286                end loop;
6287
6288                --  If no match found, then the new subprogram does not
6289                --  override in the generic (nor in the instance).
6290
6291                return True;
6292             end;
6293          end if;
6294       else
6295          return False;
6296       end if;
6297    end Is_Non_Overriding_Operation;
6298
6299    ------------------------------
6300    -- Make_Inequality_Operator --
6301    ------------------------------
6302
6303    --  S is the defining identifier of an equality operator. We build a
6304    --  subprogram declaration with the right signature. This operation is
6305    --  intrinsic, because it is always expanded as the negation of the
6306    --  call to the equality function.
6307
6308    procedure Make_Inequality_Operator (S : Entity_Id) is
6309       Loc     : constant Source_Ptr := Sloc (S);
6310       Decl    : Node_Id;
6311       Formals : List_Id;
6312       Op_Name : Entity_Id;
6313
6314       FF : constant Entity_Id := First_Formal (S);
6315       NF : constant Entity_Id := Next_Formal (FF);
6316
6317    begin
6318       --  Check that equality was properly defined, ignore call if not
6319
6320       if No (NF) then
6321          return;
6322       end if;
6323
6324       declare
6325          A : constant Entity_Id :=
6326                Make_Defining_Identifier (Sloc (FF),
6327                  Chars => Chars (FF));
6328
6329          B : constant Entity_Id :=
6330                Make_Defining_Identifier (Sloc (NF),
6331                  Chars => Chars (NF));
6332
6333       begin
6334          Op_Name := Make_Defining_Operator_Symbol (Loc, Name_Op_Ne);
6335
6336          Formals := New_List (
6337            Make_Parameter_Specification (Loc,
6338              Defining_Identifier => A,
6339              Parameter_Type      =>
6340                New_Reference_To (Etype (First_Formal (S)),
6341                  Sloc (Etype (First_Formal (S))))),
6342
6343            Make_Parameter_Specification (Loc,
6344              Defining_Identifier => B,
6345              Parameter_Type      =>
6346                New_Reference_To (Etype (Next_Formal (First_Formal (S))),
6347                  Sloc (Etype (Next_Formal (First_Formal (S)))))));
6348
6349          Decl :=
6350            Make_Subprogram_Declaration (Loc,
6351              Specification =>
6352                Make_Function_Specification (Loc,
6353                  Defining_Unit_Name       => Op_Name,
6354                  Parameter_Specifications => Formals,
6355                  Result_Definition        =>
6356                    New_Reference_To (Standard_Boolean, Loc)));
6357
6358          --  Insert inequality right after equality if it is explicit or after
6359          --  the derived type when implicit. These entities are created only
6360          --  for visibility purposes, and eventually replaced in the course of
6361          --  expansion, so they do not need to be attached to the tree and seen
6362          --  by the back-end. Keeping them internal also avoids spurious
6363          --  freezing problems. The declaration is inserted in the tree for
6364          --  analysis, and removed afterwards. If the equality operator comes
6365          --  from an explicit declaration, attach the inequality immediately
6366          --  after. Else the equality is inherited from a derived type
6367          --  declaration, so insert inequality after that declaration.
6368
6369          if No (Alias (S)) then
6370             Insert_After (Unit_Declaration_Node (S), Decl);
6371          elsif Is_List_Member (Parent (S)) then
6372             Insert_After (Parent (S), Decl);
6373          else
6374             Insert_After (Parent (Etype (First_Formal (S))), Decl);
6375          end if;
6376
6377          Mark_Rewrite_Insertion (Decl);
6378          Set_Is_Intrinsic_Subprogram (Op_Name);
6379          Analyze (Decl);
6380          Remove (Decl);
6381          Set_Has_Completion (Op_Name);
6382          Set_Corresponding_Equality (Op_Name, S);
6383          Set_Is_Abstract_Subprogram (Op_Name, Is_Abstract_Subprogram (S));
6384       end;
6385    end Make_Inequality_Operator;
6386
6387    ----------------------
6388    -- May_Need_Actuals --
6389    ----------------------
6390
6391    procedure May_Need_Actuals (Fun : Entity_Id) is
6392       F : Entity_Id;
6393       B : Boolean;
6394
6395    begin
6396       F := First_Formal (Fun);
6397       B := True;
6398       while Present (F) loop
6399          if No (Default_Value (F)) then
6400             B := False;
6401             exit;
6402          end if;
6403
6404          Next_Formal (F);
6405       end loop;
6406
6407       Set_Needs_No_Actuals (Fun, B);
6408    end May_Need_Actuals;
6409
6410    ---------------------
6411    -- Mode_Conformant --
6412    ---------------------
6413
6414    function Mode_Conformant (New_Id, Old_Id : Entity_Id) return Boolean is
6415       Result : Boolean;
6416    begin
6417       Check_Conformance (New_Id, Old_Id, Mode_Conformant, False, Result);
6418       return Result;
6419    end Mode_Conformant;
6420
6421    ---------------------------
6422    -- New_Overloaded_Entity --
6423    ---------------------------
6424
6425    procedure New_Overloaded_Entity
6426      (S            : Entity_Id;
6427       Derived_Type : Entity_Id := Empty)
6428    is
6429       Overridden_Subp : Entity_Id := Empty;
6430       --  Set if the current scope has an operation that is type-conformant
6431       --  with S, and becomes hidden by S.
6432
6433       Is_Primitive_Subp : Boolean;
6434       --  Set to True if the new subprogram is primitive
6435
6436       E : Entity_Id;
6437       --  Entity that S overrides
6438
6439       Prev_Vis : Entity_Id := Empty;
6440       --  Predecessor of E in Homonym chain
6441
6442       procedure Check_For_Primitive_Subprogram
6443         (Is_Primitive  : out Boolean;
6444          Is_Overriding : Boolean := False);
6445       --  If the subprogram being analyzed is a primitive operation of the type
6446       --  of a formal or result, set the Has_Primitive_Operations flag on the
6447       --  type, and set Is_Primitive to True (otherwise set to False). Set the
6448       --  corresponding flag on the entity itself for later use.
6449
6450       procedure Check_Synchronized_Overriding
6451         (Def_Id          : Entity_Id;
6452          Overridden_Subp : out Entity_Id);
6453       --  First determine if Def_Id is an entry or a subprogram either defined
6454       --  in the scope of a task or protected type, or is a primitive of such
6455       --  a type. Check whether Def_Id overrides a subprogram of an interface
6456       --  implemented by the synchronized type, return the overridden entity
6457       --  or Empty.
6458
6459       function Is_Private_Declaration (E : Entity_Id) return Boolean;
6460       --  Check that E is declared in the private part of the current package,
6461       --  or in the package body, where it may hide a previous declaration.
6462       --  We can't use In_Private_Part by itself because this flag is also
6463       --  set when freezing entities, so we must examine the place of the
6464       --  declaration in the tree, and recognize wrapper packages as well.
6465
6466       ------------------------------------
6467       -- Check_For_Primitive_Subprogram --
6468       ------------------------------------
6469
6470       procedure Check_For_Primitive_Subprogram
6471         (Is_Primitive  : out Boolean;
6472          Is_Overriding : Boolean := False)
6473       is
6474          Formal : Entity_Id;
6475          F_Typ  : Entity_Id;
6476          B_Typ  : Entity_Id;
6477
6478          function Visible_Part_Type (T : Entity_Id) return Boolean;
6479          --  Returns true if T is declared in the visible part of
6480          --  the current package scope; otherwise returns false.
6481          --  Assumes that T is declared in a package.
6482
6483          procedure Check_Private_Overriding (T : Entity_Id);
6484          --  Checks that if a primitive abstract subprogram of a visible
6485          --  abstract type is declared in a private part, then it must
6486          --  override an abstract subprogram declared in the visible part.
6487          --  Also checks that if a primitive function with a controlling
6488          --  result is declared in a private part, then it must override
6489          --  a function declared in the visible part.
6490
6491          ------------------------------
6492          -- Check_Private_Overriding --
6493          ------------------------------
6494
6495          procedure Check_Private_Overriding (T : Entity_Id) is
6496          begin
6497             if Is_Package_Or_Generic_Package (Current_Scope)
6498               and then In_Private_Part (Current_Scope)
6499               and then Visible_Part_Type (T)
6500               and then not In_Instance
6501             then
6502                if Is_Abstract_Type (T)
6503                  and then Is_Abstract_Subprogram (S)
6504                  and then (not Is_Overriding
6505                            or else not Is_Abstract_Subprogram (E))
6506                then
6507                   Error_Msg_N ("abstract subprograms must be visible "
6508                                    & "(RM 3.9.3(10))!", S);
6509
6510                elsif Ekind (S) = E_Function
6511                  and then Is_Tagged_Type (T)
6512                  and then T = Base_Type (Etype (S))
6513                  and then not Is_Overriding
6514                then
6515                   Error_Msg_N
6516                     ("private function with tagged result must"
6517                      & " override visible-part function", S);
6518                   Error_Msg_N
6519                     ("\move subprogram to the visible part"
6520                      & " (RM 3.9.3(10))", S);
6521                end if;
6522             end if;
6523          end Check_Private_Overriding;
6524
6525          -----------------------
6526          -- Visible_Part_Type --
6527          -----------------------
6528
6529          function Visible_Part_Type (T : Entity_Id) return Boolean is
6530             P : constant Node_Id := Unit_Declaration_Node (Scope (T));
6531             N : Node_Id;
6532
6533          begin
6534             --  If the entity is a private type, then it must be
6535             --  declared in a visible part.
6536
6537             if Ekind (T) in Private_Kind then
6538                return True;
6539             end if;
6540
6541             --  Otherwise, we traverse the visible part looking for its
6542             --  corresponding declaration. We cannot use the declaration
6543             --  node directly because in the private part the entity of a
6544             --  private type is the one in the full view, which does not
6545             --  indicate that it is the completion of something visible.
6546
6547             N := First (Visible_Declarations (Specification (P)));
6548             while Present (N) loop
6549                if Nkind (N) = N_Full_Type_Declaration
6550                  and then Present (Defining_Identifier (N))
6551                  and then T = Defining_Identifier (N)
6552                then
6553                   return True;
6554
6555                elsif Nkind_In (N, N_Private_Type_Declaration,
6556                                   N_Private_Extension_Declaration)
6557                  and then Present (Defining_Identifier (N))
6558                  and then T = Full_View (Defining_Identifier (N))
6559                then
6560                   return True;
6561                end if;
6562
6563                Next (N);
6564             end loop;
6565
6566             return False;
6567          end Visible_Part_Type;
6568
6569       --  Start of processing for Check_For_Primitive_Subprogram
6570
6571       begin
6572          Is_Primitive := False;
6573
6574          if not Comes_From_Source (S) then
6575             null;
6576
6577          --  If subprogram is at library level, it is not primitive operation
6578
6579          elsif Current_Scope = Standard_Standard then
6580             null;
6581
6582          elsif (Is_Package_Or_Generic_Package (Current_Scope)
6583                  and then not In_Package_Body (Current_Scope))
6584            or else Is_Overriding
6585          then
6586             --  For function, check return type
6587
6588             if Ekind (S) = E_Function then
6589                if Ekind (Etype (S)) = E_Anonymous_Access_Type then
6590                   F_Typ := Designated_Type (Etype (S));
6591                else
6592                   F_Typ := Etype (S);
6593                end if;
6594
6595                B_Typ := Base_Type (F_Typ);
6596
6597                if Scope (B_Typ) = Current_Scope
6598                  and then not Is_Class_Wide_Type (B_Typ)
6599                  and then not Is_Generic_Type (B_Typ)
6600                then
6601                   Is_Primitive := True;
6602                   Set_Has_Primitive_Operations (B_Typ);
6603                   Set_Is_Primitive (S);
6604                   Check_Private_Overriding (B_Typ);
6605                end if;
6606             end if;
6607
6608             --  For all subprograms, check formals
6609
6610             Formal := First_Formal (S);
6611             while Present (Formal) loop
6612                if Ekind (Etype (Formal)) = E_Anonymous_Access_Type then
6613                   F_Typ := Designated_Type (Etype (Formal));
6614                else
6615                   F_Typ := Etype (Formal);
6616                end if;
6617
6618                B_Typ := Base_Type (F_Typ);
6619
6620                if Ekind (B_Typ) = E_Access_Subtype then
6621                   B_Typ := Base_Type (B_Typ);
6622                end if;
6623
6624                if Scope (B_Typ) = Current_Scope
6625                  and then not Is_Class_Wide_Type (B_Typ)
6626                  and then not Is_Generic_Type (B_Typ)
6627                then
6628                   Is_Primitive := True;
6629                   Set_Is_Primitive (S);
6630                   Set_Has_Primitive_Operations (B_Typ);
6631                   Check_Private_Overriding (B_Typ);
6632                end if;
6633
6634                Next_Formal (Formal);
6635             end loop;
6636          end if;
6637       end Check_For_Primitive_Subprogram;
6638
6639       -----------------------------------
6640       -- Check_Synchronized_Overriding --
6641       -----------------------------------
6642
6643       procedure Check_Synchronized_Overriding
6644         (Def_Id          : Entity_Id;
6645          Overridden_Subp : out Entity_Id)
6646       is
6647          Ifaces_List : Elist_Id;
6648          In_Scope    : Boolean;
6649          Typ         : Entity_Id;
6650
6651          function Matches_Prefixed_View_Profile
6652            (Prim_Params  : List_Id;
6653             Iface_Params : List_Id) return Boolean;
6654          --  Determine whether a subprogram's parameter profile Prim_Params
6655          --  matches that of a potentially overridden interface subprogram
6656          --  Iface_Params. Also determine if the type of first parameter of
6657          --  Iface_Params is an implemented interface.
6658
6659          -----------------------------------
6660          -- Matches_Prefixed_View_Profile --
6661          -----------------------------------
6662
6663          function Matches_Prefixed_View_Profile
6664            (Prim_Params  : List_Id;
6665             Iface_Params : List_Id) return Boolean
6666          is
6667             Iface_Id     : Entity_Id;
6668             Iface_Param  : Node_Id;
6669             Iface_Typ    : Entity_Id;
6670             Prim_Id      : Entity_Id;
6671             Prim_Param   : Node_Id;
6672             Prim_Typ     : Entity_Id;
6673
6674             function Is_Implemented
6675               (Ifaces_List : Elist_Id;
6676                Iface       : Entity_Id) return Boolean;
6677             --  Determine if Iface is implemented by the current task or
6678             --  protected type.
6679
6680             --------------------
6681             -- Is_Implemented --
6682             --------------------
6683
6684             function Is_Implemented
6685               (Ifaces_List : Elist_Id;
6686                Iface       : Entity_Id) return Boolean
6687             is
6688                Iface_Elmt : Elmt_Id;
6689
6690             begin
6691                Iface_Elmt := First_Elmt (Ifaces_List);
6692                while Present (Iface_Elmt) loop
6693                   if Node (Iface_Elmt) = Iface then
6694                      return True;
6695                   end if;
6696
6697                   Next_Elmt (Iface_Elmt);
6698                end loop;
6699
6700                return False;
6701             end Is_Implemented;
6702
6703          --  Start of processing for Matches_Prefixed_View_Profile
6704
6705          begin
6706             Iface_Param := First (Iface_Params);
6707             Iface_Typ   := Etype (Defining_Identifier (Iface_Param));
6708
6709             if Is_Access_Type (Iface_Typ) then
6710                Iface_Typ := Designated_Type (Iface_Typ);
6711             end if;
6712
6713             Prim_Param := First (Prim_Params);
6714
6715             --  The first parameter of the potentially overridden subprogram
6716             --  must be an interface implemented by Prim.
6717
6718             if not Is_Interface (Iface_Typ)
6719               or else not Is_Implemented (Ifaces_List, Iface_Typ)
6720             then
6721                return False;
6722             end if;
6723
6724             --  The checks on the object parameters are done, move onto the
6725             --  rest of the parameters.
6726
6727             if not In_Scope then
6728                Prim_Param := Next (Prim_Param);
6729             end if;
6730
6731             Iface_Param := Next (Iface_Param);
6732             while Present (Iface_Param) and then Present (Prim_Param) loop
6733                Iface_Id  := Defining_Identifier (Iface_Param);
6734                Iface_Typ := Find_Parameter_Type (Iface_Param);
6735
6736                Prim_Id  := Defining_Identifier (Prim_Param);
6737                Prim_Typ := Find_Parameter_Type (Prim_Param);
6738
6739                if Ekind (Iface_Typ) = E_Anonymous_Access_Type
6740                  and then Ekind (Prim_Typ) = E_Anonymous_Access_Type
6741                  and then Is_Concurrent_Type (Designated_Type (Prim_Typ))
6742                then
6743                   Iface_Typ := Designated_Type (Iface_Typ);
6744                   Prim_Typ := Designated_Type (Prim_Typ);
6745                end if;
6746
6747                --  Case of multiple interface types inside a parameter profile
6748
6749                --     (Obj_Param : in out Iface; ...; Param : Iface)
6750
6751                --  If the interface type is implemented, then the matching type
6752                --  in the primitive should be the implementing record type.
6753
6754                if Ekind (Iface_Typ) = E_Record_Type
6755                  and then Is_Interface (Iface_Typ)
6756                  and then Is_Implemented (Ifaces_List, Iface_Typ)
6757                then
6758                   if Prim_Typ /= Typ then
6759                      return False;
6760                   end if;
6761
6762                --  The two parameters must be both mode and subtype conformant
6763
6764                elsif Ekind (Iface_Id) /= Ekind (Prim_Id)
6765                  or else not
6766                    Conforming_Types (Iface_Typ, Prim_Typ, Subtype_Conformant)
6767                then
6768                   return False;
6769                end if;
6770
6771                Next (Iface_Param);
6772                Next (Prim_Param);
6773             end loop;
6774
6775             --  One of the two lists contains more parameters than the other
6776
6777             if Present (Iface_Param) or else Present (Prim_Param) then
6778                return False;
6779             end if;
6780
6781             return True;
6782          end Matches_Prefixed_View_Profile;
6783
6784       --  Start of processing for Check_Synchronized_Overriding
6785
6786       begin
6787          Overridden_Subp := Empty;
6788
6789          --  Def_Id must be an entry or a subprogram. We should skip predefined
6790          --  primitives internally generated by the frontend; however at this
6791          --  stage predefined primitives are still not fully decorated. As a
6792          --  minor optimization we skip here internally generated subprograms.
6793
6794          if (Ekind (Def_Id) /= E_Entry
6795               and then Ekind (Def_Id) /= E_Function
6796               and then Ekind (Def_Id) /= E_Procedure)
6797            or else not Comes_From_Source (Def_Id)
6798          then
6799             return;
6800          end if;
6801
6802          --  Search for the concurrent declaration since it contains the list
6803          --  of all implemented interfaces. In this case, the subprogram is
6804          --  declared within the scope of a protected or a task type.
6805
6806          if Present (Scope (Def_Id))
6807            and then Is_Concurrent_Type (Scope (Def_Id))
6808            and then not Is_Generic_Actual_Type (Scope (Def_Id))
6809          then
6810             Typ := Scope (Def_Id);
6811             In_Scope := True;
6812
6813          --  The enclosing scope is not a synchronized type and the subprogram
6814          --  has no formals
6815
6816          elsif No (First_Formal (Def_Id)) then
6817             return;
6818
6819          --  The subprogram has formals and hence it may be a primitive of a
6820          --  concurrent type
6821
6822          else
6823             Typ := Etype (First_Formal (Def_Id));
6824
6825             if Is_Access_Type (Typ) then
6826                Typ := Directly_Designated_Type (Typ);
6827             end if;
6828
6829             if Is_Concurrent_Type (Typ)
6830               and then not Is_Generic_Actual_Type (Typ)
6831             then
6832                In_Scope := False;
6833
6834             --  This case occurs when the concurrent type is declared within
6835             --  a generic unit. As a result the corresponding record has been
6836             --  built and used as the type of the first formal, we just have
6837             --  to retrieve the corresponding concurrent type.
6838
6839             elsif Is_Concurrent_Record_Type (Typ)
6840               and then Present (Corresponding_Concurrent_Type (Typ))
6841             then
6842                Typ := Corresponding_Concurrent_Type (Typ);
6843                In_Scope := False;
6844
6845             else
6846                return;
6847             end if;
6848          end if;
6849
6850          --  There is no overriding to check if is an inherited operation in a
6851          --  type derivation on for a generic actual.
6852
6853          Collect_Interfaces (Typ, Ifaces_List);
6854
6855          if Is_Empty_Elmt_List (Ifaces_List) then
6856             return;
6857          end if;
6858
6859          --  Determine whether entry or subprogram Def_Id overrides a primitive
6860          --  operation that belongs to one of the interfaces in Ifaces_List.
6861
6862          declare
6863             Candidate : Entity_Id := Empty;
6864             Hom       : Entity_Id := Empty;
6865             Iface_Typ : Entity_Id;
6866             Subp      : Entity_Id := Empty;
6867
6868          begin
6869             --  Traverse the homonym chain, looking at a potentially
6870             --  overridden subprogram that belongs to an implemented
6871             --  interface.
6872
6873             Hom := Current_Entity_In_Scope (Def_Id);
6874             while Present (Hom) loop
6875                Subp := Hom;
6876
6877                if Subp = Def_Id
6878                  or else not Is_Overloadable (Subp)
6879                  or else not Is_Primitive (Subp)
6880                  or else not Is_Dispatching_Operation (Subp)
6881                  or else not Is_Interface (Find_Dispatching_Type (Subp))
6882                then
6883                   null;
6884
6885                --  Entries and procedures can override abstract or null
6886                --  interface procedures
6887
6888                elsif (Ekind (Def_Id) = E_Procedure
6889                         or else Ekind (Def_Id) = E_Entry)
6890                  and then Ekind (Subp) = E_Procedure
6891                  and then Matches_Prefixed_View_Profile
6892                             (Parameter_Specifications (Parent (Def_Id)),
6893                              Parameter_Specifications (Parent (Subp)))
6894                then
6895                   Candidate := Subp;
6896
6897                   --  For an overridden subprogram Subp, check whether the mode
6898                   --  of its first parameter is correct depending on the kind
6899                   --  of synchronized type.
6900
6901                   declare
6902                      Formal : constant Node_Id := First_Formal (Candidate);
6903
6904                   begin
6905                      --  In order for an entry or a protected procedure to
6906                      --  override, the first parameter of the overridden
6907                      --  routine must be of mode "out", "in out" or
6908                      --  access-to-variable.
6909
6910                      if (Ekind (Candidate) = E_Entry
6911                          or else Ekind (Candidate) = E_Procedure)
6912                        and then Is_Protected_Type (Typ)
6913                        and then Ekind (Formal) /= E_In_Out_Parameter
6914                        and then Ekind (Formal) /= E_Out_Parameter
6915                        and then Nkind (Parameter_Type (Parent (Formal)))
6916                                   /= N_Access_Definition
6917                      then
6918                         null;
6919
6920                      --  All other cases are OK since a task entry or routine
6921                      --  does not have a restriction on the mode of the first
6922                      --  parameter of the overridden interface routine.
6923
6924                      else
6925                         Overridden_Subp := Candidate;
6926                         return;
6927                      end if;
6928                   end;
6929
6930                --  Functions can override abstract interface functions
6931
6932                elsif Ekind (Def_Id) = E_Function
6933                  and then Ekind (Subp) = E_Function
6934                  and then Matches_Prefixed_View_Profile
6935                             (Parameter_Specifications (Parent (Def_Id)),
6936                              Parameter_Specifications (Parent (Subp)))
6937                  and then Etype (Result_Definition (Parent (Def_Id))) =
6938                           Etype (Result_Definition (Parent (Subp)))
6939                then
6940                   Overridden_Subp := Subp;
6941                   return;
6942                end if;
6943
6944                Hom := Homonym (Hom);
6945             end loop;
6946
6947             --  After examining all candidates for overriding, we are
6948             --  left with the best match which is a mode incompatible
6949             --  interface routine. Do not emit an error if the Expander
6950             --  is active since this error will be detected later on
6951             --  after all concurrent types are expanded and all wrappers
6952             --  are built. This check is meant for spec-only
6953             --  compilations.
6954
6955             if Present (Candidate)
6956               and then not Expander_Active
6957             then
6958                Iface_Typ :=
6959                  Find_Parameter_Type (Parent (First_Formal (Candidate)));
6960
6961                --  Def_Id is primitive of a protected type, declared
6962                --  inside the type, and the candidate is primitive of a
6963                --  limited or synchronized interface.
6964
6965                if In_Scope
6966                  and then Is_Protected_Type (Typ)
6967                  and then
6968                    (Is_Limited_Interface (Iface_Typ)
6969                       or else Is_Protected_Interface (Iface_Typ)
6970                       or else Is_Synchronized_Interface (Iface_Typ)
6971                       or else Is_Task_Interface (Iface_Typ))
6972                then
6973                   --  Must reword this message, comma before to in -gnatj
6974                   --  mode ???
6975
6976                   Error_Msg_NE
6977                     ("first formal of & must be of mode `OUT`, `IN OUT`"
6978                       & " or access-to-variable", Typ, Candidate);
6979                   Error_Msg_N
6980                     ("\to be overridden by protected procedure or entry "
6981                       & "(RM 9.4(11.9/2))", Typ);
6982                end if;
6983             end if;
6984
6985             Overridden_Subp := Candidate;
6986             return;
6987          end;
6988       end Check_Synchronized_Overriding;
6989
6990       ----------------------------
6991       -- Is_Private_Declaration --
6992       ----------------------------
6993
6994       function Is_Private_Declaration (E : Entity_Id) return Boolean is
6995          Priv_Decls : List_Id;
6996          Decl       : constant Node_Id := Unit_Declaration_Node (E);
6997
6998       begin
6999          if Is_Package_Or_Generic_Package (Current_Scope)
7000            and then In_Private_Part (Current_Scope)
7001          then
7002             Priv_Decls :=
7003               Private_Declarations (
7004                 Specification (Unit_Declaration_Node (Current_Scope)));
7005
7006             return In_Package_Body (Current_Scope)
7007               or else
7008                 (Is_List_Member (Decl)
7009                    and then List_Containing (Decl) = Priv_Decls)
7010               or else (Nkind (Parent (Decl)) = N_Package_Specification
7011                          and then not Is_Compilation_Unit (
7012                            Defining_Entity (Parent (Decl)))
7013                          and then List_Containing (Parent (Parent (Decl)))
7014                            = Priv_Decls);
7015          else
7016             return False;
7017          end if;
7018       end Is_Private_Declaration;
7019
7020    --  Start of processing for New_Overloaded_Entity
7021
7022    begin
7023       --  We need to look for an entity that S may override. This must be a
7024       --  homonym in the current scope, so we look for the first homonym of
7025       --  S in the current scope as the starting point for the search.
7026
7027       E := Current_Entity_In_Scope (S);
7028
7029       --  If there is no homonym then this is definitely not overriding
7030
7031       if No (E) then
7032          Enter_Overloaded_Entity (S);
7033          Check_Dispatching_Operation (S, Empty);
7034          Check_For_Primitive_Subprogram (Is_Primitive_Subp);
7035
7036          --  If subprogram has an explicit declaration, check whether it
7037          --  has an overriding indicator.
7038
7039          if Comes_From_Source (S) then
7040             Check_Synchronized_Overriding (S, Overridden_Subp);
7041             Check_Overriding_Indicator
7042               (S, Overridden_Subp, Is_Primitive => Is_Primitive_Subp);
7043          end if;
7044
7045       --  If there is a homonym that is not overloadable, then we have an
7046       --  error, except for the special cases checked explicitly below.
7047
7048       elsif not Is_Overloadable (E) then
7049
7050          --  Check for spurious conflict produced by a subprogram that has the
7051          --  same name as that of the enclosing generic package. The conflict
7052          --  occurs within an instance, between the subprogram and the renaming
7053          --  declaration for the package. After the subprogram, the package
7054          --  renaming declaration becomes hidden.
7055
7056          if Ekind (E) = E_Package
7057            and then Present (Renamed_Object (E))
7058            and then Renamed_Object (E) = Current_Scope
7059            and then Nkind (Parent (Renamed_Object (E))) =
7060                                                      N_Package_Specification
7061            and then Present (Generic_Parent (Parent (Renamed_Object (E))))
7062          then
7063             Set_Is_Hidden (E);
7064             Set_Is_Immediately_Visible (E, False);
7065             Enter_Overloaded_Entity (S);
7066             Set_Homonym (S, Homonym (E));
7067             Check_Dispatching_Operation (S, Empty);
7068             Check_Overriding_Indicator (S, Empty, Is_Primitive => False);
7069
7070          --  If the subprogram is implicit it is hidden by the previous
7071          --  declaration. However if it is dispatching, it must appear in the
7072          --  dispatch table anyway, because it can be dispatched to even if it
7073          --  cannot be called directly.
7074
7075          elsif Present (Alias (S))
7076            and then not Comes_From_Source (S)
7077          then
7078             Set_Scope (S, Current_Scope);
7079
7080             if Is_Dispatching_Operation (Alias (S)) then
7081                Check_Dispatching_Operation (S, Empty);
7082             end if;
7083
7084             return;
7085
7086          else
7087             Error_Msg_Sloc := Sloc (E);
7088
7089             --  Generate message, with useful additional warning if in generic
7090
7091             if Is_Generic_Unit (E) then
7092                Error_Msg_N ("previous generic unit cannot be overloaded", S);
7093                Error_Msg_N ("\& conflicts with declaration#", S);
7094             else
7095                Error_Msg_N ("& conflicts with declaration#", S);
7096             end if;
7097
7098             return;
7099          end if;
7100
7101       --  E exists and is overloadable
7102
7103       else
7104          --  Ada 2005 (AI-251): Derivation of abstract interface primitives
7105          --  need no check against the homonym chain. They are directly added
7106          --  to the list of primitive operations of Derived_Type.
7107
7108          if Ada_Version >= Ada_05
7109            and then Present (Derived_Type)
7110            and then Is_Dispatching_Operation (Alias (S))
7111            and then Present (Find_Dispatching_Type (Alias (S)))
7112            and then Is_Interface (Find_Dispatching_Type (Alias (S)))
7113          then
7114             goto Add_New_Entity;
7115          end if;
7116
7117          Check_Synchronized_Overriding (S, Overridden_Subp);
7118
7119          --  Loop through E and its homonyms to determine if any of them is
7120          --  the candidate for overriding by S.
7121
7122          while Present (E) loop
7123
7124             --  Definitely not interesting if not in the current scope
7125
7126             if Scope (E) /= Current_Scope then
7127                null;
7128
7129             --  Check if we have type conformance
7130
7131             elsif Type_Conformant (E, S) then
7132
7133                --  If the old and new entities have the same profile and one
7134                --  is not the body of the other, then this is an error, unless
7135                --  one of them is implicitly declared.
7136
7137                --  There are some cases when both can be implicit, for example
7138                --  when both a literal and a function that overrides it are
7139                --  inherited in a derivation, or when an inherited operation
7140                --  of a tagged full type overrides the inherited operation of
7141                --  a private extension. Ada 83 had a special rule for the
7142                --  literal case. In Ada95, the later implicit operation hides
7143                --  the former, and the literal is always the former. In the
7144                --  odd case where both are derived operations declared at the
7145                --  same point, both operations should be declared, and in that
7146                --  case we bypass the following test and proceed to the next
7147                --  part (this can only occur for certain obscure cases
7148                --  involving homographs in instances and can't occur for
7149                --  dispatching operations ???). Note that the following
7150                --  condition is less than clear. For example, it's not at all
7151                --  clear why there's a test for E_Entry here. ???
7152
7153                if Present (Alias (S))
7154                  and then (No (Alias (E))
7155                             or else Comes_From_Source (E)
7156                             or else Is_Dispatching_Operation (E))
7157                  and then
7158                    (Ekind (E) = E_Entry
7159                      or else Ekind (E) /= E_Enumeration_Literal)
7160                then
7161                   --  When an derived operation is overloaded it may be due to
7162                   --  the fact that the full view of a private extension
7163                   --  re-inherits. It has to be dealt with.
7164
7165                   if Is_Package_Or_Generic_Package (Current_Scope)
7166                     and then In_Private_Part (Current_Scope)
7167                   then
7168                      Check_Operation_From_Private_View (S, E);
7169                   end if;
7170
7171                   --  In any case the implicit operation remains hidden by
7172                   --  the existing declaration, which is overriding.
7173
7174                   Set_Is_Overriding_Operation (E);
7175
7176                   if Comes_From_Source (E) then
7177                      Check_Overriding_Indicator (E, S, Is_Primitive => False);
7178
7179                      --  Indicate that E overrides the operation from which
7180                      --  S is inherited.
7181
7182                      if Present (Alias (S)) then
7183                         Set_Overridden_Operation (E, Alias (S));
7184                      else
7185                         Set_Overridden_Operation (E, S);
7186                      end if;
7187                   end if;
7188
7189                   return;
7190
7191                   --  Within an instance, the renaming declarations for
7192                   --  actual subprograms may become ambiguous, but they do
7193                   --  not hide each other.
7194
7195                elsif Ekind (E) /= E_Entry
7196                  and then not Comes_From_Source (E)
7197                  and then not Is_Generic_Instance (E)
7198                  and then (Present (Alias (E))
7199                             or else Is_Intrinsic_Subprogram (E))
7200                  and then (not In_Instance
7201                             or else No (Parent (E))
7202                             or else Nkind (Unit_Declaration_Node (E)) /=
7203                                N_Subprogram_Renaming_Declaration)
7204                then
7205                   --  A subprogram child unit is not allowed to override
7206                   --  an inherited subprogram (10.1.1(20)).
7207
7208                   if Is_Child_Unit (S) then
7209                      Error_Msg_N
7210                        ("child unit overrides inherited subprogram in parent",
7211                         S);
7212                      return;
7213                   end if;
7214
7215                   if Is_Non_Overriding_Operation (E, S) then
7216                      Enter_Overloaded_Entity (S);
7217                      if No (Derived_Type)
7218                        or else Is_Tagged_Type (Derived_Type)
7219                      then
7220                         Check_Dispatching_Operation (S, Empty);
7221                      end if;
7222
7223                      return;
7224                   end if;
7225
7226                   --  E is a derived operation or an internal operator which
7227                   --  is being overridden. Remove E from further visibility.
7228                   --  Furthermore, if E is a dispatching operation, it must be
7229                   --  replaced in the list of primitive operations of its type
7230                   --  (see Override_Dispatching_Operation).
7231
7232                   Overridden_Subp := E;
7233
7234                   declare
7235                      Prev : Entity_Id;
7236
7237                   begin
7238                      Prev := First_Entity (Current_Scope);
7239
7240                      while Present (Prev)
7241                        and then Next_Entity (Prev) /= E
7242                      loop
7243                         Next_Entity (Prev);
7244                      end loop;
7245
7246                      --  It is possible for E to be in the current scope and
7247                      --  yet not in the entity chain. This can only occur in a
7248                      --  generic context where E is an implicit concatenation
7249                      --  in the formal part, because in a generic body the
7250                      --  entity chain starts with the formals.
7251
7252                      pragma Assert
7253                        (Present (Prev) or else Chars (E) = Name_Op_Concat);
7254
7255                      --  E must be removed both from the entity_list of the
7256                      --  current scope, and from the visibility chain
7257
7258                      if Debug_Flag_E then
7259                         Write_Str ("Override implicit operation ");
7260                         Write_Int (Int (E));
7261                         Write_Eol;
7262                      end if;
7263
7264                      --  If E is a predefined concatenation, it stands for four
7265                      --  different operations. As a result, a single explicit
7266                      --  declaration does not hide it. In a possible ambiguous
7267                      --  situation, Disambiguate chooses the user-defined op,
7268                      --  so it is correct to retain the previous internal one.
7269
7270                      if Chars (E) /= Name_Op_Concat
7271                        or else Ekind (E) /= E_Operator
7272                      then
7273                         --  For nondispatching derived operations that are
7274                         --  overridden by a subprogram declared in the private
7275                         --  part of a package, we retain the derived
7276                         --  subprogram but mark it as not immediately visible.
7277                         --  If the derived operation was declared in the
7278                         --  visible part then this ensures that it will still
7279                         --  be visible outside the package with the proper
7280                         --  signature (calls from outside must also be
7281                         --  directed to this version rather than the
7282                         --  overriding one, unlike the dispatching case).
7283                         --  Calls from inside the package will still resolve
7284                         --  to the overriding subprogram since the derived one
7285                         --  is marked as not visible within the package.
7286
7287                         --  If the private operation is dispatching, we achieve
7288                         --  the overriding by keeping the implicit operation
7289                         --  but setting its alias to be the overriding one. In
7290                         --  this fashion the proper body is executed in all
7291                         --  cases, but the original signature is used outside
7292                         --  of the package.
7293
7294                         --  If the overriding is not in the private part, we
7295                         --  remove the implicit operation altogether.
7296
7297                         if Is_Private_Declaration (S) then
7298
7299                            if not Is_Dispatching_Operation (E) then
7300                               Set_Is_Immediately_Visible (E, False);
7301                            else
7302                               --  Work done in Override_Dispatching_Operation,
7303                               --  so nothing else need to be done here.
7304
7305                               null;
7306                            end if;
7307
7308                         else
7309                            --  Find predecessor of E in Homonym chain
7310
7311                            if E = Current_Entity (E) then
7312                               Prev_Vis := Empty;
7313                            else
7314                               Prev_Vis := Current_Entity (E);
7315                               while Homonym (Prev_Vis) /= E loop
7316                                  Prev_Vis := Homonym (Prev_Vis);
7317                               end loop;
7318                            end if;
7319
7320                            if Prev_Vis /= Empty then
7321
7322                               --  Skip E in the visibility chain
7323
7324                               Set_Homonym (Prev_Vis, Homonym (E));
7325
7326                            else
7327                               Set_Name_Entity_Id (Chars (E), Homonym (E));
7328                            end if;
7329
7330                            Set_Next_Entity (Prev, Next_Entity (E));
7331
7332                            if No (Next_Entity (Prev)) then
7333                               Set_Last_Entity (Current_Scope, Prev);
7334                            end if;
7335
7336                         end if;
7337                      end if;
7338
7339                      Enter_Overloaded_Entity (S);
7340                      Set_Is_Overriding_Operation (S);
7341                      Check_Overriding_Indicator (S, E, Is_Primitive => True);
7342
7343                      --  Indicate that S overrides the operation from which
7344                      --  E is inherited.
7345
7346                      if Comes_From_Source (S) then
7347                         if Present (Alias (E)) then
7348                            Set_Overridden_Operation (S, Alias (E));
7349                         else
7350                            Set_Overridden_Operation (S, E);
7351                         end if;
7352                      end if;
7353
7354                      if Is_Dispatching_Operation (E) then
7355
7356                         --  An overriding dispatching subprogram inherits the
7357                         --  convention of the overridden subprogram (by
7358                         --  AI-117).
7359
7360                         Set_Convention (S, Convention (E));
7361                         Check_Dispatching_Operation (S, E);
7362
7363                      else
7364                         Check_Dispatching_Operation (S, Empty);
7365                      end if;
7366
7367                      Check_For_Primitive_Subprogram
7368                        (Is_Primitive_Subp, Is_Overriding => True);
7369                      goto Check_Inequality;
7370                   end;
7371
7372                --  Apparent redeclarations in instances can occur when two
7373                --  formal types get the same actual type. The subprograms in
7374                --  in the instance are legal,  even if not callable from the
7375                --  outside. Calls from within are disambiguated elsewhere.
7376                --  For dispatching operations in the visible part, the usual
7377                --  rules apply, and operations with the same profile are not
7378                --  legal (B830001).
7379
7380                elsif (In_Instance_Visible_Part
7381                        and then not Is_Dispatching_Operation (E))
7382                  or else In_Instance_Not_Visible
7383                then
7384                   null;
7385
7386                --  Here we have a real error (identical profile)
7387
7388                else
7389                   Error_Msg_Sloc := Sloc (E);
7390
7391                   --  Avoid cascaded errors if the entity appears in
7392                   --  subsequent calls.
7393
7394                   Set_Scope (S, Current_Scope);
7395
7396                   --  Generate error, with extra useful warning for the case
7397                   --  of a generic instance with no completion.
7398
7399                   if Is_Generic_Instance (S)
7400                     and then not Has_Completion (E)
7401                   then
7402                      Error_Msg_N
7403                        ("instantiation cannot provide body for&", S);
7404                      Error_Msg_N ("\& conflicts with declaration#", S);
7405                   else
7406                      Error_Msg_N ("& conflicts with declaration#", S);
7407                   end if;
7408
7409                   return;
7410                end if;
7411
7412             else
7413                --  If one subprogram has an access parameter and the other
7414                --  a parameter of an access type, calls to either might be
7415                --  ambiguous. Verify that parameters match except for the
7416                --  access parameter.
7417
7418                if May_Hide_Profile then
7419                   declare
7420                      F1 : Entity_Id;
7421                      F2 : Entity_Id;
7422                   begin
7423                      F1 := First_Formal (S);
7424                      F2 := First_Formal (E);
7425                      while Present (F1) and then Present (F2) loop
7426                         if Is_Access_Type (Etype (F1)) then
7427                            if not Is_Access_Type (Etype (F2))
7428                               or else not Conforming_Types
7429                                 (Designated_Type (Etype (F1)),
7430                                  Designated_Type (Etype (F2)),
7431                                  Type_Conformant)
7432                            then
7433                               May_Hide_Profile := False;
7434                            end if;
7435
7436                         elsif
7437                           not Conforming_Types
7438                             (Etype (F1), Etype (F2), Type_Conformant)
7439                         then
7440                            May_Hide_Profile := False;
7441                         end if;
7442
7443                         Next_Formal (F1);
7444                         Next_Formal (F2);
7445                      end loop;
7446
7447                      if May_Hide_Profile
7448                        and then No (F1)
7449                        and then No (F2)
7450                      then
7451                         Error_Msg_NE ("calls to& may be ambiguous?", S, S);
7452                      end if;
7453                   end;
7454                end if;
7455             end if;
7456
7457             E := Homonym (E);
7458          end loop;
7459
7460          <<Add_New_Entity>>
7461
7462          --  On exit, we know that S is a new entity
7463
7464          Enter_Overloaded_Entity (S);
7465          Check_For_Primitive_Subprogram (Is_Primitive_Subp);
7466          Check_Overriding_Indicator
7467            (S, Overridden_Subp, Is_Primitive => Is_Primitive_Subp);
7468
7469          --  If S is a derived operation for an untagged type then by
7470          --  definition it's not a dispatching operation (even if the parent
7471          --  operation was dispatching), so we don't call
7472          --  Check_Dispatching_Operation in that case.
7473
7474          if No (Derived_Type)
7475            or else Is_Tagged_Type (Derived_Type)
7476          then
7477             Check_Dispatching_Operation (S, Empty);
7478          end if;
7479       end if;
7480
7481       --  If this is a user-defined equality operator that is not a derived
7482       --  subprogram, create the corresponding inequality. If the operation is
7483       --  dispatching, the expansion is done elsewhere, and we do not create
7484       --  an explicit inequality operation.
7485
7486       <<Check_Inequality>>
7487          if Chars (S) = Name_Op_Eq
7488            and then Etype (S) = Standard_Boolean
7489            and then Present (Parent (S))
7490            and then not Is_Dispatching_Operation (S)
7491          then
7492             Make_Inequality_Operator (S);
7493          end if;
7494    end New_Overloaded_Entity;
7495
7496    ---------------------
7497    -- Process_Formals --
7498    ---------------------
7499
7500    procedure Process_Formals
7501      (T           : List_Id;
7502       Related_Nod : Node_Id)
7503    is
7504       Param_Spec  : Node_Id;
7505       Formal      : Entity_Id;
7506       Formal_Type : Entity_Id;
7507       Default     : Node_Id;
7508       Ptype       : Entity_Id;
7509
7510       Num_Out_Params  : Nat       := 0;
7511       First_Out_Param : Entity_Id := Empty;
7512       --  Used for setting Is_Only_Out_Parameter
7513
7514       function Is_Class_Wide_Default (D : Node_Id) return Boolean;
7515       --  Check whether the default has a class-wide type. After analysis the
7516       --  default has the type of the formal, so we must also check explicitly
7517       --  for an access attribute.
7518
7519       ---------------------------
7520       -- Is_Class_Wide_Default --
7521       ---------------------------
7522
7523       function Is_Class_Wide_Default (D : Node_Id) return Boolean is
7524       begin
7525          return Is_Class_Wide_Type (Designated_Type (Etype (D)))
7526            or else (Nkind (D) =  N_Attribute_Reference
7527                       and then Attribute_Name (D) = Name_Access
7528                       and then Is_Class_Wide_Type (Etype (Prefix (D))));
7529       end Is_Class_Wide_Default;
7530
7531    --  Start of processing for Process_Formals
7532
7533    begin
7534       --  In order to prevent premature use of the formals in the same formal
7535       --  part, the Ekind is left undefined until all default expressions are
7536       --  analyzed. The Ekind is established in a separate loop at the end.
7537
7538       Param_Spec := First (T);
7539       while Present (Param_Spec) loop
7540          Formal := Defining_Identifier (Param_Spec);
7541          Set_Never_Set_In_Source (Formal, True);
7542          Enter_Name (Formal);
7543
7544          --  Case of ordinary parameters
7545
7546          if Nkind (Parameter_Type (Param_Spec)) /= N_Access_Definition then
7547             Find_Type (Parameter_Type (Param_Spec));
7548             Ptype := Parameter_Type (Param_Spec);
7549
7550             if Ptype = Error then
7551                goto Continue;
7552             end if;
7553
7554             Formal_Type := Entity (Ptype);
7555
7556             if Is_Incomplete_Type (Formal_Type)
7557               or else
7558                (Is_Class_Wide_Type (Formal_Type)
7559                   and then Is_Incomplete_Type (Root_Type (Formal_Type)))
7560             then
7561                --  Ada 2005 (AI-326): Tagged incomplete types allowed
7562
7563                if Is_Tagged_Type (Formal_Type) then
7564                   null;
7565
7566                --  Special handling of Value_Type for CIL case
7567
7568                elsif Is_Value_Type (Formal_Type) then
7569                   null;
7570
7571                elsif not Nkind_In (Parent (T), N_Access_Function_Definition,
7572                                                N_Access_Procedure_Definition)
7573                then
7574                   Error_Msg_N ("invalid use of incomplete type", Param_Spec);
7575
7576                --  An incomplete type that is not tagged is allowed in an
7577                --  access-to-subprogram type only if it is a local declaration
7578                --  with a forthcoming completion (3.10.1 (9.2/2)).
7579
7580                elsif Scope (Formal_Type) /= Scope (Current_Scope) then
7581                   Error_Msg_N
7582                     ("invalid use of limited view of type", Param_Spec);
7583                end if;
7584
7585             elsif Ekind (Formal_Type) = E_Void then
7586                Error_Msg_NE ("premature use of&",
7587                  Parameter_Type (Param_Spec), Formal_Type);
7588             end if;
7589
7590             --  Ada 2005 (AI-231): Create and decorate an internal subtype
7591             --  declaration corresponding to the null-excluding type of the
7592             --  formal in the enclosing scope. Finally, replace the parameter
7593             --  type of the formal with the internal subtype.
7594
7595             if Ada_Version >= Ada_05
7596               and then Null_Exclusion_Present (Param_Spec)
7597             then
7598                if not Is_Access_Type (Formal_Type) then
7599                   Error_Msg_N
7600                     ("`NOT NULL` allowed only for an access type", Param_Spec);
7601
7602                else
7603                   if Can_Never_Be_Null (Formal_Type)
7604                     and then Comes_From_Source (Related_Nod)
7605                   then
7606                      Error_Msg_NE
7607                        ("`NOT NULL` not allowed (& already excludes null)",
7608                         Param_Spec,
7609                         Formal_Type);
7610                   end if;
7611
7612                   Formal_Type :=
7613                     Create_Null_Excluding_Itype
7614                       (T           => Formal_Type,
7615                        Related_Nod => Related_Nod,
7616                        Scope_Id    => Scope (Current_Scope));
7617
7618                   --  If the designated type of the itype is an itype we
7619                   --  decorate it with the Has_Delayed_Freeze attribute to
7620                   --  avoid problems with the backend.
7621
7622                   --  Example:
7623                   --     type T is access procedure;
7624                   --     procedure Op (O : not null T);
7625
7626                   if Is_Itype (Directly_Designated_Type (Formal_Type)) then
7627                      Set_Has_Delayed_Freeze (Formal_Type);
7628                   end if;
7629                end if;
7630             end if;
7631
7632          --  An access formal type
7633
7634          else
7635             Formal_Type :=
7636               Access_Definition (Related_Nod, Parameter_Type (Param_Spec));
7637
7638             --  No need to continue if we already notified errors
7639
7640             if not Present (Formal_Type) then
7641                return;
7642             end if;
7643
7644             --  Ada 2005 (AI-254)
7645
7646             declare
7647                AD : constant Node_Id :=
7648                       Access_To_Subprogram_Definition
7649                         (Parameter_Type (Param_Spec));
7650             begin
7651                if Present (AD) and then Protected_Present (AD) then
7652                   Formal_Type :=
7653                     Replace_Anonymous_Access_To_Protected_Subprogram
7654                       (Param_Spec);
7655                end if;
7656             end;
7657          end if;
7658
7659          Set_Etype (Formal, Formal_Type);
7660          Default := Expression (Param_Spec);
7661
7662          if Present (Default) then
7663             if Out_Present (Param_Spec) then
7664                Error_Msg_N
7665                  ("default initialization only allowed for IN parameters",
7666                   Param_Spec);
7667             end if;
7668
7669             --  Do the special preanalysis of the expression (see section on
7670             --  "Handling of Default Expressions" in the spec of package Sem).
7671
7672             Preanalyze_Spec_Expression (Default, Formal_Type);
7673
7674             --  An access to constant cannot be the default for
7675             --  an access parameter that is an access to variable.
7676
7677             if Ekind (Formal_Type) = E_Anonymous_Access_Type
7678               and then not Is_Access_Constant (Formal_Type)
7679               and then Is_Access_Type (Etype (Default))
7680               and then Is_Access_Constant (Etype (Default))
7681             then
7682                Error_Msg_N
7683                  ("formal that is access to variable cannot be initialized " &
7684                     "with an access-to-constant expression", Default);
7685             end if;
7686
7687             --  Check that the designated type of an access parameter's default
7688             --  is not a class-wide type unless the parameter's designated type
7689             --  is also class-wide.
7690
7691             if Ekind (Formal_Type) = E_Anonymous_Access_Type
7692               and then not From_With_Type (Formal_Type)
7693               and then Is_Class_Wide_Default (Default)
7694               and then not Is_Class_Wide_Type (Designated_Type (Formal_Type))
7695             then
7696                Error_Msg_N
7697                  ("access to class-wide expression not allowed here", Default);
7698             end if;
7699          end if;
7700
7701          --  Ada 2005 (AI-231): Static checks
7702
7703          if Ada_Version >= Ada_05
7704            and then Is_Access_Type (Etype (Formal))
7705            and then Can_Never_Be_Null (Etype (Formal))
7706          then
7707             Null_Exclusion_Static_Checks (Param_Spec);
7708          end if;
7709
7710       <<Continue>>
7711          Next (Param_Spec);
7712       end loop;
7713
7714       --  If this is the formal part of a function specification, analyze the
7715       --  subtype mark in the context where the formals are visible but not
7716       --  yet usable, and may hide outer homographs.
7717
7718       if Nkind (Related_Nod) = N_Function_Specification then
7719          Analyze_Return_Type (Related_Nod);
7720       end if;
7721
7722       --  Now set the kind (mode) of each formal
7723
7724       Param_Spec := First (T);
7725
7726       while Present (Param_Spec) loop
7727          Formal := Defining_Identifier (Param_Spec);
7728          Set_Formal_Mode (Formal);
7729
7730          if Ekind (Formal) = E_In_Parameter then
7731             Set_Default_Value (Formal, Expression (Param_Spec));
7732
7733             if Present (Expression (Param_Spec)) then
7734                Default :=  Expression (Param_Spec);
7735
7736                if Is_Scalar_Type (Etype (Default)) then
7737                   if Nkind
7738                        (Parameter_Type (Param_Spec)) /= N_Access_Definition
7739                   then
7740                      Formal_Type := Entity (Parameter_Type (Param_Spec));
7741
7742                   else
7743                      Formal_Type := Access_Definition
7744                        (Related_Nod, Parameter_Type (Param_Spec));
7745                   end if;
7746
7747                   Apply_Scalar_Range_Check (Default, Formal_Type);
7748                end if;
7749             end if;
7750
7751          elsif Ekind (Formal) = E_Out_Parameter then
7752             Num_Out_Params := Num_Out_Params + 1;
7753
7754             if Num_Out_Params = 1 then
7755                First_Out_Param := Formal;
7756             end if;
7757
7758          elsif Ekind (Formal) = E_In_Out_Parameter then
7759             Num_Out_Params := Num_Out_Params + 1;
7760          end if;
7761
7762          Next (Param_Spec);
7763       end loop;
7764
7765       if Present (First_Out_Param) and then Num_Out_Params = 1 then
7766          Set_Is_Only_Out_Parameter (First_Out_Param);
7767       end if;
7768    end Process_Formals;
7769
7770    ------------------
7771    -- Process_PPCs --
7772    ------------------
7773
7774    procedure Process_PPCs
7775      (N       : Node_Id;
7776       Spec_Id : Entity_Id;
7777       Body_Id : Entity_Id)
7778    is
7779       Loc   : constant Source_Ptr := Sloc (N);
7780       Prag  : Node_Id;
7781       Plist : List_Id := No_List;
7782       Subp  : Entity_Id;
7783       Parms : List_Id;
7784
7785       function Grab_PPC (Nam : Name_Id) return Node_Id;
7786       --  Prag contains an analyzed precondition or postcondition pragma.
7787       --  This function copies the pragma, changes it to the corresponding
7788       --  Check pragma and returns the Check pragma as the result. The
7789       --  argument Nam is either Name_Precondition or Name_Postcondition.
7790
7791       --------------
7792       -- Grab_PPC --
7793       --------------
7794
7795       function Grab_PPC (Nam : Name_Id) return Node_Id is
7796          CP : constant Node_Id := New_Copy_Tree (Prag);
7797
7798       begin
7799          --  Set Analyzed to false, since we want to reanalyze the check
7800          --  procedure. Note that it is only at the outer level that we
7801          --  do this fiddling, for the spec cases, the already preanalyzed
7802          --  parameters are not affected.
7803
7804          --  For a postcondition pragma within a generic, preserve the pragma
7805          --  for later expansion.
7806
7807          Set_Analyzed (CP, False);
7808
7809          if Nam = Name_Postcondition
7810            and then not Expander_Active
7811          then
7812             return CP;
7813          end if;
7814
7815          --  Change pragma into corresponding pragma Check
7816
7817          Prepend_To (Pragma_Argument_Associations (CP),
7818            Make_Pragma_Argument_Association (Sloc (Prag),
7819              Expression =>
7820                Make_Identifier (Loc,
7821                  Chars => Nam)));
7822          Set_Pragma_Identifier (CP,
7823            Make_Identifier (Sloc (Prag),
7824              Chars => Name_Check));
7825
7826          return CP;
7827       end Grab_PPC;
7828
7829    --  Start of processing for Process_PPCs
7830
7831    begin
7832       --  Nothing to do if we are not generating code
7833
7834       if Operating_Mode /= Generate_Code then
7835          return;
7836       end if;
7837
7838       --  Grab preconditions from spec
7839
7840       if Present (Spec_Id) then
7841
7842          --  Loop through PPC pragmas from spec. Note that preconditions from
7843          --  the body will be analyzed and converted when we scan the body
7844          --  declarations below.
7845
7846          Prag := Spec_PPC_List (Spec_Id);
7847          while Present (Prag) loop
7848             if Pragma_Name (Prag) = Name_Precondition
7849               and then PPC_Enabled (Prag)
7850             then
7851                --  Add pragma Check at the start of the declarations of N.
7852                --  Note that this processing reverses the order of the list,
7853                --  which is what we want since new entries were chained to
7854                --  the head of the list.
7855
7856                Prepend (Grab_PPC (Name_Precondition), Declarations (N));
7857             end if;
7858
7859             Prag := Next_Pragma (Prag);
7860          end loop;
7861       end if;
7862
7863       --  Build postconditions procedure if needed and prepend the following
7864       --  declaration to the start of the declarations for the subprogram.
7865
7866       --     procedure _postconditions [(_Result : resulttype)] is
7867       --     begin
7868       --        pragma Check (Postcondition, condition [,message]);
7869       --        pragma Check (Postcondition, condition [,message]);
7870       --        ...
7871       --     end;
7872
7873       --  First we deal with the postconditions in the body
7874
7875       if Is_Non_Empty_List (Declarations (N)) then
7876
7877          --  Loop through declarations
7878
7879          Prag := First (Declarations (N));
7880          while Present (Prag) loop
7881             if Nkind (Prag) = N_Pragma then
7882
7883                --  If pragma, capture if enabled postcondition, else ignore
7884
7885                if Pragma_Name (Prag) = Name_Postcondition
7886                  and then Check_Enabled (Name_Postcondition)
7887                then
7888                   if Plist = No_List then
7889                      Plist := Empty_List;
7890                   end if;
7891
7892                   Analyze (Prag);
7893
7894                   --  If expansion is disabled, as in a generic unit,
7895                   --  save pragma for later expansion.
7896
7897                   if not Expander_Active then
7898                      Prepend (Grab_PPC (Name_Postcondition), Declarations (N));
7899                   else
7900                      Append (Grab_PPC (Name_Postcondition), Plist);
7901                   end if;
7902                end if;
7903
7904                Next (Prag);
7905
7906                --  Not a pragma, if comes from source, then end scan
7907
7908             elsif Comes_From_Source (Prag) then
7909                exit;
7910
7911                --  Skip stuff not coming from source
7912
7913             else
7914                Next (Prag);
7915             end if;
7916          end loop;
7917       end if;
7918
7919       --  Now deal with any postconditions from the spec
7920
7921       if Present (Spec_Id) then
7922
7923          --  Loop through PPC pragmas from spec
7924
7925          Prag := Spec_PPC_List (Spec_Id);
7926          while Present (Prag) loop
7927             if Pragma_Name (Prag) = Name_Postcondition
7928               and then PPC_Enabled (Prag)
7929             then
7930                if Plist = No_List then
7931                   Plist := Empty_List;
7932                end if;
7933
7934                if not Expander_Active then
7935                   Prepend (Grab_PPC (Name_Postcondition), Declarations (N));
7936                else
7937                   Append (Grab_PPC (Name_Postcondition), Plist);
7938                end if;
7939             end if;
7940
7941             Prag := Next_Pragma (Prag);
7942          end loop;
7943       end if;
7944
7945       --  If we had any postconditions and expansion is enabled, build
7946       --  the Postconditions procedure.
7947
7948       if Present (Plist)
7949         and then Expander_Active
7950       then
7951          Subp := Defining_Entity (N);
7952
7953          if Etype (Subp) /= Standard_Void_Type then
7954             Parms := New_List (
7955               Make_Parameter_Specification (Loc,
7956                 Defining_Identifier =>
7957                   Make_Defining_Identifier (Loc,
7958                     Chars => Name_uResult),
7959                 Parameter_Type => New_Occurrence_Of (Etype (Subp), Loc)));
7960          else
7961             Parms := No_List;
7962          end if;
7963
7964          Prepend_To (Declarations (N),
7965            Make_Subprogram_Body (Loc,
7966              Specification =>
7967                Make_Procedure_Specification (Loc,
7968                  Defining_Unit_Name =>
7969                    Make_Defining_Identifier (Loc,
7970                      Chars => Name_uPostconditions),
7971                  Parameter_Specifications => Parms),
7972
7973              Declarations => Empty_List,
7974
7975              Handled_Statement_Sequence =>
7976                Make_Handled_Sequence_Of_Statements (Loc,
7977                  Statements => Plist)));
7978
7979          if Present (Spec_Id) then
7980             Set_Has_Postconditions (Spec_Id);
7981          else
7982             Set_Has_Postconditions (Body_Id);
7983          end if;
7984       end if;
7985    end Process_PPCs;
7986
7987    ----------------------------
7988    -- Reference_Body_Formals --
7989    ----------------------------
7990
7991    procedure Reference_Body_Formals (Spec : Entity_Id; Bod : Entity_Id) is
7992       Fs : Entity_Id;
7993       Fb : Entity_Id;
7994
7995    begin
7996       if Error_Posted (Spec) then
7997          return;
7998       end if;
7999
8000       --  Iterate over both lists. They may be of different lengths if the two
8001       --  specs are not conformant.
8002
8003       Fs := First_Formal (Spec);
8004       Fb := First_Formal (Bod);
8005       while Present (Fs) and then Present (Fb) loop
8006          Generate_Reference (Fs, Fb, 'b');
8007
8008          if Style_Check then
8009             Style.Check_Identifier (Fb, Fs);
8010          end if;
8011
8012          Set_Spec_Entity (Fb, Fs);
8013          Set_Referenced (Fs, False);
8014          Next_Formal (Fs);
8015          Next_Formal (Fb);
8016       end loop;
8017    end Reference_Body_Formals;
8018
8019    -------------------------
8020    -- Set_Actual_Subtypes --
8021    -------------------------
8022
8023    procedure Set_Actual_Subtypes (N : Node_Id; Subp : Entity_Id) is
8024       Loc            : constant Source_Ptr := Sloc (N);
8025       Decl           : Node_Id;
8026       Formal         : Entity_Id;
8027       T              : Entity_Id;
8028       First_Stmt     : Node_Id := Empty;
8029       AS_Needed      : Boolean;
8030
8031    begin
8032       --  If this is an empty initialization procedure, no need to create
8033       --  actual subtypes (small optimization).
8034
8035       if Ekind (Subp) = E_Procedure
8036         and then Is_Null_Init_Proc (Subp)
8037       then
8038          return;
8039       end if;
8040
8041       Formal := First_Formal (Subp);
8042       while Present (Formal) loop
8043          T := Etype (Formal);
8044
8045          --  We never need an actual subtype for a constrained formal
8046
8047          if Is_Constrained (T) then
8048             AS_Needed := False;
8049
8050          --  If we have unknown discriminants, then we do not need an actual
8051          --  subtype, or more accurately we cannot figure it out! Note that
8052          --  all class-wide types have unknown discriminants.
8053
8054          elsif Has_Unknown_Discriminants (T) then
8055             AS_Needed := False;
8056
8057          --  At this stage we have an unconstrained type that may need an
8058          --  actual subtype. For sure the actual subtype is needed if we have
8059          --  an unconstrained array type.
8060
8061          elsif Is_Array_Type (T) then
8062             AS_Needed := True;
8063
8064          --  The only other case needing an actual subtype is an unconstrained
8065          --  record type which is an IN parameter (we cannot generate actual
8066          --  subtypes for the OUT or IN OUT case, since an assignment can
8067          --  change the discriminant values. However we exclude the case of
8068          --  initialization procedures, since discriminants are handled very
8069          --  specially in this context, see the section entitled "Handling of
8070          --  Discriminants" in Einfo.
8071
8072          --  We also exclude the case of Discrim_SO_Functions (functions used
8073          --  in front end layout mode for size/offset values), since in such
8074          --  functions only discriminants are referenced, and not only are such
8075          --  subtypes not needed, but they cannot always be generated, because
8076          --  of order of elaboration issues.
8077
8078          elsif Is_Record_Type (T)
8079            and then Ekind (Formal) = E_In_Parameter
8080            and then Chars (Formal) /= Name_uInit
8081            and then not Is_Unchecked_Union (T)
8082            and then not Is_Discrim_SO_Function (Subp)
8083          then
8084             AS_Needed := True;
8085
8086          --  All other cases do not need an actual subtype
8087
8088          else
8089             AS_Needed := False;
8090          end if;
8091
8092          --  Generate actual subtypes for unconstrained arrays and
8093          --  unconstrained discriminated records.
8094
8095          if AS_Needed then
8096             if Nkind (N) = N_Accept_Statement then
8097
8098                --  If expansion is active, The formal is replaced by a local
8099                --  variable that renames the corresponding entry of the
8100                --  parameter block, and it is this local variable that may
8101                --  require an actual subtype.
8102
8103                if Expander_Active then
8104                   Decl := Build_Actual_Subtype (T, Renamed_Object (Formal));
8105                else
8106                   Decl := Build_Actual_Subtype (T, Formal);
8107                end if;
8108
8109                if Present (Handled_Statement_Sequence (N)) then
8110                   First_Stmt :=
8111                     First (Statements (Handled_Statement_Sequence (N)));
8112                   Prepend (Decl, Statements (Handled_Statement_Sequence (N)));
8113                   Mark_Rewrite_Insertion (Decl);
8114                else
8115                   --  If the accept statement has no body, there will be no
8116                   --  reference to the actuals, so no need to compute actual
8117                   --  subtypes.
8118
8119                   return;
8120                end if;
8121
8122             else
8123                Decl := Build_Actual_Subtype (T, Formal);
8124                Prepend (Decl, Declarations (N));
8125                Mark_Rewrite_Insertion (Decl);
8126             end if;
8127
8128             --  The declaration uses the bounds of an existing object, and
8129             --  therefore needs no constraint checks.
8130
8131             Analyze (Decl, Suppress => All_Checks);
8132
8133             --  We need to freeze manually the generated type when it is
8134             --  inserted anywhere else than in a declarative part.
8135
8136             if Present (First_Stmt) then
8137                Insert_List_Before_And_Analyze (First_Stmt,
8138                  Freeze_Entity (Defining_Identifier (Decl), Loc));
8139             end if;
8140
8141             if Nkind (N) = N_Accept_Statement
8142               and then Expander_Active
8143             then
8144                Set_Actual_Subtype (Renamed_Object (Formal),
8145                  Defining_Identifier (Decl));
8146             else
8147                Set_Actual_Subtype (Formal, Defining_Identifier (Decl));
8148             end if;
8149          end if;
8150
8151          Next_Formal (Formal);
8152       end loop;
8153    end Set_Actual_Subtypes;
8154
8155    ---------------------
8156    -- Set_Formal_Mode --
8157    ---------------------
8158
8159    procedure Set_Formal_Mode (Formal_Id : Entity_Id) is
8160       Spec : constant Node_Id := Parent (Formal_Id);
8161
8162    begin
8163       --  Note: we set Is_Known_Valid for IN parameters and IN OUT parameters
8164       --  since we ensure that corresponding actuals are always valid at the
8165       --  point of the call.
8166
8167       if Out_Present (Spec) then
8168          if Ekind (Scope (Formal_Id)) = E_Function
8169            or else Ekind (Scope (Formal_Id)) = E_Generic_Function
8170          then
8171             Error_Msg_N ("functions can only have IN parameters", Spec);
8172             Set_Ekind (Formal_Id, E_In_Parameter);
8173
8174          elsif In_Present (Spec) then
8175             Set_Ekind (Formal_Id, E_In_Out_Parameter);
8176
8177          else
8178             Set_Ekind               (Formal_Id, E_Out_Parameter);
8179             Set_Never_Set_In_Source (Formal_Id, True);
8180             Set_Is_True_Constant    (Formal_Id, False);
8181             Set_Current_Value       (Formal_Id, Empty);
8182          end if;
8183
8184       else
8185          Set_Ekind (Formal_Id, E_In_Parameter);
8186       end if;
8187
8188       --  Set Is_Known_Non_Null for access parameters since the language
8189       --  guarantees that access parameters are always non-null. We also set
8190       --  Can_Never_Be_Null, since there is no way to change the value.
8191
8192       if Nkind (Parameter_Type (Spec)) = N_Access_Definition then
8193
8194          --  Ada 2005 (AI-231): In Ada95, access parameters are always non-
8195          --  null; In Ada 2005, only if then null_exclusion is explicit.
8196
8197          if Ada_Version < Ada_05
8198            or else Can_Never_Be_Null (Etype (Formal_Id))
8199          then
8200             Set_Is_Known_Non_Null (Formal_Id);
8201             Set_Can_Never_Be_Null (Formal_Id);
8202          end if;
8203
8204       --  Ada 2005 (AI-231): Null-exclusion access subtype
8205
8206       elsif Is_Access_Type (Etype (Formal_Id))
8207         and then Can_Never_Be_Null (Etype (Formal_Id))
8208       then
8209          Set_Is_Known_Non_Null (Formal_Id);
8210       end if;
8211
8212       Set_Mechanism (Formal_Id, Default_Mechanism);
8213       Set_Formal_Validity (Formal_Id);
8214    end Set_Formal_Mode;
8215
8216    -------------------------
8217    -- Set_Formal_Validity --
8218    -------------------------
8219
8220    procedure Set_Formal_Validity (Formal_Id : Entity_Id) is
8221    begin
8222       --  If no validity checking, then we cannot assume anything about the
8223       --  validity of parameters, since we do not know there is any checking
8224       --  of the validity on the call side.
8225
8226       if not Validity_Checks_On then
8227          return;
8228
8229       --  If validity checking for parameters is enabled, this means we are
8230       --  not supposed to make any assumptions about argument values.
8231
8232       elsif Validity_Check_Parameters then
8233          return;
8234
8235       --  If we are checking in parameters, we will assume that the caller is
8236       --  also checking parameters, so we can assume the parameter is valid.
8237
8238       elsif Ekind (Formal_Id) = E_In_Parameter
8239         and then Validity_Check_In_Params
8240       then
8241          Set_Is_Known_Valid (Formal_Id, True);
8242
8243       --  Similar treatment for IN OUT parameters
8244
8245       elsif Ekind (Formal_Id) = E_In_Out_Parameter
8246         and then Validity_Check_In_Out_Params
8247       then
8248          Set_Is_Known_Valid (Formal_Id, True);
8249       end if;
8250    end Set_Formal_Validity;
8251
8252    ------------------------
8253    -- Subtype_Conformant --
8254    ------------------------
8255
8256    function Subtype_Conformant
8257      (New_Id                   : Entity_Id;
8258       Old_Id                   : Entity_Id;
8259       Skip_Controlling_Formals : Boolean := False) return Boolean
8260    is
8261       Result : Boolean;
8262    begin
8263       Check_Conformance (New_Id, Old_Id, Subtype_Conformant, False, Result,
8264         Skip_Controlling_Formals => Skip_Controlling_Formals);
8265       return Result;
8266    end Subtype_Conformant;
8267
8268    ---------------------
8269    -- Type_Conformant --
8270    ---------------------
8271
8272    function Type_Conformant
8273      (New_Id                   : Entity_Id;
8274       Old_Id                   : Entity_Id;
8275       Skip_Controlling_Formals : Boolean := False) return Boolean
8276    is
8277       Result : Boolean;
8278    begin
8279       May_Hide_Profile := False;
8280
8281       Check_Conformance
8282         (New_Id, Old_Id, Type_Conformant, False, Result,
8283          Skip_Controlling_Formals => Skip_Controlling_Formals);
8284       return Result;
8285    end Type_Conformant;
8286
8287    -------------------------------
8288    -- Valid_Operator_Definition --
8289    -------------------------------
8290
8291    procedure Valid_Operator_Definition (Designator : Entity_Id) is
8292       N    : Integer := 0;
8293       F    : Entity_Id;
8294       Id   : constant Name_Id := Chars (Designator);
8295       N_OK : Boolean;
8296
8297    begin
8298       F := First_Formal (Designator);
8299       while Present (F) loop
8300          N := N + 1;
8301
8302          if Present (Default_Value (F)) then
8303             Error_Msg_N
8304               ("default values not allowed for operator parameters",
8305                Parent (F));
8306          end if;
8307
8308          Next_Formal (F);
8309       end loop;
8310
8311       --  Verify that user-defined operators have proper number of arguments
8312       --  First case of operators which can only be unary
8313
8314       if Id = Name_Op_Not
8315         or else Id = Name_Op_Abs
8316       then
8317          N_OK := (N = 1);
8318
8319       --  Case of operators which can be unary or binary
8320
8321       elsif Id = Name_Op_Add
8322         or Id = Name_Op_Subtract
8323       then
8324          N_OK := (N in 1 .. 2);
8325
8326       --  All other operators can only be binary
8327
8328       else
8329          N_OK := (N = 2);
8330       end if;
8331
8332       if not N_OK then
8333          Error_Msg_N
8334            ("incorrect number of arguments for operator", Designator);
8335       end if;
8336
8337       if Id = Name_Op_Ne
8338         and then Base_Type (Etype (Designator)) = Standard_Boolean
8339         and then not Is_Intrinsic_Subprogram (Designator)
8340       then
8341          Error_Msg_N
8342             ("explicit definition of inequality not allowed", Designator);
8343       end if;
8344    end Valid_Operator_Definition;
8345
8346 end Sem_Ch6;