OSDN Git Service

2011-08-29 Robert Dewar <dewar@adacore.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / exp_ch9.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                              E X P _ C H 9                               --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --          Copyright (C) 1992-2011, Free Software Foundation, Inc.         --
10 --                                                                          --
11 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
12 -- terms of the  GNU General Public License as published  by the Free Soft- --
13 -- ware  Foundation;  either version 3,  or (at your option) any later ver- --
14 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
17 -- for  more details.  You should have  received  a copy of the GNU General --
18 -- Public License  distributed with GNAT; see file COPYING3.  If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license.          --
20 --                                                                          --
21 -- GNAT was originally developed  by the GNAT team at  New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
23 --                                                                          --
24 ------------------------------------------------------------------------------
25
26 with Atree;    use Atree;
27 with Checks;   use Checks;
28 with Einfo;    use Einfo;
29 with Elists;   use Elists;
30 with Errout;   use Errout;
31 with Exp_Ch3;  use Exp_Ch3;
32 with Exp_Ch6;  use Exp_Ch6;
33 with Exp_Ch11; use Exp_Ch11;
34 with Exp_Dbug; use Exp_Dbug;
35 with Exp_Disp; use Exp_Disp;
36 with Exp_Sel;  use Exp_Sel;
37 with Exp_Smem; use Exp_Smem;
38 with Exp_Tss;  use Exp_Tss;
39 with Exp_Util; use Exp_Util;
40 with Freeze;   use Freeze;
41 with Hostparm;
42 with Itypes;   use Itypes;
43 with Namet;    use Namet;
44 with Nlists;   use Nlists;
45 with Nmake;    use Nmake;
46 with Opt;      use Opt;
47 with Restrict; use Restrict;
48 with Rident;   use Rident;
49 with Rtsfind;  use Rtsfind;
50 with Sem;      use Sem;
51 with Sem_Aux;  use Sem_Aux;
52 with Sem_Ch6;  use Sem_Ch6;
53 with Sem_Ch8;  use Sem_Ch8;
54 with Sem_Ch11; use Sem_Ch11;
55 with Sem_Elab; use Sem_Elab;
56 with Sem_Eval; use Sem_Eval;
57 with Sem_Res;  use Sem_Res;
58 with Sem_Util; use Sem_Util;
59 with Sinfo;    use Sinfo;
60 with Snames;   use Snames;
61 with Stand;    use Stand;
62 with Stringt;  use Stringt;
63 with Targparm; use Targparm;
64 with Tbuild;   use Tbuild;
65 with Uintp;    use Uintp;
66
67 package body Exp_Ch9 is
68
69    --  The following constant establishes the upper bound for the index of
70    --  an entry family. It is used to limit the allocated size of protected
71    --  types with defaulted discriminant of an integer type, when the bound
72    --  of some entry family depends on a discriminant. The limitation to
73    --  entry families of 128K should be reasonable in all cases, and is a
74    --  documented implementation restriction. It will be lifted when protected
75    --  entry families are re-implemented as a single ordered queue.
76
77    Entry_Family_Bound : constant Int := 2**16;
78
79    -----------------------
80    -- Local Subprograms --
81    -----------------------
82
83    function Actual_Index_Expression
84      (Sloc  : Source_Ptr;
85       Ent   : Entity_Id;
86       Index : Node_Id;
87       Tsk   : Entity_Id) return Node_Id;
88    --  Compute the index position for an entry call. Tsk is the target task. If
89    --  the bounds of some entry family depend on discriminants, the expression
90    --  computed by this function uses the discriminants of the target task.
91
92    procedure Add_Object_Pointer
93      (Loc      : Source_Ptr;
94       Conc_Typ : Entity_Id;
95       Decls    : List_Id);
96    --  Prepend an object pointer declaration to the declaration list Decls.
97    --  This object pointer is initialized to a type conversion of the System.
98    --  Address pointer passed to entry barrier functions and entry body
99    --  procedures.
100
101    procedure Add_Formal_Renamings
102      (Spec  : Node_Id;
103       Decls : List_Id;
104       Ent   : Entity_Id;
105       Loc   : Source_Ptr);
106    --  Create renaming declarations for the formals, inside the procedure that
107    --  implements an entry body. The renamings make the original names of the
108    --  formals accessible to gdb, and serve no other purpose.
109    --    Spec is the specification of the procedure being built.
110    --    Decls is the list of declarations to be enhanced.
111    --    Ent is the entity for the original entry body.
112
113    function Build_Accept_Body (Astat : Node_Id) return Node_Id;
114    --  Transform accept statement into a block with added exception handler.
115    --  Used both for simple accept statements and for accept alternatives in
116    --  select statements. Astat is the accept statement.
117
118    function Build_Barrier_Function
119      (N   : Node_Id;
120       Ent : Entity_Id;
121       Pid : Node_Id) return Node_Id;
122    --  Build the function body returning the value of the barrier expression
123    --  for the specified entry body.
124
125    function Build_Barrier_Function_Specification
126      (Loc    : Source_Ptr;
127       Def_Id : Entity_Id) return Node_Id;
128    --  Build a specification for a function implementing the protected entry
129    --  barrier of the specified entry body.
130
131    function Build_Corresponding_Record
132      (N    : Node_Id;
133       Ctyp : Node_Id;
134       Loc  : Source_Ptr) return Node_Id;
135    --  Common to tasks and protected types. Copy discriminant specifications,
136    --  build record declaration. N is the type declaration, Ctyp is the
137    --  concurrent entity (task type or protected type).
138
139    function Build_Entry_Count_Expression
140      (Concurrent_Type : Node_Id;
141       Component_List  : List_Id;
142       Loc             : Source_Ptr) return Node_Id;
143    --  Compute number of entries for concurrent object. This is a count of
144    --  simple entries, followed by an expression that computes the length
145    --  of the range of each entry family. A single array with that size is
146    --  allocated for each concurrent object of the type.
147
148    function Build_Parameter_Block
149      (Loc     : Source_Ptr;
150       Actuals : List_Id;
151       Formals : List_Id;
152       Decls   : List_Id) return Entity_Id;
153    --  Generate an access type for each actual parameter in the list Actuals.
154    --  Create an encapsulating record that contains all the actuals and return
155    --  its type. Generate:
156    --    type Ann1 is access all <actual1-type>
157    --    ...
158    --    type AnnN is access all <actualN-type>
159    --    type Pnn is record
160    --       <formal1> : Ann1;
161    --       ...
162    --       <formalN> : AnnN;
163    --    end record;
164
165    procedure Build_PPC_Wrapper (E : Entity_Id; Decl : Node_Id);
166    --  Build body of wrapper procedure for an entry or entry family that has
167    --  pre/postconditions. The body gathers the PPC's and expands them in the
168    --  usual way, and performs the entry call itself. This way preconditions
169    --  are evaluated before the call is queued. E is the entry in question,
170    --  and Decl is the enclosing synchronized type declaration at whose
171    --  freeze point the generated body is analyzed.
172
173    function Build_Renamed_Formal_Declaration
174      (New_F          : Entity_Id;
175       Formal         : Entity_Id;
176       Comp           : Entity_Id;
177       Renamed_Formal : Node_Id) return Node_Id;
178    --  Create a renaming declaration for a formal, within a protected entry
179    --  body or an accept body. The renamed object is a component of the
180    --  parameter block that is a parameter in the entry call.
181
182    --  In Ada2012,  If the formal is an incomplete tagged type, the renaming
183    --  does not dereference the corresponding component to prevent an illegal
184    --  use of the incomplete type (AI05-0151).
185
186    procedure Build_Wrapper_Bodies
187      (Loc : Source_Ptr;
188       Typ : Entity_Id;
189       N   : Node_Id);
190    --  Ada 2005 (AI-345): Typ is either a concurrent type or the corresponding
191    --  record of a concurrent type. N is the insertion node where all bodies
192    --  will be placed. This routine builds the bodies of the subprograms which
193    --  serve as an indirection mechanism to overriding primitives of concurrent
194    --  types, entries and protected procedures. Any new body is analyzed.
195
196    procedure Build_Wrapper_Specs
197      (Loc : Source_Ptr;
198       Typ : Entity_Id;
199       N   : in out Node_Id);
200    --  Ada 2005 (AI-345): Typ is either a concurrent type or the corresponding
201    --  record of a concurrent type. N is the insertion node where all specs
202    --  will be placed. This routine builds the specs of the subprograms which
203    --  serve as an indirection mechanism to overriding primitives of concurrent
204    --  types, entries and protected procedures. Any new spec is analyzed.
205
206    function Build_Find_Body_Index (Typ : Entity_Id) return Node_Id;
207    --  Build the function that translates the entry index in the call
208    --  (which depends on the size of entry families) into an index into the
209    --  Entry_Bodies_Array, to determine the body and barrier function used
210    --  in a protected entry call. A pointer to this function appears in every
211    --  protected object.
212
213    function Build_Find_Body_Index_Spec (Typ : Entity_Id) return Node_Id;
214    --  Build subprogram declaration for previous one
215
216    function Build_Protected_Entry
217      (N   : Node_Id;
218       Ent : Entity_Id;
219       Pid : Node_Id) return Node_Id;
220    --  Build the procedure implementing the statement sequence of the specified
221    --  entry body.
222
223    function Build_Protected_Entry_Specification
224      (Loc    : Source_Ptr;
225       Def_Id : Entity_Id;
226       Ent_Id : Entity_Id) return Node_Id;
227    --  Build a specification for the procedure implementing the statements of
228    --  the specified entry body. Add attributes associating it with the entry
229    --  defining identifier Ent_Id.
230
231    function Build_Protected_Spec
232      (N           : Node_Id;
233       Obj_Type    : Entity_Id;
234       Ident       : Entity_Id;
235       Unprotected : Boolean := False) return List_Id;
236    --  Utility shared by Build_Protected_Sub_Spec and Expand_Access_Protected_
237    --  Subprogram_Type. Builds signature of protected subprogram, adding the
238    --  formal that corresponds to the object itself. For an access to protected
239    --  subprogram, there is no object type to specify, so the parameter has
240    --  type Address and mode In. An indirect call through such a pointer will
241    --  convert the address to a reference to the actual object. The object is
242    --  a limited record and therefore a by_reference type.
243
244    function Build_Protected_Subprogram_Body
245      (N         : Node_Id;
246       Pid       : Node_Id;
247       N_Op_Spec : Node_Id) return Node_Id;
248    --  This function is used to construct the protected version of a protected
249    --  subprogram. Its statement sequence first defers abort, then locks
250    --  the associated protected object, and then enters a block that contains
251    --  a call to the unprotected version of the subprogram (for details, see
252    --  Build_Unprotected_Subprogram_Body). This block statement requires
253    --  a cleanup handler that unlocks the object in all cases.
254    --  (see Exp_Ch7.Expand_Cleanup_Actions).
255
256    function Build_Selected_Name
257      (Prefix      : Entity_Id;
258       Selector    : Entity_Id;
259       Append_Char : Character := ' ') return Name_Id;
260    --  Build a name in the form of Prefix__Selector, with an optional
261    --  character appended. This is used for internal subprograms generated
262    --  for operations of protected types, including barrier functions.
263    --  For the subprograms generated for entry bodies and entry barriers,
264    --  the generated name includes a sequence number that makes names
265    --  unique in the presence of entry overloading. This is necessary
266    --  because entry body procedures and barrier functions all have the
267    --  same signature.
268
269    procedure Build_Simple_Entry_Call
270      (N       : Node_Id;
271       Concval : Node_Id;
272       Ename   : Node_Id;
273       Index   : Node_Id);
274    --  Some comments here would be useful ???
275
276    function Build_Task_Proc_Specification (T : Entity_Id) return Node_Id;
277    --  This routine constructs a specification for the procedure that we will
278    --  build for the task body for task type T. The spec has the form:
279    --
280    --    procedure tnameB (_Task : access tnameV);
281    --
282    --  where name is the character name taken from the task type entity that
283    --  is passed as the argument to the procedure, and tnameV is the task
284    --  value type that is associated with the task type.
285
286    function Build_Unprotected_Subprogram_Body
287      (N   : Node_Id;
288       Pid : Node_Id) return Node_Id;
289    --  This routine constructs the unprotected version of a protected
290    --  subprogram body, which is contains all of the code in the
291    --  original, unexpanded body. This is the version of the protected
292    --  subprogram that is called from all protected operations on the same
293    --  object, including the protected version of the same subprogram.
294
295    procedure Collect_Entry_Families
296      (Loc          : Source_Ptr;
297       Cdecls       : List_Id;
298       Current_Node : in out Node_Id;
299       Conctyp      : Entity_Id);
300    --  For each entry family in a concurrent type, create an anonymous array
301    --  type of the right size, and add a component to the corresponding_record.
302
303    function Concurrent_Object
304      (Spec_Id  : Entity_Id;
305       Conc_Typ : Entity_Id) return Entity_Id;
306    --  Given a subprogram entity Spec_Id and concurrent type Conc_Typ, return
307    --  the entity associated with the concurrent object in the Protected_Body_
308    --  Subprogram or the Task_Body_Procedure of Spec_Id. The returned entity
309    --  denotes formal parameter _O, _object or _task.
310
311    function Copy_Result_Type (Res : Node_Id) return Node_Id;
312    --  Copy the result type of a function specification, when building the
313    --  internal operation corresponding to a protected function, or when
314    --  expanding an access to protected function. If the result is an anonymous
315    --  access to subprogram itself, we need to create a new signature with the
316    --  same parameter names and the same resolved types, but with new entities
317    --  for the formals.
318
319    procedure Debug_Private_Data_Declarations (Decls : List_Id);
320    --  Decls is a list which may contain the declarations created by Install_
321    --  Private_Data_Declarations. All generated entities are marked as needing
322    --  debug info and debug nodes are manually generation where necessary. This
323    --  step of the expansion must to be done after private data has been moved
324    --  to its final resting scope to ensure proper visibility of debug objects.
325
326    function Family_Offset
327      (Loc  : Source_Ptr;
328       Hi   : Node_Id;
329       Lo   : Node_Id;
330       Ttyp : Entity_Id;
331       Cap  : Boolean) return Node_Id;
332    --  Compute (Hi - Lo) for two entry family indexes. Hi is the index in
333    --  an accept statement, or the upper bound in the discrete subtype of
334    --  an entry declaration. Lo is the corresponding lower bound. Ttyp is
335    --  the concurrent type of the entry. If Cap is true, the result is
336    --  capped according to Entry_Family_Bound.
337
338    function Family_Size
339      (Loc  : Source_Ptr;
340       Hi   : Node_Id;
341       Lo   : Node_Id;
342       Ttyp : Entity_Id;
343       Cap  : Boolean) return Node_Id;
344    --  Compute (Hi - Lo) + 1 Max 0, to determine the number of entries in
345    --  a family, and handle properly the superflat case. This is equivalent
346    --  to the use of 'Length on the index type, but must use Family_Offset
347    --  to handle properly the case of bounds that depend on discriminants.
348    --  If Cap is true, the result is capped according to Entry_Family_Bound.
349
350    procedure Extract_Dispatching_Call
351      (N        : Node_Id;
352       Call_Ent : out Entity_Id;
353       Object   : out Entity_Id;
354       Actuals  : out List_Id;
355       Formals  : out List_Id);
356    --  Given a dispatching call, extract the entity of the name of the call,
357    --  its actual dispatching object, its actual parameters and the formal
358    --  parameters of the overridden interface-level version. If the type of
359    --  the dispatching object is an access type then an explicit dereference
360    --  is returned in Object.
361
362    procedure Extract_Entry
363      (N       : Node_Id;
364       Concval : out Node_Id;
365       Ename   : out Node_Id;
366       Index   : out Node_Id);
367    --  Given an entry call, returns the associated concurrent object,
368    --  the entry name, and the entry family index.
369
370    function Find_Task_Or_Protected_Pragma
371      (T : Node_Id;
372       P : Name_Id) return Node_Id;
373    --  Searches the task or protected definition T for the first occurrence
374    --  of the pragma whose name is given by P. The caller has ensured that
375    --  the pragma is present in the task definition. A special case is that
376    --  when P is Name_uPriority, the call will also find Interrupt_Priority.
377    --  ??? Should be implemented with the rep item chain mechanism.
378
379    function Index_Object (Spec_Id : Entity_Id) return Entity_Id;
380    --  Given a subprogram identifier, return the entity which is associated
381    --  with the protection entry index in the Protected_Body_Subprogram or the
382    --  Task_Body_Procedure of Spec_Id. The returned entity denotes formal
383    --  parameter _E.
384
385    function Is_Potentially_Large_Family
386      (Base_Index : Entity_Id;
387       Conctyp    : Entity_Id;
388       Lo         : Node_Id;
389       Hi         : Node_Id) return Boolean;
390
391    function Is_Private_Primitive_Subprogram (Id : Entity_Id) return Boolean;
392    --  Determine whether Id is a function or a procedure and is marked as a
393    --  private primitive.
394
395    function Null_Statements (Stats : List_Id) return Boolean;
396    --  Used to check DO-END sequence. Checks for equivalent of DO NULL; END.
397    --  Allows labels, and pragma Warnings/Unreferenced in the sequence as
398    --  well to still count as null. Returns True for a null sequence. The
399    --  argument is the list of statements from the DO-END sequence.
400
401    function Parameter_Block_Pack
402      (Loc     : Source_Ptr;
403       Blk_Typ : Entity_Id;
404       Actuals : List_Id;
405       Formals : List_Id;
406       Decls   : List_Id;
407       Stmts   : List_Id) return Entity_Id;
408    --  Set the components of the generated parameter block with the values of
409    --  the actual parameters. Generate aliased temporaries to capture the
410    --  values for types that are passed by copy. Otherwise generate a reference
411    --  to the actual's value. Return the address of the aggregate block.
412    --  Generate:
413    --    Jnn1 : alias <formal-type1>;
414    --    Jnn1 := <actual1>;
415    --    ...
416    --    P : Blk_Typ := (
417    --      Jnn1'unchecked_access;
418    --      <actual2>'reference;
419    --      ...);
420
421    function Parameter_Block_Unpack
422      (Loc     : Source_Ptr;
423       P       : Entity_Id;
424       Actuals : List_Id;
425       Formals : List_Id) return List_Id;
426    --  Retrieve the values of the components from the parameter block and
427    --  assign then to the original actual parameters. Generate:
428    --    <actual1> := P.<formal1>;
429    --    ...
430    --    <actualN> := P.<formalN>;
431
432    function Trivial_Accept_OK return Boolean;
433    --  If there is no DO-END block for an accept, or if the DO-END block has
434    --  only null statements, then it is possible to do the Rendezvous with much
435    --  less overhead using the Accept_Trivial routine in the run-time library.
436    --  However, this is not always a valid optimization. Whether it is valid or
437    --  not depends on the Task_Dispatching_Policy. The issue is whether a full
438    --  rescheduling action is required or not. In FIFO_Within_Priorities, such
439    --  a rescheduling is required, so this optimization is not allowed. This
440    --  function returns True if the optimization is permitted.
441
442    -----------------------------
443    -- Actual_Index_Expression --
444    -----------------------------
445
446    function Actual_Index_Expression
447      (Sloc  : Source_Ptr;
448       Ent   : Entity_Id;
449       Index : Node_Id;
450       Tsk   : Entity_Id) return Node_Id
451    is
452       Ttyp : constant Entity_Id := Etype (Tsk);
453       Expr : Node_Id;
454       Num  : Node_Id;
455       Lo   : Node_Id;
456       Hi   : Node_Id;
457       Prev : Entity_Id;
458       S    : Node_Id;
459
460       function Actual_Family_Offset (Hi, Lo : Node_Id) return Node_Id;
461       --  Compute difference between bounds of entry family
462
463       --------------------------
464       -- Actual_Family_Offset --
465       --------------------------
466
467       function Actual_Family_Offset (Hi, Lo : Node_Id) return Node_Id is
468
469          function Actual_Discriminant_Ref (Bound : Node_Id) return Node_Id;
470          --  Replace a reference to a discriminant with a selected component
471          --  denoting the discriminant of the target task.
472
473          -----------------------------
474          -- Actual_Discriminant_Ref --
475          -----------------------------
476
477          function Actual_Discriminant_Ref (Bound : Node_Id) return Node_Id is
478             Typ : constant Entity_Id := Etype (Bound);
479             B   : Node_Id;
480
481          begin
482             if not Is_Entity_Name (Bound)
483               or else Ekind (Entity (Bound)) /= E_Discriminant
484             then
485                if Nkind (Bound) = N_Attribute_Reference then
486                   return Bound;
487                else
488                   B := New_Copy_Tree (Bound);
489                end if;
490
491             else
492                B :=
493                  Make_Selected_Component (Sloc,
494                    Prefix => New_Copy_Tree (Tsk),
495                    Selector_Name => New_Occurrence_Of (Entity (Bound), Sloc));
496
497                Analyze_And_Resolve (B, Typ);
498             end if;
499
500             return
501               Make_Attribute_Reference (Sloc,
502                 Attribute_Name => Name_Pos,
503                 Prefix => New_Occurrence_Of (Etype (Bound), Sloc),
504                 Expressions => New_List (B));
505          end Actual_Discriminant_Ref;
506
507       --  Start of processing for Actual_Family_Offset
508
509       begin
510          return
511            Make_Op_Subtract (Sloc,
512              Left_Opnd  => Actual_Discriminant_Ref (Hi),
513              Right_Opnd => Actual_Discriminant_Ref (Lo));
514       end Actual_Family_Offset;
515
516    --  Start of processing for Actual_Index_Expression
517
518    begin
519       --  The queues of entries and entry families appear in textual order in
520       --  the associated record. The entry index is computed as the sum of the
521       --  number of queues for all entries that precede the designated one, to
522       --  which is added the index expression, if this expression denotes a
523       --  member of a family.
524
525       --  The following is a place holder for the count of simple entries
526
527       Num := Make_Integer_Literal (Sloc, 1);
528
529       --  We construct an expression which is a series of addition operations.
530       --  See comments in Entry_Index_Expression, which is identical in
531       --  structure.
532
533       if Present (Index) then
534          S := Etype (Discrete_Subtype_Definition (Declaration_Node (Ent)));
535
536          Expr :=
537            Make_Op_Add (Sloc,
538              Left_Opnd  => Num,
539
540              Right_Opnd =>
541                Actual_Family_Offset (
542                  Make_Attribute_Reference (Sloc,
543                    Attribute_Name => Name_Pos,
544                    Prefix => New_Reference_To (Base_Type (S), Sloc),
545                    Expressions => New_List (Relocate_Node (Index))),
546                  Type_Low_Bound (S)));
547       else
548          Expr := Num;
549       end if;
550
551       --  Now add lengths of preceding entries and entry families
552
553       Prev := First_Entity (Ttyp);
554
555       while Chars (Prev) /= Chars (Ent)
556         or else (Ekind (Prev) /= Ekind (Ent))
557         or else not Sem_Ch6.Type_Conformant (Ent, Prev)
558       loop
559          if Ekind (Prev) = E_Entry then
560             Set_Intval (Num, Intval (Num) + 1);
561
562          elsif Ekind (Prev) = E_Entry_Family then
563             S :=
564               Etype (Discrete_Subtype_Definition (Declaration_Node (Prev)));
565
566             --  The need for the following full view retrieval stems from
567             --  this complex case of nested generics and tasking:
568
569             --     generic
570             --        type Formal_Index is range <>;
571             --        ...
572             --     package Outer is
573             --        type Index is private;
574             --        generic
575             --           ...
576             --        package Inner is
577             --           procedure P;
578             --        end Inner;
579             --     private
580             --        type Index is new Formal_Index range 1 .. 10;
581             --     end Outer;
582
583             --     package body Outer is
584             --        task type T is
585             --           entry Fam (Index);  --  (2)
586             --           entry E;
587             --        end T;
588             --        package body Inner is  --  (3)
589             --           procedure P is
590             --           begin
591             --              T.E;             --  (1)
592             --           end P;
593             --       end Inner;
594             --       ...
595
596             --  We are currently building the index expression for the entry
597             --  call "T.E" (1). Part of the expansion must mention the range
598             --  of the discrete type "Index" (2) of entry family "Fam".
599             --  However only the private view of type "Index" is available to
600             --  the inner generic (3) because there was no prior mention of
601             --  the type inside "Inner". This visibility requirement is
602             --  implicit and cannot be detected during the construction of
603             --  the generic trees and needs special handling.
604
605             if In_Instance_Body
606               and then Is_Private_Type (S)
607               and then Present (Full_View (S))
608             then
609                S := Full_View (S);
610             end if;
611
612             Lo := Type_Low_Bound  (S);
613             Hi := Type_High_Bound (S);
614
615             Expr :=
616               Make_Op_Add (Sloc,
617               Left_Opnd  => Expr,
618               Right_Opnd =>
619                 Make_Op_Add (Sloc,
620                   Left_Opnd =>
621                     Actual_Family_Offset (Hi, Lo),
622                   Right_Opnd =>
623                     Make_Integer_Literal (Sloc, 1)));
624
625          --  Other components are anonymous types to be ignored
626
627          else
628             null;
629          end if;
630
631          Next_Entity (Prev);
632       end loop;
633
634       return Expr;
635    end Actual_Index_Expression;
636
637    --------------------------
638    -- Add_Formal_Renamings --
639    --------------------------
640
641    procedure Add_Formal_Renamings
642      (Spec  : Node_Id;
643       Decls : List_Id;
644       Ent   : Entity_Id;
645       Loc   : Source_Ptr)
646    is
647       Ptr : constant Entity_Id :=
648               Defining_Identifier
649                 (Next (First (Parameter_Specifications (Spec))));
650       --  The name of the formal that holds the address of the parameter block
651       --  for the call.
652
653       Comp            : Entity_Id;
654       Decl            : Node_Id;
655       Formal          : Entity_Id;
656       New_F           : Entity_Id;
657       Renamed_Formal  : Node_Id;
658
659    begin
660       Formal := First_Formal (Ent);
661       while Present (Formal) loop
662          Comp := Entry_Component (Formal);
663          New_F :=
664            Make_Defining_Identifier (Sloc (Formal),
665              Chars => Chars (Formal));
666          Set_Etype (New_F, Etype (Formal));
667          Set_Scope (New_F, Ent);
668
669          --  Now we set debug info needed on New_F even though it does not
670          --  come from source, so that the debugger will get the right
671          --  information for these generated names.
672
673          Set_Debug_Info_Needed (New_F);
674
675          if Ekind (Formal) = E_In_Parameter then
676             Set_Ekind (New_F, E_Constant);
677          else
678             Set_Ekind (New_F, E_Variable);
679             Set_Extra_Constrained (New_F, Extra_Constrained (Formal));
680          end if;
681
682          Set_Actual_Subtype (New_F, Actual_Subtype (Formal));
683
684          Renamed_Formal :=
685            Make_Selected_Component (Loc,
686              Prefix        =>
687                Unchecked_Convert_To (Entry_Parameters_Type (Ent),
688                  Make_Identifier (Loc, Chars (Ptr))),
689              Selector_Name => New_Reference_To (Comp, Loc));
690
691          Decl :=
692            Build_Renamed_Formal_Declaration
693              (New_F, Formal, Comp, Renamed_Formal);
694
695          Append (Decl, Decls);
696          Set_Renamed_Object (Formal, New_F);
697          Next_Formal (Formal);
698       end loop;
699    end Add_Formal_Renamings;
700
701    ------------------------
702    -- Add_Object_Pointer --
703    ------------------------
704
705    procedure Add_Object_Pointer
706      (Loc      : Source_Ptr;
707       Conc_Typ : Entity_Id;
708       Decls    : List_Id)
709    is
710       Rec_Typ : constant Entity_Id := Corresponding_Record_Type (Conc_Typ);
711       Decl    : Node_Id;
712       Obj_Ptr : Node_Id;
713
714    begin
715       --  Create the renaming declaration for the Protection object of a
716       --  protected type. _Object is used by Complete_Entry_Body.
717       --  ??? An attempt to make this a renaming was unsuccessful.
718
719       --  Build the entity for the access type
720
721       Obj_Ptr :=
722         Make_Defining_Identifier (Loc,
723           New_External_Name (Chars (Rec_Typ), 'P'));
724
725       --  Generate:
726       --    _object : poVP := poVP!O;
727
728       Decl :=
729         Make_Object_Declaration (Loc,
730           Defining_Identifier =>
731             Make_Defining_Identifier (Loc, Name_uObject),
732           Object_Definition =>
733             New_Reference_To (Obj_Ptr, Loc),
734           Expression =>
735             Unchecked_Convert_To (Obj_Ptr, Make_Identifier (Loc, Name_uO)));
736       Set_Debug_Info_Needed (Defining_Identifier (Decl));
737       Prepend_To (Decls, Decl);
738
739       --  Generate:
740       --    type poVP is access poV;
741
742       Decl :=
743         Make_Full_Type_Declaration (Loc,
744           Defining_Identifier =>
745             Obj_Ptr,
746           Type_Definition =>
747             Make_Access_To_Object_Definition (Loc,
748               Subtype_Indication =>
749                 New_Reference_To (Rec_Typ, Loc)));
750       Set_Debug_Info_Needed (Defining_Identifier (Decl));
751       Prepend_To (Decls, Decl);
752    end Add_Object_Pointer;
753
754    -----------------------
755    -- Build_Accept_Body --
756    -----------------------
757
758    function Build_Accept_Body (Astat : Node_Id) return  Node_Id is
759       Loc     : constant Source_Ptr := Sloc (Astat);
760       Stats   : constant Node_Id    := Handled_Statement_Sequence (Astat);
761       New_S   : Node_Id;
762       Hand    : Node_Id;
763       Call    : Node_Id;
764       Ohandle : Node_Id;
765
766    begin
767       --  At the end of the statement sequence, Complete_Rendezvous is called.
768       --  A label skipping the Complete_Rendezvous, and all other accept
769       --  processing, has already been added for the expansion of requeue
770       --  statements. The Sloc is copied from the last statement since it
771       --  is really part of this last statement.
772
773       Call :=
774         Build_Runtime_Call
775           (Sloc (Last (Statements (Stats))), RE_Complete_Rendezvous);
776       Insert_Before (Last (Statements (Stats)), Call);
777       Analyze (Call);
778
779       --  If exception handlers are present, then append Complete_Rendezvous
780       --  calls to the handlers, and construct the required outer block. As
781       --  above, the Sloc is copied from the last statement in the sequence.
782
783       if Present (Exception_Handlers (Stats)) then
784          Hand := First (Exception_Handlers (Stats));
785          while Present (Hand) loop
786             Call :=
787               Build_Runtime_Call
788                 (Sloc (Last (Statements (Hand))), RE_Complete_Rendezvous);
789             Append (Call, Statements (Hand));
790             Analyze (Call);
791             Next (Hand);
792          end loop;
793
794          New_S :=
795            Make_Handled_Sequence_Of_Statements (Loc,
796              Statements => New_List (
797                Make_Block_Statement (Loc,
798                  Handled_Statement_Sequence => Stats)));
799
800       else
801          New_S := Stats;
802       end if;
803
804       --  At this stage we know that the new statement sequence does not
805       --  have an exception handler part, so we supply one to call
806       --  Exceptional_Complete_Rendezvous. This handler is
807
808       --    when all others =>
809       --       Exceptional_Complete_Rendezvous (Get_GNAT_Exception);
810
811       --  We handle Abort_Signal to make sure that we properly catch the abort
812       --  case and wake up the caller.
813
814       Ohandle := Make_Others_Choice (Loc);
815       Set_All_Others (Ohandle);
816
817       Set_Exception_Handlers (New_S,
818         New_List (
819           Make_Implicit_Exception_Handler (Loc,
820             Exception_Choices => New_List (Ohandle),
821
822             Statements =>  New_List (
823               Make_Procedure_Call_Statement (Sloc (Stats),
824                 Name => New_Reference_To (
825                   RTE (RE_Exceptional_Complete_Rendezvous), Sloc (Stats)),
826                 Parameter_Associations => New_List (
827                   Make_Function_Call (Sloc (Stats),
828                     Name => New_Reference_To (
829                       RTE (RE_Get_GNAT_Exception), Sloc (Stats)))))))));
830
831       Set_Parent (New_S, Astat); -- temp parent for Analyze call
832       Analyze_Exception_Handlers (Exception_Handlers (New_S));
833       Expand_Exception_Handlers (New_S);
834
835       --  Exceptional_Complete_Rendezvous must be called with abort
836       --  still deferred, which is the case for a "when all others" handler.
837
838       return New_S;
839    end Build_Accept_Body;
840
841    -----------------------------------
842    -- Build_Activation_Chain_Entity --
843    -----------------------------------
844
845    procedure Build_Activation_Chain_Entity (N : Node_Id) is
846       P     : Node_Id;
847       Decls : List_Id;
848       Chain : Entity_Id;
849
850    begin
851       --  Loop to find enclosing construct containing activation chain variable
852       --  The construct is a body, a block, or an extended return.
853
854       P := Parent (N);
855
856       while not Nkind_In (P, N_Subprogram_Body,
857                              N_Entry_Body,
858                              N_Package_Declaration,
859                              N_Package_Body,
860                              N_Block_Statement,
861                              N_Task_Body,
862                              N_Extended_Return_Statement)
863       loop
864          P := Parent (P);
865       end loop;
866
867       --  If we are in a package body, the activation chain variable is
868       --  declared in the body, but the Activation_Chain_Entity is attached
869       --  to the spec.
870
871       if Nkind (P) = N_Package_Body then
872          Decls := Declarations (P);
873          P := Unit_Declaration_Node (Corresponding_Spec (P));
874
875       elsif Nkind (P) = N_Package_Declaration then
876          Decls := Visible_Declarations (Specification (P));
877
878       elsif Nkind (P) = N_Extended_Return_Statement then
879          Decls := Return_Object_Declarations (P);
880
881       else
882          Decls := Declarations (P);
883       end if;
884
885       --  If activation chain entity not already declared, declare it
886
887       if Nkind (P) = N_Extended_Return_Statement
888         or else No (Activation_Chain_Entity (P))
889       then
890          Chain := Make_Defining_Identifier (Sloc (N), Name_uChain);
891
892          --  Note: An extended return statement is not really a task activator,
893          --  but it does have an activation chain on which to store the tasks
894          --  temporarily. On successful return, the tasks on this chain are
895          --  moved to the chain passed in by the caller. We do not build an
896          --  Activation_Chain_Entity for an N_Extended_Return_Statement,
897          --  because we do not want to build a call to Activate_Tasks. Task
898          --  activation is the responsibility of the caller.
899
900          if Nkind (P) /= N_Extended_Return_Statement then
901             Set_Activation_Chain_Entity (P, Chain);
902          end if;
903
904          Prepend_To (Decls,
905            Make_Object_Declaration (Sloc (P),
906              Defining_Identifier => Chain,
907              Aliased_Present => True,
908              Object_Definition =>
909                New_Reference_To (RTE (RE_Activation_Chain), Sloc (P))));
910
911          Analyze (First (Decls));
912       end if;
913    end Build_Activation_Chain_Entity;
914
915    ----------------------------
916    -- Build_Barrier_Function --
917    ----------------------------
918
919    function Build_Barrier_Function
920      (N   : Node_Id;
921       Ent : Entity_Id;
922       Pid : Node_Id) return Node_Id
923    is
924       Ent_Formals : constant Node_Id    := Entry_Body_Formal_Part (N);
925       Cond        : constant Node_Id    := Condition (Ent_Formals);
926       Loc         : constant Source_Ptr := Sloc (Cond);
927       Func_Id     : constant Entity_Id  := Barrier_Function (Ent);
928       Op_Decls    : constant List_Id    := New_List;
929       Stmt        : Node_Id;
930       Func_Body   : Node_Id;
931
932    begin
933       --  Add a declaration for the Protection object, renaming declarations
934       --  for the discriminals and privals and finally a declaration for the
935       --  entry family index (if applicable).
936
937       Install_Private_Data_Declarations (Sloc (N),
938          Spec_Id  => Func_Id,
939          Conc_Typ => Pid,
940          Body_Nod => N,
941          Decls    => Op_Decls,
942          Barrier  => True,
943          Family   => Ekind (Ent) = E_Entry_Family);
944
945       --  If compiling with -fpreserve-control-flow, make sure we insert an
946       --  IF statement so that the back-end knows to generate a conditional
947       --  branch instruction, even if the condition is just the name of a
948       --  boolean object.
949
950       if Opt.Suppress_Control_Flow_Optimizations then
951          Stmt := Make_Implicit_If_Statement (Cond,
952                    Condition       => Cond,
953                    Then_Statements => New_List (
954                      Make_Simple_Return_Statement (Loc,
955                        New_Occurrence_Of (Standard_True, Loc))),
956                    Else_Statements => New_List (
957                      Make_Simple_Return_Statement (Loc,
958                        New_Occurrence_Of (Standard_False, Loc))));
959
960       else
961          Stmt := Make_Simple_Return_Statement (Loc, Cond);
962       end if;
963
964       --  Note: the condition in the barrier function needs to be properly
965       --  processed for the C/Fortran boolean possibility, but this happens
966       --  automatically since the return statement does this normalization.
967
968       Func_Body :=
969         Make_Subprogram_Body (Loc,
970           Specification =>
971             Build_Barrier_Function_Specification (Loc,
972               Make_Defining_Identifier (Loc, Chars (Func_Id))),
973           Declarations => Op_Decls,
974           Handled_Statement_Sequence =>
975             Make_Handled_Sequence_Of_Statements (Loc,
976               Statements => New_List (Stmt)));
977       Set_Is_Entry_Barrier_Function (Func_Body);
978
979       return Func_Body;
980    end Build_Barrier_Function;
981
982    ------------------------------------------
983    -- Build_Barrier_Function_Specification --
984    ------------------------------------------
985
986    function Build_Barrier_Function_Specification
987      (Loc    : Source_Ptr;
988       Def_Id : Entity_Id) return Node_Id
989    is
990    begin
991       Set_Debug_Info_Needed (Def_Id);
992
993       return Make_Function_Specification (Loc,
994         Defining_Unit_Name => Def_Id,
995         Parameter_Specifications => New_List (
996           Make_Parameter_Specification (Loc,
997             Defining_Identifier =>
998               Make_Defining_Identifier (Loc, Name_uO),
999             Parameter_Type =>
1000               New_Reference_To (RTE (RE_Address), Loc)),
1001
1002           Make_Parameter_Specification (Loc,
1003             Defining_Identifier =>
1004               Make_Defining_Identifier (Loc, Name_uE),
1005             Parameter_Type =>
1006               New_Reference_To (RTE (RE_Protected_Entry_Index), Loc))),
1007
1008         Result_Definition =>
1009           New_Reference_To (Standard_Boolean, Loc));
1010    end Build_Barrier_Function_Specification;
1011
1012    --------------------------
1013    -- Build_Call_With_Task --
1014    --------------------------
1015
1016    function Build_Call_With_Task
1017      (N : Node_Id;
1018       E : Entity_Id) return Node_Id
1019    is
1020       Loc : constant Source_Ptr := Sloc (N);
1021    begin
1022       return
1023         Make_Function_Call (Loc,
1024           Name => New_Reference_To (E, Loc),
1025           Parameter_Associations => New_List (Concurrent_Ref (N)));
1026    end Build_Call_With_Task;
1027
1028    --------------------------------
1029    -- Build_Corresponding_Record --
1030    --------------------------------
1031
1032    function Build_Corresponding_Record
1033     (N    : Node_Id;
1034      Ctyp : Entity_Id;
1035      Loc  : Source_Ptr) return Node_Id
1036    is
1037       Rec_Ent  : constant Entity_Id :=
1038                    Make_Defining_Identifier
1039                      (Loc, New_External_Name (Chars (Ctyp), 'V'));
1040       Disc     : Entity_Id;
1041       Dlist    : List_Id;
1042       New_Disc : Entity_Id;
1043       Cdecls   : List_Id;
1044
1045    begin
1046       Set_Corresponding_Record_Type     (Ctyp, Rec_Ent);
1047       Set_Ekind                         (Rec_Ent, E_Record_Type);
1048       Set_Has_Delayed_Freeze            (Rec_Ent, Has_Delayed_Freeze (Ctyp));
1049       Set_Is_Concurrent_Record_Type     (Rec_Ent, True);
1050       Set_Corresponding_Concurrent_Type (Rec_Ent, Ctyp);
1051       Set_Stored_Constraint             (Rec_Ent, No_Elist);
1052       Cdecls := New_List;
1053
1054       --  Use discriminals to create list of discriminants for record, and
1055       --  create new discriminals for use in default expressions, etc. It is
1056       --  worth noting that a task discriminant gives rise to 5 entities;
1057
1058       --  a) The original discriminant.
1059       --  b) The discriminal for use in the task.
1060       --  c) The discriminant of the corresponding record.
1061       --  d) The discriminal for the init proc of the corresponding record.
1062       --  e) The local variable that renames the discriminant in the procedure
1063       --     for the task body.
1064
1065       --  In fact the discriminals b) are used in the renaming declarations
1066       --  for e). See details in einfo (Handling of Discriminants).
1067
1068       if Present (Discriminant_Specifications (N)) then
1069          Dlist := New_List;
1070          Disc := First_Discriminant (Ctyp);
1071
1072          while Present (Disc) loop
1073             New_Disc := CR_Discriminant (Disc);
1074
1075             Append_To (Dlist,
1076               Make_Discriminant_Specification (Loc,
1077                 Defining_Identifier => New_Disc,
1078                 Discriminant_Type =>
1079                   New_Occurrence_Of (Etype (Disc), Loc),
1080                 Expression =>
1081                   New_Copy (Discriminant_Default_Value (Disc))));
1082
1083             Next_Discriminant (Disc);
1084          end loop;
1085
1086       else
1087          Dlist := No_List;
1088       end if;
1089
1090       --  Now we can construct the record type declaration. Note that this
1091       --  record is "limited tagged". It is "limited" to reflect the underlying
1092       --  limitedness of the task or protected object that it represents, and
1093       --  ensuring for example that it is properly passed by reference. It is
1094       --  "tagged" to give support to dispatching calls through interfaces. We
1095       --  propagate here the list of interfaces covered by the concurrent type
1096       --  (Ada 2005: AI-345).
1097
1098       return
1099         Make_Full_Type_Declaration (Loc,
1100           Defining_Identifier => Rec_Ent,
1101           Discriminant_Specifications => Dlist,
1102           Type_Definition =>
1103             Make_Record_Definition (Loc,
1104               Component_List =>
1105                 Make_Component_List (Loc,
1106                   Component_Items => Cdecls),
1107               Tagged_Present  =>
1108                  Ada_Version >= Ada_2005 and then Is_Tagged_Type (Ctyp),
1109               Interface_List  => Interface_List (N),
1110               Limited_Present => True));
1111    end Build_Corresponding_Record;
1112
1113    ----------------------------------
1114    -- Build_Entry_Count_Expression --
1115    ----------------------------------
1116
1117    function Build_Entry_Count_Expression
1118      (Concurrent_Type : Node_Id;
1119       Component_List  : List_Id;
1120       Loc             : Source_Ptr) return Node_Id
1121    is
1122       Eindx  : Nat;
1123       Ent    : Entity_Id;
1124       Ecount : Node_Id;
1125       Comp   : Node_Id;
1126       Lo     : Node_Id;
1127       Hi     : Node_Id;
1128       Typ    : Entity_Id;
1129       Large  : Boolean;
1130
1131    begin
1132       --  Count number of non-family entries
1133
1134       Eindx := 0;
1135       Ent := First_Entity (Concurrent_Type);
1136       while Present (Ent) loop
1137          if Ekind (Ent) = E_Entry then
1138             Eindx := Eindx + 1;
1139          end if;
1140
1141          Next_Entity (Ent);
1142       end loop;
1143
1144       Ecount := Make_Integer_Literal (Loc, Eindx);
1145
1146       --  Loop through entry families building the addition nodes
1147
1148       Ent := First_Entity (Concurrent_Type);
1149       Comp := First (Component_List);
1150       while Present (Ent) loop
1151          if Ekind (Ent) = E_Entry_Family then
1152             while Chars (Ent) /= Chars (Defining_Identifier (Comp)) loop
1153                Next (Comp);
1154             end loop;
1155
1156             Typ := Etype (Discrete_Subtype_Definition (Parent (Ent)));
1157             Hi := Type_High_Bound (Typ);
1158             Lo := Type_Low_Bound  (Typ);
1159             Large := Is_Potentially_Large_Family
1160                        (Base_Type (Typ), Concurrent_Type, Lo, Hi);
1161             Ecount :=
1162               Make_Op_Add (Loc,
1163                 Left_Opnd  => Ecount,
1164                 Right_Opnd => Family_Size
1165                                 (Loc, Hi, Lo, Concurrent_Type, Large));
1166          end if;
1167
1168          Next_Entity (Ent);
1169       end loop;
1170
1171       return Ecount;
1172    end Build_Entry_Count_Expression;
1173
1174    -----------------------
1175    -- Build_Entry_Names --
1176    -----------------------
1177
1178    function Build_Entry_Names (Conc_Typ : Entity_Id) return Node_Id is
1179       Loc       : constant Source_Ptr := Sloc (Conc_Typ);
1180       B_Decls   : List_Id;
1181       B_Stmts   : List_Id;
1182       Comp      : Node_Id;
1183       Index     : Entity_Id;
1184       Index_Typ : RE_Id;
1185       Typ       : Entity_Id := Conc_Typ;
1186
1187       procedure Build_Entry_Family_Name (Id : Entity_Id);
1188       --  Generate:
1189       --    for Lnn in Family_Low .. Family_High loop
1190       --       Inn := Inn + 1;
1191       --       Set_Entry_Name
1192       --         (_init._object <or> _init._task_id,
1193       --          Inn,
1194       --          new String ("<Entry name>(" & Lnn'Img & ")"));
1195       --    end loop;
1196       --  Note that the bounds of the range may reference discriminants. The
1197       --  above construct is added directly to the statements of the block.
1198
1199       procedure Build_Entry_Name (Id : Entity_Id);
1200       --  Generate:
1201       --    Inn := Inn + 1;
1202       --    Set_Entry_Name
1203       --      (_init._object <or>_init._task_id,
1204       --       Inn,
1205       --       new String ("<Entry name>");
1206       --  The above construct is added directly to the statements of the block.
1207
1208       function Build_Set_Entry_Name_Call (Arg3 : Node_Id) return Node_Id;
1209       --  Generate the call to the runtime routine Set_Entry_Name with actuals
1210       --  _init._task_id or _init._object, Inn and Arg3.
1211
1212       procedure Increment_Index (Stmts : List_Id);
1213       --  Generate the following and add it to Stmts
1214       --    Inn := Inn + 1;
1215
1216       -----------------------------
1217       -- Build_Entry_Family_Name --
1218       -----------------------------
1219
1220       procedure Build_Entry_Family_Name (Id : Entity_Id) is
1221          Def     : constant Node_Id :=
1222                      Discrete_Subtype_Definition (Parent (Id));
1223          L_Id    : constant Entity_Id := Make_Temporary (Loc, 'L');
1224          L_Stmts : constant List_Id := New_List;
1225          Val     : Node_Id;
1226
1227          function Build_Range (Def : Node_Id) return Node_Id;
1228          --  Given a discrete subtype definition of an entry family, generate a
1229          --  range node which covers the range of Def's type.
1230
1231          -----------------
1232          -- Build_Range --
1233          -----------------
1234
1235          function Build_Range (Def : Node_Id) return Node_Id is
1236             High : Node_Id := Type_High_Bound (Etype (Def));
1237             Low  : Node_Id := Type_Low_Bound  (Etype (Def));
1238
1239          begin
1240             --  If a bound references a discriminant, generate an identifier
1241             --  with the same name. Resolution will map it to the formals of
1242             --  the init proc.
1243
1244             if Is_Entity_Name (Low)
1245               and then Ekind (Entity (Low)) = E_Discriminant
1246             then
1247                Low := Make_Identifier (Loc, Chars (Low));
1248             else
1249                Low := New_Copy_Tree (Low);
1250             end if;
1251
1252             if Is_Entity_Name (High)
1253               and then Ekind (Entity (High)) = E_Discriminant
1254             then
1255                High := Make_Identifier (Loc, Chars (High));
1256             else
1257                High := New_Copy_Tree (High);
1258             end if;
1259
1260             return
1261               Make_Range (Loc,
1262                 Low_Bound  => Low,
1263                 High_Bound => High);
1264          end Build_Range;
1265
1266       --  Start of processing for Build_Entry_Family_Name
1267
1268       begin
1269          Get_Name_String (Chars (Id));
1270
1271          --  Add a leading '('
1272
1273          Add_Char_To_Name_Buffer ('(');
1274
1275          --  Generate:
1276          --    new String'("<Entry name>(" & Lnn'Img & ")");
1277
1278          --  This is an implicit heap allocation, and Comes_From_Source is
1279          --  False, which ensures that it will get flagged as a violation of
1280          --  No_Implicit_Heap_Allocations when that restriction applies.
1281
1282          Val :=
1283            Make_Allocator (Loc,
1284              Make_Qualified_Expression (Loc,
1285                Subtype_Mark =>
1286                  New_Reference_To (Standard_String, Loc),
1287                Expression =>
1288                  Make_Op_Concat (Loc,
1289                    Left_Opnd =>
1290                      Make_Op_Concat (Loc,
1291                        Left_Opnd =>
1292                          Make_String_Literal (Loc,
1293                            Strval => String_From_Name_Buffer),
1294                        Right_Opnd =>
1295                          Make_Attribute_Reference (Loc,
1296                            Prefix =>
1297                              New_Reference_To (L_Id, Loc),
1298                                Attribute_Name => Name_Img)),
1299                    Right_Opnd =>
1300                      Make_String_Literal (Loc,
1301                        Strval => ")"))));
1302
1303          Increment_Index (L_Stmts);
1304          Append_To (L_Stmts, Build_Set_Entry_Name_Call (Val));
1305
1306          --  Generate:
1307          --    for Lnn in Family_Low .. Family_High loop
1308          --       Inn := Inn + 1;
1309          --       Set_Entry_Name
1310          --         (_init._object <or> _init._task_id, Inn, <Val>);
1311          --    end loop;
1312
1313          Append_To (B_Stmts,
1314            Make_Loop_Statement (Loc,
1315              Iteration_Scheme =>
1316                Make_Iteration_Scheme (Loc,
1317                  Loop_Parameter_Specification =>
1318                    Make_Loop_Parameter_Specification (Loc,
1319                     Defining_Identifier         => L_Id,
1320                     Discrete_Subtype_Definition => Build_Range (Def))),
1321              Statements => L_Stmts,
1322              End_Label => Empty));
1323       end Build_Entry_Family_Name;
1324
1325       ----------------------
1326       -- Build_Entry_Name --
1327       ----------------------
1328
1329       procedure Build_Entry_Name (Id : Entity_Id) is
1330          Val : Node_Id;
1331
1332       begin
1333          Get_Name_String (Chars (Id));
1334
1335          --  This is an implicit heap allocation, and Comes_From_Source is
1336          --  False, which ensures that it will get flagged as a violation of
1337          --  No_Implicit_Heap_Allocations when that restriction applies.
1338
1339          Val :=
1340            Make_Allocator (Loc,
1341              Make_Qualified_Expression (Loc,
1342                Subtype_Mark =>
1343                  New_Reference_To (Standard_String, Loc),
1344                Expression =>
1345                  Make_String_Literal (Loc,
1346                    String_From_Name_Buffer)));
1347
1348          Increment_Index (B_Stmts);
1349          Append_To (B_Stmts, Build_Set_Entry_Name_Call (Val));
1350       end Build_Entry_Name;
1351
1352       -------------------------------
1353       -- Build_Set_Entry_Name_Call --
1354       -------------------------------
1355
1356       function Build_Set_Entry_Name_Call (Arg3 : Node_Id) return Node_Id is
1357          Arg1 : Name_Id;
1358          Proc : RE_Id;
1359
1360       begin
1361          --  Determine the proper name for the first argument and the RTS
1362          --  routine to call.
1363
1364          if Is_Protected_Type (Typ) then
1365             Arg1 := Name_uObject;
1366             Proc := RO_PE_Set_Entry_Name;
1367
1368          else pragma Assert (Is_Task_Type (Typ));
1369             Arg1 := Name_uTask_Id;
1370             Proc := RO_TS_Set_Entry_Name;
1371          end if;
1372
1373          --  Generate:
1374          --    Set_Entry_Name (_init.Arg1, Inn, Arg3);
1375
1376          return
1377            Make_Procedure_Call_Statement (Loc,
1378              Name =>
1379                New_Reference_To (RTE (Proc), Loc),
1380              Parameter_Associations => New_List (
1381                Make_Selected_Component (Loc,              --  _init._object
1382                  Prefix =>                                --  _init._task_id
1383                    Make_Identifier (Loc, Name_uInit),
1384                  Selector_Name =>
1385                    Make_Identifier (Loc, Arg1)),
1386                New_Reference_To (Index, Loc),             --  Inn
1387                Arg3));                                    --  Val
1388       end Build_Set_Entry_Name_Call;
1389
1390       ---------------------
1391       -- Increment_Index --
1392       ---------------------
1393
1394       procedure Increment_Index (Stmts : List_Id) is
1395       begin
1396          --  Generate:
1397          --    Inn := Inn + 1;
1398
1399          Append_To (Stmts,
1400            Make_Assignment_Statement (Loc,
1401              Name =>
1402                New_Reference_To (Index, Loc),
1403              Expression =>
1404                Make_Op_Add (Loc,
1405                  Left_Opnd =>
1406                    New_Reference_To (Index, Loc),
1407                  Right_Opnd =>
1408                    Make_Integer_Literal (Loc, 1))));
1409       end Increment_Index;
1410
1411    --  Start of processing for Build_Entry_Names
1412
1413    begin
1414       --  Retrieve the original concurrent type
1415
1416       if Is_Concurrent_Record_Type (Typ) then
1417          Typ := Corresponding_Concurrent_Type (Typ);
1418       end if;
1419
1420       pragma Assert (Is_Protected_Type (Typ) or else Is_Task_Type (Typ));
1421
1422       --  Nothing to do if the type has no entries
1423
1424       if not Has_Entries (Typ) then
1425          return Empty;
1426       end if;
1427
1428       --  Avoid generating entry names for a protected type with only one entry
1429
1430       if Is_Protected_Type (Typ)
1431         and then Find_Protection_Type (Typ) /= RTE (RE_Protection_Entries)
1432       then
1433          return Empty;
1434       end if;
1435
1436       Index := Make_Temporary (Loc, 'I');
1437
1438       --  Step 1: Generate the declaration of the index variable:
1439       --    Inn : Protected_Entry_Index := 0;
1440       --      or
1441       --    Inn : Task_Entry_Index := 0;
1442
1443       if Is_Protected_Type (Typ) then
1444          Index_Typ := RE_Protected_Entry_Index;
1445       else
1446          Index_Typ := RE_Task_Entry_Index;
1447       end if;
1448
1449       B_Decls := New_List;
1450       Append_To (B_Decls,
1451         Make_Object_Declaration (Loc,
1452           Defining_Identifier => Index,
1453           Object_Definition   => New_Reference_To (RTE (Index_Typ), Loc),
1454           Expression          => Make_Integer_Literal (Loc, 0)));
1455
1456       B_Stmts := New_List;
1457
1458       --  Step 2: Generate a call to Set_Entry_Name for each entry and entry
1459       --  family member.
1460
1461       Comp := First_Entity (Typ);
1462       while Present (Comp) loop
1463          if Ekind (Comp) = E_Entry then
1464             Build_Entry_Name (Comp);
1465
1466          elsif Ekind (Comp) = E_Entry_Family then
1467             Build_Entry_Family_Name (Comp);
1468          end if;
1469
1470          Next_Entity (Comp);
1471       end loop;
1472
1473       --  Step 3: Wrap the statements in a block
1474
1475       return
1476         Make_Block_Statement (Loc,
1477           Declarations => B_Decls,
1478           Handled_Statement_Sequence =>
1479             Make_Handled_Sequence_Of_Statements (Loc,
1480               Statements => B_Stmts));
1481    end Build_Entry_Names;
1482
1483    ---------------------------
1484    -- Build_Parameter_Block --
1485    ---------------------------
1486
1487    function Build_Parameter_Block
1488      (Loc     : Source_Ptr;
1489       Actuals : List_Id;
1490       Formals : List_Id;
1491       Decls   : List_Id) return Entity_Id
1492    is
1493       Actual   : Entity_Id;
1494       Comp_Nam : Node_Id;
1495       Comps    : List_Id;
1496       Formal   : Entity_Id;
1497       Has_Comp : Boolean := False;
1498       Rec_Nam  : Node_Id;
1499
1500    begin
1501       Actual := First (Actuals);
1502       Comps  := New_List;
1503       Formal := Defining_Identifier (First (Formals));
1504
1505       while Present (Actual) loop
1506          if not Is_Controlling_Actual (Actual) then
1507
1508             --  Generate:
1509             --    type Ann is access all <actual-type>
1510
1511             Comp_Nam := Make_Temporary (Loc, 'A');
1512
1513             Append_To (Decls,
1514               Make_Full_Type_Declaration (Loc,
1515                 Defining_Identifier => Comp_Nam,
1516                 Type_Definition     =>
1517                   Make_Access_To_Object_Definition (Loc,
1518                     All_Present        => True,
1519                     Constant_Present   => Ekind (Formal) = E_In_Parameter,
1520                     Subtype_Indication =>
1521                       New_Reference_To (Etype (Actual), Loc))));
1522
1523             --  Generate:
1524             --    Param : Ann;
1525
1526             Append_To (Comps,
1527               Make_Component_Declaration (Loc,
1528                 Defining_Identifier =>
1529                   Make_Defining_Identifier (Loc, Chars (Formal)),
1530                 Component_Definition =>
1531                   Make_Component_Definition (Loc,
1532                     Aliased_Present =>
1533                       False,
1534                     Subtype_Indication =>
1535                       New_Reference_To (Comp_Nam, Loc))));
1536
1537             Has_Comp := True;
1538          end if;
1539
1540          Next_Actual (Actual);
1541          Next_Formal_With_Extras (Formal);
1542       end loop;
1543
1544       Rec_Nam := Make_Temporary (Loc, 'P');
1545
1546       if Has_Comp then
1547
1548          --  Generate:
1549          --    type Pnn is record
1550          --       Param1 : Ann1;
1551          --       ...
1552          --       ParamN : AnnN;
1553
1554          --  where Pnn is a parameter wrapping record, Param1 .. ParamN are
1555          --  the original parameter names and Ann1 .. AnnN are the access to
1556          --  actual types.
1557
1558          Append_To (Decls,
1559            Make_Full_Type_Declaration (Loc,
1560              Defining_Identifier =>
1561                Rec_Nam,
1562              Type_Definition =>
1563                Make_Record_Definition (Loc,
1564                  Component_List =>
1565                    Make_Component_List (Loc, Comps))));
1566       else
1567          --  Generate:
1568          --    type Pnn is null record;
1569
1570          Append_To (Decls,
1571            Make_Full_Type_Declaration (Loc,
1572              Defining_Identifier =>
1573                Rec_Nam,
1574              Type_Definition =>
1575                Make_Record_Definition (Loc,
1576                  Null_Present   => True,
1577                  Component_List => Empty)));
1578       end if;
1579
1580       return Rec_Nam;
1581    end Build_Parameter_Block;
1582
1583    --------------------------------------
1584    -- Build_Renamed_Formal_Declaration --
1585    --------------------------------------
1586
1587    function Build_Renamed_Formal_Declaration
1588      (New_F          : Entity_Id;
1589       Formal         : Entity_Id;
1590       Comp           : Entity_Id;
1591       Renamed_Formal : Node_Id) return Node_Id
1592    is
1593       Loc  : constant Source_Ptr := Sloc (New_F);
1594       Decl : Node_Id;
1595
1596    begin
1597       --  If the formal is a tagged incomplete type, it is already passed
1598       --  by reference, so it is sufficient to rename the pointer component
1599       --  that corresponds to the actual. Otherwise we need to dereference
1600       --  the pointer component to obtain the actual.
1601
1602       if Is_Incomplete_Type (Etype (Formal))
1603         and then Is_Tagged_Type (Etype (Formal))
1604       then
1605          Decl :=
1606            Make_Object_Renaming_Declaration (Loc,
1607              Defining_Identifier => New_F,
1608              Subtype_Mark        => New_Reference_To (Etype (Comp), Loc),
1609              Name                => Renamed_Formal);
1610
1611       else
1612          Decl :=
1613            Make_Object_Renaming_Declaration (Loc,
1614              Defining_Identifier => New_F,
1615              Subtype_Mark        => New_Reference_To (Etype (Formal), Loc),
1616              Name                =>
1617                Make_Explicit_Dereference (Loc, Renamed_Formal));
1618       end if;
1619
1620       return Decl;
1621    end Build_Renamed_Formal_Declaration;
1622
1623    -----------------------
1624    -- Build_PPC_Wrapper --
1625    -----------------------
1626
1627    procedure Build_PPC_Wrapper (E : Entity_Id; Decl : Node_Id) is
1628       Loc        : constant Source_Ptr := Sloc (E);
1629       Synch_Type : constant Entity_Id := Scope (E);
1630
1631       Wrapper_Id : constant Entity_Id :=
1632                      Make_Defining_Identifier (Loc,
1633                        Chars => New_External_Name (Chars (E), 'E'));
1634       --  the wrapper procedure name
1635
1636       Wrapper_Body : Node_Id;
1637
1638       Synch_Id : constant Entity_Id :=
1639                    Make_Defining_Identifier (Loc,
1640                      Chars => New_External_Name (Chars (Scope (E)), 'A'));
1641       --  The parameter that designates the synchronized object in the call
1642
1643       Actuals : constant List_Id := New_List;
1644       --  the actuals in the entry call.
1645
1646       Decls : constant List_Id := New_List;
1647
1648       Entry_Call : Node_Id;
1649       Entry_Name : Node_Id;
1650
1651       Specs : List_Id;
1652       --  The specification of the wrapper procedure
1653
1654    begin
1655
1656       --  Only build the wrapper if entry has pre/postconditions.
1657       --  Should this be done unconditionally instead ???
1658
1659       declare
1660          P : Node_Id;
1661
1662       begin
1663          P := Spec_PPC_List (Contract (E));
1664          if No (P) then
1665             return;
1666          end if;
1667
1668          --  Transfer ppc pragmas to the declarations of the wrapper
1669
1670          while Present (P) loop
1671             if Pragma_Name (P) = Name_Precondition
1672               or else Pragma_Name (P) = Name_Postcondition
1673             then
1674                Append (Relocate_Node (P), Decls);
1675                Set_Analyzed (Last (Decls), False);
1676             end if;
1677
1678             P := Next_Pragma (P);
1679          end loop;
1680       end;
1681
1682       --  First formal is synchronized object
1683
1684       Specs := New_List (
1685         Make_Parameter_Specification (Loc,
1686           Defining_Identifier => Synch_Id,
1687           Out_Present         =>  True,
1688           In_Present          =>  True,
1689           Parameter_Type      => New_Occurrence_Of (Scope (E), Loc)));
1690
1691       Entry_Name :=
1692         Make_Selected_Component (Loc,
1693           Prefix        => New_Occurrence_Of (Synch_Id, Loc),
1694           Selector_Name => New_Occurrence_Of (E, Loc));
1695
1696       --  If entity is entry family, second formal is the corresponding index,
1697       --  and entry name is an indexed component.
1698
1699       if Ekind (E) = E_Entry_Family then
1700          declare
1701             Index : constant Entity_Id :=
1702                       Make_Defining_Identifier (Loc, Name_I);
1703          begin
1704             Append_To (Specs,
1705               Make_Parameter_Specification (Loc,
1706                 Defining_Identifier => Index,
1707                 Parameter_Type      =>
1708                   New_Occurrence_Of (Entry_Index_Type (E), Loc)));
1709
1710             Entry_Name :=
1711               Make_Indexed_Component (Loc,
1712                 Prefix      => Entry_Name,
1713                 Expressions => New_List (New_Occurrence_Of (Index, Loc)));
1714          end;
1715       end if;
1716
1717       Entry_Call :=
1718         Make_Procedure_Call_Statement (Loc,
1719           Name                   => Entry_Name,
1720           Parameter_Associations => Actuals);
1721
1722       --  Now add formals that match those of the entry, and build actuals for
1723       --  the nested entry call.
1724
1725       declare
1726          Form      : Entity_Id;
1727          New_Form  : Entity_Id;
1728          Parm_Spec : Node_Id;
1729
1730       begin
1731          Form := First_Formal (E);
1732          while Present (Form) loop
1733             New_Form := Make_Defining_Identifier (Loc, Chars (Form));
1734             Parm_Spec :=
1735               Make_Parameter_Specification (Loc,
1736                 Defining_Identifier => New_Form,
1737                 Out_Present         => Out_Present (Parent (Form)),
1738                 In_Present          => In_Present  (Parent (Form)),
1739                 Parameter_Type      => New_Occurrence_Of (Etype (Form), Loc));
1740
1741             Append (Parm_Spec, Specs);
1742             Append (New_Occurrence_Of (New_Form, Loc), Actuals);
1743             Next_Formal (Form);
1744          end loop;
1745       end;
1746
1747       --  Add renaming declarations for the discriminants of the enclosing
1748       --  type, which may be visible in the preconditions.
1749
1750       if Has_Discriminants (Synch_Type) then
1751          declare
1752             D : Entity_Id;
1753             Decl : Node_Id;
1754
1755          begin
1756             D := First_Discriminant (Synch_Type);
1757             while Present (D) loop
1758                Decl :=
1759                  Make_Object_Renaming_Declaration (Loc,
1760                    Defining_Identifier =>
1761                      Make_Defining_Identifier (Loc, Chars (D)),
1762                    Subtype_Mark        => New_Reference_To (Etype (D), Loc),
1763                    Name                =>
1764                      Make_Selected_Component (Loc,
1765                        Prefix        => New_Reference_To (Synch_Id, Loc),
1766                        Selector_Name => Make_Identifier (Loc, Chars (D))));
1767                Prepend (Decl, Decls);
1768                Next_Discriminant (D);
1769             end loop;
1770          end;
1771       end if;
1772
1773       Set_PPC_Wrapper (E, Wrapper_Id);
1774       Wrapper_Body :=
1775         Make_Subprogram_Body (Loc,
1776           Specification              =>
1777             Make_Procedure_Specification (Loc,
1778               Defining_Unit_Name       => Wrapper_Id,
1779               Parameter_Specifications => Specs),
1780           Declarations               => Decls,
1781           Handled_Statement_Sequence =>
1782             Make_Handled_Sequence_Of_Statements (Loc,
1783               Statements => New_List (Entry_Call)));
1784
1785       --  The wrapper body is analyzed when the enclosing type is frozen
1786
1787       Append_Freeze_Action (Defining_Entity (Decl), Wrapper_Body);
1788    end Build_PPC_Wrapper;
1789
1790    --------------------------
1791    -- Build_Wrapper_Bodies --
1792    --------------------------
1793
1794    procedure Build_Wrapper_Bodies
1795      (Loc : Source_Ptr;
1796       Typ : Entity_Id;
1797       N   : Node_Id)
1798    is
1799       Rec_Typ : Entity_Id;
1800
1801       function Build_Wrapper_Body
1802         (Loc     : Source_Ptr;
1803          Subp_Id : Entity_Id;
1804          Obj_Typ : Entity_Id;
1805          Formals : List_Id) return Node_Id;
1806       --  Ada 2005 (AI-345): Build the body that wraps a primitive operation
1807       --  associated with a protected or task type. Subp_Id is the subprogram
1808       --  name which will be wrapped. Obj_Typ is the type of the new formal
1809       --  parameter which handles dispatching and object notation. Formals are
1810       --  the original formals of Subp_Id which will be explicitly replicated.
1811
1812       ------------------------
1813       -- Build_Wrapper_Body --
1814       ------------------------
1815
1816       function Build_Wrapper_Body
1817         (Loc     : Source_Ptr;
1818          Subp_Id : Entity_Id;
1819          Obj_Typ : Entity_Id;
1820          Formals : List_Id) return Node_Id
1821       is
1822          Body_Spec : Node_Id;
1823
1824       begin
1825          Body_Spec := Build_Wrapper_Spec (Subp_Id, Obj_Typ, Formals);
1826
1827          --  The subprogram is not overriding or is not a primitive declared
1828          --  between two views.
1829
1830          if No (Body_Spec) then
1831             return Empty;
1832          end if;
1833
1834          declare
1835             Actuals    : List_Id := No_List;
1836             Conv_Id    : Node_Id;
1837             First_Form : Node_Id;
1838             Formal     : Node_Id;
1839             Nam        : Node_Id;
1840
1841          begin
1842             --  Map formals to actuals. Use the list built for the wrapper
1843             --  spec, skipping the object notation parameter.
1844
1845             First_Form := First (Parameter_Specifications (Body_Spec));
1846
1847             Formal := First_Form;
1848             Next (Formal);
1849
1850             if Present (Formal) then
1851                Actuals := New_List;
1852                while Present (Formal) loop
1853                   Append_To (Actuals,
1854                     Make_Identifier (Loc,
1855                       Chars => Chars (Defining_Identifier (Formal))));
1856                   Next (Formal);
1857                end loop;
1858             end if;
1859
1860             --  Special processing for primitives declared between a private
1861             --  type and its completion: the wrapper needs a properly typed
1862             --  parameter if the wrapped operation has a controlling first
1863             --  parameter. Note that this might not be the case for a function
1864             --  with a controlling result.
1865
1866             if Is_Private_Primitive_Subprogram (Subp_Id) then
1867                if No (Actuals) then
1868                   Actuals := New_List;
1869                end if;
1870
1871                if Is_Controlling_Formal (First_Formal (Subp_Id)) then
1872                   Prepend_To (Actuals,
1873                     Unchecked_Convert_To
1874                       (Corresponding_Concurrent_Type (Obj_Typ),
1875                        Make_Identifier (Loc, Name_uO)));
1876
1877                else
1878                   Prepend_To (Actuals,
1879                     Make_Identifier (Loc,
1880                       Chars => Chars (Defining_Identifier (First_Form))));
1881                end if;
1882
1883                Nam := New_Reference_To (Subp_Id, Loc);
1884             else
1885                --  An access-to-variable object parameter requires an explicit
1886                --  dereference in the unchecked conversion. This case occurs
1887                --  when a protected entry wrapper must override an interface
1888                --  level procedure with interface access as first parameter.
1889
1890                --     O.all.Subp_Id (Formal_1, ..., Formal_N)
1891
1892                if Nkind (Parameter_Type (First_Form)) =
1893                     N_Access_Definition
1894                then
1895                   Conv_Id :=
1896                     Make_Explicit_Dereference (Loc,
1897                       Prefix => Make_Identifier (Loc, Name_uO));
1898                else
1899                   Conv_Id := Make_Identifier (Loc, Name_uO);
1900                end if;
1901
1902                Nam :=
1903                  Make_Selected_Component (Loc,
1904                    Prefix        =>
1905                      Unchecked_Convert_To
1906                        (Corresponding_Concurrent_Type (Obj_Typ), Conv_Id),
1907                    Selector_Name => New_Reference_To (Subp_Id, Loc));
1908             end if;
1909
1910             --  Create the subprogram body. For a function, the call to the
1911             --  actual subprogram has to be converted to the corresponding
1912             --  record if it is a controlling result.
1913
1914             if Ekind (Subp_Id) = E_Function then
1915                declare
1916                   Res : Node_Id;
1917
1918                begin
1919                   Res :=
1920                      Make_Function_Call (Loc,
1921                        Name                   => Nam,
1922                        Parameter_Associations => Actuals);
1923
1924                   if Has_Controlling_Result (Subp_Id) then
1925                      Res :=
1926                        Unchecked_Convert_To
1927                          (Corresponding_Record_Type (Etype (Subp_Id)), Res);
1928                   end if;
1929
1930                   return
1931                     Make_Subprogram_Body (Loc,
1932                       Specification              => Body_Spec,
1933                       Declarations               => Empty_List,
1934                       Handled_Statement_Sequence =>
1935                         Make_Handled_Sequence_Of_Statements (Loc,
1936                           Statements => New_List (
1937                             Make_Simple_Return_Statement (Loc, Res))));
1938                end;
1939
1940             else
1941                return
1942                  Make_Subprogram_Body (Loc,
1943                    Specification              => Body_Spec,
1944                    Declarations               => Empty_List,
1945                    Handled_Statement_Sequence =>
1946                      Make_Handled_Sequence_Of_Statements (Loc,
1947                        Statements => New_List (
1948                          Make_Procedure_Call_Statement (Loc,
1949                            Name                   => Nam,
1950                            Parameter_Associations => Actuals))));
1951             end if;
1952          end;
1953       end Build_Wrapper_Body;
1954
1955    --  Start of processing for Build_Wrapper_Bodies
1956
1957    begin
1958       if Is_Concurrent_Type (Typ) then
1959          Rec_Typ := Corresponding_Record_Type (Typ);
1960       else
1961          Rec_Typ := Typ;
1962       end if;
1963
1964       --  Generate wrapper bodies for a concurrent type which implements an
1965       --  interface.
1966
1967       if Present (Interfaces (Rec_Typ)) then
1968          declare
1969             Insert_Nod : Node_Id;
1970             Prim       : Entity_Id;
1971             Prim_Elmt  : Elmt_Id;
1972             Prim_Decl  : Node_Id;
1973             Subp       : Entity_Id;
1974             Wrap_Body  : Node_Id;
1975             Wrap_Id    : Entity_Id;
1976
1977          begin
1978             Insert_Nod := N;
1979
1980             --  Examine all primitive operations of the corresponding record
1981             --  type, looking for wrapper specs. Generate bodies in order to
1982             --  complete them.
1983
1984             Prim_Elmt := First_Elmt (Primitive_Operations (Rec_Typ));
1985             while Present (Prim_Elmt) loop
1986                Prim := Node (Prim_Elmt);
1987
1988                if (Ekind (Prim) = E_Function
1989                      or else Ekind (Prim) = E_Procedure)
1990                  and then Is_Primitive_Wrapper (Prim)
1991                then
1992                   Subp := Wrapped_Entity (Prim);
1993                   Prim_Decl := Parent (Parent (Prim));
1994
1995                   Wrap_Body :=
1996                     Build_Wrapper_Body (Loc,
1997                       Subp_Id => Subp,
1998                       Obj_Typ => Rec_Typ,
1999                       Formals => Parameter_Specifications (Parent (Subp)));
2000                   Wrap_Id := Defining_Unit_Name (Specification (Wrap_Body));
2001
2002                   Set_Corresponding_Spec (Wrap_Body, Prim);
2003                   Set_Corresponding_Body (Prim_Decl, Wrap_Id);
2004
2005                   Insert_After (Insert_Nod, Wrap_Body);
2006                   Insert_Nod := Wrap_Body;
2007
2008                   Analyze (Wrap_Body);
2009                end if;
2010
2011                Next_Elmt (Prim_Elmt);
2012             end loop;
2013          end;
2014       end if;
2015    end Build_Wrapper_Bodies;
2016
2017    ------------------------
2018    -- Build_Wrapper_Spec --
2019    ------------------------
2020
2021    function Build_Wrapper_Spec
2022      (Subp_Id : Entity_Id;
2023       Obj_Typ : Entity_Id;
2024       Formals : List_Id) return Node_Id
2025    is
2026       Loc           : constant Source_Ptr := Sloc (Subp_Id);
2027       First_Param   : Node_Id;
2028       Iface         : Entity_Id;
2029       Iface_Elmt    : Elmt_Id;
2030       Iface_Op      : Entity_Id;
2031       Iface_Op_Elmt : Elmt_Id;
2032
2033       function Overriding_Possible
2034         (Iface_Op : Entity_Id;
2035          Wrapper  : Entity_Id) return Boolean;
2036       --  Determine whether a primitive operation can be overridden by Wrapper.
2037       --  Iface_Op is the candidate primitive operation of an interface type,
2038       --  Wrapper is the generated entry wrapper.
2039
2040       function Replicate_Formals
2041         (Loc     : Source_Ptr;
2042          Formals : List_Id) return List_Id;
2043       --  An explicit parameter replication is required due to the Is_Entry_
2044       --  Formal flag being set for all the formals of an entry. The explicit
2045       --  replication removes the flag that would otherwise cause a different
2046       --  path of analysis.
2047
2048       -------------------------
2049       -- Overriding_Possible --
2050       -------------------------
2051
2052       function Overriding_Possible
2053         (Iface_Op : Entity_Id;
2054          Wrapper  : Entity_Id) return Boolean
2055       is
2056          Iface_Op_Spec : constant Node_Id := Parent (Iface_Op);
2057          Wrapper_Spec  : constant Node_Id := Parent (Wrapper);
2058
2059          function Type_Conformant_Parameters
2060            (Iface_Op_Params : List_Id;
2061             Wrapper_Params  : List_Id) return Boolean;
2062          --  Determine whether the parameters of the generated entry wrapper
2063          --  and those of a primitive operation are type conformant. During
2064          --  this check, the first parameter of the primitive operation is
2065          --  skipped if it is a controlling argument: protected functions
2066          --  may have a controlling result.
2067
2068          --------------------------------
2069          -- Type_Conformant_Parameters --
2070          --------------------------------
2071
2072          function Type_Conformant_Parameters
2073            (Iface_Op_Params : List_Id;
2074             Wrapper_Params  : List_Id) return Boolean
2075          is
2076             Iface_Op_Param : Node_Id;
2077             Iface_Op_Typ   : Entity_Id;
2078             Wrapper_Param  : Node_Id;
2079             Wrapper_Typ    : Entity_Id;
2080
2081          begin
2082             --  Skip the first (controlling) parameter of primitive operation
2083
2084             Iface_Op_Param := First (Iface_Op_Params);
2085
2086             if Present (First_Formal (Iface_Op))
2087               and then Is_Controlling_Formal (First_Formal (Iface_Op))
2088             then
2089                Iface_Op_Param := Next (Iface_Op_Param);
2090             end if;
2091
2092             Wrapper_Param  := First (Wrapper_Params);
2093             while Present (Iface_Op_Param)
2094               and then Present (Wrapper_Param)
2095             loop
2096                Iface_Op_Typ := Find_Parameter_Type (Iface_Op_Param);
2097                Wrapper_Typ  := Find_Parameter_Type (Wrapper_Param);
2098
2099                --  The two parameters must be mode conformant
2100
2101                if not Conforming_Types
2102                         (Iface_Op_Typ, Wrapper_Typ, Mode_Conformant)
2103                then
2104                   return False;
2105                end if;
2106
2107                Next (Iface_Op_Param);
2108                Next (Wrapper_Param);
2109             end loop;
2110
2111             --  One of the lists is longer than the other
2112
2113             if Present (Iface_Op_Param) or else Present (Wrapper_Param) then
2114                return False;
2115             end if;
2116
2117             return True;
2118          end Type_Conformant_Parameters;
2119
2120       --  Start of processing for Overriding_Possible
2121
2122       begin
2123          if Chars (Iface_Op) /= Chars (Wrapper) then
2124             return False;
2125          end if;
2126
2127          --  If an inherited subprogram is implemented by a protected procedure
2128          --  or an entry, then the first parameter of the inherited subprogram
2129          --  shall be of mode OUT or IN OUT, or access-to-variable parameter.
2130
2131          if Ekind (Iface_Op) = E_Procedure
2132            and then Present (Parameter_Specifications (Iface_Op_Spec))
2133          then
2134             declare
2135                Obj_Param : constant Node_Id :=
2136                              First (Parameter_Specifications (Iface_Op_Spec));
2137             begin
2138                if not Out_Present (Obj_Param)
2139                  and then Nkind (Parameter_Type (Obj_Param)) /=
2140                                                          N_Access_Definition
2141                then
2142                   return False;
2143                end if;
2144             end;
2145          end if;
2146
2147          return
2148            Type_Conformant_Parameters (
2149              Parameter_Specifications (Iface_Op_Spec),
2150              Parameter_Specifications (Wrapper_Spec));
2151       end Overriding_Possible;
2152
2153       -----------------------
2154       -- Replicate_Formals --
2155       -----------------------
2156
2157       function Replicate_Formals
2158         (Loc     : Source_Ptr;
2159          Formals : List_Id) return List_Id
2160       is
2161          New_Formals : constant List_Id := New_List;
2162          Formal      : Node_Id;
2163          Param_Type  : Node_Id;
2164
2165       begin
2166          Formal := First (Formals);
2167
2168          --  Skip the object parameter when dealing with primitives declared
2169          --  between two views.
2170
2171          if Is_Private_Primitive_Subprogram (Subp_Id)
2172            and then not Has_Controlling_Result (Subp_Id)
2173          then
2174             Formal := Next (Formal);
2175          end if;
2176
2177          while Present (Formal) loop
2178
2179             --  Create an explicit copy of the entry parameter
2180
2181             --  When creating the wrapper subprogram for a primitive operation
2182             --  of a protected interface we must construct an equivalent
2183             --  signature to that of the overriding operation. For regular
2184             --  parameters we can just use the type of the formal, but for
2185             --  access to subprogram parameters we need to reanalyze the
2186             --  parameter type to create local entities for the signature of
2187             --  the subprogram type. Using the entities of the overriding
2188             --  subprogram will result in out-of-scope errors in the back-end.
2189
2190             if Nkind (Parameter_Type (Formal)) = N_Access_Definition then
2191                Param_Type := Copy_Separate_Tree (Parameter_Type (Formal));
2192             else
2193                Param_Type :=
2194                  New_Reference_To (Etype (Parameter_Type (Formal)), Loc);
2195             end if;
2196
2197             Append_To (New_Formals,
2198               Make_Parameter_Specification (Loc,
2199                 Defining_Identifier =>
2200                   Make_Defining_Identifier (Loc,
2201                     Chars          => Chars (Defining_Identifier (Formal))),
2202                     In_Present     => In_Present  (Formal),
2203                     Out_Present    => Out_Present (Formal),
2204                     Parameter_Type => Param_Type));
2205
2206             Next (Formal);
2207          end loop;
2208
2209          return New_Formals;
2210       end Replicate_Formals;
2211
2212    --  Start of processing for Build_Wrapper_Spec
2213
2214    begin
2215       --  There is no point in building wrappers for non-tagged concurrent
2216       --  types.
2217
2218       pragma Assert (Is_Tagged_Type (Obj_Typ));
2219
2220       --  An entry or a protected procedure can override a routine where the
2221       --  controlling formal is either IN OUT, OUT or is of access-to-variable
2222       --  type. Since the wrapper must have the exact same signature as that of
2223       --  the overridden subprogram, we try to find the overriding candidate
2224       --  and use its controlling formal.
2225
2226       First_Param := Empty;
2227
2228       --  Check every implemented interface
2229
2230       if Present (Interfaces (Obj_Typ)) then
2231          Iface_Elmt := First_Elmt (Interfaces (Obj_Typ));
2232          Search : while Present (Iface_Elmt) loop
2233             Iface := Node (Iface_Elmt);
2234
2235             --  Check every interface primitive
2236
2237             if Present (Primitive_Operations (Iface)) then
2238                Iface_Op_Elmt := First_Elmt (Primitive_Operations (Iface));
2239                while Present (Iface_Op_Elmt) loop
2240                   Iface_Op := Node (Iface_Op_Elmt);
2241
2242                   --  Ignore predefined primitives
2243
2244                   if not Is_Predefined_Dispatching_Operation (Iface_Op) then
2245                      Iface_Op := Ultimate_Alias (Iface_Op);
2246
2247                      --  The current primitive operation can be overridden by
2248                      --  the generated entry wrapper.
2249
2250                      if Overriding_Possible (Iface_Op, Subp_Id) then
2251                         First_Param :=
2252                           First (Parameter_Specifications (Parent (Iface_Op)));
2253
2254                         exit Search;
2255                      end if;
2256                   end if;
2257
2258                   Next_Elmt (Iface_Op_Elmt);
2259                end loop;
2260             end if;
2261
2262             Next_Elmt (Iface_Elmt);
2263          end loop Search;
2264       end if;
2265
2266       --  If the subprogram to be wrapped is not overriding anything or is not
2267       --  a primitive declared between two views, do not produce anything. This
2268       --  avoids spurious errors involving overriding.
2269
2270       if No (First_Param)
2271         and then not Is_Private_Primitive_Subprogram (Subp_Id)
2272       then
2273          return Empty;
2274       end if;
2275
2276       declare
2277          Wrapper_Id    : constant Entity_Id :=
2278                            Make_Defining_Identifier (Loc, Chars (Subp_Id));
2279          New_Formals   : List_Id;
2280          Obj_Param     : Node_Id;
2281          Obj_Param_Typ : Entity_Id;
2282
2283       begin
2284          --  Minimum decoration is needed to catch the entity in
2285          --  Sem_Ch6.Override_Dispatching_Operation.
2286
2287          if Ekind (Subp_Id) = E_Function then
2288             Set_Ekind (Wrapper_Id, E_Function);
2289          else
2290             Set_Ekind (Wrapper_Id, E_Procedure);
2291          end if;
2292
2293          Set_Is_Primitive_Wrapper (Wrapper_Id);
2294          Set_Wrapped_Entity       (Wrapper_Id, Subp_Id);
2295          Set_Is_Private_Primitive (Wrapper_Id,
2296            Is_Private_Primitive_Subprogram (Subp_Id));
2297
2298          --  Process the formals
2299
2300          New_Formals := Replicate_Formals (Loc, Formals);
2301
2302          --  A function with a controlling result and no first controlling
2303          --  formal needs no additional parameter.
2304
2305          if Has_Controlling_Result (Subp_Id)
2306            and then
2307              (No (First_Formal (Subp_Id))
2308                or else not Is_Controlling_Formal (First_Formal (Subp_Id)))
2309          then
2310             null;
2311
2312          --  Routine Subp_Id has been found to override an interface primitive.
2313          --  If the interface operation has an access parameter, create a copy
2314          --  of it, with the same null exclusion indicator if present.
2315
2316          elsif Present (First_Param) then
2317             if Nkind (Parameter_Type (First_Param)) = N_Access_Definition then
2318                Obj_Param_Typ :=
2319                  Make_Access_Definition (Loc,
2320                    Subtype_Mark =>
2321                      New_Reference_To (Obj_Typ, Loc));
2322                Set_Null_Exclusion_Present (Obj_Param_Typ,
2323                  Null_Exclusion_Present (Parameter_Type (First_Param)));
2324
2325             else
2326                Obj_Param_Typ := New_Reference_To (Obj_Typ, Loc);
2327             end if;
2328
2329             Obj_Param :=
2330               Make_Parameter_Specification (Loc,
2331                 Defining_Identifier =>
2332                   Make_Defining_Identifier (Loc,
2333                     Chars => Name_uO),
2334                 In_Present          => In_Present  (First_Param),
2335                 Out_Present         => Out_Present (First_Param),
2336                 Parameter_Type      => Obj_Param_Typ);
2337
2338             Prepend_To (New_Formals, Obj_Param);
2339
2340          --  If we are dealing with a primitive declared between two views,
2341          --  implemented by a synchronized operation, we need to create
2342          --  a default parameter. The mode of the parameter must match that
2343          --  of the primitive operation.
2344
2345          else
2346             pragma Assert (Is_Private_Primitive_Subprogram (Subp_Id));
2347             Obj_Param :=
2348               Make_Parameter_Specification (Loc,
2349                 Defining_Identifier =>
2350                   Make_Defining_Identifier (Loc, Name_uO),
2351                 In_Present  => In_Present (Parent (First_Entity (Subp_Id))),
2352                 Out_Present => Ekind (Subp_Id) /= E_Function,
2353                   Parameter_Type => New_Reference_To (Obj_Typ, Loc));
2354             Prepend_To (New_Formals, Obj_Param);
2355          end if;
2356
2357          --  Build the final spec. If it is a function with a controlling
2358          --  result, it is a primitive operation of the corresponding
2359          --  record type, so mark the spec accordingly.
2360
2361          if Ekind (Subp_Id) = E_Function then
2362             declare
2363                Res_Def : Node_Id;
2364
2365             begin
2366                if Has_Controlling_Result (Subp_Id) then
2367                   Res_Def :=
2368                     New_Occurrence_Of
2369                       (Corresponding_Record_Type (Etype (Subp_Id)), Loc);
2370                else
2371                   Res_Def := New_Copy (Result_Definition (Parent (Subp_Id)));
2372                end if;
2373
2374                return
2375                  Make_Function_Specification (Loc,
2376                    Defining_Unit_Name       => Wrapper_Id,
2377                    Parameter_Specifications => New_Formals,
2378                    Result_Definition        => Res_Def);
2379             end;
2380          else
2381             return
2382               Make_Procedure_Specification (Loc,
2383                 Defining_Unit_Name       => Wrapper_Id,
2384                 Parameter_Specifications => New_Formals);
2385          end if;
2386       end;
2387    end Build_Wrapper_Spec;
2388
2389    -------------------------
2390    -- Build_Wrapper_Specs --
2391    -------------------------
2392
2393    procedure Build_Wrapper_Specs
2394      (Loc : Source_Ptr;
2395       Typ : Entity_Id;
2396       N   : in out Node_Id)
2397    is
2398       Def     : Node_Id;
2399       Rec_Typ : Entity_Id;
2400       procedure Scan_Declarations (L : List_Id);
2401       --  Common processing for visible and private declarations
2402       --  of a protected type.
2403
2404       procedure Scan_Declarations (L : List_Id) is
2405          Decl      : Node_Id;
2406          Wrap_Decl : Node_Id;
2407          Wrap_Spec : Node_Id;
2408
2409       begin
2410          if No (L) then
2411             return;
2412          end if;
2413
2414          Decl := First (L);
2415          while Present (Decl) loop
2416             Wrap_Spec := Empty;
2417
2418             if Nkind (Decl) = N_Entry_Declaration
2419               and then Ekind (Defining_Identifier (Decl)) = E_Entry
2420             then
2421                Wrap_Spec :=
2422                  Build_Wrapper_Spec
2423                    (Subp_Id => Defining_Identifier (Decl),
2424                     Obj_Typ => Rec_Typ,
2425                     Formals => Parameter_Specifications (Decl));
2426
2427             elsif Nkind (Decl) = N_Subprogram_Declaration then
2428                Wrap_Spec :=
2429                  Build_Wrapper_Spec
2430                    (Subp_Id => Defining_Unit_Name (Specification (Decl)),
2431                     Obj_Typ => Rec_Typ,
2432                     Formals =>
2433                       Parameter_Specifications (Specification (Decl)));
2434             end if;
2435
2436             if Present (Wrap_Spec) then
2437                Wrap_Decl :=
2438                  Make_Subprogram_Declaration (Loc,
2439                    Specification => Wrap_Spec);
2440
2441                Insert_After (N, Wrap_Decl);
2442                N := Wrap_Decl;
2443
2444                Analyze (Wrap_Decl);
2445             end if;
2446
2447             Next (Decl);
2448          end loop;
2449       end Scan_Declarations;
2450
2451       --  start of processing for Build_Wrapper_Specs
2452
2453    begin
2454       if Is_Protected_Type (Typ) then
2455          Def := Protected_Definition (Parent (Typ));
2456       else pragma Assert (Is_Task_Type (Typ));
2457          Def := Task_Definition (Parent (Typ));
2458       end if;
2459
2460       Rec_Typ := Corresponding_Record_Type (Typ);
2461
2462       --  Generate wrapper specs for a concurrent type which implements an
2463       --  interface. Operations in both the visible and private parts may
2464       --  implement progenitor operations.
2465
2466       if Present (Interfaces (Rec_Typ))
2467         and then Present (Def)
2468       then
2469          Scan_Declarations (Visible_Declarations (Def));
2470          Scan_Declarations (Private_Declarations (Def));
2471       end if;
2472    end Build_Wrapper_Specs;
2473
2474    ---------------------------
2475    -- Build_Find_Body_Index --
2476    ---------------------------
2477
2478    function Build_Find_Body_Index (Typ : Entity_Id) return Node_Id is
2479       Loc   : constant Source_Ptr := Sloc (Typ);
2480       Ent   : Entity_Id;
2481       E_Typ : Entity_Id;
2482       Has_F : Boolean := False;
2483       Index : Nat;
2484       If_St : Node_Id := Empty;
2485       Lo    : Node_Id;
2486       Hi    : Node_Id;
2487       Decls : List_Id := New_List;
2488       Ret   : Node_Id;
2489       Spec  : Node_Id;
2490       Siz   : Node_Id := Empty;
2491
2492       procedure Add_If_Clause (Expr : Node_Id);
2493       --  Add test for range of current entry
2494
2495       function Convert_Discriminant_Ref (Bound : Node_Id) return Node_Id;
2496       --  If a bound of an entry is given by a discriminant, retrieve the
2497       --  actual value of the discriminant from the enclosing object.
2498
2499       -------------------
2500       -- Add_If_Clause --
2501       -------------------
2502
2503       procedure Add_If_Clause (Expr : Node_Id) is
2504          Cond  : Node_Id;
2505          Stats : constant List_Id :=
2506                    New_List (
2507                      Make_Simple_Return_Statement (Loc,
2508                        Expression => Make_Integer_Literal (Loc, Index + 1)));
2509
2510       begin
2511          --  Index for current entry body
2512
2513          Index := Index + 1;
2514
2515          --  Compute total length of entry queues so far
2516
2517          if No (Siz) then
2518             Siz := Expr;
2519          else
2520             Siz :=
2521               Make_Op_Add (Loc,
2522                 Left_Opnd => Siz,
2523                 Right_Opnd => Expr);
2524          end if;
2525
2526          Cond :=
2527            Make_Op_Le (Loc,
2528              Left_Opnd  => Make_Identifier (Loc, Name_uE),
2529              Right_Opnd => Siz);
2530
2531          --  Map entry queue indexes in the range of the current family
2532          --  into the current index, that designates the entry body.
2533
2534          if No (If_St) then
2535             If_St :=
2536               Make_Implicit_If_Statement (Typ,
2537                 Condition => Cond,
2538                 Then_Statements => Stats,
2539                 Elsif_Parts   => New_List);
2540
2541             Ret := If_St;
2542
2543          else
2544             Append (
2545               Make_Elsif_Part (Loc,
2546                 Condition => Cond,
2547                 Then_Statements => Stats),
2548               Elsif_Parts (If_St));
2549          end if;
2550       end Add_If_Clause;
2551
2552       ------------------------------
2553       -- Convert_Discriminant_Ref --
2554       ------------------------------
2555
2556       function Convert_Discriminant_Ref (Bound : Node_Id) return Node_Id is
2557          B   : Node_Id;
2558
2559       begin
2560          if Is_Entity_Name (Bound)
2561            and then Ekind (Entity (Bound)) = E_Discriminant
2562          then
2563             B :=
2564               Make_Selected_Component (Loc,
2565                Prefix =>
2566                  Unchecked_Convert_To (Corresponding_Record_Type (Typ),
2567                    Make_Explicit_Dereference (Loc,
2568                      Make_Identifier (Loc, Name_uObject))),
2569                Selector_Name => Make_Identifier (Loc, Chars (Bound)));
2570             Set_Etype (B, Etype (Entity (Bound)));
2571          else
2572             B := New_Copy_Tree (Bound);
2573          end if;
2574
2575          return B;
2576       end Convert_Discriminant_Ref;
2577
2578    --  Start of processing for Build_Find_Body_Index
2579
2580    begin
2581       Spec := Build_Find_Body_Index_Spec (Typ);
2582
2583       Ent := First_Entity (Typ);
2584       while Present (Ent) loop
2585          if Ekind (Ent) = E_Entry_Family then
2586             Has_F := True;
2587             exit;
2588          end if;
2589
2590          Next_Entity (Ent);
2591       end loop;
2592
2593       if not Has_F then
2594
2595          --  If the protected type has no entry families, there is a one-one
2596          --  correspondence between entry queue and entry body.
2597
2598          Ret :=
2599            Make_Simple_Return_Statement (Loc,
2600              Expression => Make_Identifier (Loc, Name_uE));
2601
2602       else
2603          --  Suppose entries e1, e2, ... have size l1, l2, ... we generate
2604          --  the following:
2605          --
2606          --  if E <= l1 then return 1;
2607          --  elsif E <= l1 + l2 then return 2;
2608          --  ...
2609
2610          Index := 0;
2611          Siz   := Empty;
2612          Ent   := First_Entity (Typ);
2613
2614          Add_Object_Pointer (Loc, Typ, Decls);
2615
2616          while Present (Ent) loop
2617             if Ekind (Ent) = E_Entry then
2618                Add_If_Clause (Make_Integer_Literal (Loc, 1));
2619
2620             elsif Ekind (Ent) = E_Entry_Family then
2621                E_Typ := Etype (Discrete_Subtype_Definition (Parent (Ent)));
2622                Hi := Convert_Discriminant_Ref (Type_High_Bound (E_Typ));
2623                Lo := Convert_Discriminant_Ref (Type_Low_Bound  (E_Typ));
2624                Add_If_Clause (Family_Size (Loc, Hi, Lo, Typ, False));
2625             end if;
2626
2627             Next_Entity (Ent);
2628          end loop;
2629
2630          if Index = 1 then
2631             Decls := New_List;
2632             Ret :=
2633               Make_Simple_Return_Statement (Loc,
2634                 Expression => Make_Integer_Literal (Loc, 1));
2635
2636          elsif Nkind (Ret) = N_If_Statement then
2637
2638             --  Ranges are in increasing order, so last one doesn't need guard
2639
2640             declare
2641                Nod : constant Node_Id := Last (Elsif_Parts (Ret));
2642             begin
2643                Remove (Nod);
2644                Set_Else_Statements (Ret, Then_Statements (Nod));
2645             end;
2646          end if;
2647       end if;
2648
2649       return
2650         Make_Subprogram_Body (Loc,
2651           Specification => Spec,
2652           Declarations  => Decls,
2653           Handled_Statement_Sequence =>
2654             Make_Handled_Sequence_Of_Statements (Loc,
2655               Statements => New_List (Ret)));
2656    end Build_Find_Body_Index;
2657
2658    --------------------------------
2659    -- Build_Find_Body_Index_Spec --
2660    --------------------------------
2661
2662    function Build_Find_Body_Index_Spec (Typ : Entity_Id) return Node_Id is
2663       Loc   : constant Source_Ptr := Sloc (Typ);
2664       Id    : constant Entity_Id :=
2665                Make_Defining_Identifier (Loc,
2666                  Chars => New_External_Name (Chars (Typ), 'F'));
2667       Parm1 : constant Entity_Id := Make_Defining_Identifier (Loc, Name_uO);
2668       Parm2 : constant Entity_Id := Make_Defining_Identifier (Loc, Name_uE);
2669
2670    begin
2671       return
2672         Make_Function_Specification (Loc,
2673           Defining_Unit_Name => Id,
2674           Parameter_Specifications => New_List (
2675             Make_Parameter_Specification (Loc,
2676               Defining_Identifier => Parm1,
2677               Parameter_Type =>
2678                 New_Reference_To (RTE (RE_Address), Loc)),
2679
2680             Make_Parameter_Specification (Loc,
2681               Defining_Identifier => Parm2,
2682               Parameter_Type =>
2683                 New_Reference_To (RTE (RE_Protected_Entry_Index), Loc))),
2684           Result_Definition => New_Occurrence_Of (
2685             RTE (RE_Protected_Entry_Index), Loc));
2686    end Build_Find_Body_Index_Spec;
2687
2688    -------------------------
2689    -- Build_Master_Entity --
2690    -------------------------
2691
2692    procedure Build_Master_Entity (E : Entity_Id) is
2693       Loc  : constant Source_Ptr := Sloc (E);
2694       P    : Node_Id;
2695       Decl : Node_Id;
2696       S    : Entity_Id;
2697
2698    begin
2699       S := Find_Master_Scope (E);
2700
2701       --  Nothing to do if we already built a master entity for this scope
2702       --  or if there is no task hierarchy.
2703
2704       if Has_Master_Entity (S)
2705         or else Restriction_Active (No_Task_Hierarchy)
2706       then
2707          return;
2708       end if;
2709
2710       --  Otherwise first build the master entity
2711       --    _Master : constant Master_Id := Current_Master.all;
2712       --  and insert it just before the current declaration
2713
2714       Decl :=
2715         Make_Object_Declaration (Loc,
2716           Defining_Identifier =>
2717             Make_Defining_Identifier (Loc, Name_uMaster),
2718           Constant_Present => True,
2719           Object_Definition => New_Reference_To (RTE (RE_Master_Id), Loc),
2720           Expression =>
2721             Make_Explicit_Dereference (Loc,
2722               New_Reference_To (RTE (RE_Current_Master), Loc)));
2723
2724       P := Parent (E);
2725       Insert_Before (P, Decl);
2726       Analyze (Decl);
2727
2728       Set_Has_Master_Entity (S);
2729
2730       --  Now mark the containing scope as a task master
2731
2732       while Nkind (P) /= N_Compilation_Unit loop
2733          P := Parent (P);
2734
2735          --  If we fall off the top, we are at the outer level, and the
2736          --  environment task is our effective master, so nothing to mark.
2737
2738          if Nkind_In
2739               (P, N_Task_Body, N_Block_Statement, N_Subprogram_Body)
2740          then
2741             Set_Is_Task_Master (P, True);
2742             return;
2743
2744          elsif Nkind (Parent (P)) = N_Subunit then
2745             P := Corresponding_Stub (Parent (P));
2746          end if;
2747       end loop;
2748    end Build_Master_Entity;
2749
2750    -----------------------------------------
2751    -- Build_Private_Protected_Declaration --
2752    -----------------------------------------
2753
2754    function Build_Private_Protected_Declaration
2755      (N : Node_Id) return Entity_Id
2756    is
2757       Loc      : constant Source_Ptr := Sloc (N);
2758       Body_Id  : constant Entity_Id := Defining_Entity (N);
2759       Decl     : Node_Id;
2760       Plist    : List_Id;
2761       Formal   : Entity_Id;
2762       New_Spec : Node_Id;
2763       Spec_Id  : Entity_Id;
2764
2765    begin
2766       Formal := First_Formal (Body_Id);
2767
2768       --  The protected operation always has at least one formal, namely the
2769       --  object itself, but it is only placed in the parameter list if
2770       --  expansion is enabled.
2771
2772       if Present (Formal) or else Expander_Active then
2773          Plist := Copy_Parameter_List (Body_Id);
2774       else
2775          Plist := No_List;
2776       end if;
2777
2778       if Nkind (Specification (N)) = N_Procedure_Specification then
2779          New_Spec :=
2780            Make_Procedure_Specification (Loc,
2781               Defining_Unit_Name       =>
2782                 Make_Defining_Identifier (Sloc (Body_Id),
2783                   Chars => Chars (Body_Id)),
2784               Parameter_Specifications =>
2785                 Plist);
2786       else
2787          New_Spec :=
2788            Make_Function_Specification (Loc,
2789              Defining_Unit_Name       =>
2790                Make_Defining_Identifier (Sloc (Body_Id),
2791                  Chars => Chars (Body_Id)),
2792              Parameter_Specifications => Plist,
2793              Result_Definition        =>
2794                New_Occurrence_Of (Etype (Body_Id), Loc));
2795       end if;
2796
2797       Decl := Make_Subprogram_Declaration (Loc, Specification => New_Spec);
2798       Insert_Before (N, Decl);
2799       Spec_Id := Defining_Unit_Name (New_Spec);
2800
2801       --  Indicate that the entity comes from source, to ensure that cross-
2802       --  reference information is properly generated. The body itself is
2803       --  rewritten during expansion, and the body entity will not appear in
2804       --  calls to the operation.
2805
2806       Set_Comes_From_Source (Spec_Id, True);
2807       Analyze (Decl);
2808       Set_Has_Completion (Spec_Id);
2809       Set_Convention (Spec_Id, Convention_Protected);
2810       return Spec_Id;
2811    end Build_Private_Protected_Declaration;
2812
2813    ---------------------------
2814    -- Build_Protected_Entry --
2815    ---------------------------
2816
2817    function Build_Protected_Entry
2818      (N   : Node_Id;
2819       Ent : Entity_Id;
2820       Pid : Node_Id) return Node_Id
2821    is
2822       Loc : constant Source_Ptr := Sloc (N);
2823
2824       Decls   : constant List_Id := Declarations (N);
2825       End_Lab : constant Node_Id :=
2826                   End_Label (Handled_Statement_Sequence (N));
2827       End_Loc : constant Source_Ptr :=
2828                   Sloc (Last (Statements (Handled_Statement_Sequence (N))));
2829       --  Used for the generated call to Complete_Entry_Body
2830
2831       Han_Loc : Source_Ptr;
2832       --  Used for the exception handler, inserted at end of the body
2833
2834       Op_Decls : constant List_Id := New_List;
2835       Complete : Node_Id;
2836       Edef     : Entity_Id;
2837       Espec    : Node_Id;
2838       Ohandle  : Node_Id;
2839       Op_Stats : List_Id;
2840
2841    begin
2842       --  Set the source location on the exception handler only when debugging
2843       --  the expanded code (see Make_Implicit_Exception_Handler).
2844
2845       if Debug_Generated_Code then
2846          Han_Loc := End_Loc;
2847
2848       --  Otherwise the inserted code should not be visible to the debugger
2849
2850       else
2851          Han_Loc := No_Location;
2852       end if;
2853
2854       Edef :=
2855         Make_Defining_Identifier (Loc,
2856           Chars => Chars (Protected_Body_Subprogram (Ent)));
2857       Espec :=
2858         Build_Protected_Entry_Specification (Loc, Edef, Empty);
2859
2860       --  Add the following declarations:
2861       --    type poVP is access poV;
2862       --    _object : poVP := poVP (_O);
2863       --
2864       --  where _O is the formal parameter associated with the concurrent
2865       --  object. These declarations are needed for Complete_Entry_Body.
2866
2867       Add_Object_Pointer (Loc, Pid, Op_Decls);
2868
2869       --  Add renamings for all formals, the Protection object, discriminals,
2870       --  privals and the entry index constant for use by debugger.
2871
2872       Add_Formal_Renamings (Espec, Op_Decls, Ent, Loc);
2873       Debug_Private_Data_Declarations (Decls);
2874
2875       case Corresponding_Runtime_Package (Pid) is
2876          when System_Tasking_Protected_Objects_Entries =>
2877             Complete :=
2878               New_Reference_To (RTE (RE_Complete_Entry_Body), Loc);
2879
2880          when System_Tasking_Protected_Objects_Single_Entry =>
2881             Complete :=
2882               New_Reference_To (RTE (RE_Complete_Single_Entry_Body), Loc);
2883
2884          when others =>
2885             raise Program_Error;
2886       end case;
2887
2888       Op_Stats := New_List (
2889         Make_Block_Statement (Loc,
2890           Declarations => Decls,
2891           Handled_Statement_Sequence =>
2892             Handled_Statement_Sequence (N)),
2893
2894         Make_Procedure_Call_Statement (End_Loc,
2895           Name => Complete,
2896           Parameter_Associations => New_List (
2897             Make_Attribute_Reference (End_Loc,
2898               Prefix =>
2899                 Make_Selected_Component (End_Loc,
2900                   Prefix        => Make_Identifier (End_Loc, Name_uObject),
2901                   Selector_Name => Make_Identifier (End_Loc, Name_uObject)),
2902               Attribute_Name => Name_Unchecked_Access))));
2903
2904       --  When exceptions can not be propagated, we never need to call
2905       --  Exception_Complete_Entry_Body
2906
2907       if No_Exception_Handlers_Set then
2908          return
2909            Make_Subprogram_Body (Loc,
2910              Specification => Espec,
2911              Declarations => Op_Decls,
2912              Handled_Statement_Sequence =>
2913                Make_Handled_Sequence_Of_Statements (Loc,
2914                  Statements => Op_Stats,
2915                  End_Label  => End_Lab));
2916
2917       else
2918          Ohandle := Make_Others_Choice (Loc);
2919          Set_All_Others (Ohandle);
2920
2921          case Corresponding_Runtime_Package (Pid) is
2922             when System_Tasking_Protected_Objects_Entries =>
2923                Complete :=
2924                  New_Reference_To
2925                    (RTE (RE_Exceptional_Complete_Entry_Body), Loc);
2926
2927             when System_Tasking_Protected_Objects_Single_Entry =>
2928                Complete :=
2929                  New_Reference_To
2930                    (RTE (RE_Exceptional_Complete_Single_Entry_Body), Loc);
2931
2932             when others =>
2933                raise Program_Error;
2934          end case;
2935
2936          --  Establish link between subprogram body entity and source entry.
2937
2938          Set_Corresponding_Protected_Entry (Edef, Ent);
2939
2940          --  Create body of entry procedure. The renaming declarations are
2941          --  placed ahead of the block that contains the actual entry body.
2942
2943          return
2944            Make_Subprogram_Body (Loc,
2945              Specification => Espec,
2946              Declarations => Op_Decls,
2947              Handled_Statement_Sequence =>
2948                Make_Handled_Sequence_Of_Statements (Loc,
2949                  Statements => Op_Stats,
2950                  End_Label  => End_Lab,
2951                  Exception_Handlers => New_List (
2952                    Make_Implicit_Exception_Handler (Han_Loc,
2953                      Exception_Choices => New_List (Ohandle),
2954
2955                      Statements =>  New_List (
2956                        Make_Procedure_Call_Statement (Han_Loc,
2957                          Name => Complete,
2958                          Parameter_Associations => New_List (
2959                            Make_Attribute_Reference (Han_Loc,
2960                              Prefix =>
2961                                Make_Selected_Component (Han_Loc,
2962                                  Prefix        =>
2963                                    Make_Identifier (Han_Loc, Name_uObject),
2964                                  Selector_Name =>
2965                                    Make_Identifier (Han_Loc, Name_uObject)),
2966                                Attribute_Name => Name_Unchecked_Access),
2967
2968                            Make_Function_Call (Han_Loc,
2969                              Name => New_Reference_To (
2970                                RTE (RE_Get_GNAT_Exception), Loc)))))))));
2971       end if;
2972    end Build_Protected_Entry;
2973
2974    -----------------------------------------
2975    -- Build_Protected_Entry_Specification --
2976    -----------------------------------------
2977
2978    function Build_Protected_Entry_Specification
2979      (Loc    : Source_Ptr;
2980       Def_Id : Entity_Id;
2981       Ent_Id : Entity_Id) return Node_Id
2982    is
2983       P : constant Entity_Id := Make_Defining_Identifier (Loc, Name_uP);
2984
2985    begin
2986       Set_Debug_Info_Needed (Def_Id);
2987
2988       if Present (Ent_Id) then
2989          Append_Elmt (P, Accept_Address (Ent_Id));
2990       end if;
2991
2992       return
2993         Make_Procedure_Specification (Loc,
2994           Defining_Unit_Name => Def_Id,
2995           Parameter_Specifications => New_List (
2996             Make_Parameter_Specification (Loc,
2997               Defining_Identifier =>
2998                 Make_Defining_Identifier (Loc, Name_uO),
2999               Parameter_Type =>
3000                 New_Reference_To (RTE (RE_Address), Loc)),
3001
3002             Make_Parameter_Specification (Loc,
3003               Defining_Identifier => P,
3004               Parameter_Type =>
3005                 New_Reference_To (RTE (RE_Address), Loc)),
3006
3007             Make_Parameter_Specification (Loc,
3008               Defining_Identifier =>
3009                 Make_Defining_Identifier (Loc, Name_uE),
3010               Parameter_Type =>
3011                 New_Reference_To (RTE (RE_Protected_Entry_Index), Loc))));
3012    end Build_Protected_Entry_Specification;
3013
3014    --------------------------
3015    -- Build_Protected_Spec --
3016    --------------------------
3017
3018    function Build_Protected_Spec
3019      (N           : Node_Id;
3020       Obj_Type    : Entity_Id;
3021       Ident       : Entity_Id;
3022       Unprotected : Boolean := False) return List_Id
3023    is
3024       Loc       : constant Source_Ptr := Sloc (N);
3025       Decl      : Node_Id;
3026       Formal    : Entity_Id;
3027       New_Plist : List_Id;
3028       New_Param : Node_Id;
3029
3030    begin
3031       New_Plist := New_List;
3032
3033       Formal := First_Formal (Ident);
3034       while Present (Formal) loop
3035          New_Param :=
3036            Make_Parameter_Specification (Loc,
3037              Defining_Identifier =>
3038                Make_Defining_Identifier (Sloc (Formal), Chars (Formal)),
3039              In_Present          => In_Present (Parent (Formal)),
3040              Out_Present         => Out_Present (Parent (Formal)),
3041              Parameter_Type      => New_Reference_To (Etype (Formal), Loc));
3042
3043          if Unprotected then
3044             Set_Protected_Formal (Formal, Defining_Identifier (New_Param));
3045          end if;
3046
3047          Append (New_Param, New_Plist);
3048          Next_Formal (Formal);
3049       end loop;
3050
3051       --  If the subprogram is a procedure and the context is not an access
3052       --  to protected subprogram, the parameter is in-out. Otherwise it is
3053       --  an in parameter.
3054
3055       Decl :=
3056         Make_Parameter_Specification (Loc,
3057           Defining_Identifier =>
3058             Make_Defining_Identifier (Loc, Name_uObject),
3059           In_Present => True,
3060           Out_Present =>
3061             (Etype (Ident) = Standard_Void_Type
3062                and then not Is_RTE (Obj_Type, RE_Address)),
3063           Parameter_Type =>
3064             New_Reference_To (Obj_Type, Loc));
3065       Set_Debug_Info_Needed (Defining_Identifier (Decl));
3066       Prepend_To (New_Plist, Decl);
3067
3068       return New_Plist;
3069    end Build_Protected_Spec;
3070
3071    ---------------------------------------
3072    -- Build_Protected_Sub_Specification --
3073    ---------------------------------------
3074
3075    function Build_Protected_Sub_Specification
3076      (N        : Node_Id;
3077       Prot_Typ : Entity_Id;
3078       Mode     : Subprogram_Protection_Mode) return Node_Id
3079    is
3080       Loc       : constant Source_Ptr := Sloc (N);
3081       Decl      : Node_Id;
3082       Def_Id    : Entity_Id;
3083       New_Id    : Entity_Id;
3084       New_Plist : List_Id;
3085       New_Spec  : Node_Id;
3086
3087       Append_Chr : constant array (Subprogram_Protection_Mode) of Character :=
3088                      (Dispatching_Mode => ' ',
3089                       Protected_Mode   => 'P',
3090                       Unprotected_Mode => 'N');
3091
3092    begin
3093       if Ekind (Defining_Unit_Name (Specification (N))) =
3094            E_Subprogram_Body
3095       then
3096          Decl := Unit_Declaration_Node (Corresponding_Spec (N));
3097       else
3098          Decl := N;
3099       end if;
3100
3101       Def_Id := Defining_Unit_Name (Specification (Decl));
3102
3103       New_Plist :=
3104         Build_Protected_Spec
3105           (Decl, Corresponding_Record_Type (Prot_Typ), Def_Id,
3106            Mode = Unprotected_Mode);
3107       New_Id :=
3108         Make_Defining_Identifier (Loc,
3109           Chars => Build_Selected_Name (Prot_Typ, Def_Id, Append_Chr (Mode)));
3110
3111       --  The unprotected operation carries the user code, and debugging
3112       --  information must be generated for it, even though this spec does
3113       --  not come from source. It is also convenient to allow gdb to step
3114       --  into the protected operation, even though it only contains lock/
3115       --  unlock calls.
3116
3117       Set_Debug_Info_Needed (New_Id);
3118
3119       --  If a pragma Eliminate applies to the source entity, the internal
3120       --  subprograms will be eliminated as well.
3121
3122       Set_Is_Eliminated (New_Id, Is_Eliminated (Def_Id));
3123
3124       if Nkind (Specification (Decl)) = N_Procedure_Specification then
3125          New_Spec :=
3126            Make_Procedure_Specification (Loc,
3127              Defining_Unit_Name => New_Id,
3128              Parameter_Specifications => New_Plist);
3129
3130       --  Create a new specification for the anonymous subprogram type
3131
3132       else
3133          New_Spec :=
3134            Make_Function_Specification (Loc,
3135              Defining_Unit_Name => New_Id,
3136              Parameter_Specifications => New_Plist,
3137              Result_Definition =>
3138                Copy_Result_Type (Result_Definition (Specification (Decl))));
3139
3140          Set_Return_Present (Defining_Unit_Name (New_Spec));
3141       end if;
3142
3143       return New_Spec;
3144    end Build_Protected_Sub_Specification;
3145
3146    -------------------------------------
3147    -- Build_Protected_Subprogram_Body --
3148    -------------------------------------
3149
3150    function Build_Protected_Subprogram_Body
3151      (N         : Node_Id;
3152       Pid       : Node_Id;
3153       N_Op_Spec : Node_Id) return Node_Id
3154    is
3155       Loc          : constant Source_Ptr := Sloc (N);
3156       Op_Spec      : Node_Id;
3157       P_Op_Spec    : Node_Id;
3158       Uactuals     : List_Id;
3159       Pformal      : Node_Id;
3160       Unprot_Call  : Node_Id;
3161       Sub_Body     : Node_Id;
3162       Lock_Name    : Node_Id;
3163       Lock_Stmt    : Node_Id;
3164       Service_Name : Node_Id;
3165       R            : Node_Id;
3166       Return_Stmt  : Node_Id := Empty;    -- init to avoid gcc 3 warning
3167       Pre_Stmts    : List_Id := No_List;  -- init to avoid gcc 3 warning
3168       Stmts        : List_Id;
3169       Object_Parm  : Node_Id;
3170       Exc_Safe     : Boolean;
3171
3172       function Is_Exception_Safe (Subprogram : Node_Id) return Boolean;
3173       --  Tell whether a given subprogram cannot raise an exception
3174
3175       -----------------------
3176       -- Is_Exception_Safe --
3177       -----------------------
3178
3179       function Is_Exception_Safe (Subprogram : Node_Id) return Boolean is
3180
3181          function Has_Side_Effect (N : Node_Id) return Boolean;
3182          --  Return True whenever encountering a subprogram call or raise
3183          --  statement of any kind in the sequence of statements
3184
3185          ---------------------
3186          -- Has_Side_Effect --
3187          ---------------------
3188
3189          --  What is this doing buried two levels down in exp_ch9. It seems
3190          --  like a generally useful function, and indeed there may be code
3191          --  duplication going on here ???
3192
3193          function Has_Side_Effect (N : Node_Id) return Boolean is
3194             Stmt : Node_Id;
3195             Expr : Node_Id;
3196
3197             function Is_Call_Or_Raise (N : Node_Id) return Boolean;
3198             --  Indicate whether N is a subprogram call or a raise statement
3199
3200             ----------------------
3201             -- Is_Call_Or_Raise --
3202             ----------------------
3203
3204             function Is_Call_Or_Raise (N : Node_Id) return Boolean is
3205             begin
3206                return Nkind_In (N, N_Procedure_Call_Statement,
3207                                    N_Function_Call,
3208                                    N_Raise_Statement,
3209                                    N_Raise_Constraint_Error,
3210                                    N_Raise_Program_Error,
3211                                    N_Raise_Storage_Error);
3212             end Is_Call_Or_Raise;
3213
3214          --  Start of processing for Has_Side_Effect
3215
3216          begin
3217             Stmt := N;
3218             while Present (Stmt) loop
3219                if Is_Call_Or_Raise (Stmt) then
3220                   return True;
3221                end if;
3222
3223                --  An object declaration can also contain a function call
3224                --  or a raise statement
3225
3226                if Nkind (Stmt) = N_Object_Declaration then
3227                   Expr := Expression (Stmt);
3228
3229                   if Present (Expr) and then Is_Call_Or_Raise (Expr) then
3230                      return True;
3231                   end if;
3232                end if;
3233
3234                Next (Stmt);
3235             end loop;
3236
3237             return False;
3238          end Has_Side_Effect;
3239
3240       --  Start of processing for Is_Exception_Safe
3241
3242       begin
3243          --  If the checks handled by the back end are not disabled, we cannot
3244          --  ensure that no exception will be raised.
3245
3246          if not Access_Checks_Suppressed (Empty)
3247            or else not Discriminant_Checks_Suppressed (Empty)
3248            or else not Range_Checks_Suppressed (Empty)
3249            or else not Index_Checks_Suppressed (Empty)
3250            or else Opt.Stack_Checking_Enabled
3251          then
3252             return False;
3253          end if;
3254
3255          if Has_Side_Effect (First (Declarations (Subprogram)))
3256            or else
3257               Has_Side_Effect (
3258                 First (Statements (Handled_Statement_Sequence (Subprogram))))
3259          then
3260             return False;
3261          else
3262             return True;
3263          end if;
3264       end Is_Exception_Safe;
3265
3266    --  Start of processing for Build_Protected_Subprogram_Body
3267
3268    begin
3269       Op_Spec := Specification (N);
3270       Exc_Safe := Is_Exception_Safe (N);
3271
3272       P_Op_Spec :=
3273         Build_Protected_Sub_Specification (N, Pid, Protected_Mode);
3274
3275       --  Build a list of the formal parameters of the protected version of
3276       --  the subprogram to use as the actual parameters of the unprotected
3277       --  version.
3278
3279       Uactuals := New_List;
3280       Pformal := First (Parameter_Specifications (P_Op_Spec));
3281       while Present (Pformal) loop
3282          Append_To (Uactuals,
3283            Make_Identifier (Loc, Chars (Defining_Identifier (Pformal))));
3284          Next (Pformal);
3285       end loop;
3286
3287       --  Make a call to the unprotected version of the subprogram built above
3288       --  for use by the protected version built below.
3289
3290       if Nkind (Op_Spec) = N_Function_Specification then
3291          if Exc_Safe then
3292             R := Make_Temporary (Loc, 'R');
3293             Unprot_Call :=
3294               Make_Object_Declaration (Loc,
3295                 Defining_Identifier => R,
3296                 Constant_Present => True,
3297                 Object_Definition => New_Copy (Result_Definition (N_Op_Spec)),
3298                 Expression =>
3299                   Make_Function_Call (Loc,
3300                     Name => Make_Identifier (Loc,
3301                       Chars => Chars (Defining_Unit_Name (N_Op_Spec))),
3302                     Parameter_Associations => Uactuals));
3303
3304             Return_Stmt :=
3305               Make_Simple_Return_Statement (Loc,
3306                 Expression => New_Reference_To (R, Loc));
3307
3308          else
3309             Unprot_Call := Make_Simple_Return_Statement (Loc,
3310               Expression => Make_Function_Call (Loc,
3311                 Name =>
3312                   Make_Identifier (Loc,
3313                     Chars => Chars (Defining_Unit_Name (N_Op_Spec))),
3314                 Parameter_Associations => Uactuals));
3315          end if;
3316
3317       else
3318          Unprot_Call :=
3319            Make_Procedure_Call_Statement (Loc,
3320              Name =>
3321                Make_Identifier (Loc, Chars (Defining_Unit_Name (N_Op_Spec))),
3322              Parameter_Associations => Uactuals);
3323       end if;
3324
3325       --  Wrap call in block that will be covered by an at_end handler
3326
3327       if not Exc_Safe then
3328          Unprot_Call := Make_Block_Statement (Loc,
3329            Handled_Statement_Sequence =>
3330              Make_Handled_Sequence_Of_Statements (Loc,
3331                Statements => New_List (Unprot_Call)));
3332       end if;
3333
3334       --  Make the protected subprogram body. This locks the protected
3335       --  object and calls the unprotected version of the subprogram.
3336
3337       case Corresponding_Runtime_Package (Pid) is
3338          when System_Tasking_Protected_Objects_Entries =>
3339             Lock_Name := New_Reference_To (RTE (RE_Lock_Entries), Loc);
3340             Service_Name := New_Reference_To (RTE (RE_Service_Entries), Loc);
3341
3342          when System_Tasking_Protected_Objects_Single_Entry =>
3343             Lock_Name := New_Reference_To (RTE (RE_Lock_Entry), Loc);
3344             Service_Name := New_Reference_To (RTE (RE_Service_Entry), Loc);
3345
3346          when System_Tasking_Protected_Objects =>
3347             Lock_Name := New_Reference_To (RTE (RE_Lock), Loc);
3348             Service_Name := New_Reference_To (RTE (RE_Unlock), Loc);
3349
3350          when others =>
3351             raise Program_Error;
3352       end case;
3353
3354       Object_Parm :=
3355         Make_Attribute_Reference (Loc,
3356            Prefix =>
3357              Make_Selected_Component (Loc,
3358                Prefix        => Make_Identifier (Loc, Name_uObject),
3359                Selector_Name => Make_Identifier (Loc, Name_uObject)),
3360            Attribute_Name => Name_Unchecked_Access);
3361
3362       Lock_Stmt := Make_Procedure_Call_Statement (Loc,
3363         Name => Lock_Name,
3364         Parameter_Associations => New_List (Object_Parm));
3365
3366       if Abort_Allowed then
3367          Stmts := New_List (
3368            Make_Procedure_Call_Statement (Loc,
3369              Name => New_Reference_To (RTE (RE_Abort_Defer), Loc),
3370              Parameter_Associations => Empty_List),
3371            Lock_Stmt);
3372
3373       else
3374          Stmts := New_List (Lock_Stmt);
3375       end if;
3376
3377       if not Exc_Safe then
3378          Append (Unprot_Call, Stmts);
3379       else
3380          if Nkind (Op_Spec) = N_Function_Specification then
3381             Pre_Stmts := Stmts;
3382             Stmts     := Empty_List;
3383          else
3384             Append (Unprot_Call, Stmts);
3385          end if;
3386
3387          Append (
3388            Make_Procedure_Call_Statement (Loc,
3389              Name => Service_Name,
3390              Parameter_Associations =>
3391                New_List (New_Copy_Tree (Object_Parm))),
3392            Stmts);
3393
3394          if Abort_Allowed then
3395             Append (
3396               Make_Procedure_Call_Statement (Loc,
3397                 Name => New_Reference_To (RTE (RE_Abort_Undefer), Loc),
3398                 Parameter_Associations => Empty_List),
3399               Stmts);
3400          end if;
3401
3402          if Nkind (Op_Spec) = N_Function_Specification then
3403             Append (Return_Stmt, Stmts);
3404             Append (Make_Block_Statement (Loc,
3405               Declarations => New_List (Unprot_Call),
3406               Handled_Statement_Sequence =>
3407                 Make_Handled_Sequence_Of_Statements (Loc,
3408                   Statements => Stmts)), Pre_Stmts);
3409             Stmts := Pre_Stmts;
3410          end if;
3411       end if;
3412
3413       Sub_Body :=
3414         Make_Subprogram_Body (Loc,
3415           Declarations => Empty_List,
3416           Specification => P_Op_Spec,
3417           Handled_Statement_Sequence =>
3418             Make_Handled_Sequence_Of_Statements (Loc, Statements => Stmts));
3419
3420       if not Exc_Safe then
3421          Set_Is_Protected_Subprogram_Body (Sub_Body);
3422       end if;
3423
3424       return Sub_Body;
3425    end Build_Protected_Subprogram_Body;
3426
3427    -------------------------------------
3428    -- Build_Protected_Subprogram_Call --
3429    -------------------------------------
3430
3431    procedure Build_Protected_Subprogram_Call
3432      (N        : Node_Id;
3433       Name     : Node_Id;
3434       Rec      : Node_Id;
3435       External : Boolean := True)
3436    is
3437       Loc     : constant Source_Ptr := Sloc (N);
3438       Sub     : constant Entity_Id  := Entity (Name);
3439       New_Sub : Node_Id;
3440       Params  : List_Id;
3441
3442    begin
3443       if External then
3444          New_Sub := New_Occurrence_Of (External_Subprogram (Sub), Loc);
3445       else
3446          New_Sub :=
3447            New_Occurrence_Of (Protected_Body_Subprogram (Sub), Loc);
3448       end if;
3449
3450       if Present (Parameter_Associations (N)) then
3451          Params := New_Copy_List_Tree (Parameter_Associations (N));
3452       else
3453          Params := New_List;
3454       end if;
3455
3456       --  If the type is an untagged derived type, convert to the root type,
3457       --  which is the one on which the operations are defined.
3458
3459       if Nkind (Rec) = N_Unchecked_Type_Conversion
3460         and then not Is_Tagged_Type (Etype (Rec))
3461         and then Is_Derived_Type (Etype (Rec))
3462       then
3463          Set_Etype (Rec, Root_Type (Etype (Rec)));
3464          Set_Subtype_Mark (Rec,
3465            New_Occurrence_Of (Root_Type (Etype (Rec)), Sloc (N)));
3466       end if;
3467
3468       Prepend (Rec, Params);
3469
3470       if Ekind (Sub) = E_Procedure then
3471          Rewrite (N,
3472            Make_Procedure_Call_Statement (Loc,
3473              Name => New_Sub,
3474              Parameter_Associations => Params));
3475
3476       else
3477          pragma Assert (Ekind (Sub) = E_Function);
3478          Rewrite (N,
3479            Make_Function_Call (Loc,
3480              Name => New_Sub,
3481              Parameter_Associations => Params));
3482       end if;
3483
3484       if External
3485         and then Nkind (Rec) = N_Unchecked_Type_Conversion
3486         and then Is_Entity_Name (Expression (Rec))
3487         and then Is_Shared_Passive (Entity (Expression (Rec)))
3488       then
3489          Add_Shared_Var_Lock_Procs (N);
3490       end if;
3491    end Build_Protected_Subprogram_Call;
3492
3493    -------------------------
3494    -- Build_Selected_Name --
3495    -------------------------
3496
3497    function Build_Selected_Name
3498      (Prefix      : Entity_Id;
3499       Selector    : Entity_Id;
3500       Append_Char : Character := ' ') return Name_Id
3501    is
3502       Select_Buffer : String (1 .. Hostparm.Max_Name_Length);
3503       Select_Len    : Natural;
3504
3505    begin
3506       Get_Name_String (Chars (Selector));
3507       Select_Len := Name_Len;
3508       Select_Buffer (1 .. Select_Len) := Name_Buffer (1 .. Name_Len);
3509       Get_Name_String (Chars (Prefix));
3510
3511       --  If scope is anonymous type, discard suffix to recover name of
3512       --  single protected object. Otherwise use protected type name.
3513
3514       if Name_Buffer (Name_Len) = 'T' then
3515          Name_Len := Name_Len - 1;
3516       end if;
3517
3518       Add_Str_To_Name_Buffer ("__");
3519       for J in 1 .. Select_Len loop
3520          Add_Char_To_Name_Buffer (Select_Buffer (J));
3521       end loop;
3522
3523       --  Now add the Append_Char if specified. The encoding to follow
3524       --  depends on the type of entity. If Append_Char is either 'N' or 'P',
3525       --  then the entity is associated to a protected type subprogram.
3526       --  Otherwise, it is a protected type entry. For each case, the
3527       --  encoding to follow for the suffix is documented in exp_dbug.ads.
3528
3529       --  It would be better to encapsulate this as a routine in Exp_Dbug ???
3530
3531       if Append_Char /= ' ' then
3532          if Append_Char = 'P' or Append_Char = 'N' then
3533             Add_Char_To_Name_Buffer (Append_Char);
3534             return Name_Find;
3535          else
3536             Add_Str_To_Name_Buffer ((1 => '_', 2 => Append_Char));
3537             return New_External_Name (Name_Find, ' ', -1);
3538          end if;
3539       else
3540          return Name_Find;
3541       end if;
3542    end Build_Selected_Name;
3543
3544    -----------------------------
3545    -- Build_Simple_Entry_Call --
3546    -----------------------------
3547
3548    --  A task entry call is converted to a call to Call_Simple
3549
3550    --    declare
3551    --       P : parms := (parm, parm, parm);
3552    --    begin
3553    --       Call_Simple (acceptor-task, entry-index, P'Address);
3554    --       parm := P.param;
3555    --       parm := P.param;
3556    --       ...
3557    --    end;
3558
3559    --  Here Pnn is an aggregate of the type constructed for the entry to hold
3560    --  the parameters, and the constructed aggregate value contains either the
3561    --  parameters or, in the case of non-elementary types, references to these
3562    --  parameters. Then the address of this aggregate is passed to the runtime
3563    --  routine, along with the task id value and the task entry index value.
3564    --  Pnn is only required if parameters are present.
3565
3566    --  The assignments after the call are present only in the case of in-out
3567    --  or out parameters for elementary types, and are used to assign back the
3568    --  resulting values of such parameters.
3569
3570    --  Note: the reason that we insert a block here is that in the context
3571    --  of selects, conditional entry calls etc. the entry call statement
3572    --  appears on its own, not as an element of a list.
3573
3574    --  A protected entry call is converted to a Protected_Entry_Call:
3575
3576    --  declare
3577    --     P   : E1_Params := (param, param, param);
3578    --     Pnn : Boolean;
3579    --     Bnn : Communications_Block;
3580
3581    --  declare
3582    --     P   : E1_Params := (param, param, param);
3583    --     Bnn : Communications_Block;
3584
3585    --  begin
3586    --     Protected_Entry_Call (
3587    --       Object => po._object'Access,
3588    --       E => <entry index>;
3589    --       Uninterpreted_Data => P'Address;
3590    --       Mode => Simple_Call;
3591    --       Block => Bnn);
3592    --     parm := P.param;
3593    --     parm := P.param;
3594    --       ...
3595    --  end;
3596
3597    procedure Build_Simple_Entry_Call
3598      (N       : Node_Id;
3599       Concval : Node_Id;
3600       Ename   : Node_Id;
3601       Index   : Node_Id)
3602    is
3603    begin
3604       Expand_Call (N);
3605
3606       --  If call has been inlined, nothing left to do
3607
3608       if Nkind (N) = N_Block_Statement then
3609          return;
3610       end if;
3611
3612       --  Convert entry call to Call_Simple call
3613
3614       declare
3615          Loc       : constant Source_Ptr := Sloc (N);
3616          Parms     : constant List_Id    := Parameter_Associations (N);
3617          Stats     : constant List_Id    := New_List;
3618          Actual    : Node_Id;
3619          Call      : Node_Id;
3620          Comm_Name : Entity_Id;
3621          Conctyp   : Node_Id;
3622          Decls     : List_Id;
3623          Ent       : Entity_Id;
3624          Ent_Acc   : Entity_Id;
3625          Formal    : Node_Id;
3626          Iface_Tag : Entity_Id;
3627          Iface_Typ : Entity_Id;
3628          N_Node    : Node_Id;
3629          N_Var     : Node_Id;
3630          P         : Entity_Id;
3631          Parm1     : Node_Id;
3632          Parm2     : Node_Id;
3633          Parm3     : Node_Id;
3634          Pdecl     : Node_Id;
3635          Plist     : List_Id;
3636          X         : Entity_Id;
3637          Xdecl     : Node_Id;
3638
3639       begin
3640          --  Simple entry and entry family cases merge here
3641
3642          Ent     := Entity (Ename);
3643          Ent_Acc := Entry_Parameters_Type (Ent);
3644          Conctyp := Etype (Concval);
3645
3646          --  If prefix is an access type, dereference to obtain the task type
3647
3648          if Is_Access_Type (Conctyp) then
3649             Conctyp := Designated_Type (Conctyp);
3650          end if;
3651
3652          --  Special case for protected subprogram calls
3653
3654          if Is_Protected_Type (Conctyp)
3655            and then Is_Subprogram (Entity (Ename))
3656          then
3657             if not Is_Eliminated (Entity (Ename)) then
3658                Build_Protected_Subprogram_Call
3659                  (N, Ename, Convert_Concurrent (Concval, Conctyp));
3660                Analyze (N);
3661             end if;
3662
3663             return;
3664          end if;
3665
3666          --  First parameter is the Task_Id value from the task value or the
3667          --  Object from the protected object value, obtained by selecting
3668          --  the _Task_Id or _Object from the result of doing an unchecked
3669          --  conversion to convert the value to the corresponding record type.
3670
3671          if Nkind (Concval) = N_Function_Call
3672            and then Is_Task_Type (Conctyp)
3673            and then Ada_Version >= Ada_2005
3674          then
3675             declare
3676                ExpR : constant Node_Id   := Relocate_Node (Concval);
3677                Obj  : constant Entity_Id := Make_Temporary (Loc, 'F', ExpR);
3678                Decl : Node_Id;
3679
3680             begin
3681                Decl :=
3682                  Make_Object_Declaration (Loc,
3683                    Defining_Identifier => Obj,
3684                    Object_Definition   => New_Occurrence_Of (Conctyp, Loc),
3685                    Expression          => ExpR);
3686                Set_Etype (Obj, Conctyp);
3687                Decls := New_List (Decl);
3688                Rewrite (Concval, New_Occurrence_Of (Obj, Loc));
3689             end;
3690
3691          else
3692             Decls := New_List;
3693          end if;
3694
3695          Parm1 := Concurrent_Ref (Concval);
3696
3697          --  Second parameter is the entry index, computed by the routine
3698          --  provided for this purpose. The value of this expression is
3699          --  assigned to an intermediate variable to assure that any entry
3700          --  family index expressions are evaluated before the entry
3701          --  parameters.
3702
3703          if Abort_Allowed
3704            or else Restriction_Active (No_Entry_Queue) = False
3705            or else not Is_Protected_Type (Conctyp)
3706            or else Number_Entries (Conctyp) > 1
3707            or else (Has_Attach_Handler (Conctyp)
3708                      and then not Restricted_Profile)
3709          then
3710             X := Make_Defining_Identifier (Loc, Name_uX);
3711
3712             Xdecl :=
3713               Make_Object_Declaration (Loc,
3714                 Defining_Identifier => X,
3715                 Object_Definition =>
3716                   New_Reference_To (RTE (RE_Task_Entry_Index), Loc),
3717                 Expression => Actual_Index_Expression (
3718                   Loc, Entity (Ename), Index, Concval));
3719
3720             Append_To (Decls, Xdecl);
3721             Parm2 := New_Reference_To (X, Loc);
3722
3723          else
3724             Xdecl := Empty;
3725             Parm2 := Empty;
3726          end if;
3727
3728          --  The third parameter is the packaged parameters. If there are
3729          --  none, then it is just the null address, since nothing is passed.
3730
3731          if No (Parms) then
3732             Parm3 := New_Reference_To (RTE (RE_Null_Address), Loc);
3733             P := Empty;
3734
3735          --  Case of parameters present, where third argument is the address
3736          --  of a packaged record containing the required parameter values.
3737
3738          else
3739             --  First build a list of parameter values, which are references to
3740             --  objects of the parameter types.
3741
3742             Plist := New_List;
3743
3744             Actual := First_Actual (N);
3745             Formal := First_Formal (Ent);
3746
3747             while Present (Actual) loop
3748
3749                --  If it is a by_copy_type, copy it to a new variable. The
3750                --  packaged record has a field that points to this variable.
3751
3752                if Is_By_Copy_Type (Etype (Actual)) then
3753                   N_Node :=
3754                     Make_Object_Declaration (Loc,
3755                       Defining_Identifier => Make_Temporary (Loc, 'J'),
3756                       Aliased_Present     => True,
3757                       Object_Definition   =>
3758                         New_Reference_To (Etype (Formal), Loc));
3759
3760                   --  Mark the object as not needing initialization since the
3761                   --  initialization is performed separately, avoiding errors
3762                   --  on cases such as formals of null-excluding access types.
3763
3764                   Set_No_Initialization (N_Node);
3765
3766                   --  We must make an assignment statement separate for the
3767                   --  case of limited type. We cannot assign it unless the
3768                   --  Assignment_OK flag is set first. An out formal of an
3769                   --  access type must also be initialized from the actual,
3770                   --  as stated in RM 6.4.1 (13).
3771
3772                   if Ekind (Formal) /= E_Out_Parameter
3773                     or else Is_Access_Type (Etype (Formal))
3774                   then
3775                      N_Var :=
3776                        New_Reference_To (Defining_Identifier (N_Node), Loc);
3777                      Set_Assignment_OK (N_Var);
3778                      Append_To (Stats,
3779                        Make_Assignment_Statement (Loc,
3780                          Name => N_Var,
3781                          Expression => Relocate_Node (Actual)));
3782                   end if;
3783
3784                   Append (N_Node, Decls);
3785
3786                   Append_To (Plist,
3787                     Make_Attribute_Reference (Loc,
3788                       Attribute_Name => Name_Unchecked_Access,
3789                     Prefix =>
3790                       New_Reference_To (Defining_Identifier (N_Node), Loc)));
3791
3792                --  If it is a VM_By_Copy_Actual, copy it to a new variable
3793
3794                elsif Is_VM_By_Copy_Actual (Actual) then
3795                   N_Node :=
3796                     Make_Object_Declaration (Loc,
3797                       Defining_Identifier => Make_Temporary (Loc, 'J'),
3798                       Aliased_Present     => True,
3799                       Object_Definition   =>
3800                         New_Reference_To (Etype (Formal), Loc),
3801                       Expression => New_Copy_Tree (Actual));
3802                   Set_Assignment_OK (N_Node);
3803
3804                   Append (N_Node, Decls);
3805
3806                   Append_To (Plist,
3807                     Make_Attribute_Reference (Loc,
3808                       Attribute_Name => Name_Unchecked_Access,
3809                     Prefix =>
3810                       New_Reference_To (Defining_Identifier (N_Node), Loc)));
3811
3812                else
3813                   --  Interface class-wide formal
3814
3815                   if Ada_Version >= Ada_2005
3816                     and then Ekind (Etype (Formal)) = E_Class_Wide_Type
3817                     and then Is_Interface (Etype (Formal))
3818                   then
3819                      Iface_Typ := Etype (Etype (Formal));
3820
3821                      --  Generate:
3822                      --    formal_iface_type! (actual.iface_tag)'reference
3823
3824                      Iface_Tag :=
3825                        Find_Interface_Tag (Etype (Actual), Iface_Typ);
3826                      pragma Assert (Present (Iface_Tag));
3827
3828                      Append_To (Plist,
3829                        Make_Reference (Loc,
3830                          Unchecked_Convert_To (Iface_Typ,
3831                            Make_Selected_Component (Loc,
3832                              Prefix =>
3833                                Relocate_Node (Actual),
3834                              Selector_Name =>
3835                                New_Reference_To (Iface_Tag, Loc)))));
3836                   else
3837                      --  Generate:
3838                      --    actual'reference
3839
3840                      Append_To (Plist,
3841                        Make_Reference (Loc, Relocate_Node (Actual)));
3842                   end if;
3843                end if;
3844
3845                Next_Actual (Actual);
3846                Next_Formal_With_Extras (Formal);
3847             end loop;
3848
3849             --  Now build the declaration of parameters initialized with the
3850             --  aggregate containing this constructed parameter list.
3851
3852             P := Make_Defining_Identifier (Loc, Name_uP);
3853
3854             Pdecl :=
3855               Make_Object_Declaration (Loc,
3856                 Defining_Identifier => P,
3857                 Object_Definition =>
3858                   New_Reference_To (Designated_Type (Ent_Acc), Loc),
3859                 Expression =>
3860                   Make_Aggregate (Loc, Expressions => Plist));
3861
3862             Parm3 :=
3863               Make_Attribute_Reference (Loc,
3864                 Prefix => New_Reference_To (P, Loc),
3865                 Attribute_Name => Name_Address);
3866
3867             Append (Pdecl, Decls);
3868          end if;
3869
3870          --  Now we can create the call, case of protected type
3871
3872          if Is_Protected_Type (Conctyp) then
3873             case Corresponding_Runtime_Package (Conctyp) is
3874                when System_Tasking_Protected_Objects_Entries =>
3875
3876                   --  Change the type of the index declaration
3877
3878                   Set_Object_Definition (Xdecl,
3879                     New_Reference_To (RTE (RE_Protected_Entry_Index), Loc));
3880
3881                   --  Some additional declarations for protected entry calls
3882
3883                   if No (Decls) then
3884                      Decls := New_List;
3885                   end if;
3886
3887                   --  Bnn : Communications_Block;
3888
3889                   Comm_Name := Make_Temporary (Loc, 'B');
3890
3891                   Append_To (Decls,
3892                     Make_Object_Declaration (Loc,
3893                       Defining_Identifier => Comm_Name,
3894                       Object_Definition   =>
3895                         New_Reference_To (RTE (RE_Communication_Block), Loc)));
3896
3897                   --  Some additional statements for protected entry calls
3898
3899                   --     Protected_Entry_Call (
3900                   --       Object => po._object'Access,
3901                   --       E => <entry index>;
3902                   --       Uninterpreted_Data => P'Address;
3903                   --       Mode => Simple_Call;
3904                   --       Block => Bnn);
3905
3906                   Call :=
3907                     Make_Procedure_Call_Statement (Loc,
3908                       Name =>
3909                         New_Reference_To (RTE (RE_Protected_Entry_Call), Loc),
3910
3911                       Parameter_Associations => New_List (
3912                         Make_Attribute_Reference (Loc,
3913                           Attribute_Name => Name_Unchecked_Access,
3914                           Prefix         => Parm1),
3915                         Parm2,
3916                         Parm3,
3917                         New_Reference_To (RTE (RE_Simple_Call), Loc),
3918                         New_Occurrence_Of (Comm_Name, Loc)));
3919
3920                when System_Tasking_Protected_Objects_Single_Entry =>
3921                   --     Protected_Single_Entry_Call (
3922                   --       Object => po._object'Access,
3923                   --       Uninterpreted_Data => P'Address;
3924                   --       Mode => Simple_Call);
3925
3926                   Call :=
3927                     Make_Procedure_Call_Statement (Loc,
3928                       Name => New_Reference_To (
3929                         RTE (RE_Protected_Single_Entry_Call), Loc),
3930
3931                       Parameter_Associations => New_List (
3932                         Make_Attribute_Reference (Loc,
3933                           Attribute_Name => Name_Unchecked_Access,
3934                           Prefix         => Parm1),
3935                         Parm3,
3936                         New_Reference_To (RTE (RE_Simple_Call), Loc)));
3937
3938                when others =>
3939                   raise Program_Error;
3940             end case;
3941
3942          --  Case of task type
3943
3944          else
3945             Call :=
3946               Make_Procedure_Call_Statement (Loc,
3947                 Name => New_Reference_To (RTE (RE_Call_Simple), Loc),
3948                 Parameter_Associations => New_List (Parm1, Parm2, Parm3));
3949
3950          end if;
3951
3952          Append_To (Stats, Call);
3953
3954          --  If there are out or in/out parameters by copy add assignment
3955          --  statements for the result values.
3956
3957          if Present (Parms) then
3958             Actual := First_Actual (N);
3959             Formal := First_Formal (Ent);
3960
3961             Set_Assignment_OK (Actual);
3962             while Present (Actual) loop
3963                if (Is_By_Copy_Type (Etype (Actual))
3964                      or else Is_VM_By_Copy_Actual (Actual))
3965                  and then Ekind (Formal) /= E_In_Parameter
3966                then
3967                   N_Node :=
3968                     Make_Assignment_Statement (Loc,
3969                       Name => New_Copy (Actual),
3970                       Expression =>
3971                         Make_Explicit_Dereference (Loc,
3972                           Make_Selected_Component (Loc,
3973                             Prefix => New_Reference_To (P, Loc),
3974                             Selector_Name =>
3975                               Make_Identifier (Loc, Chars (Formal)))));
3976
3977                   --  In all cases (including limited private types) we want
3978                   --  the assignment to be valid.
3979
3980                   Set_Assignment_OK (Name (N_Node));
3981
3982                   --  If the call is the triggering alternative in an
3983                   --  asynchronous select, or the entry_call alternative of a
3984                   --  conditional entry call, the assignments for in-out
3985                   --  parameters are incorporated into the statement list that
3986                   --  follows, so that there are executed only if the entry
3987                   --  call succeeds.
3988
3989                   if (Nkind (Parent (N)) = N_Triggering_Alternative
3990                        and then N = Triggering_Statement (Parent (N)))
3991                     or else
3992                      (Nkind (Parent (N)) = N_Entry_Call_Alternative
3993                        and then N = Entry_Call_Statement (Parent (N)))
3994                   then
3995                      if No (Statements (Parent (N))) then
3996                         Set_Statements (Parent (N), New_List);
3997                      end if;
3998
3999                      Prepend (N_Node, Statements (Parent (N)));
4000
4001                   else
4002                      Insert_After (Call, N_Node);
4003                   end if;
4004                end if;
4005
4006                Next_Actual (Actual);
4007                Next_Formal_With_Extras (Formal);
4008             end loop;
4009          end if;
4010
4011          --  Finally, create block and analyze it
4012
4013          Rewrite (N,
4014            Make_Block_Statement (Loc,
4015              Declarations => Decls,
4016              Handled_Statement_Sequence =>
4017                Make_Handled_Sequence_Of_Statements (Loc,
4018                  Statements => Stats)));
4019
4020          Analyze (N);
4021       end;
4022    end Build_Simple_Entry_Call;
4023
4024    --------------------------------
4025    -- Build_Task_Activation_Call --
4026    --------------------------------
4027
4028    procedure Build_Task_Activation_Call (N : Node_Id) is
4029       Loc   : constant Source_Ptr := Sloc (N);
4030       Chain : Entity_Id;
4031       Call  : Node_Id;
4032       Name  : Node_Id;
4033       P     : Node_Id;
4034
4035    begin
4036       --  Get the activation chain entity. Except in the case of a package
4037       --  body, this is in the node that was passed. For a package body, we
4038       --  have to find the corresponding package declaration node.
4039
4040       if Nkind (N) = N_Package_Body then
4041          P := Corresponding_Spec (N);
4042          loop
4043             P := Parent (P);
4044             exit when Nkind (P) = N_Package_Declaration;
4045          end loop;
4046
4047          Chain := Activation_Chain_Entity (P);
4048
4049       else
4050          Chain := Activation_Chain_Entity (N);
4051       end if;
4052
4053       if Present (Chain) then
4054          if Restricted_Profile then
4055             Name := New_Reference_To (RTE (RE_Activate_Restricted_Tasks), Loc);
4056          else
4057             Name := New_Reference_To (RTE (RE_Activate_Tasks), Loc);
4058          end if;
4059
4060          Call :=
4061            Make_Procedure_Call_Statement (Loc,
4062              Name => Name,
4063              Parameter_Associations =>
4064                New_List (Make_Attribute_Reference (Loc,
4065                  Prefix => New_Occurrence_Of (Chain, Loc),
4066                  Attribute_Name => Name_Unchecked_Access)));
4067
4068          if Nkind (N) = N_Package_Declaration then
4069             if Present (Corresponding_Body (N)) then
4070                null;
4071
4072             elsif Present (Private_Declarations (Specification (N))) then
4073                Append (Call, Private_Declarations (Specification (N)));
4074
4075             else
4076                Append (Call, Visible_Declarations (Specification (N)));
4077             end if;
4078
4079          else
4080             if Present (Handled_Statement_Sequence (N)) then
4081
4082                --  The call goes at the start of the statement sequence
4083                --  after the start of exception range label if one is present.
4084
4085                declare
4086                   Stm : Node_Id;
4087
4088                begin
4089                   Stm := First (Statements (Handled_Statement_Sequence (N)));
4090
4091                   --  A special case, skip exception range label if one is
4092                   --  present (from front end zcx processing).
4093
4094                   if Nkind (Stm) = N_Label and then Exception_Junk (Stm) then
4095                      Next (Stm);
4096                   end if;
4097
4098                   --  Another special case, if the first statement is a block
4099                   --  from optimization of a local raise to a goto, then the
4100                   --  call goes inside this block.
4101
4102                   if Nkind (Stm) = N_Block_Statement
4103                     and then Exception_Junk (Stm)
4104                   then
4105                      Stm :=
4106                        First (Statements (Handled_Statement_Sequence (Stm)));
4107                   end if;
4108
4109                   --  Insertion point is after any exception label pushes,
4110                   --  since we want it covered by any local handlers.
4111
4112                   while Nkind (Stm) in N_Push_xxx_Label loop
4113                      Next (Stm);
4114                   end loop;
4115
4116                   --  Now we have the proper insertion point
4117
4118                   Insert_Before (Stm, Call);
4119                end;
4120
4121             else
4122                Set_Handled_Statement_Sequence (N,
4123                   Make_Handled_Sequence_Of_Statements (Loc,
4124                      Statements => New_List (Call)));
4125             end if;
4126          end if;
4127
4128          Analyze (Call);
4129          Check_Task_Activation (N);
4130       end if;
4131    end Build_Task_Activation_Call;
4132
4133    -------------------------------
4134    -- Build_Task_Allocate_Block --
4135    -------------------------------
4136
4137    procedure Build_Task_Allocate_Block
4138      (Actions : List_Id;
4139       N       : Node_Id;
4140       Args    : List_Id)
4141    is
4142       T      : constant Entity_Id  := Entity (Expression (N));
4143       Init   : constant Entity_Id  := Base_Init_Proc (T);
4144       Loc    : constant Source_Ptr := Sloc (N);
4145       Chain  : constant Entity_Id  :=
4146                  Make_Defining_Identifier (Loc, Name_uChain);
4147       Blkent : constant Entity_Id  := Make_Temporary (Loc, 'A');
4148       Block  : Node_Id;
4149
4150    begin
4151       Block :=
4152         Make_Block_Statement (Loc,
4153           Identifier   => New_Reference_To (Blkent, Loc),
4154           Declarations => New_List (
4155
4156             --  _Chain  : Activation_Chain;
4157
4158             Make_Object_Declaration (Loc,
4159               Defining_Identifier => Chain,
4160               Aliased_Present => True,
4161               Object_Definition   =>
4162                 New_Reference_To (RTE (RE_Activation_Chain), Loc))),
4163
4164           Handled_Statement_Sequence =>
4165             Make_Handled_Sequence_Of_Statements (Loc,
4166
4167               Statements => New_List (
4168
4169                --  Init (Args);
4170
4171                 Make_Procedure_Call_Statement (Loc,
4172                   Name => New_Reference_To (Init, Loc),
4173                   Parameter_Associations => Args),
4174
4175                --  Activate_Tasks (_Chain);
4176
4177                 Make_Procedure_Call_Statement (Loc,
4178                   Name => New_Reference_To (RTE (RE_Activate_Tasks), Loc),
4179                   Parameter_Associations => New_List (
4180                     Make_Attribute_Reference (Loc,
4181                       Prefix => New_Reference_To (Chain, Loc),
4182                       Attribute_Name => Name_Unchecked_Access))))),
4183
4184           Has_Created_Identifier => True,
4185           Is_Task_Allocation_Block => True);
4186
4187       Append_To (Actions,
4188         Make_Implicit_Label_Declaration (Loc,
4189           Defining_Identifier => Blkent,
4190           Label_Construct     => Block));
4191
4192       Append_To (Actions, Block);
4193
4194       Set_Activation_Chain_Entity (Block, Chain);
4195    end Build_Task_Allocate_Block;
4196
4197    -----------------------------------------------
4198    -- Build_Task_Allocate_Block_With_Init_Stmts --
4199    -----------------------------------------------
4200
4201    procedure Build_Task_Allocate_Block_With_Init_Stmts
4202      (Actions    : List_Id;
4203       N          : Node_Id;
4204       Init_Stmts : List_Id)
4205    is
4206       Loc    : constant Source_Ptr := Sloc (N);
4207       Chain  : constant Entity_Id  :=
4208                  Make_Defining_Identifier (Loc, Name_uChain);
4209       Blkent : constant Entity_Id  := Make_Temporary (Loc, 'A');
4210       Block  : Node_Id;
4211
4212    begin
4213       Append_To (Init_Stmts,
4214         Make_Procedure_Call_Statement (Loc,
4215           Name => New_Reference_To (RTE (RE_Activate_Tasks), Loc),
4216           Parameter_Associations => New_List (
4217             Make_Attribute_Reference (Loc,
4218               Prefix => New_Reference_To (Chain, Loc),
4219               Attribute_Name => Name_Unchecked_Access))));
4220
4221       Block :=
4222         Make_Block_Statement (Loc,
4223           Identifier => New_Reference_To (Blkent, Loc),
4224           Declarations => New_List (
4225
4226             --  _Chain  : Activation_Chain;
4227
4228             Make_Object_Declaration (Loc,
4229               Defining_Identifier => Chain,
4230               Aliased_Present => True,
4231               Object_Definition   =>
4232                 New_Reference_To (RTE (RE_Activation_Chain), Loc))),
4233
4234           Handled_Statement_Sequence =>
4235             Make_Handled_Sequence_Of_Statements (Loc, Init_Stmts),
4236
4237           Has_Created_Identifier => True,
4238           Is_Task_Allocation_Block => True);
4239
4240       Append_To (Actions,
4241         Make_Implicit_Label_Declaration (Loc,
4242           Defining_Identifier => Blkent,
4243           Label_Construct     => Block));
4244
4245       Append_To (Actions, Block);
4246
4247       Set_Activation_Chain_Entity (Block, Chain);
4248    end Build_Task_Allocate_Block_With_Init_Stmts;
4249
4250    -----------------------------------
4251    -- Build_Task_Proc_Specification --
4252    -----------------------------------
4253
4254    function Build_Task_Proc_Specification (T : Entity_Id) return Node_Id is
4255       Loc     : constant Source_Ptr := Sloc (T);
4256       Spec_Id : Entity_Id;
4257
4258    begin
4259       --  Case of explicit task type, suffix TB
4260
4261       if Comes_From_Source (T) then
4262          Spec_Id :=
4263            Make_Defining_Identifier (Loc,
4264              Chars => New_External_Name (Chars (T), "TB"));
4265
4266       --  Case of anonymous task type, suffix B
4267
4268       else
4269          Spec_Id :=
4270            Make_Defining_Identifier (Loc,
4271              Chars => New_External_Name (Chars (T), 'B'));
4272       end if;
4273
4274       Set_Is_Internal (Spec_Id);
4275
4276       --  Associate the procedure with the task, if this is the declaration
4277       --  (and not the body) of the procedure.
4278
4279       if No (Task_Body_Procedure (T)) then
4280          Set_Task_Body_Procedure (T, Spec_Id);
4281       end if;
4282
4283       return
4284         Make_Procedure_Specification (Loc,
4285           Defining_Unit_Name       => Spec_Id,
4286           Parameter_Specifications => New_List (
4287             Make_Parameter_Specification (Loc,
4288               Defining_Identifier =>
4289                 Make_Defining_Identifier (Loc, Name_uTask),
4290               Parameter_Type      =>
4291                 Make_Access_Definition (Loc,
4292                   Subtype_Mark =>
4293                     New_Reference_To (Corresponding_Record_Type (T), Loc)))));
4294    end Build_Task_Proc_Specification;
4295
4296    ---------------------------------------
4297    -- Build_Unprotected_Subprogram_Body --
4298    ---------------------------------------
4299
4300    function Build_Unprotected_Subprogram_Body
4301      (N   : Node_Id;
4302       Pid : Node_Id) return Node_Id
4303    is
4304       Decls : constant List_Id := Declarations (N);
4305
4306    begin
4307       --  Add renamings for the Protection object, discriminals, privals and
4308       --  the entry index constant for use by debugger.
4309
4310       Debug_Private_Data_Declarations (Decls);
4311
4312       --  Make an unprotected version of the subprogram for use within the same
4313       --  object, with a new name and an additional parameter representing the
4314       --  object.
4315
4316       return
4317         Make_Subprogram_Body (Sloc (N),
4318           Specification              =>
4319             Build_Protected_Sub_Specification (N, Pid, Unprotected_Mode),
4320           Declarations               => Decls,
4321           Handled_Statement_Sequence => Handled_Statement_Sequence (N));
4322    end Build_Unprotected_Subprogram_Body;
4323
4324    ----------------------------
4325    -- Collect_Entry_Families --
4326    ----------------------------
4327
4328    procedure Collect_Entry_Families
4329      (Loc          : Source_Ptr;
4330       Cdecls       : List_Id;
4331       Current_Node : in out Node_Id;
4332       Conctyp      : Entity_Id)
4333    is
4334       Efam      : Entity_Id;
4335       Efam_Decl : Node_Id;
4336       Efam_Type : Entity_Id;
4337
4338    begin
4339       Efam := First_Entity (Conctyp);
4340       while Present (Efam) loop
4341          if Ekind (Efam) = E_Entry_Family then
4342             Efam_Type := Make_Temporary (Loc, 'F');
4343
4344             declare
4345                Bas : Entity_Id :=
4346                        Base_Type
4347                         (Etype (Discrete_Subtype_Definition (Parent (Efam))));
4348
4349                Bas_Decl : Node_Id := Empty;
4350                Lo, Hi   : Node_Id;
4351
4352             begin
4353                Get_Index_Bounds
4354                  (Discrete_Subtype_Definition (Parent (Efam)), Lo, Hi);
4355
4356                if Is_Potentially_Large_Family (Bas, Conctyp, Lo, Hi) then
4357                   Bas := Make_Temporary (Loc, 'B');
4358
4359                   Bas_Decl :=
4360                     Make_Subtype_Declaration (Loc,
4361                        Defining_Identifier => Bas,
4362                        Subtype_Indication  =>
4363                          Make_Subtype_Indication (Loc,
4364                            Subtype_Mark =>
4365                              New_Occurrence_Of (Standard_Integer, Loc),
4366                            Constraint   =>
4367                              Make_Range_Constraint (Loc,
4368                                Range_Expression => Make_Range (Loc,
4369                                  Make_Integer_Literal
4370                                    (Loc, -Entry_Family_Bound),
4371                                  Make_Integer_Literal
4372                                    (Loc, Entry_Family_Bound - 1)))));
4373
4374                   Insert_After (Current_Node, Bas_Decl);
4375                   Current_Node := Bas_Decl;
4376                   Analyze (Bas_Decl);
4377                end if;
4378
4379                Efam_Decl :=
4380                  Make_Full_Type_Declaration (Loc,
4381                    Defining_Identifier => Efam_Type,
4382                    Type_Definition =>
4383                      Make_Unconstrained_Array_Definition (Loc,
4384                        Subtype_Marks =>
4385                          (New_List (New_Occurrence_Of (Bas, Loc))),
4386
4387                     Component_Definition =>
4388                       Make_Component_Definition (Loc,
4389                         Aliased_Present    => False,
4390                         Subtype_Indication =>
4391                           New_Reference_To (Standard_Character, Loc))));
4392             end;
4393
4394             Insert_After (Current_Node, Efam_Decl);
4395             Current_Node := Efam_Decl;
4396             Analyze (Efam_Decl);
4397
4398             Append_To (Cdecls,
4399               Make_Component_Declaration (Loc,
4400                 Defining_Identifier =>
4401                   Make_Defining_Identifier (Loc, Chars (Efam)),
4402
4403                 Component_Definition =>
4404                   Make_Component_Definition (Loc,
4405                     Aliased_Present    => False,
4406                     Subtype_Indication =>
4407                       Make_Subtype_Indication (Loc,
4408                         Subtype_Mark =>
4409                           New_Occurrence_Of (Efam_Type, Loc),
4410
4411                         Constraint  =>
4412                           Make_Index_Or_Discriminant_Constraint (Loc,
4413                             Constraints => New_List (
4414                               New_Occurrence_Of
4415                                 (Etype (Discrete_Subtype_Definition
4416                                   (Parent (Efam))), Loc)))))));
4417
4418          end if;
4419
4420          Next_Entity (Efam);
4421       end loop;
4422    end Collect_Entry_Families;
4423
4424    -----------------------
4425    -- Concurrent_Object --
4426    -----------------------
4427
4428    function Concurrent_Object
4429      (Spec_Id  : Entity_Id;
4430       Conc_Typ : Entity_Id) return Entity_Id
4431    is
4432    begin
4433       --  Parameter _O or _object
4434
4435       if Is_Protected_Type (Conc_Typ) then
4436          return First_Formal (Protected_Body_Subprogram (Spec_Id));
4437
4438       --  Parameter _task
4439
4440       else
4441          pragma Assert (Is_Task_Type (Conc_Typ));
4442          return First_Formal (Task_Body_Procedure (Conc_Typ));
4443       end if;
4444    end Concurrent_Object;
4445
4446    ----------------------
4447    -- Copy_Result_Type --
4448    ----------------------
4449
4450    function Copy_Result_Type (Res : Node_Id) return Node_Id is
4451       New_Res  : constant Node_Id := New_Copy_Tree (Res);
4452       Par_Spec : Node_Id;
4453       Formal   : Entity_Id;
4454
4455    begin
4456       --  If the result type is an access_to_subprogram, we must create
4457       --  new entities for its spec.
4458
4459       if Nkind (New_Res) = N_Access_Definition
4460         and then Present (Access_To_Subprogram_Definition (New_Res))
4461       then
4462          --  Provide new entities for the formals
4463
4464          Par_Spec := First (Parameter_Specifications
4465                               (Access_To_Subprogram_Definition (New_Res)));
4466          while Present (Par_Spec) loop
4467             Formal := Defining_Identifier (Par_Spec);
4468             Set_Defining_Identifier (Par_Spec,
4469               Make_Defining_Identifier (Sloc (Formal), Chars (Formal)));
4470             Next (Par_Spec);
4471          end loop;
4472       end if;
4473
4474       return New_Res;
4475    end Copy_Result_Type;
4476
4477    --------------------
4478    -- Concurrent_Ref --
4479    --------------------
4480
4481    --  The expression returned for a reference to a concurrent object has the
4482    --  form:
4483
4484    --    taskV!(name)._Task_Id
4485
4486    --  for a task, and
4487
4488    --    objectV!(name)._Object
4489
4490    --  for a protected object. For the case of an access to a concurrent
4491    --  object, there is an extra explicit dereference:
4492
4493    --    taskV!(name.all)._Task_Id
4494    --    objectV!(name.all)._Object
4495
4496    --  here taskV and objectV are the types for the associated records, which
4497    --  contain the required _Task_Id and _Object fields for tasks and protected
4498    --  objects, respectively.
4499
4500    --  For the case of a task type name, the expression is
4501
4502    --    Self;
4503
4504    --  i.e. a call to the Self function which returns precisely this Task_Id
4505
4506    --  For the case of a protected type name, the expression is
4507
4508    --    objectR
4509
4510    --  which is a renaming of the _object field of the current object
4511    --  record, passed into protected operations as a parameter.
4512
4513    function Concurrent_Ref (N : Node_Id) return Node_Id is
4514       Loc  : constant Source_Ptr := Sloc (N);
4515       Ntyp : constant Entity_Id  := Etype (N);
4516       Dtyp : Entity_Id;
4517       Sel  : Name_Id;
4518
4519       function Is_Current_Task (T : Entity_Id) return Boolean;
4520       --  Check whether the reference is to the immediately enclosing task
4521       --  type, or to an outer one (rare but legal).
4522
4523       ---------------------
4524       -- Is_Current_Task --
4525       ---------------------
4526
4527       function Is_Current_Task (T : Entity_Id) return Boolean is
4528          Scop : Entity_Id;
4529
4530       begin
4531          Scop := Current_Scope;
4532          while Present (Scop)
4533            and then Scop /= Standard_Standard
4534          loop
4535
4536             if Scop = T then
4537                return True;
4538
4539             elsif Is_Task_Type (Scop) then
4540                return False;
4541
4542             --  If this is a procedure nested within the task type, we must
4543             --  assume that it can be called from an inner task, and therefore
4544             --  cannot treat it as a local reference.
4545
4546             elsif Is_Overloadable (Scop)
4547               and then In_Open_Scopes (T)
4548             then
4549                return False;
4550
4551             else
4552                Scop := Scope (Scop);
4553             end if;
4554          end loop;
4555
4556          --  We know that we are within the task body, so should have found it
4557          --  in scope.
4558
4559          raise Program_Error;
4560       end Is_Current_Task;
4561
4562    --  Start of processing for Concurrent_Ref
4563
4564    begin
4565       if Is_Access_Type (Ntyp) then
4566          Dtyp := Designated_Type (Ntyp);
4567
4568          if Is_Protected_Type (Dtyp) then
4569             Sel := Name_uObject;
4570          else
4571             Sel := Name_uTask_Id;
4572          end if;
4573
4574          return
4575            Make_Selected_Component (Loc,
4576              Prefix =>
4577                Unchecked_Convert_To (Corresponding_Record_Type (Dtyp),
4578                  Make_Explicit_Dereference (Loc, N)),
4579              Selector_Name => Make_Identifier (Loc, Sel));
4580
4581       elsif Is_Entity_Name (N)
4582         and then Is_Concurrent_Type (Entity (N))
4583       then
4584          if Is_Task_Type (Entity (N)) then
4585
4586             if Is_Current_Task (Entity (N)) then
4587                return
4588                  Make_Function_Call (Loc,
4589                    Name => New_Reference_To (RTE (RE_Self), Loc));
4590
4591             else
4592                declare
4593                   Decl   : Node_Id;
4594                   T_Self : constant Entity_Id := Make_Temporary (Loc, 'T');
4595                   T_Body : constant Node_Id :=
4596                              Parent (Corresponding_Body (Parent (Entity (N))));
4597
4598                begin
4599                   Decl :=
4600                     Make_Object_Declaration (Loc,
4601                       Defining_Identifier => T_Self,
4602                       Object_Definition   =>
4603                         New_Occurrence_Of (RTE (RO_ST_Task_Id), Loc),
4604                       Expression          =>
4605                         Make_Function_Call (Loc,
4606                           Name => New_Reference_To (RTE (RE_Self), Loc)));
4607                   Prepend (Decl, Declarations (T_Body));
4608                   Analyze (Decl);
4609                   Set_Scope (T_Self, Entity (N));
4610                   return New_Occurrence_Of (T_Self,  Loc);
4611                end;
4612             end if;
4613
4614          else
4615             pragma Assert (Is_Protected_Type (Entity (N)));
4616
4617             return
4618               New_Reference_To (Find_Protection_Object (Current_Scope), Loc);
4619          end if;
4620
4621       else
4622          if Is_Protected_Type (Ntyp) then
4623             Sel := Name_uObject;
4624
4625          elsif Is_Task_Type (Ntyp) then
4626             Sel := Name_uTask_Id;
4627
4628          else
4629             raise Program_Error;
4630          end if;
4631
4632          return
4633            Make_Selected_Component (Loc,
4634              Prefix        =>
4635                Unchecked_Convert_To (Corresponding_Record_Type (Ntyp),
4636                  New_Copy_Tree (N)),
4637              Selector_Name => Make_Identifier (Loc, Sel));
4638       end if;
4639    end Concurrent_Ref;
4640
4641    ------------------------
4642    -- Convert_Concurrent --
4643    ------------------------
4644
4645    function Convert_Concurrent
4646      (N   : Node_Id;
4647       Typ : Entity_Id) return Node_Id
4648    is
4649    begin
4650       if not Is_Concurrent_Type (Typ) then
4651          return N;
4652       else
4653          return
4654            Unchecked_Convert_To
4655              (Corresponding_Record_Type (Typ), New_Copy_Tree (N));
4656       end if;
4657    end Convert_Concurrent;
4658
4659    -------------------------------------
4660    -- Debug_Private_Data_Declarations --
4661    -------------------------------------
4662
4663    procedure Debug_Private_Data_Declarations (Decls : List_Id) is
4664       Debug_Nod : Node_Id;
4665       Decl      : Node_Id;
4666
4667    begin
4668       Decl := First (Decls);
4669       while Present (Decl)
4670         and then not Comes_From_Source (Decl)
4671       loop
4672          --  Declaration for concurrent entity _object and its access type,
4673          --  along with the entry index subtype:
4674          --    type prot_typVP is access prot_typV;
4675          --    _object : prot_typVP := prot_typV (_O);
4676          --    subtype Jnn is <Type of Index> range Low .. High;
4677
4678          if Nkind_In (Decl, N_Full_Type_Declaration, N_Object_Declaration) then
4679             Set_Debug_Info_Needed (Defining_Identifier (Decl));
4680
4681          --  Declaration for the Protection object, discriminals, privals and
4682          --  entry index constant:
4683          --    conc_typR   : protection_typ renames _object._object;
4684          --    discr_nameD : discr_typ renames _object.discr_name;
4685          --    discr_nameD : discr_typ renames _task.discr_name;
4686          --    prival_name : comp_typ  renames _object.comp_name;
4687          --    J : constant Jnn :=
4688          --          Jnn'Val (_E - <Index expression> + Jnn'Pos (Jnn'First));
4689
4690          elsif Nkind (Decl) = N_Object_Renaming_Declaration then
4691             Set_Debug_Info_Needed (Defining_Identifier (Decl));
4692             Debug_Nod := Debug_Renaming_Declaration (Decl);
4693
4694             if Present (Debug_Nod) then
4695                Insert_After (Decl, Debug_Nod);
4696             end if;
4697          end if;
4698
4699          Next (Decl);
4700       end loop;
4701    end Debug_Private_Data_Declarations;
4702
4703    ----------------------------
4704    -- Entry_Index_Expression --
4705    ----------------------------
4706
4707    function Entry_Index_Expression
4708      (Sloc  : Source_Ptr;
4709       Ent   : Entity_Id;
4710       Index : Node_Id;
4711       Ttyp  : Entity_Id) return Node_Id
4712    is
4713       Expr : Node_Id;
4714       Num  : Node_Id;
4715       Lo   : Node_Id;
4716       Hi   : Node_Id;
4717       Prev : Entity_Id;
4718       S    : Node_Id;
4719
4720    begin
4721       --  The queues of entries and entry families appear in textual order in
4722       --  the associated record. The entry index is computed as the sum of the
4723       --  number of queues for all entries that precede the designated one, to
4724       --  which is added the index expression, if this expression denotes a
4725       --  member of a family.
4726
4727       --  The following is a place holder for the count of simple entries
4728
4729       Num := Make_Integer_Literal (Sloc, 1);
4730
4731       --  We construct an expression which is a series of addition operations.
4732       --  The first operand is the number of single entries that precede this
4733       --  one, the second operand is the index value relative to the start of
4734       --  the referenced family, and the remaining operands are the lengths of
4735       --  the entry families that precede this entry, i.e. the constructed
4736       --  expression is:
4737
4738       --    number_simple_entries +
4739       --      (s'pos (index-value) - s'pos (family'first)) + 1 +
4740       --      family'length + ...
4741
4742       --  where index-value is the given index value, and s is the index
4743       --  subtype (we have to use pos because the subtype might be an
4744       --  enumeration type preventing direct subtraction). Note that the task
4745       --  entry array is one-indexed.
4746
4747       --  The upper bound of the entry family may be a discriminant, so we
4748       --  retrieve the lower bound explicitly to compute offset, rather than
4749       --  using the index subtype which may mention a discriminant.
4750
4751       if Present (Index) then
4752          S := Etype (Discrete_Subtype_Definition (Declaration_Node (Ent)));
4753
4754          Expr :=
4755            Make_Op_Add (Sloc,
4756              Left_Opnd  => Num,
4757
4758              Right_Opnd =>
4759                Family_Offset (
4760                  Sloc,
4761                  Make_Attribute_Reference (Sloc,
4762                    Attribute_Name => Name_Pos,
4763                    Prefix => New_Reference_To (Base_Type (S), Sloc),
4764                    Expressions => New_List (Relocate_Node (Index))),
4765                  Type_Low_Bound (S),
4766                  Ttyp,
4767                  False));
4768       else
4769          Expr := Num;
4770       end if;
4771
4772       --  Now add lengths of preceding entries and entry families
4773
4774       Prev := First_Entity (Ttyp);
4775
4776       while Chars (Prev) /= Chars (Ent)
4777         or else (Ekind (Prev) /= Ekind (Ent))
4778         or else not Sem_Ch6.Type_Conformant (Ent, Prev)
4779       loop
4780          if Ekind (Prev) = E_Entry then
4781             Set_Intval (Num, Intval (Num) + 1);
4782
4783          elsif Ekind (Prev) = E_Entry_Family then
4784             S :=
4785               Etype (Discrete_Subtype_Definition (Declaration_Node (Prev)));
4786             Lo := Type_Low_Bound  (S);
4787             Hi := Type_High_Bound (S);
4788
4789             Expr :=
4790               Make_Op_Add (Sloc,
4791               Left_Opnd  => Expr,
4792               Right_Opnd => Family_Size (Sloc, Hi, Lo, Ttyp, False));
4793
4794          --  Other components are anonymous types to be ignored
4795
4796          else
4797             null;
4798          end if;
4799
4800          Next_Entity (Prev);
4801       end loop;
4802
4803       return Expr;
4804    end Entry_Index_Expression;
4805
4806    ---------------------------
4807    -- Establish_Task_Master --
4808    ---------------------------
4809
4810    procedure Establish_Task_Master (N : Node_Id) is
4811       Call : Node_Id;
4812    begin
4813       if Restriction_Active (No_Task_Hierarchy) = False then
4814          Call := Build_Runtime_Call (Sloc (N), RE_Enter_Master);
4815          Prepend_To (Declarations (N), Call);
4816          Analyze (Call);
4817       end if;
4818    end Establish_Task_Master;
4819
4820    --------------------------------
4821    -- Expand_Accept_Declarations --
4822    --------------------------------
4823
4824    --  Part of the expansion of an accept statement involves the creation of
4825    --  a declaration that can be referenced from the statement sequence of
4826    --  the accept:
4827
4828    --    Ann : Address;
4829
4830    --  This declaration is inserted immediately before the accept statement
4831    --  and it is important that it be inserted before the statements of the
4832    --  statement sequence are analyzed. Thus it would be too late to create
4833    --  this declaration in the Expand_N_Accept_Statement routine, which is
4834    --  why there is a separate procedure to be called directly from Sem_Ch9.
4835
4836    --  Ann is used to hold the address of the record containing the parameters
4837    --  (see Expand_N_Entry_Call for more details on how this record is built).
4838    --  References to the parameters do an unchecked conversion of this address
4839    --  to a pointer to the required record type, and then access the field that
4840    --  holds the value of the required parameter. The entity for the address
4841    --  variable is held as the top stack element (i.e. the last element) of the
4842    --  Accept_Address stack in the corresponding entry entity, and this element
4843    --  must be set in place  before the statements are processed.
4844
4845    --  The above description applies to the case of a stand alone accept
4846    --  statement, i.e. one not appearing as part of a select alternative.
4847
4848    --  For the case of an accept that appears as part of a select alternative
4849    --  of a selective accept, we must still create the declaration right away,
4850    --  since Ann is needed immediately, but there is an important difference:
4851
4852    --    The declaration is inserted before the selective accept, not before
4853    --    the accept statement (which is not part of a list anyway, and so would
4854    --    not accommodate inserted declarations)
4855
4856    --    We only need one address variable for the entire selective accept. So
4857    --    the Ann declaration is created only for the first accept alternative,
4858    --    and subsequent accept alternatives reference the same Ann variable.
4859
4860    --  We can distinguish the two cases by seeing whether the accept statement
4861    --  is part of a list. If not, then it must be in an accept alternative.
4862
4863    --  To expand the requeue statement, a label is provided at the end of the
4864    --  accept statement or alternative of which it is a part, so that the
4865    --  statement can be skipped after the requeue is complete. This label is
4866    --  created here rather than during the expansion of the accept statement,
4867    --  because it will be needed by any requeue statements within the accept,
4868    --  which are expanded before the accept.
4869
4870    procedure Expand_Accept_Declarations (N : Node_Id; Ent : Entity_Id) is
4871       Loc    : constant Source_Ptr := Sloc (N);
4872       Stats  : constant Node_Id    := Handled_Statement_Sequence (N);
4873       Ann    : Entity_Id           := Empty;
4874       Adecl  : Node_Id;
4875       Lab_Id : Node_Id;
4876       Lab    : Node_Id;
4877       Ldecl  : Node_Id;
4878       Ldecl2 : Node_Id;
4879
4880    begin
4881       if Expander_Active then
4882
4883          --  If we have no handled statement sequence, we may need to build
4884          --  a dummy sequence consisting of a null statement. This can be
4885          --  skipped if the trivial accept optimization is permitted.
4886
4887          if not Trivial_Accept_OK
4888            and then
4889              (No (Stats) or else Null_Statements (Statements (Stats)))
4890          then
4891             Set_Handled_Statement_Sequence (N,
4892               Make_Handled_Sequence_Of_Statements (Loc,
4893                 New_List (Make_Null_Statement (Loc))));
4894          end if;
4895
4896          --  Create and declare two labels to be placed at the end of the
4897          --  accept statement. The first label is used to allow requeues to
4898          --  skip the remainder of entry processing. The second label is used
4899          --  to skip the remainder of entry processing if the rendezvous
4900          --  completes in the middle of the accept body.
4901
4902          if Present (Handled_Statement_Sequence (N)) then
4903             declare
4904                Ent : Entity_Id;
4905
4906             begin
4907                Ent := Make_Temporary (Loc, 'L');
4908                Lab_Id := New_Reference_To (Ent, Loc);
4909                Lab := Make_Label (Loc, Lab_Id);
4910                Ldecl :=
4911                  Make_Implicit_Label_Declaration (Loc,
4912                    Defining_Identifier  => Ent,
4913                    Label_Construct      => Lab);
4914                Append (Lab, Statements (Handled_Statement_Sequence (N)));
4915
4916                Ent := Make_Temporary (Loc, 'L');
4917                Lab_Id := New_Reference_To (Ent, Loc);
4918                Lab := Make_Label (Loc, Lab_Id);
4919                Ldecl2 :=
4920                  Make_Implicit_Label_Declaration (Loc,
4921                    Defining_Identifier  => Ent,
4922                    Label_Construct      => Lab);
4923                Append (Lab, Statements (Handled_Statement_Sequence (N)));
4924             end;
4925
4926          else
4927             Ldecl := Empty;
4928             Ldecl2 := Empty;
4929          end if;
4930
4931          --  Case of stand alone accept statement
4932
4933          if Is_List_Member (N) then
4934
4935             if Present (Handled_Statement_Sequence (N)) then
4936                Ann := Make_Temporary (Loc, 'A');
4937
4938                Adecl :=
4939                  Make_Object_Declaration (Loc,
4940                    Defining_Identifier => Ann,
4941                    Object_Definition =>
4942                      New_Reference_To (RTE (RE_Address), Loc));
4943
4944                Insert_Before (N, Adecl);
4945                Analyze (Adecl);
4946
4947                Insert_Before (N, Ldecl);
4948                Analyze (Ldecl);
4949
4950                Insert_Before (N, Ldecl2);
4951                Analyze (Ldecl2);
4952             end if;
4953
4954          --  Case of accept statement which is in an accept alternative
4955
4956          else
4957             declare
4958                Acc_Alt : constant Node_Id := Parent (N);
4959                Sel_Acc : constant Node_Id := Parent (Acc_Alt);
4960                Alt     : Node_Id;
4961
4962             begin
4963                pragma Assert (Nkind (Acc_Alt) = N_Accept_Alternative);
4964                pragma Assert (Nkind (Sel_Acc) = N_Selective_Accept);
4965
4966                --  ??? Consider a single label for select statements
4967
4968                if Present (Handled_Statement_Sequence (N)) then
4969                   Prepend (Ldecl2,
4970                      Statements (Handled_Statement_Sequence (N)));
4971                   Analyze (Ldecl2);
4972
4973                   Prepend (Ldecl,
4974                      Statements (Handled_Statement_Sequence (N)));
4975                   Analyze (Ldecl);
4976                end if;
4977
4978                --  Find first accept alternative of the selective accept. A
4979                --  valid selective accept must have at least one accept in it.
4980
4981                Alt := First (Select_Alternatives (Sel_Acc));
4982
4983                while Nkind (Alt) /= N_Accept_Alternative loop
4984                   Next (Alt);
4985                end loop;
4986
4987                --  If we are the first accept statement, then we have to create
4988                --  the Ann variable, as for the stand alone case, except that
4989                --  it is inserted before the selective accept. Similarly, a
4990                --  label for requeue expansion must be declared.
4991
4992                if N = Accept_Statement (Alt) then
4993                   Ann := Make_Temporary (Loc, 'A');
4994                   Adecl :=
4995                     Make_Object_Declaration (Loc,
4996                       Defining_Identifier => Ann,
4997                       Object_Definition =>
4998                         New_Reference_To (RTE (RE_Address), Loc));
4999
5000                   Insert_Before (Sel_Acc, Adecl);
5001                   Analyze (Adecl);
5002
5003                --  If we are not the first accept statement, then find the Ann
5004                --  variable allocated by the first accept and use it.
5005
5006                else
5007                   Ann :=
5008                     Node (Last_Elmt (Accept_Address
5009                       (Entity (Entry_Direct_Name (Accept_Statement (Alt))))));
5010                end if;
5011             end;
5012          end if;
5013
5014          --  Merge here with Ann either created or referenced, and Adecl
5015          --  pointing to the corresponding declaration. Remaining processing
5016          --  is the same for the two cases.
5017
5018          if Present (Ann) then
5019             Append_Elmt (Ann, Accept_Address (Ent));
5020             Set_Debug_Info_Needed (Ann);
5021          end if;
5022
5023          --  Create renaming declarations for the entry formals. Each reference
5024          --  to a formal becomes a dereference of a component of the parameter
5025          --  block, whose address is held in Ann. These declarations are
5026          --  eventually inserted into the accept block, and analyzed there so
5027          --  that they have the proper scope for gdb and do not conflict with
5028          --  other declarations.
5029
5030          if Present (Parameter_Specifications (N))
5031            and then Present (Handled_Statement_Sequence (N))
5032          then
5033             declare
5034                Comp           : Entity_Id;
5035                Decl           : Node_Id;
5036                Formal         : Entity_Id;
5037                New_F          : Entity_Id;
5038                Renamed_Formal : Node_Id;
5039
5040             begin
5041                Push_Scope (Ent);
5042                Formal := First_Formal (Ent);
5043
5044                while Present (Formal) loop
5045                   Comp  := Entry_Component (Formal);
5046                   New_F :=
5047                     Make_Defining_Identifier (Loc, Chars (Formal));
5048
5049                   Set_Etype (New_F, Etype (Formal));
5050                   Set_Scope (New_F, Ent);
5051
5052                   --  Now we set debug info needed on New_F even though it does
5053                   --  not come from source, so that the debugger will get the
5054                   --  right information for these generated names.
5055
5056                   Set_Debug_Info_Needed (New_F);
5057
5058                   if Ekind (Formal) = E_In_Parameter then
5059                      Set_Ekind (New_F, E_Constant);
5060                   else
5061                      Set_Ekind (New_F, E_Variable);
5062                      Set_Extra_Constrained (New_F, Extra_Constrained (Formal));
5063                   end if;
5064
5065                   Set_Actual_Subtype (New_F, Actual_Subtype (Formal));
5066
5067                   Renamed_Formal :=
5068                      Make_Selected_Component (Loc,
5069                        Prefix        =>
5070                          Unchecked_Convert_To (
5071                            Entry_Parameters_Type (Ent),
5072                            New_Reference_To (Ann, Loc)),
5073                        Selector_Name =>
5074                          New_Reference_To (Comp, Loc));
5075
5076                   Decl :=
5077                     Build_Renamed_Formal_Declaration
5078                       (New_F, Formal, Comp, Renamed_Formal);
5079
5080                   if No (Declarations (N)) then
5081                      Set_Declarations (N, New_List);
5082                   end if;
5083
5084                   Append (Decl, Declarations (N));
5085                   Set_Renamed_Object (Formal, New_F);
5086                   Next_Formal (Formal);
5087                end loop;
5088
5089                End_Scope;
5090             end;
5091          end if;
5092       end if;
5093    end Expand_Accept_Declarations;
5094
5095    ---------------------------------------------
5096    -- Expand_Access_Protected_Subprogram_Type --
5097    ---------------------------------------------
5098
5099    procedure Expand_Access_Protected_Subprogram_Type (N : Node_Id) is
5100       Loc    : constant Source_Ptr := Sloc (N);
5101       Comps  : List_Id;
5102       T      : constant Entity_Id  := Defining_Identifier (N);
5103       D_T    : constant Entity_Id  := Designated_Type (T);
5104       D_T2   : constant Entity_Id  := Make_Temporary (Loc, 'D');
5105       E_T    : constant Entity_Id  := Make_Temporary (Loc, 'E');
5106       P_List : constant List_Id    := Build_Protected_Spec
5107                                         (N, RTE (RE_Address), D_T, False);
5108       Decl1  : Node_Id;
5109       Decl2  : Node_Id;
5110       Def1   : Node_Id;
5111
5112    begin
5113       --  Create access to subprogram with full signature
5114
5115       if Etype (D_T) /= Standard_Void_Type then
5116          Def1 :=
5117            Make_Access_Function_Definition (Loc,
5118              Parameter_Specifications => P_List,
5119              Result_Definition =>
5120                Copy_Result_Type (Result_Definition (Type_Definition (N))));
5121
5122       else
5123          Def1 :=
5124            Make_Access_Procedure_Definition (Loc,
5125              Parameter_Specifications => P_List);
5126       end if;
5127
5128       Decl1 :=
5129         Make_Full_Type_Declaration (Loc,
5130           Defining_Identifier => D_T2,
5131           Type_Definition => Def1);
5132
5133       Insert_After (N, Decl1);
5134       Analyze (Decl1);
5135
5136       --  Associate the access to subprogram with its original access to
5137       --  protected subprogram type. Needed by the backend to know that this
5138       --  type corresponds with an access to protected subprogram type.
5139
5140       Set_Original_Access_Type (D_T2, T);
5141
5142       --  Create Equivalent_Type, a record with two components for an access to
5143       --  object and an access to subprogram.
5144
5145       Comps := New_List (
5146         Make_Component_Declaration (Loc,
5147           Defining_Identifier => Make_Temporary (Loc, 'P'),
5148           Component_Definition =>
5149             Make_Component_Definition (Loc,
5150               Aliased_Present => False,
5151               Subtype_Indication =>
5152                 New_Occurrence_Of (RTE (RE_Address), Loc))),
5153
5154         Make_Component_Declaration (Loc,
5155           Defining_Identifier  => Make_Temporary (Loc, 'S'),
5156           Component_Definition =>
5157             Make_Component_Definition (Loc,
5158               Aliased_Present    => False,
5159               Subtype_Indication => New_Occurrence_Of (D_T2, Loc))));
5160
5161       Decl2 :=
5162         Make_Full_Type_Declaration (Loc,
5163           Defining_Identifier => E_T,
5164           Type_Definition =>
5165             Make_Record_Definition (Loc,
5166               Component_List =>
5167                 Make_Component_List (Loc,
5168                   Component_Items => Comps)));
5169
5170       Insert_After (Decl1, Decl2);
5171       Analyze (Decl2);
5172       Set_Equivalent_Type (T, E_T);
5173    end Expand_Access_Protected_Subprogram_Type;
5174
5175    --------------------------
5176    -- Expand_Entry_Barrier --
5177    --------------------------
5178
5179    procedure Expand_Entry_Barrier (N : Node_Id; Ent : Entity_Id) is
5180       Cond      : constant Node_Id   :=
5181                     Condition (Entry_Body_Formal_Part (N));
5182       Prot      : constant Entity_Id := Scope (Ent);
5183       Spec_Decl : constant Node_Id   := Parent (Prot);
5184       Func      : Node_Id;
5185       B_F       : Node_Id;
5186       Body_Decl : Node_Id;
5187
5188    begin
5189       if No_Run_Time_Mode then
5190          Error_Msg_CRT ("entry barrier", N);
5191          return;
5192       end if;
5193
5194       --  The body of the entry barrier must be analyzed in the context of the
5195       --  protected object, but its scope is external to it, just as any other
5196       --  unprotected version of a protected operation. The specification has
5197       --  been produced when the protected type declaration was elaborated. We
5198       --  build the body, insert it in the enclosing scope, but analyze it in
5199       --  the current context. A more uniform approach would be to treat the
5200       --  barrier just as a protected function, and discard the protected
5201       --  version of it because it is never called.
5202
5203       if Expander_Active then
5204          B_F := Build_Barrier_Function (N, Ent, Prot);
5205          Func := Barrier_Function (Ent);
5206          Set_Corresponding_Spec (B_F, Func);
5207
5208          Body_Decl := Parent (Corresponding_Body (Spec_Decl));
5209
5210          if Nkind (Parent (Body_Decl)) = N_Subunit then
5211             Body_Decl := Corresponding_Stub (Parent (Body_Decl));
5212          end if;
5213
5214          Insert_Before_And_Analyze (Body_Decl, B_F);
5215
5216          Set_Discriminals (Spec_Decl);
5217          Set_Scope (Func, Scope (Prot));
5218
5219       else
5220          Analyze_And_Resolve (Cond, Any_Boolean);
5221       end if;
5222
5223       --  The Ravenscar profile restricts barriers to simple variables declared
5224       --  within the protected object. We also allow Boolean constants, since
5225       --  these appear in several published examples and are also allowed by
5226       --  the Aonix compiler.
5227
5228       --  Note that after analysis variables in this context will be replaced
5229       --  by the corresponding prival, that is to say a renaming of a selected
5230       --  component of the form _Object.Var. If expansion is disabled, as
5231       --  within a generic, we check that the entity appears in the current
5232       --  scope.
5233
5234       if Is_Entity_Name (Cond) then
5235
5236          --  A small optimization of useless renamings. If the scope of the
5237          --  entity of the condition is not the barrier function, then the
5238          --  condition does not reference any of the generated renamings
5239          --  within the function.
5240
5241          if Expander_Active
5242            and then Scope (Entity (Cond)) /= Func
5243          then
5244             Set_Declarations (B_F, Empty_List);
5245          end if;
5246
5247          if Entity (Cond) = Standard_False
5248               or else
5249             Entity (Cond) = Standard_True
5250          then
5251             return;
5252
5253          elsif not Expander_Active
5254            and then Scope (Entity (Cond)) = Current_Scope
5255          then
5256             return;
5257
5258          --  Check for case of _object.all.field (note that the explicit
5259          --  dereference gets inserted by analyze/expand of _object.field)
5260
5261          elsif Present (Renamed_Object (Entity (Cond)))
5262            and then
5263              Nkind (Renamed_Object (Entity (Cond))) = N_Selected_Component
5264            and then
5265              Chars
5266                (Prefix
5267                  (Prefix (Renamed_Object (Entity (Cond))))) = Name_uObject
5268          then
5269             return;
5270          end if;
5271       end if;
5272
5273       --  It is not a boolean variable or literal, so check the restriction
5274
5275       Check_Restriction (Simple_Barriers, Cond);
5276    end Expand_Entry_Barrier;
5277
5278    ------------------------------
5279    -- Expand_N_Abort_Statement --
5280    ------------------------------
5281
5282    --  Expand abort T1, T2, .. Tn; into:
5283    --    Abort_Tasks (Task_List'(1 => T1.Task_Id, 2 => T2.Task_Id ...))
5284
5285    procedure Expand_N_Abort_Statement (N : Node_Id) is
5286       Loc    : constant Source_Ptr := Sloc (N);
5287       Tlist  : constant List_Id    := Names (N);
5288       Count  : Nat;
5289       Aggr   : Node_Id;
5290       Tasknm : Node_Id;
5291
5292    begin
5293       Aggr := Make_Aggregate (Loc, Component_Associations => New_List);
5294       Count := 0;
5295
5296       Tasknm := First (Tlist);
5297
5298       while Present (Tasknm) loop
5299          Count := Count + 1;
5300
5301          --  A task interface class-wide type object is being aborted.
5302          --  Retrieve its _task_id by calling a dispatching routine.
5303
5304          if Ada_Version >= Ada_2005
5305            and then Ekind (Etype (Tasknm)) = E_Class_Wide_Type
5306            and then Is_Interface (Etype (Tasknm))
5307            and then Is_Task_Interface (Etype (Tasknm))
5308          then
5309             Append_To (Component_Associations (Aggr),
5310               Make_Component_Association (Loc,
5311                 Choices => New_List (
5312                   Make_Integer_Literal (Loc, Count)),
5313                 Expression =>
5314
5315                   --  Task_Id (Tasknm._disp_get_task_id)
5316
5317                   Make_Unchecked_Type_Conversion (Loc,
5318                     Subtype_Mark =>
5319                       New_Reference_To (RTE (RO_ST_Task_Id), Loc),
5320                     Expression =>
5321                       Make_Selected_Component (Loc,
5322                         Prefix        => New_Copy_Tree (Tasknm),
5323                         Selector_Name =>
5324                           Make_Identifier (Loc, Name_uDisp_Get_Task_Id)))));
5325
5326          else
5327             Append_To (Component_Associations (Aggr),
5328               Make_Component_Association (Loc,
5329                 Choices => New_List (
5330                   Make_Integer_Literal (Loc, Count)),
5331                 Expression => Concurrent_Ref (Tasknm)));
5332          end if;
5333
5334          Next (Tasknm);
5335       end loop;
5336
5337       Rewrite (N,
5338         Make_Procedure_Call_Statement (Loc,
5339           Name => New_Reference_To (RTE (RE_Abort_Tasks), Loc),
5340           Parameter_Associations => New_List (
5341             Make_Qualified_Expression (Loc,
5342               Subtype_Mark => New_Reference_To (RTE (RE_Task_List), Loc),
5343               Expression => Aggr))));
5344
5345       Analyze (N);
5346    end Expand_N_Abort_Statement;
5347
5348    -------------------------------
5349    -- Expand_N_Accept_Statement --
5350    -------------------------------
5351
5352    --  This procedure handles expansion of accept statements that stand
5353    --  alone, i.e. they are not part of an accept alternative. The expansion
5354    --  of accept statement in accept alternatives is handled by the routines
5355    --  Expand_N_Accept_Alternative and Expand_N_Selective_Accept. The
5356    --  following description applies only to stand alone accept statements.
5357
5358    --  If there is no handled statement sequence, or only null statements,
5359    --  then this is called a trivial accept, and the expansion is:
5360
5361    --    Accept_Trivial (entry-index)
5362
5363    --  If there is a handled statement sequence, then the expansion is:
5364
5365    --    Ann : Address;
5366    --    {Lnn : Label}
5367
5368    --    begin
5369    --       begin
5370    --          Accept_Call (entry-index, Ann);
5371    --          Renaming_Declarations for formals
5372    --          <statement sequence from N_Accept_Statement node>
5373    --          Complete_Rendezvous;
5374    --          <<Lnn>>
5375    --
5376    --       exception
5377    --          when ... =>
5378    --             <exception handler from N_Accept_Statement node>
5379    --             Complete_Rendezvous;
5380    --          when ... =>
5381    --             <exception handler from N_Accept_Statement node>
5382    --             Complete_Rendezvous;
5383    --          ...
5384    --       end;
5385
5386    --    exception
5387    --       when all others =>
5388    --          Exceptional_Complete_Rendezvous (Get_GNAT_Exception);
5389    --    end;
5390
5391    --  The first three declarations were already inserted ahead of the accept
5392    --  statement by the Expand_Accept_Declarations procedure, which was called
5393    --  directly from the semantics during analysis of the accept statement,
5394    --  before analyzing its contained statements.
5395
5396    --  The declarations from the N_Accept_Statement, as noted in Sinfo, come
5397    --  from possible expansion activity (the original source of course does
5398    --  not have any declarations associated with the accept statement, since
5399    --  an accept statement has no declarative part). In particular, if the
5400    --  expander is active, the first such declaration is the declaration of
5401    --  the Accept_Params_Ptr entity (see Sem_Ch9.Analyze_Accept_Statement).
5402    --
5403    --  The two blocks are merged into a single block if the inner block has
5404    --  no exception handlers, but otherwise two blocks are required, since
5405    --  exceptions might be raised in the exception handlers of the inner
5406    --  block, and Exceptional_Complete_Rendezvous must be called.
5407
5408    procedure Expand_N_Accept_Statement (N : Node_Id) is
5409       Loc     : constant Source_Ptr := Sloc (N);
5410       Stats   : constant Node_Id    := Handled_Statement_Sequence (N);
5411       Ename   : constant Node_Id    := Entry_Direct_Name (N);
5412       Eindx   : constant Node_Id    := Entry_Index (N);
5413       Eent    : constant Entity_Id  := Entity (Ename);
5414       Acstack : constant Elist_Id   := Accept_Address (Eent);
5415       Ann     : constant Entity_Id  := Node (Last_Elmt (Acstack));
5416       Ttyp    : constant Entity_Id  := Etype (Scope (Eent));
5417       Blkent  : Entity_Id;
5418       Call    : Node_Id;
5419       Block   : Node_Id;
5420
5421    --  Start of processing for Expand_N_Accept_Statement
5422
5423    begin
5424       --  If accept statement is not part of a list, then its parent must be
5425       --  an accept alternative, and, as described above, we do not do any
5426       --  expansion for such accept statements at this level.
5427
5428       if not Is_List_Member (N) then
5429          pragma Assert (Nkind (Parent (N)) = N_Accept_Alternative);
5430          return;
5431
5432       --  Trivial accept case (no statement sequence, or null statements).
5433       --  If the accept statement has declarations, then just insert them
5434       --  before the procedure call.
5435
5436       elsif Trivial_Accept_OK
5437         and then (No (Stats) or else Null_Statements (Statements (Stats)))
5438       then
5439          --  Remove declarations for renamings, because the parameter block
5440          --  will not be assigned.
5441
5442          declare
5443             D      : Node_Id;
5444             Next_D : Node_Id;
5445
5446          begin
5447             D := First (Declarations (N));
5448
5449             while Present (D) loop
5450                Next_D := Next (D);
5451                if Nkind (D) = N_Object_Renaming_Declaration then
5452                   Remove (D);
5453                end if;
5454
5455                D := Next_D;
5456             end loop;
5457          end;
5458
5459          if Present (Declarations (N)) then
5460             Insert_Actions (N, Declarations (N));
5461          end if;
5462
5463          Rewrite (N,
5464            Make_Procedure_Call_Statement (Loc,
5465              Name => New_Reference_To (RTE (RE_Accept_Trivial), Loc),
5466              Parameter_Associations => New_List (
5467                Entry_Index_Expression (Loc, Entity (Ename), Eindx, Ttyp))));
5468
5469          Analyze (N);
5470
5471          --  Discard Entry_Address that was created for it, so it will not be
5472          --  emitted if this accept statement is in the statement part of a
5473          --  delay alternative.
5474
5475          if Present (Stats) then
5476             Remove_Last_Elmt (Acstack);
5477          end if;
5478
5479       --  Case of statement sequence present
5480
5481       else
5482          --  Construct the block, using the declarations from the accept
5483          --  statement if any to initialize the declarations of the block.
5484
5485          Blkent := Make_Temporary (Loc, 'A');
5486          Set_Ekind (Blkent, E_Block);
5487          Set_Etype (Blkent, Standard_Void_Type);
5488          Set_Scope (Blkent, Current_Scope);
5489
5490          Block :=
5491            Make_Block_Statement (Loc,
5492              Identifier                 => New_Reference_To (Blkent, Loc),
5493              Declarations               => Declarations (N),
5494              Handled_Statement_Sequence => Build_Accept_Body (N));
5495
5496          --  For the analysis of the generated declarations, the parent node
5497          --  must be properly set.
5498
5499          Set_Parent (Block, Parent (N));
5500
5501          --  Prepend call to Accept_Call to main statement sequence If the
5502          --  accept has exception handlers, the statement sequence is wrapped
5503          --  in a block. Insert call and renaming declarations in the
5504          --  declarations of the block, so they are elaborated before the
5505          --  handlers.
5506
5507          Call :=
5508            Make_Procedure_Call_Statement (Loc,
5509              Name => New_Reference_To (RTE (RE_Accept_Call), Loc),
5510              Parameter_Associations => New_List (
5511                Entry_Index_Expression (Loc, Entity (Ename), Eindx, Ttyp),
5512                New_Reference_To (Ann, Loc)));
5513
5514          if Parent (Stats) = N then
5515             Prepend (Call, Statements (Stats));
5516          else
5517             Set_Declarations
5518               (Parent (Stats),
5519                 New_List (Call));
5520          end if;
5521
5522          Analyze (Call);
5523
5524          Push_Scope (Blkent);
5525
5526          declare
5527             D      : Node_Id;
5528             Next_D : Node_Id;
5529             Typ    : Entity_Id;
5530
5531          begin
5532             D := First (Declarations (N));
5533             while Present (D) loop
5534                Next_D := Next (D);
5535
5536                if Nkind (D) = N_Object_Renaming_Declaration then
5537
5538                   --  The renaming declarations for the formals were created
5539                   --  during analysis of the accept statement, and attached to
5540                   --  the list of declarations. Place them now in the context
5541                   --  of the accept block or subprogram.
5542
5543                   Remove (D);
5544                   Typ := Entity (Subtype_Mark (D));
5545                   Insert_After (Call, D);
5546                   Analyze (D);
5547
5548                   --  If the formal is class_wide, it does not have an actual
5549                   --  subtype. The analysis of the renaming declaration creates
5550                   --  one, but we need to retain the class-wide nature of the
5551                   --  entity.
5552
5553                   if Is_Class_Wide_Type (Typ) then
5554                      Set_Etype (Defining_Identifier (D), Typ);
5555                   end if;
5556
5557                end if;
5558
5559                D := Next_D;
5560             end loop;
5561          end;
5562
5563          End_Scope;
5564
5565          --  Replace the accept statement by the new block
5566
5567          Rewrite (N, Block);
5568          Analyze (N);
5569
5570          --  Last step is to unstack the Accept_Address value
5571
5572          Remove_Last_Elmt (Acstack);
5573       end if;
5574    end Expand_N_Accept_Statement;
5575
5576    ----------------------------------
5577    -- Expand_N_Asynchronous_Select --
5578    ----------------------------------
5579
5580    --  This procedure assumes that the trigger statement is an entry call or
5581    --  a dispatching procedure call. A delay alternative should already have
5582    --  been expanded into an entry call to the appropriate delay object Wait
5583    --  entry.
5584
5585    --  If the trigger is a task entry call, the select is implemented with
5586    --  a Task_Entry_Call:
5587
5588    --    declare
5589    --       B : Boolean;
5590    --       C : Boolean;
5591    --       P : parms := (parm, parm, parm);
5592
5593    --        --  Clean is added by Exp_Ch7.Expand_Cleanup_Actions
5594
5595    --       procedure _clean is
5596    --       begin
5597    --          ...
5598    --          Cancel_Task_Entry_Call (C);
5599    --          ...
5600    --       end _clean;
5601
5602    --    begin
5603    --       Abort_Defer;
5604    --       Task_Entry_Call
5605    --         (<acceptor-task>,    --  Acceptor
5606    --          <entry-index>,      --  E
5607    --          P'Address,          --  Uninterpreted_Data
5608    --          Asynchronous_Call,  --  Mode
5609    --          B);                 --  Rendezvous_Successful
5610
5611    --       begin
5612    --          begin
5613    --             Abort_Undefer;
5614    --             <abortable-part>
5615    --          at end
5616    --             _clean;  --  Added by Exp_Ch7.Expand_Cleanup_Actions
5617    --          end;
5618    --       exception
5619    --          when Abort_Signal => Abort_Undefer;
5620    --       end;
5621
5622    --       parm := P.param;
5623    --       parm := P.param;
5624    --       ...
5625    --       if not C then
5626    --          <triggered-statements>
5627    --       end if;
5628    --    end;
5629
5630    --  Note that Build_Simple_Entry_Call is used to expand the entry of the
5631    --  asynchronous entry call (by Expand_N_Entry_Call_Statement procedure)
5632    --  as follows:
5633
5634    --    declare
5635    --       P : parms := (parm, parm, parm);
5636    --    begin
5637    --       Call_Simple (acceptor-task, entry-index, P'Address);
5638    --       parm := P.param;
5639    --       parm := P.param;
5640    --       ...
5641    --    end;
5642
5643    --  so the task at hand is to convert the latter expansion into the former
5644
5645    --  If the trigger is a protected entry call, the select is implemented
5646    --  with Protected_Entry_Call:
5647
5648    --  declare
5649    --     P   : E1_Params := (param, param, param);
5650    --     Bnn : Communications_Block;
5651
5652    --  begin
5653    --     declare
5654
5655    --        --  Clean is added by Exp_Ch7.Expand_Cleanup_Actions
5656
5657    --        procedure _clean is
5658    --        begin
5659    --           ...
5660    --           if Enqueued (Bnn) then
5661    --              Cancel_Protected_Entry_Call (Bnn);
5662    --           end if;
5663    --           ...
5664    --        end _clean;
5665
5666    --     begin
5667    --        begin
5668    --           Protected_Entry_Call
5669    --             (po._object'Access,  --  Object
5670    --              <entry index>,      --  E
5671    --              P'Address,          --  Uninterpreted_Data
5672    --              Asynchronous_Call,  --  Mode
5673    --              Bnn);               --  Block
5674
5675    --           if Enqueued (Bnn) then
5676    --              <abortable-part>
5677    --           end if;
5678    --        at end
5679    --           _clean;  --  Added by Exp_Ch7.Expand_Cleanup_Actions
5680    --        end;
5681    --     exception
5682    --        when Abort_Signal => Abort_Undefer;
5683    --     end;
5684
5685    --     if not Cancelled (Bnn) then
5686    --        <triggered-statements>
5687    --     end if;
5688    --  end;
5689
5690    --  Build_Simple_Entry_Call is used to expand the all to a simple protected
5691    --  entry call:
5692
5693    --  declare
5694    --     P   : E1_Params := (param, param, param);
5695    --     Bnn : Communications_Block;
5696
5697    --  begin
5698    --     Protected_Entry_Call
5699    --       (po._object'Access,  --  Object
5700    --        <entry index>,      --  E
5701    --        P'Address,          --  Uninterpreted_Data
5702    --        Simple_Call,        --  Mode
5703    --        Bnn);               --  Block
5704    --     parm := P.param;
5705    --     parm := P.param;
5706    --       ...
5707    --  end;
5708
5709    --  Ada 2005 (AI-345): If the trigger is a dispatching call, the select is
5710    --  expanded into:
5711
5712    --    declare
5713    --       B   : Boolean := False;
5714    --       Bnn : Communication_Block;
5715    --       C   : Ada.Tags.Prim_Op_Kind;
5716    --       D   : System.Storage_Elements.Dummy_Communication_Block;
5717    --       K   : Ada.Tags.Tagged_Kind :=
5718    --               Ada.Tags.Get_Tagged_Kind (Ada.Tags.Tag (<object>));
5719    --       P   : Parameters := (Param1 .. ParamN);
5720    --       S   : Integer;
5721    --       U   : Boolean;
5722
5723    --    begin
5724    --       if K = Ada.Tags.TK_Limited_Tagged then
5725    --          <dispatching-call>;
5726    --          <triggering-statements>;
5727
5728    --       else
5729    --          S :=
5730    --            Ada.Tags.Get_Offset_Index
5731    --              (Ada.Tags.Tag (<object>), DT_Position (<dispatching-call>));
5732
5733    --          _Disp_Get_Prim_Op_Kind (<object>, S, C);
5734
5735    --          if C = POK_Protected_Entry then
5736    --             declare
5737    --                procedure _clean is
5738    --                begin
5739    --                   if Enqueued (Bnn) then
5740    --                      Cancel_Protected_Entry_Call (Bnn);
5741    --                   end if;
5742    --                end _clean;
5743
5744    --             begin
5745    --                begin
5746    --                   _Disp_Asynchronous_Select
5747    --                     (<object>, S, P'Address, D, B);
5748    --                   Bnn := Communication_Block (D);
5749
5750    --                   Param1 := P.Param1;
5751    --                   ...
5752    --                   ParamN := P.ParamN;
5753
5754    --                   if Enqueued (Bnn) then
5755    --                      <abortable-statements>
5756    --                   end if;
5757    --                at end
5758    --                   _clean;  --  Added by Exp_Ch7.Expand_Cleanup_Actions
5759    --                end;
5760    --             exception
5761    --                when Abort_Signal => Abort_Undefer;
5762    --             end;
5763
5764    --             if not Cancelled (Bnn) then
5765    --                <triggering-statements>
5766    --             end if;
5767
5768    --          elsif C = POK_Task_Entry then
5769    --             declare
5770    --                procedure _clean is
5771    --                begin
5772    --                   Cancel_Task_Entry_Call (U);
5773    --                end _clean;
5774
5775    --             begin
5776    --                Abort_Defer;
5777
5778    --                _Disp_Asynchronous_Select
5779    --                  (<object>, S, P'Address, D, B);
5780    --                Bnn := Communication_Bloc (D);
5781
5782    --                Param1 := P.Param1;
5783    --                ...
5784    --                ParamN := P.ParamN;
5785
5786    --                begin
5787    --                   begin
5788    --                      Abort_Undefer;
5789    --                      <abortable-statements>
5790    --                   at end
5791    --                      _clean;  --  Added by Exp_Ch7.Expand_Cleanup_Actions
5792    --                   end;
5793    --                exception
5794    --                   when Abort_Signal => Abort_Undefer;
5795    --                end;
5796
5797    --                if not U then
5798    --                   <triggering-statements>
5799    --                end if;
5800    --             end;
5801
5802    --          else
5803    --             <dispatching-call>;
5804    --             <triggering-statements>
5805    --          end if;
5806    --       end if;
5807    --    end;
5808
5809    --  The job is to convert this to the asynchronous form
5810
5811    --  If the trigger is a delay statement, it will have been expanded into a
5812    --  call to one of the GNARL delay procedures. This routine will convert
5813    --  this into a protected entry call on a delay object and then continue
5814    --  processing as for a protected entry call trigger. This requires
5815    --  declaring a Delay_Block object and adding a pointer to this object to
5816    --  the parameter list of the delay procedure to form the parameter list of
5817    --  the entry call. This object is used by the runtime to queue the delay
5818    --  request.
5819
5820    --  For a description of the use of P and the assignments after the call,
5821    --  see Expand_N_Entry_Call_Statement.
5822
5823    procedure Expand_N_Asynchronous_Select (N : Node_Id) is
5824       Loc    : constant Source_Ptr := Sloc (N);
5825       Abrt   : constant Node_Id    := Abortable_Part (N);
5826       Astats : constant List_Id    := Statements (Abrt);
5827       Trig   : constant Node_Id    := Triggering_Alternative (N);
5828       Tstats : constant List_Id    := Statements (Trig);
5829
5830       Abort_Block_Ent   : Entity_Id;
5831       Abortable_Block   : Node_Id;
5832       Actuals           : List_Id;
5833       Blk_Ent           : Entity_Id;
5834       Blk_Typ           : Entity_Id;
5835       Call              : Node_Id;
5836       Call_Ent          : Entity_Id;
5837       Cancel_Param      : Entity_Id;
5838       Cleanup_Block     : Node_Id;
5839       Cleanup_Block_Ent : Entity_Id;
5840       Cleanup_Stmts     : List_Id;
5841       Conc_Typ_Stmts    : List_Id;
5842       Concval           : Node_Id;
5843       Dblock_Ent        : Entity_Id;
5844       Decl              : Node_Id;
5845       Decls             : List_Id;
5846       Ecall             : Node_Id;
5847       Ename             : Node_Id;
5848       Enqueue_Call      : Node_Id;
5849       Formals           : List_Id;
5850       Hdle              : List_Id;
5851       Handler_Stmt      : Node_Id;
5852       Index             : Node_Id;
5853       Lim_Typ_Stmts     : List_Id;
5854       N_Orig            : Node_Id;
5855       Obj               : Entity_Id;
5856       Param             : Node_Id;
5857       Params            : List_Id;
5858       Pdef              : Entity_Id;
5859       ProtE_Stmts       : List_Id;
5860       ProtP_Stmts       : List_Id;
5861       Stmt              : Node_Id;
5862       Stmts             : List_Id;
5863       TaskE_Stmts       : List_Id;
5864
5865       B   : Entity_Id;  --  Call status flag
5866       Bnn : Entity_Id;  --  Communication block
5867       C   : Entity_Id;  --  Call kind
5868       K   : Entity_Id;  --  Tagged kind
5869       P   : Entity_Id;  --  Parameter block
5870       S   : Entity_Id;  --  Primitive operation slot
5871       T   : Entity_Id;  --  Additional status flag
5872
5873    begin
5874       Process_Statements_For_Controlled_Objects (Trig);
5875       Process_Statements_For_Controlled_Objects (Abrt);
5876
5877       Blk_Ent := Make_Temporary (Loc, 'A');
5878       Ecall   := Triggering_Statement (Trig);
5879
5880       --  The arguments in the call may require dynamic allocation, and the
5881       --  call statement may have been transformed into a block. The block
5882       --  may contain additional declarations for internal entities, and the
5883       --  original call is found by sequential search.
5884
5885       if Nkind (Ecall) = N_Block_Statement then
5886          Ecall := First (Statements (Handled_Statement_Sequence (Ecall)));
5887          while not Nkind_In (Ecall, N_Procedure_Call_Statement,
5888                                     N_Entry_Call_Statement)
5889          loop
5890             Next (Ecall);
5891          end loop;
5892       end if;
5893
5894       --  This is either a dispatching call or a delay statement used as a
5895       --  trigger which was expanded into a procedure call.
5896
5897       if Nkind (Ecall) = N_Procedure_Call_Statement then
5898          if Ada_Version >= Ada_2005
5899            and then
5900              (No (Original_Node (Ecall))
5901                 or else not Nkind_In (Original_Node (Ecall),
5902                                         N_Delay_Relative_Statement,
5903                                         N_Delay_Until_Statement))
5904          then
5905             Extract_Dispatching_Call (Ecall, Call_Ent, Obj, Actuals, Formals);
5906
5907             Decls := New_List;
5908             Stmts := New_List;
5909
5910             --  Call status flag processing, generate:
5911             --    B : Boolean := False;
5912
5913             B := Build_B (Loc, Decls);
5914
5915             --  Communication block processing, generate:
5916             --    Bnn : Communication_Block;
5917
5918             Bnn := Make_Temporary (Loc, 'B');
5919             Append_To (Decls,
5920               Make_Object_Declaration (Loc,
5921                 Defining_Identifier => Bnn,
5922                 Object_Definition   =>
5923                   New_Reference_To (RTE (RE_Communication_Block), Loc)));
5924
5925             --  Call kind processing, generate:
5926             --    C : Ada.Tags.Prim_Op_Kind;
5927
5928             C := Build_C (Loc, Decls);
5929
5930             --  Tagged kind processing, generate:
5931             --    K : Ada.Tags.Tagged_Kind :=
5932             --          Ada.Tags.Get_Tagged_Kind (Ada.Tags.Tag (<object>));
5933
5934             --  Dummy communication block, generate:
5935             --    D : Dummy_Communication_Block;
5936
5937             Append_To (Decls,
5938               Make_Object_Declaration (Loc,
5939                 Defining_Identifier =>
5940                   Make_Defining_Identifier (Loc, Name_uD),
5941                 Object_Definition =>
5942                   New_Reference_To (
5943                     RTE (RE_Dummy_Communication_Block), Loc)));
5944
5945             K := Build_K (Loc, Decls, Obj);
5946
5947             --  Parameter block processing
5948
5949             Blk_Typ := Build_Parameter_Block
5950                          (Loc, Actuals, Formals, Decls);
5951             P       := Parameter_Block_Pack
5952                          (Loc, Blk_Typ, Actuals, Formals, Decls, Stmts);
5953
5954             --  Dispatch table slot processing, generate:
5955             --    S : Integer;
5956
5957             S := Build_S (Loc, Decls);
5958
5959             --  Additional status flag processing, generate:
5960             --    Tnn : Boolean;
5961
5962             T := Make_Temporary (Loc, 'T');
5963             Append_To (Decls,
5964               Make_Object_Declaration (Loc,
5965                 Defining_Identifier => T,
5966                 Object_Definition   =>
5967                   New_Reference_To (Standard_Boolean, Loc)));
5968
5969             ------------------------------
5970             -- Protected entry handling --
5971             ------------------------------
5972
5973             --  Generate:
5974             --    Param1 := P.Param1;
5975             --    ...
5976             --    ParamN := P.ParamN;
5977
5978             Cleanup_Stmts := Parameter_Block_Unpack (Loc, P, Actuals, Formals);
5979
5980             --  Generate:
5981             --    Bnn := Communication_Block (D);
5982
5983             Prepend_To (Cleanup_Stmts,
5984               Make_Assignment_Statement (Loc,
5985                 Name =>
5986                   New_Reference_To (Bnn, Loc),
5987                 Expression =>
5988                   Make_Unchecked_Type_Conversion (Loc,
5989                     Subtype_Mark =>
5990                       New_Reference_To (RTE (RE_Communication_Block), Loc),
5991                     Expression   => Make_Identifier (Loc, Name_uD))));
5992
5993             --  Generate:
5994             --    _Disp_Asynchronous_Select (<object>, S, P'Address, D, B);
5995
5996             Prepend_To (Cleanup_Stmts,
5997               Make_Procedure_Call_Statement (Loc,
5998                 Name =>
5999                   New_Reference_To (
6000                     Find_Prim_Op (Etype (Etype (Obj)),
6001                       Name_uDisp_Asynchronous_Select),
6002                     Loc),
6003                 Parameter_Associations =>
6004                   New_List (
6005                     New_Copy_Tree (Obj),             --  <object>
6006                     New_Reference_To (S, Loc),       --  S
6007                     Make_Attribute_Reference (Loc,   --  P'Address
6008                       Prefix =>
6009                         New_Reference_To (P, Loc),
6010                       Attribute_Name =>
6011                         Name_Address),
6012                     Make_Identifier (Loc, Name_uD),  --  D
6013                     New_Reference_To (B, Loc))));    --  B
6014
6015             --  Generate:
6016             --    if Enqueued (Bnn) then
6017             --       <abortable-statements>
6018             --    end if;
6019
6020             Append_To (Cleanup_Stmts,
6021               Make_If_Statement (Loc,
6022                 Condition =>
6023                   Make_Function_Call (Loc,
6024                     Name =>
6025                       New_Reference_To (RTE (RE_Enqueued), Loc),
6026                     Parameter_Associations =>
6027                       New_List (
6028                         New_Reference_To (Bnn, Loc))),
6029
6030                 Then_Statements =>
6031                   New_Copy_List_Tree (Astats)));
6032
6033             --  Wrap the statements in a block. Exp_Ch7.Expand_Cleanup_Actions
6034             --  will then generate a _clean for the communication block Bnn.
6035
6036             --  Generate:
6037             --    declare
6038             --       procedure _clean is
6039             --       begin
6040             --          if Enqueued (Bnn) then
6041             --             Cancel_Protected_Entry_Call (Bnn);
6042             --          end if;
6043             --       end _clean;
6044             --    begin
6045             --       Cleanup_Stmts
6046             --    at end
6047             --       _clean;
6048             --    end;
6049
6050             Cleanup_Block_Ent := Make_Temporary (Loc, 'C');
6051             Cleanup_Block :=
6052               Build_Cleanup_Block (Loc, Cleanup_Block_Ent, Cleanup_Stmts, Bnn);
6053
6054             --  Wrap the cleanup block in an exception handling block
6055
6056             --  Generate:
6057             --    begin
6058             --       Cleanup_Block
6059             --    exception
6060             --       when Abort_Signal => Abort_Undefer;
6061             --    end;
6062
6063             Abort_Block_Ent := Make_Temporary (Loc, 'A');
6064             ProtE_Stmts :=
6065               New_List (
6066                 Make_Implicit_Label_Declaration (Loc,
6067                   Defining_Identifier =>
6068                     Abort_Block_Ent),
6069
6070                 Build_Abort_Block
6071                   (Loc, Abort_Block_Ent, Cleanup_Block_Ent, Cleanup_Block));
6072
6073             --  Generate:
6074             --    if not Cancelled (Bnn) then
6075             --       <triggering-statements>
6076             --    end if;
6077
6078             Append_To (ProtE_Stmts,
6079               Make_If_Statement (Loc,
6080                 Condition =>
6081                   Make_Op_Not (Loc,
6082                     Right_Opnd =>
6083                       Make_Function_Call (Loc,
6084                         Name =>
6085                           New_Reference_To (RTE (RE_Cancelled), Loc),
6086                         Parameter_Associations =>
6087                           New_List (
6088                             New_Reference_To (Bnn, Loc)))),
6089
6090                 Then_Statements =>
6091                   New_Copy_List_Tree (Tstats)));
6092
6093             -------------------------
6094             -- Task entry handling --
6095             -------------------------
6096
6097             --  Generate:
6098             --    Param1 := P.Param1;
6099             --    ...
6100             --    ParamN := P.ParamN;
6101
6102             TaskE_Stmts := Parameter_Block_Unpack (Loc, P, Actuals, Formals);
6103
6104             --  Generate:
6105             --    Bnn := Communication_Block (D);
6106
6107             Append_To (TaskE_Stmts,
6108               Make_Assignment_Statement (Loc,
6109                 Name =>
6110                   New_Reference_To (Bnn, Loc),
6111                 Expression =>
6112                   Make_Unchecked_Type_Conversion (Loc,
6113                     Subtype_Mark =>
6114                       New_Reference_To (RTE (RE_Communication_Block), Loc),
6115                     Expression   => Make_Identifier (Loc, Name_uD))));
6116
6117             --  Generate:
6118             --    _Disp_Asynchronous_Select (<object>, S, P'Address, D, B);
6119
6120             Prepend_To (TaskE_Stmts,
6121               Make_Procedure_Call_Statement (Loc,
6122                 Name =>
6123                   New_Reference_To (
6124                     Find_Prim_Op (Etype (Etype (Obj)),
6125                       Name_uDisp_Asynchronous_Select),
6126                     Loc),
6127                 Parameter_Associations =>
6128                   New_List (
6129                     New_Copy_Tree (Obj),             --  <object>
6130                     New_Reference_To (S, Loc),       --  S
6131                     Make_Attribute_Reference (Loc,   --  P'Address
6132                       Prefix =>
6133                         New_Reference_To (P, Loc),
6134                       Attribute_Name =>
6135                         Name_Address),
6136                     Make_Identifier (Loc, Name_uD),  --  D
6137                     New_Reference_To (B, Loc))));    --  B
6138
6139             --  Generate:
6140             --    Abort_Defer;
6141
6142             Prepend_To (TaskE_Stmts,
6143               Make_Procedure_Call_Statement (Loc,
6144                 Name =>
6145                   New_Reference_To (RTE (RE_Abort_Defer), Loc),
6146                 Parameter_Associations =>
6147                   No_List));
6148
6149             --  Generate:
6150             --    Abort_Undefer;
6151             --    <abortable-statements>
6152
6153             Cleanup_Stmts := New_Copy_List_Tree (Astats);
6154
6155             Prepend_To (Cleanup_Stmts,
6156               Make_Procedure_Call_Statement (Loc,
6157                 Name =>
6158                   New_Reference_To (RTE (RE_Abort_Undefer), Loc),
6159                 Parameter_Associations =>
6160                   No_List));
6161
6162             --  Wrap the statements in a block. Exp_Ch7.Expand_Cleanup_Actions
6163             --  will generate a _clean for the additional status flag.
6164
6165             --  Generate:
6166             --    declare
6167             --       procedure _clean is
6168             --       begin
6169             --          Cancel_Task_Entry_Call (U);
6170             --       end _clean;
6171             --    begin
6172             --       Cleanup_Stmts
6173             --    at end
6174             --       _clean;
6175             --    end;
6176
6177             Cleanup_Block_Ent := Make_Temporary (Loc, 'C');
6178             Cleanup_Block :=
6179               Build_Cleanup_Block (Loc, Cleanup_Block_Ent, Cleanup_Stmts, T);
6180
6181             --  Wrap the cleanup block in an exception handling block
6182
6183             --  Generate:
6184             --    begin
6185             --       Cleanup_Block
6186             --    exception
6187             --       when Abort_Signal => Abort_Undefer;
6188             --    end;
6189
6190             Abort_Block_Ent := Make_Temporary (Loc, 'A');
6191
6192             Append_To (TaskE_Stmts,
6193               Make_Implicit_Label_Declaration (Loc,
6194                 Defining_Identifier => Abort_Block_Ent));
6195
6196             Append_To (TaskE_Stmts,
6197               Build_Abort_Block
6198                 (Loc, Abort_Block_Ent, Cleanup_Block_Ent, Cleanup_Block));
6199
6200             --  Generate:
6201             --    if not T then
6202             --       <triggering-statements>
6203             --    end if;
6204
6205             Append_To (TaskE_Stmts,
6206               Make_If_Statement (Loc,
6207                 Condition =>
6208                   Make_Op_Not (Loc,
6209                     Right_Opnd =>
6210                       New_Reference_To (T, Loc)),
6211
6212                 Then_Statements =>
6213                   New_Copy_List_Tree (Tstats)));
6214
6215             ----------------------------------
6216             -- Protected procedure handling --
6217             ----------------------------------
6218
6219             --  Generate:
6220             --    <dispatching-call>;
6221             --    <triggering-statements>
6222
6223             ProtP_Stmts := New_Copy_List_Tree (Tstats);
6224             Prepend_To (ProtP_Stmts, New_Copy_Tree (Ecall));
6225
6226             --  Generate:
6227             --    S := Ada.Tags.Get_Offset_Index
6228             --           (Ada.Tags.Tag (<object>), DT_Position (Call_Ent));
6229
6230             Conc_Typ_Stmts :=
6231               New_List (Build_S_Assignment (Loc, S, Obj, Call_Ent));
6232
6233             --  Generate:
6234             --    _Disp_Get_Prim_Op_Kind (<object>, S, C);
6235
6236             Append_To (Conc_Typ_Stmts,
6237               Make_Procedure_Call_Statement (Loc,
6238                 Name =>
6239                   New_Reference_To (
6240                     Find_Prim_Op (Etype (Etype (Obj)),
6241                       Name_uDisp_Get_Prim_Op_Kind),
6242                     Loc),
6243                 Parameter_Associations =>
6244                   New_List (
6245                     New_Copy_Tree (Obj),
6246                     New_Reference_To (S, Loc),
6247                     New_Reference_To (C, Loc))));
6248
6249             --  Generate:
6250             --    if C = POK_Procedure_Entry then
6251             --       ProtE_Stmts
6252             --    elsif C = POK_Task_Entry then
6253             --       TaskE_Stmts
6254             --    else
6255             --       ProtP_Stmts
6256             --    end if;
6257
6258             Append_To (Conc_Typ_Stmts,
6259               Make_If_Statement (Loc,
6260                 Condition =>
6261                   Make_Op_Eq (Loc,
6262                     Left_Opnd =>
6263                       New_Reference_To (C, Loc),
6264                     Right_Opnd =>
6265                       New_Reference_To (RTE (RE_POK_Protected_Entry), Loc)),
6266
6267                 Then_Statements =>
6268                   ProtE_Stmts,
6269
6270                 Elsif_Parts =>
6271                   New_List (
6272                     Make_Elsif_Part (Loc,
6273                       Condition =>
6274                         Make_Op_Eq (Loc,
6275                           Left_Opnd =>
6276                             New_Reference_To (C, Loc),
6277                           Right_Opnd =>
6278                             New_Reference_To (RTE (RE_POK_Task_Entry), Loc)),
6279
6280                       Then_Statements =>
6281                         TaskE_Stmts)),
6282
6283                 Else_Statements =>
6284                   ProtP_Stmts));
6285
6286             --  Generate:
6287             --    <dispatching-call>;
6288             --    <triggering-statements>
6289
6290             Lim_Typ_Stmts := New_Copy_List_Tree (Tstats);
6291             Prepend_To (Lim_Typ_Stmts, New_Copy_Tree (Ecall));
6292
6293             --  Generate:
6294             --    if K = Ada.Tags.TK_Limited_Tagged then
6295             --       Lim_Typ_Stmts
6296             --    else
6297             --       Conc_Typ_Stmts
6298             --    end if;
6299
6300             Append_To (Stmts,
6301               Make_If_Statement (Loc,
6302                 Condition =>
6303                    Make_Op_Eq (Loc,
6304                      Left_Opnd =>
6305                        New_Reference_To (K, Loc),
6306                      Right_Opnd =>
6307                        New_Reference_To (RTE (RE_TK_Limited_Tagged), Loc)),
6308
6309                 Then_Statements =>
6310                   Lim_Typ_Stmts,
6311
6312                 Else_Statements =>
6313                   Conc_Typ_Stmts));
6314
6315             Rewrite (N,
6316               Make_Block_Statement (Loc,
6317                 Declarations =>
6318                   Decls,
6319                 Handled_Statement_Sequence =>
6320                   Make_Handled_Sequence_Of_Statements (Loc, Stmts)));
6321
6322             Analyze (N);
6323             return;
6324
6325          --  Delay triggering statement processing
6326
6327          else
6328             --  Add a Delay_Block object to the parameter list of the delay
6329             --  procedure to form the parameter list of the Wait entry call.
6330
6331             Dblock_Ent := Make_Temporary (Loc, 'D');
6332
6333             Pdef := Entity (Name (Ecall));
6334
6335             if Is_RTE (Pdef, RO_CA_Delay_For) then
6336                Enqueue_Call :=
6337                  New_Reference_To (RTE (RE_Enqueue_Duration), Loc);
6338
6339             elsif Is_RTE (Pdef, RO_CA_Delay_Until) then
6340                Enqueue_Call :=
6341                  New_Reference_To (RTE (RE_Enqueue_Calendar), Loc);
6342
6343             else pragma Assert (Is_RTE (Pdef, RO_RT_Delay_Until));
6344                Enqueue_Call := New_Reference_To (RTE (RE_Enqueue_RT), Loc);
6345             end if;
6346
6347             Append_To (Parameter_Associations (Ecall),
6348               Make_Attribute_Reference (Loc,
6349                 Prefix => New_Reference_To (Dblock_Ent, Loc),
6350                 Attribute_Name => Name_Unchecked_Access));
6351
6352             --  Create the inner block to protect the abortable part
6353
6354             Hdle := New_List (Build_Abort_Block_Handler (Loc));
6355
6356             Prepend_To (Astats,
6357               Make_Procedure_Call_Statement (Loc,
6358                 Name => New_Reference_To (RTE (RE_Abort_Undefer), Loc)));
6359
6360             Abortable_Block :=
6361               Make_Block_Statement (Loc,
6362                 Identifier => New_Reference_To (Blk_Ent, Loc),
6363                 Handled_Statement_Sequence =>
6364                   Make_Handled_Sequence_Of_Statements (Loc,
6365                     Statements => Astats),
6366                 Has_Created_Identifier => True,
6367                 Is_Asynchronous_Call_Block => True);
6368
6369             --  Append call to if Enqueue (When, DB'Unchecked_Access) then
6370
6371             Rewrite (Ecall,
6372               Make_Implicit_If_Statement (N,
6373                 Condition => Make_Function_Call (Loc,
6374                   Name => Enqueue_Call,
6375                   Parameter_Associations => Parameter_Associations (Ecall)),
6376                 Then_Statements =>
6377                   New_List (Make_Block_Statement (Loc,
6378                     Handled_Statement_Sequence =>
6379                       Make_Handled_Sequence_Of_Statements (Loc,
6380                         Statements => New_List (
6381                           Make_Implicit_Label_Declaration (Loc,
6382                             Defining_Identifier => Blk_Ent,
6383                             Label_Construct     => Abortable_Block),
6384                           Abortable_Block),
6385                         Exception_Handlers => Hdle)))));
6386
6387             Stmts := New_List (Ecall);
6388
6389             --  Construct statement sequence for new block
6390
6391             Append_To (Stmts,
6392               Make_Implicit_If_Statement (N,
6393                 Condition => Make_Function_Call (Loc,
6394                   Name => New_Reference_To (
6395                     RTE (RE_Timed_Out), Loc),
6396                   Parameter_Associations => New_List (
6397                     Make_Attribute_Reference (Loc,
6398                       Prefix => New_Reference_To (Dblock_Ent, Loc),
6399                       Attribute_Name => Name_Unchecked_Access))),
6400                 Then_Statements => Tstats));
6401
6402             --  The result is the new block
6403
6404             Set_Entry_Cancel_Parameter (Blk_Ent, Dblock_Ent);
6405
6406             Rewrite (N,
6407               Make_Block_Statement (Loc,
6408                 Declarations => New_List (
6409                   Make_Object_Declaration (Loc,
6410                     Defining_Identifier => Dblock_Ent,
6411                     Aliased_Present => True,
6412                     Object_Definition => New_Reference_To (
6413                       RTE (RE_Delay_Block), Loc))),
6414
6415                 Handled_Statement_Sequence =>
6416                   Make_Handled_Sequence_Of_Statements (Loc, Stmts)));
6417
6418             Analyze (N);
6419             return;
6420          end if;
6421
6422       else
6423          N_Orig := N;
6424       end if;
6425
6426       Extract_Entry (Ecall, Concval, Ename, Index);
6427       Build_Simple_Entry_Call (Ecall, Concval, Ename, Index);
6428
6429       Stmts := Statements (Handled_Statement_Sequence (Ecall));
6430       Decls := Declarations (Ecall);
6431
6432       if Is_Protected_Type (Etype (Concval)) then
6433
6434          --  Get the declarations of the block expanded from the entry call
6435
6436          Decl := First (Decls);
6437          while Present (Decl)
6438            and then
6439              (Nkind (Decl) /= N_Object_Declaration
6440                or else not Is_RTE (Etype (Object_Definition (Decl)),
6441                                    RE_Communication_Block))
6442          loop
6443             Next (Decl);
6444          end loop;
6445
6446          pragma Assert (Present (Decl));
6447          Cancel_Param := Defining_Identifier (Decl);
6448
6449          --  Change the mode of the Protected_Entry_Call call
6450
6451          --  Protected_Entry_Call (
6452          --    Object => po._object'Access,
6453          --    E => <entry index>;
6454          --    Uninterpreted_Data => P'Address;
6455          --    Mode => Asynchronous_Call;
6456          --    Block => Bnn);
6457
6458          Stmt := First (Stmts);
6459
6460          --  Skip assignments to temporaries created for in-out parameters
6461
6462          --  This makes unwarranted assumptions about the shape of the expanded
6463          --  tree for the call, and should be cleaned up ???
6464
6465          while Nkind (Stmt) /= N_Procedure_Call_Statement loop
6466             Next (Stmt);
6467          end loop;
6468
6469          Call := Stmt;
6470
6471          Param := First (Parameter_Associations (Call));
6472          while Present (Param)
6473            and then not Is_RTE (Etype (Param), RE_Call_Modes)
6474          loop
6475             Next (Param);
6476          end loop;
6477
6478          pragma Assert (Present (Param));
6479          Rewrite (Param, New_Reference_To (RTE (RE_Asynchronous_Call), Loc));
6480          Analyze (Param);
6481
6482          --  Append an if statement to execute the abortable part
6483
6484          --  Generate:
6485          --    if Enqueued (Bnn) then
6486
6487          Append_To (Stmts,
6488            Make_Implicit_If_Statement (N,
6489              Condition => Make_Function_Call (Loc,
6490                Name => New_Reference_To (RTE (RE_Enqueued), Loc),
6491                Parameter_Associations => New_List (
6492                  New_Reference_To (Cancel_Param, Loc))),
6493              Then_Statements => Astats));
6494
6495          Abortable_Block :=
6496            Make_Block_Statement (Loc,
6497              Identifier => New_Reference_To (Blk_Ent, Loc),
6498              Handled_Statement_Sequence =>
6499                Make_Handled_Sequence_Of_Statements (Loc,
6500                  Statements => Stmts),
6501              Has_Created_Identifier => True,
6502              Is_Asynchronous_Call_Block => True);
6503
6504          --  For the VM call Update_Exception instead of Abort_Undefer.
6505          --  See 4jexcept.ads for an explanation.
6506
6507          if VM_Target = No_VM then
6508             if Exception_Mechanism = Back_End_Exceptions then
6509
6510                --  Aborts are not deferred at beginning of exception handlers
6511                --  in ZCX.
6512
6513                Handler_Stmt := Make_Null_Statement (Loc);
6514
6515             else
6516                Handler_Stmt := Make_Procedure_Call_Statement (Loc,
6517                  Name => New_Reference_To (RTE (RE_Abort_Undefer), Loc),
6518                  Parameter_Associations => No_List);
6519             end if;
6520          else
6521             Handler_Stmt := Make_Procedure_Call_Statement (Loc,
6522               Name => New_Reference_To (RTE (RE_Update_Exception), Loc),
6523               Parameter_Associations => New_List (
6524                 Make_Function_Call (Loc,
6525                   Name => New_Occurrence_Of
6526                             (RTE (RE_Current_Target_Exception), Loc))));
6527          end if;
6528
6529          Stmts := New_List (
6530            Make_Block_Statement (Loc,
6531              Handled_Statement_Sequence =>
6532                Make_Handled_Sequence_Of_Statements (Loc,
6533                  Statements => New_List (
6534                    Make_Implicit_Label_Declaration (Loc,
6535                      Defining_Identifier => Blk_Ent,
6536                      Label_Construct     => Abortable_Block),
6537                    Abortable_Block),
6538
6539                --  exception
6540
6541                  Exception_Handlers => New_List (
6542                    Make_Implicit_Exception_Handler (Loc,
6543
6544                --  when Abort_Signal =>
6545                --     Abort_Undefer.all;
6546
6547                      Exception_Choices =>
6548                        New_List (New_Reference_To (Stand.Abort_Signal, Loc)),
6549                      Statements => New_List (Handler_Stmt))))),
6550
6551          --  if not Cancelled (Bnn) then
6552          --     triggered statements
6553          --  end if;
6554
6555            Make_Implicit_If_Statement (N,
6556              Condition => Make_Op_Not (Loc,
6557                Right_Opnd =>
6558                  Make_Function_Call (Loc,
6559                    Name => New_Occurrence_Of (RTE (RE_Cancelled), Loc),
6560                    Parameter_Associations => New_List (
6561                      New_Occurrence_Of (Cancel_Param, Loc)))),
6562              Then_Statements => Tstats));
6563
6564       --  Asynchronous task entry call
6565
6566       else
6567          if No (Decls) then
6568             Decls := New_List;
6569          end if;
6570
6571          B := Make_Defining_Identifier (Loc, Name_uB);
6572
6573          --  Insert declaration of B in declarations of existing block
6574
6575          Prepend_To (Decls,
6576            Make_Object_Declaration (Loc,
6577              Defining_Identifier => B,
6578              Object_Definition => New_Reference_To (Standard_Boolean, Loc)));
6579
6580          Cancel_Param := Make_Defining_Identifier (Loc, Name_uC);
6581
6582          --  Insert declaration of C in declarations of existing block
6583
6584          Prepend_To (Decls,
6585            Make_Object_Declaration (Loc,
6586              Defining_Identifier => Cancel_Param,
6587              Object_Definition => New_Reference_To (Standard_Boolean, Loc)));
6588
6589          --  Remove and save the call to Call_Simple
6590
6591          Stmt := First (Stmts);
6592
6593          --  Skip assignments to temporaries created for in-out parameters.
6594          --  This makes unwarranted assumptions about the shape of the expanded
6595          --  tree for the call, and should be cleaned up ???
6596
6597          while Nkind (Stmt) /= N_Procedure_Call_Statement loop
6598             Next (Stmt);
6599          end loop;
6600
6601          Call := Stmt;
6602
6603          --  Create the inner block to protect the abortable part
6604
6605          Hdle :=  New_List (Build_Abort_Block_Handler (Loc));
6606
6607          Prepend_To (Astats,
6608            Make_Procedure_Call_Statement (Loc,
6609              Name => New_Reference_To (RTE (RE_Abort_Undefer), Loc)));
6610
6611          Abortable_Block :=
6612            Make_Block_Statement (Loc,
6613              Identifier => New_Reference_To (Blk_Ent, Loc),
6614              Handled_Statement_Sequence =>
6615                Make_Handled_Sequence_Of_Statements (Loc,
6616                  Statements => Astats),
6617              Has_Created_Identifier => True,
6618              Is_Asynchronous_Call_Block => True);
6619
6620          Insert_After (Call,
6621            Make_Block_Statement (Loc,
6622              Handled_Statement_Sequence =>
6623                Make_Handled_Sequence_Of_Statements (Loc,
6624                  Statements => New_List (
6625                    Make_Implicit_Label_Declaration (Loc,
6626                      Defining_Identifier =>
6627                        Blk_Ent,
6628                      Label_Construct =>
6629                        Abortable_Block),
6630                    Abortable_Block),
6631                  Exception_Handlers => Hdle)));
6632
6633          --  Create new call statement
6634
6635          Params := Parameter_Associations (Call);
6636
6637          Append_To (Params,
6638            New_Reference_To (RTE (RE_Asynchronous_Call), Loc));
6639          Append_To (Params,
6640            New_Reference_To (B, Loc));
6641
6642          Rewrite (Call,
6643            Make_Procedure_Call_Statement (Loc,
6644              Name =>
6645                New_Reference_To (RTE (RE_Task_Entry_Call), Loc),
6646              Parameter_Associations => Params));
6647
6648          --  Construct statement sequence for new block
6649
6650          Append_To (Stmts,
6651            Make_Implicit_If_Statement (N,
6652              Condition =>
6653                Make_Op_Not (Loc,
6654                  New_Reference_To (Cancel_Param, Loc)),
6655              Then_Statements => Tstats));
6656
6657          --  Protected the call against abort
6658
6659          Prepend_To (Stmts,
6660            Make_Procedure_Call_Statement (Loc,
6661              Name => New_Reference_To (RTE (RE_Abort_Defer), Loc),
6662              Parameter_Associations => Empty_List));
6663       end if;
6664
6665       Set_Entry_Cancel_Parameter (Blk_Ent, Cancel_Param);
6666
6667       --  The result is the new block
6668
6669       Rewrite (N_Orig,
6670         Make_Block_Statement (Loc,
6671           Declarations => Decls,
6672           Handled_Statement_Sequence =>
6673             Make_Handled_Sequence_Of_Statements (Loc, Stmts)));
6674
6675       Analyze (N_Orig);
6676    end Expand_N_Asynchronous_Select;
6677
6678    -------------------------------------
6679    -- Expand_N_Conditional_Entry_Call --
6680    -------------------------------------
6681
6682    --  The conditional task entry call is converted to a call to
6683    --  Task_Entry_Call:
6684
6685    --    declare
6686    --       B : Boolean;
6687    --       P : parms := (parm, parm, parm);
6688
6689    --    begin
6690    --       Task_Entry_Call
6691    --         (<acceptor-task>,   --  Acceptor
6692    --          <entry-index>,     --  E
6693    --          P'Address,         --  Uninterpreted_Data
6694    --          Conditional_Call,  --  Mode
6695    --          B);                --  Rendezvous_Successful
6696    --       parm := P.param;
6697    --       parm := P.param;
6698    --       ...
6699    --       if B then
6700    --          normal-statements
6701    --       else
6702    --          else-statements
6703    --       end if;
6704    --    end;
6705
6706    --  For a description of the use of P and the assignments after the call,
6707    --  see Expand_N_Entry_Call_Statement. Note that the entry call of the
6708    --  conditional entry call has already been expanded (by the Expand_N_Entry
6709    --  _Call_Statement procedure) as follows:
6710
6711    --    declare
6712    --       P : parms := (parm, parm, parm);
6713    --    begin
6714    --       ... info for in-out parameters
6715    --       Call_Simple (acceptor-task, entry-index, P'Address);
6716    --       parm := P.param;
6717    --       parm := P.param;
6718    --       ...
6719    --    end;
6720
6721    --  so the task at hand is to convert the latter expansion into the former
6722
6723    --  The conditional protected entry call is converted to a call to
6724    --  Protected_Entry_Call:
6725
6726    --    declare
6727    --       P : parms := (parm, parm, parm);
6728    --       Bnn : Communications_Block;
6729
6730    --    begin
6731    --       Protected_Entry_Call
6732    --         (po._object'Access,  --  Object
6733    --          <entry index>,      --  E
6734    --          P'Address,          --  Uninterpreted_Data
6735    --          Conditional_Call,   --  Mode
6736    --          Bnn);               --  Block
6737    --       parm := P.param;
6738    --       parm := P.param;
6739    --       ...
6740    --       if Cancelled (Bnn) then
6741    --          else-statements
6742    --       else
6743    --          normal-statements
6744    --       end if;
6745    --    end;
6746
6747    --  Ada 2005 (AI-345): A dispatching conditional entry call is converted
6748    --  into:
6749
6750    --    declare
6751    --       B : Boolean := False;
6752    --       C : Ada.Tags.Prim_Op_Kind;
6753    --       K : Ada.Tags.Tagged_Kind :=
6754    --             Ada.Tags.Get_Tagged_Kind (Ada.Tags.Tag (<object>));
6755    --       P : Parameters := (Param1 .. ParamN);
6756    --       S : Integer;
6757
6758    --    begin
6759    --       if K = Ada.Tags.TK_Limited_Tagged then
6760    --          <dispatching-call>;
6761    --          <triggering-statements>
6762
6763    --       else
6764    --          S :=
6765    --            Ada.Tags.Get_Offset_Index
6766    --              (Ada.Tags.Tag (<object>), DT_Position (<dispatching-call>));
6767
6768    --          _Disp_Conditional_Select (<object>, S, P'Address, C, B);
6769
6770    --          if C = POK_Protected_Entry
6771    --            or else C = POK_Task_Entry
6772    --          then
6773    --             Param1 := P.Param1;
6774    --             ...
6775    --             ParamN := P.ParamN;
6776    --          end if;
6777
6778    --          if B then
6779    --             if C = POK_Procedure
6780    --               or else C = POK_Protected_Procedure
6781    --               or else C = POK_Task_Procedure
6782    --             then
6783    --                <dispatching-call>;
6784    --             end if;
6785
6786    --             <triggering-statements>
6787    --          else
6788    --             <else-statements>
6789    --          end if;
6790    --       end if;
6791    --    end;
6792
6793    procedure Expand_N_Conditional_Entry_Call (N : Node_Id) is
6794       Loc : constant Source_Ptr := Sloc (N);
6795       Alt : constant Node_Id    := Entry_Call_Alternative (N);
6796       Blk : Node_Id             := Entry_Call_Statement (Alt);
6797
6798       Actuals        : List_Id;
6799       Blk_Typ        : Entity_Id;
6800       Call           : Node_Id;
6801       Call_Ent       : Entity_Id;
6802       Conc_Typ_Stmts : List_Id;
6803       Decl           : Node_Id;
6804       Decls          : List_Id;
6805       Formals        : List_Id;
6806       Lim_Typ_Stmts  : List_Id;
6807       N_Stats        : List_Id;
6808       Obj            : Entity_Id;
6809       Param          : Node_Id;
6810       Params         : List_Id;
6811       Stmt           : Node_Id;
6812       Stmts          : List_Id;
6813       Transient_Blk  : Node_Id;
6814       Unpack         : List_Id;
6815
6816       B : Entity_Id;  --  Call status flag
6817       C : Entity_Id;  --  Call kind
6818       K : Entity_Id;  --  Tagged kind
6819       P : Entity_Id;  --  Parameter block
6820       S : Entity_Id;  --  Primitive operation slot
6821
6822    begin
6823       Process_Statements_For_Controlled_Objects (N);
6824
6825       if Ada_Version >= Ada_2005
6826         and then Nkind (Blk) = N_Procedure_Call_Statement
6827       then
6828          Extract_Dispatching_Call (Blk, Call_Ent, Obj, Actuals, Formals);
6829
6830          Decls := New_List;
6831          Stmts := New_List;
6832
6833          --  Call status flag processing, generate:
6834          --    B : Boolean := False;
6835
6836          B := Build_B (Loc, Decls);
6837
6838          --  Call kind processing, generate:
6839          --    C : Ada.Tags.Prim_Op_Kind;
6840
6841          C := Build_C (Loc, Decls);
6842
6843          --  Tagged kind processing, generate:
6844          --    K : Ada.Tags.Tagged_Kind :=
6845          --          Ada.Tags.Get_Tagged_Kind (Ada.Tags.Tag (<object>));
6846
6847          K := Build_K (Loc, Decls, Obj);
6848
6849          --  Parameter block processing
6850
6851          Blk_Typ := Build_Parameter_Block (Loc, Actuals, Formals, Decls);
6852          P       := Parameter_Block_Pack
6853                       (Loc, Blk_Typ, Actuals, Formals, Decls, Stmts);
6854
6855          --  Dispatch table slot processing, generate:
6856          --    S : Integer;
6857
6858          S := Build_S (Loc, Decls);
6859
6860          --  Generate:
6861          --    S := Ada.Tags.Get_Offset_Index
6862          --           (Ada.Tags.Tag (<object>), DT_Position (Call_Ent));
6863
6864          Conc_Typ_Stmts :=
6865            New_List (Build_S_Assignment (Loc, S, Obj, Call_Ent));
6866
6867          --  Generate:
6868          --    _Disp_Conditional_Select (<object>, S, P'Address, C, B);
6869
6870          Append_To (Conc_Typ_Stmts,
6871            Make_Procedure_Call_Statement (Loc,
6872              Name =>
6873                New_Reference_To (
6874                  Find_Prim_Op (Etype (Etype (Obj)),
6875                    Name_uDisp_Conditional_Select),
6876                  Loc),
6877              Parameter_Associations =>
6878                New_List (
6879                  New_Copy_Tree (Obj),            --  <object>
6880                  New_Reference_To (S, Loc),      --  S
6881                  Make_Attribute_Reference (Loc,  --  P'Address
6882                    Prefix =>
6883                      New_Reference_To (P, Loc),
6884                    Attribute_Name =>
6885                      Name_Address),
6886                  New_Reference_To (C, Loc),      --  C
6887                  New_Reference_To (B, Loc))));   --  B
6888
6889          --  Generate:
6890          --    if C = POK_Protected_Entry
6891          --      or else C = POK_Task_Entry
6892          --    then
6893          --       Param1 := P.Param1;
6894          --       ...
6895          --       ParamN := P.ParamN;
6896          --    end if;
6897
6898          Unpack := Parameter_Block_Unpack (Loc, P, Actuals, Formals);
6899
6900          --  Generate the if statement only when the packed parameters need
6901          --  explicit assignments to their corresponding actuals.
6902
6903          if Present (Unpack) then
6904             Append_To (Conc_Typ_Stmts,
6905               Make_If_Statement (Loc,
6906
6907                 Condition =>
6908                   Make_Or_Else (Loc,
6909                     Left_Opnd =>
6910                       Make_Op_Eq (Loc,
6911                         Left_Opnd =>
6912                           New_Reference_To (C, Loc),
6913                         Right_Opnd =>
6914                           New_Reference_To (RTE (
6915                             RE_POK_Protected_Entry), Loc)),
6916                     Right_Opnd =>
6917                       Make_Op_Eq (Loc,
6918                         Left_Opnd =>
6919                           New_Reference_To (C, Loc),
6920                         Right_Opnd =>
6921                           New_Reference_To (RTE (RE_POK_Task_Entry), Loc))),
6922
6923                  Then_Statements =>
6924                    Unpack));
6925          end if;
6926
6927          --  Generate:
6928          --    if B then
6929          --       if C = POK_Procedure
6930          --         or else C = POK_Protected_Procedure
6931          --         or else C = POK_Task_Procedure
6932          --       then
6933          --          <dispatching-call>
6934          --       end if;
6935          --       <normal-statements>
6936          --    else
6937          --       <else-statements>
6938          --    end if;
6939
6940          N_Stats := New_Copy_List_Tree (Statements (Alt));
6941
6942          Prepend_To (N_Stats,
6943            Make_If_Statement (Loc,
6944              Condition =>
6945                Make_Or_Else (Loc,
6946                  Left_Opnd =>
6947                    Make_Op_Eq (Loc,
6948                      Left_Opnd =>
6949                        New_Reference_To (C, Loc),
6950                      Right_Opnd =>
6951                        New_Reference_To (RTE (RE_POK_Procedure), Loc)),
6952
6953                  Right_Opnd =>
6954                    Make_Or_Else (Loc,
6955                      Left_Opnd =>
6956                        Make_Op_Eq (Loc,
6957                          Left_Opnd =>
6958                            New_Reference_To (C, Loc),
6959                          Right_Opnd =>
6960                            New_Reference_To (RTE (
6961                              RE_POK_Protected_Procedure), Loc)),
6962
6963                      Right_Opnd =>
6964                        Make_Op_Eq (Loc,
6965                          Left_Opnd =>
6966                            New_Reference_To (C, Loc),
6967                          Right_Opnd =>
6968                            New_Reference_To (RTE (
6969                              RE_POK_Task_Procedure), Loc)))),
6970
6971              Then_Statements =>
6972                New_List (Blk)));
6973
6974          Append_To (Conc_Typ_Stmts,
6975            Make_If_Statement (Loc,
6976              Condition => New_Reference_To (B, Loc),
6977              Then_Statements => N_Stats,
6978              Else_Statements => Else_Statements (N)));
6979
6980          --  Generate:
6981          --    <dispatching-call>;
6982          --    <triggering-statements>
6983
6984          Lim_Typ_Stmts := New_Copy_List_Tree (Statements (Alt));
6985          Prepend_To (Lim_Typ_Stmts, New_Copy_Tree (Blk));
6986
6987          --  Generate:
6988          --    if K = Ada.Tags.TK_Limited_Tagged then
6989          --       Lim_Typ_Stmts
6990          --    else
6991          --       Conc_Typ_Stmts
6992          --    end if;
6993
6994          Append_To (Stmts,
6995            Make_If_Statement (Loc,
6996              Condition =>
6997                Make_Op_Eq (Loc,
6998                  Left_Opnd =>
6999                    New_Reference_To (K, Loc),
7000                  Right_Opnd =>
7001                    New_Reference_To (RTE (RE_TK_Limited_Tagged), Loc)),
7002
7003              Then_Statements =>
7004                Lim_Typ_Stmts,
7005
7006              Else_Statements =>
7007                Conc_Typ_Stmts));
7008
7009          Rewrite (N,
7010            Make_Block_Statement (Loc,
7011              Declarations =>
7012                Decls,
7013              Handled_Statement_Sequence =>
7014                Make_Handled_Sequence_Of_Statements (Loc, Stmts)));
7015
7016       --  As described above, The entry alternative is transformed into a
7017       --  block that contains the gnulli call, and possibly assignment
7018       --  statements for in-out parameters. The gnulli call may itself be
7019       --  rewritten into a transient block if some unconstrained parameters
7020       --  require it. We need to retrieve the call to complete its parameter
7021       --  list.
7022
7023       else
7024          Transient_Blk :=
7025            First_Real_Statement (Handled_Statement_Sequence (Blk));
7026
7027          if Present (Transient_Blk)
7028            and then Nkind (Transient_Blk) = N_Block_Statement
7029          then
7030             Blk := Transient_Blk;
7031          end if;
7032
7033          Stmts := Statements (Handled_Statement_Sequence (Blk));
7034          Stmt  := First (Stmts);
7035          while Nkind (Stmt) /= N_Procedure_Call_Statement loop
7036             Next (Stmt);
7037          end loop;
7038
7039          Call   := Stmt;
7040          Params := Parameter_Associations (Call);
7041
7042          if Is_RTE (Entity (Name (Call)), RE_Protected_Entry_Call) then
7043
7044             --  Substitute Conditional_Entry_Call for Simple_Call parameter
7045
7046             Param := First (Params);
7047             while Present (Param)
7048               and then not Is_RTE (Etype (Param), RE_Call_Modes)
7049             loop
7050                Next (Param);
7051             end loop;
7052
7053             pragma Assert (Present (Param));
7054             Rewrite (Param, New_Reference_To (RTE (RE_Conditional_Call), Loc));
7055
7056             Analyze (Param);
7057
7058             --  Find the Communication_Block parameter for the call to the
7059             --  Cancelled function.
7060
7061             Decl := First (Declarations (Blk));
7062             while Present (Decl)
7063               and then not Is_RTE (Etype (Object_Definition (Decl)),
7064                              RE_Communication_Block)
7065             loop
7066                Next (Decl);
7067             end loop;
7068
7069             --  Add an if statement to execute the else part if the call
7070             --  does not succeed (as indicated by the Cancelled predicate).
7071
7072             Append_To (Stmts,
7073               Make_Implicit_If_Statement (N,
7074                 Condition => Make_Function_Call (Loc,
7075                   Name => New_Reference_To (RTE (RE_Cancelled), Loc),
7076                   Parameter_Associations => New_List (
7077                     New_Reference_To (Defining_Identifier (Decl), Loc))),
7078                 Then_Statements => Else_Statements (N),
7079                 Else_Statements => Statements (Alt)));
7080
7081          else
7082             B := Make_Defining_Identifier (Loc, Name_uB);
7083
7084             --  Insert declaration of B in declarations of existing block
7085
7086             if No (Declarations (Blk)) then
7087                Set_Declarations (Blk, New_List);
7088             end if;
7089
7090             Prepend_To (Declarations (Blk),
7091               Make_Object_Declaration (Loc,
7092                 Defining_Identifier => B,
7093                 Object_Definition =>
7094                   New_Reference_To (Standard_Boolean, Loc)));
7095
7096             --  Create new call statement
7097
7098             Append_To (Params,
7099               New_Reference_To (RTE (RE_Conditional_Call), Loc));
7100             Append_To (Params, New_Reference_To (B, Loc));
7101
7102             Rewrite (Call,
7103               Make_Procedure_Call_Statement (Loc,
7104                 Name => New_Reference_To (RTE (RE_Task_Entry_Call), Loc),
7105                 Parameter_Associations => Params));
7106
7107             --  Construct statement sequence for new block
7108
7109             Append_To (Stmts,
7110               Make_Implicit_If_Statement (N,
7111                 Condition => New_Reference_To (B, Loc),
7112                 Then_Statements => Statements (Alt),
7113                 Else_Statements => Else_Statements (N)));
7114          end if;
7115
7116          --  The result is the new block
7117
7118          Rewrite (N,
7119            Make_Block_Statement (Loc,
7120              Declarations => Declarations (Blk),
7121              Handled_Statement_Sequence =>
7122                Make_Handled_Sequence_Of_Statements (Loc, Stmts)));
7123       end if;
7124
7125       Analyze (N);
7126    end Expand_N_Conditional_Entry_Call;
7127
7128    ---------------------------------------
7129    -- Expand_N_Delay_Relative_Statement --
7130    ---------------------------------------
7131
7132    --  Delay statement is implemented as a procedure call to Delay_For
7133    --  defined in Ada.Calendar.Delays in order to reduce the overhead of
7134    --  simple delays imposed by the use of Protected Objects.
7135
7136    procedure Expand_N_Delay_Relative_Statement (N : Node_Id) is
7137       Loc : constant Source_Ptr := Sloc (N);
7138    begin
7139       Rewrite (N,
7140         Make_Procedure_Call_Statement (Loc,
7141           Name => New_Reference_To (RTE (RO_CA_Delay_For), Loc),
7142           Parameter_Associations => New_List (Expression (N))));
7143       Analyze (N);
7144    end Expand_N_Delay_Relative_Statement;
7145
7146    ------------------------------------
7147    -- Expand_N_Delay_Until_Statement --
7148    ------------------------------------
7149
7150    --  Delay Until statement is implemented as a procedure call to
7151    --  Delay_Until defined in Ada.Calendar.Delays and Ada.Real_Time.Delays.
7152
7153    procedure Expand_N_Delay_Until_Statement (N : Node_Id) is
7154       Loc : constant Source_Ptr := Sloc (N);
7155       Typ : Entity_Id;
7156
7157    begin
7158       if Is_RTE (Base_Type (Etype (Expression (N))), RO_CA_Time) then
7159          Typ := RTE (RO_CA_Delay_Until);
7160       else
7161          Typ := RTE (RO_RT_Delay_Until);
7162       end if;
7163
7164       Rewrite (N,
7165         Make_Procedure_Call_Statement (Loc,
7166           Name => New_Reference_To (Typ, Loc),
7167           Parameter_Associations => New_List (Expression (N))));
7168
7169       Analyze (N);
7170    end Expand_N_Delay_Until_Statement;
7171
7172    -------------------------
7173    -- Expand_N_Entry_Body --
7174    -------------------------
7175
7176    procedure Expand_N_Entry_Body (N : Node_Id) is
7177    begin
7178       --  Associate discriminals with the next protected operation body to be
7179       --  expanded.
7180
7181       if Present (Next_Protected_Operation (N)) then
7182          Set_Discriminals (Parent (Current_Scope));
7183       end if;
7184    end Expand_N_Entry_Body;
7185
7186    -----------------------------------
7187    -- Expand_N_Entry_Call_Statement --
7188    -----------------------------------
7189
7190    --  An entry call is expanded into GNARLI calls to implement a simple entry
7191    --  call (see Build_Simple_Entry_Call).
7192
7193    procedure Expand_N_Entry_Call_Statement (N : Node_Id) is
7194       Concval : Node_Id;
7195       Ename   : Node_Id;
7196       Index   : Node_Id;
7197
7198    begin
7199       if No_Run_Time_Mode then
7200          Error_Msg_CRT ("entry call", N);
7201          return;
7202       end if;
7203
7204       --  If this entry call is part of an asynchronous select, don't expand it
7205       --  here; it will be expanded with the select statement. Don't expand
7206       --  timed entry calls either, as they are translated into asynchronous
7207       --  entry calls.
7208
7209       --  ??? This whole approach is questionable; it may be better to go back
7210       --  to allowing the expansion to take place and then attempting to fix it
7211       --  up in Expand_N_Asynchronous_Select. The tricky part is figuring out
7212       --  whether the expanded call is on a task or protected entry.
7213
7214       if (Nkind (Parent (N)) /= N_Triggering_Alternative
7215            or else N /= Triggering_Statement (Parent (N)))
7216         and then (Nkind (Parent (N)) /= N_Entry_Call_Alternative
7217                    or else N /= Entry_Call_Statement (Parent (N))
7218                    or else Nkind (Parent (Parent (N))) /= N_Timed_Entry_Call)
7219       then
7220          Extract_Entry (N, Concval, Ename, Index);
7221          Build_Simple_Entry_Call (N, Concval, Ename, Index);
7222       end if;
7223    end Expand_N_Entry_Call_Statement;
7224
7225    --------------------------------
7226    -- Expand_N_Entry_Declaration --
7227    --------------------------------
7228
7229    --  If there are parameters, then first, each of the formals is marked by
7230    --  setting Is_Entry_Formal. Next a record type is built which is used to
7231    --  hold the parameter values. The name of this record type is entryP where
7232    --  entry is the name of the entry, with an additional corresponding access
7233    --  type called entryPA. The record type has matching components for each
7234    --  formal (the component names are the same as the formal names). For
7235    --  elementary types, the component type matches the formal type. For
7236    --  composite types, an access type is declared (with the name formalA)
7237    --  which designates the formal type, and the type of the component is this
7238    --  access type. Finally the Entry_Component of each formal is set to
7239    --  reference the corresponding record component.
7240
7241    procedure Expand_N_Entry_Declaration (N : Node_Id) is
7242       Loc        : constant Source_Ptr := Sloc (N);
7243       Entry_Ent  : constant Entity_Id  := Defining_Identifier (N);
7244       Components : List_Id;
7245       Formal     : Node_Id;
7246       Ftype      : Entity_Id;
7247       Last_Decl  : Node_Id;
7248       Component  : Entity_Id;
7249       Ctype      : Entity_Id;
7250       Decl       : Node_Id;
7251       Rec_Ent    : Entity_Id;
7252       Acc_Ent    : Entity_Id;
7253
7254    begin
7255       Formal := First_Formal (Entry_Ent);
7256       Last_Decl := N;
7257
7258       --  Most processing is done only if parameters are present
7259
7260       if Present (Formal) then
7261          Components := New_List;
7262
7263          --  Loop through formals
7264
7265          while Present (Formal) loop
7266             Set_Is_Entry_Formal (Formal);
7267             Component :=
7268               Make_Defining_Identifier (Sloc (Formal), Chars (Formal));
7269             Set_Entry_Component (Formal, Component);
7270             Set_Entry_Formal (Component, Formal);
7271             Ftype := Etype (Formal);
7272
7273             --  Declare new access type and then append
7274
7275             Ctype := Make_Temporary (Loc, 'A');
7276
7277             Decl :=
7278               Make_Full_Type_Declaration (Loc,
7279                 Defining_Identifier => Ctype,
7280                 Type_Definition     =>
7281                   Make_Access_To_Object_Definition (Loc,
7282                     All_Present        => True,
7283                     Constant_Present   => Ekind (Formal) = E_In_Parameter,
7284                     Subtype_Indication => New_Reference_To (Ftype, Loc)));
7285
7286             Insert_After (Last_Decl, Decl);
7287             Last_Decl := Decl;
7288
7289             Append_To (Components,
7290               Make_Component_Declaration (Loc,
7291                 Defining_Identifier => Component,
7292                 Component_Definition =>
7293                   Make_Component_Definition (Loc,
7294                     Aliased_Present    => False,
7295                     Subtype_Indication => New_Reference_To (Ctype, Loc))));
7296
7297             Next_Formal_With_Extras (Formal);
7298          end loop;
7299
7300          --  Create the Entry_Parameter_Record declaration
7301
7302          Rec_Ent := Make_Temporary (Loc, 'P');
7303
7304          Decl :=
7305            Make_Full_Type_Declaration (Loc,
7306              Defining_Identifier => Rec_Ent,
7307              Type_Definition     =>
7308                Make_Record_Definition (Loc,
7309                  Component_List =>
7310                    Make_Component_List (Loc,
7311                      Component_Items => Components)));
7312
7313          Insert_After (Last_Decl, Decl);
7314          Last_Decl := Decl;
7315
7316          --  Construct and link in the corresponding access type
7317
7318          Acc_Ent := Make_Temporary (Loc, 'A');
7319
7320          Set_Entry_Parameters_Type (Entry_Ent, Acc_Ent);
7321
7322          Decl :=
7323            Make_Full_Type_Declaration (Loc,
7324              Defining_Identifier => Acc_Ent,
7325              Type_Definition     =>
7326                Make_Access_To_Object_Definition (Loc,
7327                  All_Present        => True,
7328                  Subtype_Indication => New_Reference_To (Rec_Ent, Loc)));
7329
7330          Insert_After (Last_Decl, Decl);
7331       end if;
7332    end Expand_N_Entry_Declaration;
7333
7334    -----------------------------
7335    -- Expand_N_Protected_Body --
7336    -----------------------------
7337
7338    --  Protected bodies are expanded to the completion of the subprograms
7339    --  created for the corresponding protected type. These are a protected and
7340    --  unprotected version of each protected subprogram in the object, a
7341    --  function to calculate each entry barrier, and a procedure to execute the
7342    --  sequence of statements of each protected entry body. For example, for
7343    --  protected type ptype:
7344
7345    --  function entB
7346    --    (O : System.Address;
7347    --     E : Protected_Entry_Index)
7348    --     return Boolean
7349    --  is
7350    --     <discriminant renamings>
7351    --     <private object renamings>
7352    --  begin
7353    --     return <barrier expression>;
7354    --  end entB;
7355
7356    --  procedure pprocN (_object : in out poV;...) is
7357    --     <discriminant renamings>
7358    --     <private object renamings>
7359    --  begin
7360    --     <sequence of statements>
7361    --  end pprocN;
7362
7363    --  procedure pprocP (_object : in out poV;...) is
7364    --     procedure _clean is
7365    --       Pn : Boolean;
7366    --     begin
7367    --       ptypeS (_object, Pn);
7368    --       Unlock (_object._object'Access);
7369    --       Abort_Undefer.all;
7370    --     end _clean;
7371
7372    --  begin
7373    --     Abort_Defer.all;
7374    --     Lock (_object._object'Access);
7375    --     pprocN (_object;...);
7376    --  at end
7377    --     _clean;
7378    --  end pproc;
7379
7380    --  function pfuncN (_object : poV;...) return Return_Type is
7381    --     <discriminant renamings>
7382    --     <private object renamings>
7383    --  begin
7384    --     <sequence of statements>
7385    --  end pfuncN;
7386
7387    --  function pfuncP (_object : poV) return Return_Type is
7388    --     procedure _clean is
7389    --     begin
7390    --        Unlock (_object._object'Access);
7391    --        Abort_Undefer.all;
7392    --     end _clean;
7393
7394    --  begin
7395    --     Abort_Defer.all;
7396    --     Lock (_object._object'Access);
7397    --     return pfuncN (_object);
7398
7399    --  at end
7400    --     _clean;
7401    --  end pfunc;
7402
7403    --  procedure entE
7404    --    (O : System.Address;
7405    --     P : System.Address;
7406    --     E : Protected_Entry_Index)
7407    --  is
7408    --     <discriminant renamings>
7409    --     <private object renamings>
7410    --     type poVP is access poV;
7411    --     _Object : ptVP := ptVP!(O);
7412
7413    --  begin
7414    --     begin
7415    --        <statement sequence>
7416    --        Complete_Entry_Body (_Object._Object);
7417    --     exception
7418    --        when all others =>
7419    --           Exceptional_Complete_Entry_Body (
7420    --             _Object._Object, Get_GNAT_Exception);
7421    --     end;
7422    --  end entE;
7423
7424    --  The type poV is the record created for the protected type to hold
7425    --  the state of the protected object.
7426
7427    procedure Expand_N_Protected_Body (N : Node_Id) is
7428       Loc          : constant Source_Ptr := Sloc (N);
7429       Pid          : constant Entity_Id  := Corresponding_Spec (N);
7430
7431       Current_Node : Node_Id;
7432       Disp_Op_Body : Node_Id;
7433       New_Op_Body  : Node_Id;
7434       Num_Entries  : Natural := 0;
7435       Op_Body      : Node_Id;
7436       Op_Id        : Entity_Id;
7437
7438       function Build_Dispatching_Subprogram_Body
7439         (N        : Node_Id;
7440          Pid      : Node_Id;
7441          Prot_Bod : Node_Id) return Node_Id;
7442       --  Build a dispatching version of the protected subprogram body. The
7443       --  newly generated subprogram contains a call to the original protected
7444       --  body. The following code is generated:
7445       --
7446       --  function <protected-function-name> (Param1 .. ParamN) return
7447       --    <return-type> is
7448       --  begin
7449       --     return <protected-function-name>P (Param1 .. ParamN);
7450       --  end <protected-function-name>;
7451       --
7452       --  or
7453       --
7454       --  procedure <protected-procedure-name> (Param1 .. ParamN) is
7455       --  begin
7456       --     <protected-procedure-name>P (Param1 .. ParamN);
7457       --  end <protected-procedure-name>
7458
7459       ---------------------------------------
7460       -- Build_Dispatching_Subprogram_Body --
7461       ---------------------------------------
7462
7463       function Build_Dispatching_Subprogram_Body
7464         (N        : Node_Id;
7465          Pid      : Node_Id;
7466          Prot_Bod : Node_Id) return Node_Id
7467       is
7468          Loc     : constant Source_Ptr := Sloc (N);
7469          Actuals : List_Id;
7470          Formal  : Node_Id;
7471          Spec    : Node_Id;
7472          Stmts   : List_Id;
7473
7474       begin
7475          --  Generate a specification without a letter suffix in order to
7476          --  override an interface function or procedure.
7477
7478          Spec := Build_Protected_Sub_Specification (N, Pid, Dispatching_Mode);
7479
7480          --  The formal parameters become the actuals of the protected function
7481          --  or procedure call.
7482
7483          Actuals := New_List;
7484          Formal  := First (Parameter_Specifications (Spec));
7485          while Present (Formal) loop
7486             Append_To (Actuals,
7487               Make_Identifier (Loc, Chars (Defining_Identifier (Formal))));
7488
7489             Next (Formal);
7490          end loop;
7491
7492          if Nkind (Spec) = N_Procedure_Specification then
7493             Stmts :=
7494               New_List (
7495                 Make_Procedure_Call_Statement (Loc,
7496                   Name =>
7497                     New_Reference_To (Corresponding_Spec (Prot_Bod), Loc),
7498                   Parameter_Associations => Actuals));
7499          else
7500             pragma Assert (Nkind (Spec) = N_Function_Specification);
7501
7502             Stmts :=
7503               New_List (
7504                 Make_Simple_Return_Statement (Loc,
7505                   Expression =>
7506                     Make_Function_Call (Loc,
7507                       Name =>
7508                         New_Reference_To (Corresponding_Spec (Prot_Bod), Loc),
7509                       Parameter_Associations => Actuals)));
7510          end if;
7511
7512          return
7513            Make_Subprogram_Body (Loc,
7514              Declarations               => Empty_List,
7515              Specification              => Spec,
7516              Handled_Statement_Sequence =>
7517                Make_Handled_Sequence_Of_Statements (Loc, Stmts));
7518       end Build_Dispatching_Subprogram_Body;
7519
7520    --  Start of processing for Expand_N_Protected_Body
7521
7522    begin
7523       if No_Run_Time_Mode then
7524          Error_Msg_CRT ("protected body", N);
7525          return;
7526       end if;
7527
7528       --  This is the proper body corresponding to a stub. The declarations
7529       --  must be inserted at the point of the stub, which in turn is in the
7530       --  declarative part of the parent unit.
7531
7532       if Nkind (Parent (N)) = N_Subunit then
7533          Current_Node := Corresponding_Stub (Parent (N));
7534       else
7535          Current_Node := N;
7536       end if;
7537
7538       Op_Body := First (Declarations (N));
7539
7540       --  The protected body is replaced with the bodies of its
7541       --  protected operations, and the declarations for internal objects
7542       --  that may have been created for entry family bounds.
7543
7544       Rewrite (N, Make_Null_Statement (Sloc (N)));
7545       Analyze (N);
7546
7547       while Present (Op_Body) loop
7548          case Nkind (Op_Body) is
7549             when N_Subprogram_Declaration =>
7550                null;
7551
7552             when N_Subprogram_Body =>
7553
7554                --  Do not create bodies for eliminated operations
7555
7556                if not Is_Eliminated (Defining_Entity (Op_Body))
7557                  and then not Is_Eliminated (Corresponding_Spec (Op_Body))
7558                then
7559                   New_Op_Body :=
7560                     Build_Unprotected_Subprogram_Body (Op_Body, Pid);
7561
7562                   Insert_After (Current_Node, New_Op_Body);
7563                   Current_Node := New_Op_Body;
7564                   Analyze (New_Op_Body);
7565
7566                   --  Build the corresponding protected operation. It may
7567                   --  appear that this is needed only if this is a visible
7568                   --  operation of the type, or if it is an interrupt handler,
7569                   --  and this was the strategy used previously in GNAT.
7570                   --  However, the operation may be exported through a 'Access
7571                   --  to an external caller. This is the common idiom in code
7572                   --  that uses the Ada 2005 Timing_Events package. As a result
7573                   --  we need to produce the protected body for both visible
7574                   --  and private operations, as well as operations that only
7575                   --  have a body in the source, and for which we create a
7576                   --  declaration in the protected body itself.
7577
7578                   if Present (Corresponding_Spec (Op_Body)) then
7579                      New_Op_Body :=
7580                        Build_Protected_Subprogram_Body (
7581                          Op_Body, Pid, Specification (New_Op_Body));
7582
7583                      Insert_After (Current_Node, New_Op_Body);
7584                      Analyze (New_Op_Body);
7585
7586                      Current_Node := New_Op_Body;
7587
7588                      --  Generate an overriding primitive operation body for
7589                      --  this subprogram if the protected type implements an
7590                      --  interface.
7591
7592                      if Ada_Version >= Ada_2005
7593                           and then
7594                         Present (Interfaces (Corresponding_Record_Type (Pid)))
7595                      then
7596                         Disp_Op_Body :=
7597                           Build_Dispatching_Subprogram_Body
7598                             (Op_Body, Pid, New_Op_Body);
7599
7600                         Insert_After (Current_Node, Disp_Op_Body);
7601                         Analyze (Disp_Op_Body);
7602
7603                         Current_Node := Disp_Op_Body;
7604                      end if;
7605                   end if;
7606                end if;
7607
7608             when N_Entry_Body =>
7609                Op_Id := Defining_Identifier (Op_Body);
7610                Num_Entries := Num_Entries + 1;
7611
7612                New_Op_Body := Build_Protected_Entry (Op_Body, Op_Id, Pid);
7613
7614                Insert_After (Current_Node, New_Op_Body);
7615                Current_Node := New_Op_Body;
7616                Analyze (New_Op_Body);
7617
7618             when N_Implicit_Label_Declaration =>
7619                null;
7620
7621             when N_Itype_Reference =>
7622                Insert_After (Current_Node, New_Copy (Op_Body));
7623
7624             when N_Freeze_Entity =>
7625                New_Op_Body := New_Copy (Op_Body);
7626
7627                if Present (Entity (Op_Body))
7628                  and then Freeze_Node (Entity (Op_Body)) = Op_Body
7629                then
7630                   Set_Freeze_Node (Entity (Op_Body), New_Op_Body);
7631                end if;
7632
7633                Insert_After (Current_Node, New_Op_Body);
7634                Current_Node := New_Op_Body;
7635                Analyze (New_Op_Body);
7636
7637             when N_Pragma =>
7638                New_Op_Body := New_Copy (Op_Body);
7639                Insert_After (Current_Node, New_Op_Body);
7640                Current_Node := New_Op_Body;
7641                Analyze (New_Op_Body);
7642
7643             when N_Object_Declaration =>
7644                pragma Assert (not Comes_From_Source (Op_Body));
7645                New_Op_Body := New_Copy (Op_Body);
7646                Insert_After (Current_Node, New_Op_Body);
7647                Current_Node := New_Op_Body;
7648                Analyze (New_Op_Body);
7649
7650             when others =>
7651                raise Program_Error;
7652
7653          end case;
7654
7655          Next (Op_Body);
7656       end loop;
7657
7658       --  Finally, create the body of the function that maps an entry index
7659       --  into the corresponding body index, except when there is no entry, or
7660       --  in a Ravenscar-like profile.
7661
7662       if Corresponding_Runtime_Package (Pid) =
7663            System_Tasking_Protected_Objects_Entries
7664       then
7665          New_Op_Body := Build_Find_Body_Index (Pid);
7666          Insert_After (Current_Node, New_Op_Body);
7667          Current_Node := New_Op_Body;
7668          Analyze (New_Op_Body);
7669       end if;
7670
7671       --  Ada 2005 (AI-345): Construct the primitive wrapper bodies after the
7672       --  protected body. At this point all wrapper specs have been created,
7673       --  frozen and included in the dispatch table for the protected type.
7674
7675       if Ada_Version >= Ada_2005 then
7676          Build_Wrapper_Bodies (Loc, Pid, Current_Node);
7677       end if;
7678    end Expand_N_Protected_Body;
7679
7680    -----------------------------------------
7681    -- Expand_N_Protected_Type_Declaration --
7682    -----------------------------------------
7683
7684    --  First we create a corresponding record type declaration used to
7685    --  represent values of this protected type.
7686    --  The general form of this type declaration is
7687
7688    --    type poV (discriminants) is record
7689    --      _Object       : aliased <kind>Protection
7690    --         [(<entry count> [, <handler count>])];
7691    --      [entry_family  : array (bounds) of Void;]
7692    --      <private data fields>
7693    --    end record;
7694
7695    --  The discriminants are present only if the corresponding protected type
7696    --  has discriminants, and they exactly mirror the protected type
7697    --  discriminants. The private data fields similarly mirror the private
7698    --  declarations of the protected type.
7699
7700    --  The Object field is always present. It contains RTS specific data used
7701    --  to control the protected object. It is declared as Aliased so that it
7702    --  can be passed as a pointer to the RTS. This allows the protected record
7703    --  to be referenced within RTS data structures. An appropriate Protection
7704    --  type and discriminant are generated.
7705
7706    --  The Service field is present for protected objects with entries. It
7707    --  contains sufficient information to allow the entry service procedure for
7708    --  this object to be called when the object is not known till runtime.
7709
7710    --  One entry_family component is present for each entry family in the
7711    --  task definition (see Expand_N_Task_Type_Declaration).
7712
7713    --  When a protected object is declared, an instance of the protected type
7714    --  value record is created. The elaboration of this declaration creates the
7715    --  correct bounds for the entry families, and also evaluates the priority
7716    --  expression if needed. The initialization routine for the protected type
7717    --  itself then calls Initialize_Protection with appropriate parameters to
7718    --  initialize the value of the Task_Id field. Install_Handlers may be also
7719    --  called if a pragma Attach_Handler applies.
7720
7721    --  Note: this record is passed to the subprograms created by the expansion
7722    --  of protected subprograms and entries. It is an in parameter to protected
7723    --  functions and an in out parameter to procedures and entry bodies. The
7724    --  Entity_Id for this created record type is placed in the
7725    --  Corresponding_Record_Type field of the associated protected type entity.
7726
7727    --  Next we create a procedure specifications for protected subprograms and
7728    --  entry bodies. For each protected subprograms two subprograms are
7729    --  created, an unprotected and a protected version. The unprotected version
7730    --  is called from within other operations of the same protected object.
7731
7732    --  We also build the call to register the procedure if a pragma
7733    --  Interrupt_Handler applies.
7734
7735    --  A single subprogram is created to service all entry bodies; it has an
7736    --  additional boolean out parameter indicating that the previous entry call
7737    --  made by the current task was serviced immediately, i.e. not by proxy.
7738    --  The O parameter contains a pointer to a record object of the type
7739    --  described above. An untyped interface is used here to allow this
7740    --  procedure to be called in places where the type of the object to be
7741    --  serviced is not known. This must be done, for example, when a call that
7742    --  may have been requeued is cancelled; the corresponding object must be
7743    --  serviced, but which object that is not known till runtime.
7744
7745    --  procedure ptypeS
7746    --    (O : System.Address; P : out Boolean);
7747    --  procedure pprocN (_object : in out poV);
7748    --  procedure pproc (_object : in out poV);
7749    --  function pfuncN (_object : poV);
7750    --  function pfunc (_object : poV);
7751    --  ...
7752
7753    --  Note that this must come after the record type declaration, since
7754    --  the specs refer to this type.
7755
7756    procedure Expand_N_Protected_Type_Declaration (N : Node_Id) is
7757       Loc      : constant Source_Ptr := Sloc (N);
7758       Prot_Typ : constant Entity_Id  := Defining_Identifier (N);
7759
7760       Pdef : constant Node_Id := Protected_Definition (N);
7761       --  This contains two lists; one for visible and one for private decls
7762
7763       Rec_Decl     : Node_Id;
7764       Cdecls       : List_Id;
7765       Discr_Map    : constant Elist_Id := New_Elmt_List;
7766       Priv         : Node_Id;
7767       New_Priv     : Node_Id;
7768       Comp         : Node_Id;
7769       Comp_Id      : Entity_Id;
7770       Sub          : Node_Id;
7771       Current_Node : Node_Id := N;
7772       Bdef         : Entity_Id := Empty; -- avoid uninit warning
7773       Edef         : Entity_Id := Empty; -- avoid uninit warning
7774       Entries_Aggr : Node_Id;
7775       Body_Id      : Entity_Id;
7776       Body_Arr     : Node_Id;
7777       E_Count      : Int;
7778       Object_Comp  : Node_Id;
7779
7780       procedure Check_Inlining (Subp : Entity_Id);
7781       --  If the original operation has a pragma Inline, propagate the flag
7782       --  to the internal body, for possible inlining later on. The source
7783       --  operation is invisible to the back-end and is never actually called.
7784
7785       function Static_Component_Size (Comp : Entity_Id) return Boolean;
7786       --  When compiling under the Ravenscar profile, private components must
7787       --  have a static size, or else a protected object  will require heap
7788       --  allocation, violating the corresponding restriction. It is preferable
7789       --  to make this check here, because it provides a better error message
7790       --  than the back-end, which refers to the object as a whole.
7791
7792       procedure Register_Handler;
7793       --  For a protected operation that is an interrupt handler, add the
7794       --  freeze action that will register it as such.
7795
7796       --------------------
7797       -- Check_Inlining --
7798       --------------------
7799
7800       procedure Check_Inlining (Subp : Entity_Id) is
7801       begin
7802          if Is_Inlined (Subp) then
7803             Set_Is_Inlined (Protected_Body_Subprogram (Subp));
7804             Set_Is_Inlined (Subp, False);
7805          end if;
7806       end Check_Inlining;
7807
7808       ---------------------------------
7809       -- Check_Static_Component_Size --
7810       ---------------------------------
7811
7812       function Static_Component_Size (Comp : Entity_Id) return Boolean is
7813          Typ : constant Entity_Id := Etype (Comp);
7814          C   : Entity_Id;
7815
7816       begin
7817          if Is_Scalar_Type (Typ) then
7818             return True;
7819
7820          elsif Is_Array_Type (Typ) then
7821             return Compile_Time_Known_Bounds (Typ);
7822
7823          elsif Is_Record_Type (Typ) then
7824             C := First_Component (Typ);
7825             while Present (C) loop
7826                if not Static_Component_Size (C) then
7827                   return False;
7828                end if;
7829
7830                Next_Component (C);
7831             end loop;
7832
7833             return True;
7834
7835          --  Any other types will be checked by the back-end
7836
7837          else
7838             return True;
7839          end if;
7840       end Static_Component_Size;
7841
7842       ----------------------
7843       -- Register_Handler --
7844       ----------------------
7845
7846       procedure Register_Handler is
7847
7848          --  All semantic checks already done in Sem_Prag
7849
7850          Prot_Proc    : constant Entity_Id :=
7851                        Defining_Unit_Name
7852                          (Specification (Current_Node));
7853
7854          Proc_Address : constant Node_Id :=
7855                           Make_Attribute_Reference (Loc,
7856                           Prefix => New_Reference_To (Prot_Proc, Loc),
7857                           Attribute_Name => Name_Address);
7858
7859          RTS_Call     : constant Entity_Id :=
7860                           Make_Procedure_Call_Statement (Loc,
7861                             Name =>
7862                               New_Reference_To (
7863                                 RTE (RE_Register_Interrupt_Handler), Loc),
7864                             Parameter_Associations =>
7865                               New_List (Proc_Address));
7866       begin
7867          Append_Freeze_Action (Prot_Proc, RTS_Call);
7868       end Register_Handler;
7869
7870    --  Start of processing for Expand_N_Protected_Type_Declaration
7871
7872    begin
7873       if Present (Corresponding_Record_Type (Prot_Typ)) then
7874          return;
7875       else
7876          Rec_Decl := Build_Corresponding_Record (N, Prot_Typ, Loc);
7877       end if;
7878
7879       Cdecls := Component_Items (Component_List (Type_Definition (Rec_Decl)));
7880
7881       Qualify_Entity_Names (N);
7882
7883       --  If the type has discriminants, their occurrences in the declaration
7884       --  have been replaced by the corresponding discriminals. For components
7885       --  that are constrained by discriminants, their homologues in the
7886       --  corresponding record type must refer to the discriminants of that
7887       --  record, so we must apply a new renaming to subtypes_indications:
7888
7889       --     protected discriminant => discriminal => record discriminant
7890
7891       --  This replacement is not applied to default expressions, for which
7892       --  the discriminal is correct.
7893
7894       if Has_Discriminants (Prot_Typ) then
7895          declare
7896             Disc : Entity_Id;
7897             Decl : Node_Id;
7898
7899          begin
7900             Disc := First_Discriminant (Prot_Typ);
7901             Decl := First (Discriminant_Specifications (Rec_Decl));
7902             while Present (Disc) loop
7903                Append_Elmt (Discriminal (Disc), Discr_Map);
7904                Append_Elmt (Defining_Identifier (Decl), Discr_Map);
7905                Next_Discriminant (Disc);
7906                Next (Decl);
7907             end loop;
7908          end;
7909       end if;
7910
7911       --  Fill in the component declarations
7912
7913       --  Add components for entry families. For each entry family, create an
7914       --  anonymous type declaration with the same size, and analyze the type.
7915
7916       Collect_Entry_Families (Loc, Cdecls, Current_Node, Prot_Typ);
7917
7918       --  Prepend the _Object field with the right type to the component list.
7919       --  We need to compute the number of entries, and in some cases the
7920       --  number of Attach_Handler pragmas.
7921
7922       declare
7923          Ritem              : Node_Id;
7924          Num_Attach_Handler : Int := 0;
7925          Protection_Subtype : Node_Id;
7926          Entry_Count_Expr   : constant Node_Id :=
7927                                 Build_Entry_Count_Expression
7928                                   (Prot_Typ, Cdecls, Loc);
7929
7930       begin
7931          --  Could this be simplified using Corresponding_Runtime_Package???
7932
7933          if Has_Attach_Handler (Prot_Typ) then
7934             Ritem := First_Rep_Item (Prot_Typ);
7935             while Present (Ritem) loop
7936                if Nkind (Ritem) = N_Pragma
7937                  and then Pragma_Name (Ritem) = Name_Attach_Handler
7938                then
7939                   Num_Attach_Handler := Num_Attach_Handler + 1;
7940                end if;
7941
7942                Next_Rep_Item (Ritem);
7943             end loop;
7944
7945             if Restricted_Profile then
7946                if Has_Entries (Prot_Typ) then
7947                   Protection_Subtype :=
7948                     New_Reference_To (RTE (RE_Protection_Entry), Loc);
7949                else
7950                   Protection_Subtype :=
7951                     New_Reference_To (RTE (RE_Protection), Loc);
7952                end if;
7953             else
7954                Protection_Subtype :=
7955                  Make_Subtype_Indication
7956                    (Sloc => Loc,
7957                     Subtype_Mark =>
7958                       New_Reference_To
7959                         (RTE (RE_Static_Interrupt_Protection), Loc),
7960                     Constraint =>
7961                       Make_Index_Or_Discriminant_Constraint (
7962                         Sloc => Loc,
7963                         Constraints => New_List (
7964                           Entry_Count_Expr,
7965                           Make_Integer_Literal (Loc, Num_Attach_Handler))));
7966             end if;
7967
7968          elsif Has_Interrupt_Handler (Prot_Typ) then
7969             Protection_Subtype :=
7970                Make_Subtype_Indication (
7971                  Sloc => Loc,
7972                  Subtype_Mark => New_Reference_To
7973                    (RTE (RE_Dynamic_Interrupt_Protection), Loc),
7974                  Constraint =>
7975                    Make_Index_Or_Discriminant_Constraint (
7976                      Sloc => Loc,
7977                      Constraints => New_List (Entry_Count_Expr)));
7978
7979          --  Type has explicit entries or generated primitive entry wrappers
7980
7981          elsif Has_Entries (Prot_Typ)
7982            or else (Ada_Version >= Ada_2005
7983                       and then Present (Interface_List (N)))
7984          then
7985             case Corresponding_Runtime_Package (Prot_Typ) is
7986                when System_Tasking_Protected_Objects_Entries =>
7987                   Protection_Subtype :=
7988                      Make_Subtype_Indication (Loc,
7989                        Subtype_Mark =>
7990                          New_Reference_To (RTE (RE_Protection_Entries), Loc),
7991                        Constraint =>
7992                          Make_Index_Or_Discriminant_Constraint (
7993                            Sloc => Loc,
7994                            Constraints => New_List (Entry_Count_Expr)));
7995
7996                when System_Tasking_Protected_Objects_Single_Entry =>
7997                   Protection_Subtype :=
7998                     New_Reference_To (RTE (RE_Protection_Entry), Loc);
7999
8000                when others =>
8001                   raise Program_Error;
8002             end case;
8003
8004          else
8005             Protection_Subtype := New_Reference_To (RTE (RE_Protection), Loc);
8006          end if;
8007
8008          Object_Comp :=
8009            Make_Component_Declaration (Loc,
8010              Defining_Identifier =>
8011                Make_Defining_Identifier (Loc, Name_uObject),
8012              Component_Definition =>
8013                Make_Component_Definition (Loc,
8014                  Aliased_Present    => True,
8015                  Subtype_Indication => Protection_Subtype));
8016       end;
8017
8018       pragma Assert (Present (Pdef));
8019
8020       --  Add private field components
8021
8022       if Present (Private_Declarations (Pdef)) then
8023          Priv := First (Private_Declarations (Pdef));
8024
8025          while Present (Priv) loop
8026
8027             if Nkind (Priv) = N_Component_Declaration then
8028                if not Static_Component_Size (Defining_Identifier (Priv)) then
8029
8030                   --  When compiling for a restricted profile, the private
8031                   --  components must have a static size. If not, this is an
8032                   --  error for a single protected declaration, and rates a
8033                   --  warning on a protected type declaration.
8034
8035                   if not Comes_From_Source (Prot_Typ) then
8036                      Check_Restriction (No_Implicit_Heap_Allocations, Priv);
8037
8038                   elsif Restriction_Active (No_Implicit_Heap_Allocations) then
8039                      Error_Msg_N ("component has non-static size?", Priv);
8040                      Error_Msg_NE
8041                        ("\creation of protected object of type& will violate"
8042                         & " restriction No_Implicit_Heap_Allocations?",
8043                         Priv, Prot_Typ);
8044                   end if;
8045                end if;
8046
8047                --  The component definition consists of a subtype indication,
8048                --  or (in Ada 2005) an access definition. Make a copy of the
8049                --  proper definition.
8050
8051                declare
8052                   Old_Comp : constant Node_Id   := Component_Definition (Priv);
8053                   Oent     : constant Entity_Id := Defining_Identifier (Priv);
8054                   New_Comp : Node_Id;
8055                   Nent     : constant Entity_Id :=
8056                                Make_Defining_Identifier (Sloc (Oent),
8057                                  Chars => Chars (Oent));
8058
8059                begin
8060                   if Present (Subtype_Indication (Old_Comp)) then
8061                      New_Comp :=
8062                        Make_Component_Definition (Sloc (Oent),
8063                          Aliased_Present    => False,
8064                          Subtype_Indication =>
8065                            New_Copy_Tree (Subtype_Indication (Old_Comp),
8066                                            Discr_Map));
8067                   else
8068                      New_Comp :=
8069                        Make_Component_Definition (Sloc (Oent),
8070                          Aliased_Present    => False,
8071                          Access_Definition  =>
8072                            New_Copy_Tree (Access_Definition (Old_Comp),
8073                                            Discr_Map));
8074                   end if;
8075
8076                   New_Priv :=
8077                     Make_Component_Declaration (Loc,
8078                       Defining_Identifier  => Nent,
8079                       Component_Definition => New_Comp,
8080                       Expression           => Expression (Priv));
8081
8082                   Set_Has_Per_Object_Constraint (Nent,
8083                     Has_Per_Object_Constraint (Oent));
8084
8085                   Append_To (Cdecls, New_Priv);
8086                end;
8087
8088             elsif Nkind (Priv) = N_Subprogram_Declaration then
8089
8090                --  Make the unprotected version of the subprogram available
8091                --  for expansion of intra object calls. There is need for
8092                --  a protected version only if the subprogram is an interrupt
8093                --  handler, otherwise  this operation can only be called from
8094                --  within the body.
8095
8096                Sub :=
8097                  Make_Subprogram_Declaration (Loc,
8098                    Specification =>
8099                      Build_Protected_Sub_Specification
8100                        (Priv, Prot_Typ, Unprotected_Mode));
8101
8102                Insert_After (Current_Node, Sub);
8103                Analyze (Sub);
8104
8105                Set_Protected_Body_Subprogram
8106                  (Defining_Unit_Name (Specification (Priv)),
8107                   Defining_Unit_Name (Specification (Sub)));
8108                Check_Inlining (Defining_Unit_Name (Specification (Priv)));
8109                Current_Node := Sub;
8110
8111                Sub :=
8112                  Make_Subprogram_Declaration (Loc,
8113                    Specification =>
8114                      Build_Protected_Sub_Specification
8115                        (Priv, Prot_Typ, Protected_Mode));
8116
8117                Insert_After (Current_Node, Sub);
8118                Analyze (Sub);
8119                Current_Node := Sub;
8120
8121                if Is_Interrupt_Handler
8122                  (Defining_Unit_Name (Specification (Priv)))
8123                then
8124                   if not Restricted_Profile then
8125                      Register_Handler;
8126                   end if;
8127                end if;
8128             end if;
8129
8130             Next (Priv);
8131          end loop;
8132       end if;
8133
8134       --  Put the _Object component after the private component so that it
8135       --  be finalized early as required by 9.4 (20)
8136
8137       Append_To (Cdecls, Object_Comp);
8138
8139       Insert_After (Current_Node, Rec_Decl);
8140       Current_Node := Rec_Decl;
8141
8142       --  Analyze the record declaration immediately after construction,
8143       --  because the initialization procedure is needed for single object
8144       --  declarations before the next entity is analyzed (the freeze call
8145       --  that generates this initialization procedure is found below).
8146
8147       Analyze (Rec_Decl, Suppress => All_Checks);
8148
8149       --  Ada 2005 (AI-345): Construct the primitive entry wrappers before
8150       --  the corresponding record is frozen. If any wrappers are generated,
8151       --  Current_Node is updated accordingly.
8152
8153       if Ada_Version >= Ada_2005 then
8154          Build_Wrapper_Specs (Loc, Prot_Typ, Current_Node);
8155       end if;
8156
8157       --  Collect pointers to entry bodies and their barriers, to be placed
8158       --  in the Entry_Bodies_Array for the type. For each entry/family we
8159       --  add an expression to the aggregate which is the initial value of
8160       --  this array. The array is declared after all protected subprograms.
8161
8162       if Has_Entries (Prot_Typ) then
8163          Entries_Aggr := Make_Aggregate (Loc, Expressions => New_List);
8164       else
8165          Entries_Aggr := Empty;
8166       end if;
8167
8168       --  Build two new procedure specifications for each protected subprogram;
8169       --  one to call from outside the object and one to call from inside.
8170       --  Build a barrier function and an entry body action procedure
8171       --  specification for each protected entry. Initialize the entry body
8172       --  array. If subprogram is flagged as eliminated, do not generate any
8173       --  internal operations.
8174
8175       E_Count := 0;
8176
8177       Comp := First (Visible_Declarations (Pdef));
8178
8179       while Present (Comp) loop
8180          if Nkind (Comp) = N_Subprogram_Declaration then
8181             Sub :=
8182               Make_Subprogram_Declaration (Loc,
8183                 Specification =>
8184                   Build_Protected_Sub_Specification
8185                     (Comp, Prot_Typ, Unprotected_Mode));
8186
8187             Insert_After (Current_Node, Sub);
8188             Analyze (Sub);
8189
8190             Set_Protected_Body_Subprogram
8191               (Defining_Unit_Name (Specification (Comp)),
8192                Defining_Unit_Name (Specification (Sub)));
8193             Check_Inlining (Defining_Unit_Name (Specification (Comp)));
8194
8195             --  Make the protected version of the subprogram available for
8196             --  expansion of external calls.
8197
8198             Current_Node := Sub;
8199
8200             Sub :=
8201               Make_Subprogram_Declaration (Loc,
8202                 Specification =>
8203                   Build_Protected_Sub_Specification
8204                     (Comp, Prot_Typ, Protected_Mode));
8205
8206             Insert_After (Current_Node, Sub);
8207             Analyze (Sub);
8208
8209             Current_Node := Sub;
8210
8211             --  Generate an overriding primitive operation specification for
8212             --  this subprogram if the protected type implements an interface.
8213
8214             if Ada_Version >= Ada_2005
8215               and then
8216                 Present (Interfaces (Corresponding_Record_Type (Prot_Typ)))
8217             then
8218                Sub :=
8219                  Make_Subprogram_Declaration (Loc,
8220                    Specification =>
8221                      Build_Protected_Sub_Specification
8222                        (Comp, Prot_Typ, Dispatching_Mode));
8223
8224                Insert_After (Current_Node, Sub);
8225                Analyze (Sub);
8226
8227                Current_Node := Sub;
8228             end if;
8229
8230             --  If a pragma Interrupt_Handler applies, build and add a call to
8231             --  Register_Interrupt_Handler to the freezing actions of the
8232             --  protected version (Current_Node) of the subprogram:
8233
8234             --    system.interrupts.register_interrupt_handler
8235             --       (prot_procP'address);
8236
8237             if not Restricted_Profile
8238               and then Is_Interrupt_Handler
8239                          (Defining_Unit_Name (Specification (Comp)))
8240             then
8241                Register_Handler;
8242             end if;
8243
8244          elsif Nkind (Comp) = N_Entry_Declaration then
8245             E_Count := E_Count + 1;
8246             Comp_Id := Defining_Identifier (Comp);
8247
8248             Edef :=
8249               Make_Defining_Identifier (Loc,
8250                 Build_Selected_Name (Prot_Typ, Comp_Id, 'E'));
8251             Sub :=
8252               Make_Subprogram_Declaration (Loc,
8253                 Specification =>
8254                   Build_Protected_Entry_Specification (Loc, Edef, Comp_Id));
8255
8256             Insert_After (Current_Node, Sub);
8257             Analyze (Sub);
8258
8259             --  build wrapper procedure for pre/postconditions.
8260
8261             Build_PPC_Wrapper (Comp_Id, N);
8262
8263             Set_Protected_Body_Subprogram
8264               (Defining_Identifier (Comp),
8265                Defining_Unit_Name (Specification (Sub)));
8266
8267             Current_Node := Sub;
8268
8269             Bdef :=
8270               Make_Defining_Identifier (Loc,
8271                 Chars => Build_Selected_Name (Prot_Typ, Comp_Id, 'B'));
8272             Sub :=
8273               Make_Subprogram_Declaration (Loc,
8274                 Specification =>
8275                   Build_Barrier_Function_Specification (Loc, Bdef));
8276
8277             Insert_After (Current_Node, Sub);
8278             Analyze (Sub);
8279             Set_Protected_Body_Subprogram (Bdef, Bdef);
8280             Set_Barrier_Function (Comp_Id, Bdef);
8281             Set_Scope (Bdef, Scope (Comp_Id));
8282             Current_Node := Sub;
8283
8284             --  Collect pointers to the protected subprogram and the barrier
8285             --  of the current entry, for insertion into Entry_Bodies_Array.
8286
8287             Append (
8288               Make_Aggregate (Loc,
8289                 Expressions => New_List (
8290                   Make_Attribute_Reference (Loc,
8291                     Prefix => New_Reference_To (Bdef, Loc),
8292                     Attribute_Name => Name_Unrestricted_Access),
8293                   Make_Attribute_Reference (Loc,
8294                     Prefix => New_Reference_To (Edef, Loc),
8295                     Attribute_Name => Name_Unrestricted_Access))),
8296               Expressions (Entries_Aggr));
8297
8298          end if;
8299
8300          Next (Comp);
8301       end loop;
8302
8303       --  If there are some private entry declarations, expand it as if they
8304       --  were visible entries.
8305
8306       if Present (Private_Declarations (Pdef)) then
8307          Comp := First (Private_Declarations (Pdef));
8308          while Present (Comp) loop
8309             if Nkind (Comp) = N_Entry_Declaration then
8310                E_Count := E_Count + 1;
8311                Comp_Id := Defining_Identifier (Comp);
8312
8313                Edef :=
8314                  Make_Defining_Identifier (Loc,
8315                   Build_Selected_Name (Prot_Typ, Comp_Id, 'E'));
8316                Sub :=
8317                  Make_Subprogram_Declaration (Loc,
8318                    Specification =>
8319                      Build_Protected_Entry_Specification (Loc, Edef, Comp_Id));
8320
8321                Insert_After (Current_Node, Sub);
8322                Analyze (Sub);
8323
8324                Set_Protected_Body_Subprogram
8325                  (Defining_Identifier (Comp),
8326                   Defining_Unit_Name (Specification (Sub)));
8327
8328                Current_Node := Sub;
8329
8330                Bdef :=
8331                  Make_Defining_Identifier (Loc,
8332                    Chars => Build_Selected_Name (Prot_Typ, Comp_Id, 'E'));
8333
8334                Sub :=
8335                  Make_Subprogram_Declaration (Loc,
8336                    Specification =>
8337                      Build_Barrier_Function_Specification (Loc, Bdef));
8338
8339                Insert_After (Current_Node, Sub);
8340                Analyze (Sub);
8341                Set_Protected_Body_Subprogram (Bdef, Bdef);
8342                Set_Barrier_Function (Comp_Id, Bdef);
8343                Set_Scope (Bdef, Scope (Comp_Id));
8344                Current_Node := Sub;
8345
8346                --  Collect pointers to the protected subprogram and the barrier
8347                --  of the current entry, for insertion into Entry_Bodies_Array.
8348
8349                Append_To (Expressions (Entries_Aggr),
8350                  Make_Aggregate (Loc,
8351                    Expressions => New_List (
8352                      Make_Attribute_Reference (Loc,
8353                        Prefix => New_Reference_To (Bdef, Loc),
8354                        Attribute_Name => Name_Unrestricted_Access),
8355                      Make_Attribute_Reference (Loc,
8356                        Prefix => New_Reference_To (Edef, Loc),
8357                        Attribute_Name => Name_Unrestricted_Access))));
8358             end if;
8359
8360             Next (Comp);
8361          end loop;
8362       end if;
8363
8364       --  Emit declaration for Entry_Bodies_Array, now that the addresses of
8365       --  all protected subprograms have been collected.
8366
8367       if Has_Entries (Prot_Typ) then
8368          Body_Id :=
8369            Make_Defining_Identifier (Sloc (Prot_Typ),
8370              Chars => New_External_Name (Chars (Prot_Typ), 'A'));
8371
8372          case Corresponding_Runtime_Package (Prot_Typ) is
8373             when System_Tasking_Protected_Objects_Entries =>
8374                Body_Arr := Make_Object_Declaration (Loc,
8375                  Defining_Identifier => Body_Id,
8376                  Aliased_Present => True,
8377                  Object_Definition =>
8378                    Make_Subtype_Indication (Loc,
8379                      Subtype_Mark => New_Reference_To (
8380                        RTE (RE_Protected_Entry_Body_Array), Loc),
8381                      Constraint =>
8382                        Make_Index_Or_Discriminant_Constraint (Loc,
8383                          Constraints => New_List (
8384                             Make_Range (Loc,
8385                               Make_Integer_Literal (Loc, 1),
8386                               Make_Integer_Literal (Loc, E_Count))))),
8387                  Expression => Entries_Aggr);
8388
8389             when System_Tasking_Protected_Objects_Single_Entry =>
8390                Body_Arr := Make_Object_Declaration (Loc,
8391                  Defining_Identifier => Body_Id,
8392                  Aliased_Present => True,
8393                  Object_Definition => New_Reference_To
8394                                         (RTE (RE_Entry_Body), Loc),
8395                  Expression =>
8396                    Make_Aggregate (Loc,
8397                      Expressions => New_List (
8398                        Make_Attribute_Reference (Loc,
8399                          Prefix => New_Reference_To (Bdef, Loc),
8400                          Attribute_Name => Name_Unrestricted_Access),
8401                        Make_Attribute_Reference (Loc,
8402                          Prefix => New_Reference_To (Edef, Loc),
8403                          Attribute_Name => Name_Unrestricted_Access))));
8404
8405             when others =>
8406                raise Program_Error;
8407          end case;
8408
8409          --  A pointer to this array will be placed in the corresponding record
8410          --  by its initialization procedure so this needs to be analyzed here.
8411
8412          Insert_After (Current_Node, Body_Arr);
8413          Current_Node := Body_Arr;
8414          Analyze (Body_Arr);
8415
8416          Set_Entry_Bodies_Array (Prot_Typ, Body_Id);
8417
8418          --  Finally, build the function that maps an entry index into the
8419          --  corresponding body. A pointer to this function is placed in each
8420          --  object of the type. Except for a ravenscar-like profile (no abort,
8421          --  no entry queue, 1 entry)
8422
8423          if Corresponding_Runtime_Package (Prot_Typ) =
8424               System_Tasking_Protected_Objects_Entries
8425          then
8426             Sub :=
8427               Make_Subprogram_Declaration (Loc,
8428                 Specification => Build_Find_Body_Index_Spec (Prot_Typ));
8429             Insert_After (Current_Node, Sub);
8430             Analyze (Sub);
8431          end if;
8432       end if;
8433    end Expand_N_Protected_Type_Declaration;
8434
8435    --------------------------------
8436    -- Expand_N_Requeue_Statement --
8437    --------------------------------
8438
8439    --  A non-dispatching requeue statement is expanded into one of four GNARLI
8440    --  operations, depending on the source and destination (task or protected
8441    --  object). A dispatching requeue statement is expanded into a call to the
8442    --  predefined primitive _Disp_Requeue. In addition, code is generated to
8443    --  jump around the remainder of processing for the original entry and, if
8444    --  the destination is (different) protected object, to attempt to service
8445    --  it. The following illustrates the various cases:
8446
8447    --  procedure entE
8448    --    (O : System.Address;
8449    --     P : System.Address;
8450    --     E : Protected_Entry_Index)
8451    --  is
8452    --     <discriminant renamings>
8453    --     <private object renamings>
8454    --     type poVP is access poV;
8455    --     _object : ptVP := ptVP!(O);
8456
8457    --  begin
8458    --     begin
8459    --        <start of statement sequence for entry>
8460
8461    --        -- Requeue from one protected entry body to another protected
8462    --        -- entry.
8463
8464    --        Requeue_Protected_Entry (
8465    --          _object._object'Access,
8466    --          new._object'Access,
8467    --          E,
8468    --          Abort_Present);
8469    --        return;
8470
8471    --        <some more of the statement sequence for entry>
8472
8473    --        --  Requeue from an entry body to a task entry
8474
8475    --        Requeue_Protected_To_Task_Entry (
8476    --          New._task_id,
8477    --          E,
8478    --          Abort_Present);
8479    --        return;
8480
8481    --        <rest of statement sequence for entry>
8482    --        Complete_Entry_Body (_object._object);
8483
8484    --     exception
8485    --        when all others =>
8486    --           Exceptional_Complete_Entry_Body (
8487    --             _object._object, Get_GNAT_Exception);
8488    --     end;
8489    --  end entE;
8490
8491    --  Requeue of a task entry call to a task entry
8492
8493    --  Accept_Call (E, Ann);
8494    --     <start of statement sequence for accept statement>
8495    --     Requeue_Task_Entry (New._task_id, E, Abort_Present);
8496    --     goto Lnn;
8497    --     <rest of statement sequence for accept statement>
8498    --     <<Lnn>>
8499    --     Complete_Rendezvous;
8500
8501    --  exception
8502    --     when all others =>
8503    --        Exceptional_Complete_Rendezvous (Get_GNAT_Exception);
8504
8505    --  Requeue of a task entry call to a protected entry
8506
8507    --  Accept_Call (E, Ann);
8508    --     <start of statement sequence for accept statement>
8509    --     Requeue_Task_To_Protected_Entry (
8510    --       new._object'Access,
8511    --       E,
8512    --       Abort_Present);
8513    --     newS (new, Pnn);
8514    --     goto Lnn;
8515    --     <rest of statement sequence for accept statement>
8516    --     <<Lnn>>
8517    --     Complete_Rendezvous;
8518
8519    --  exception
8520    --     when all others =>
8521    --        Exceptional_Complete_Rendezvous (Get_GNAT_Exception);
8522
8523    --  Ada 2012 (AI05-0030): Dispatching requeue to an interface primitive
8524    --  marked by pragma Implemented (XXX, By_Entry).
8525
8526    --  The requeue is inside a protected entry:
8527
8528    --  procedure entE
8529    --    (O : System.Address;
8530    --     P : System.Address;
8531    --     E : Protected_Entry_Index)
8532    --  is
8533    --     <discriminant renamings>
8534    --     <private object renamings>
8535    --     type poVP is access poV;
8536    --     _object : ptVP := ptVP!(O);
8537
8538    --  begin
8539    --     begin
8540    --        <start of statement sequence for entry>
8541
8542    --        _Disp_Requeue
8543    --          (<interface class-wide object>,
8544    --           True,
8545    --           _object'Address,
8546    --           Ada.Tags.Get_Offset_Index
8547    --             (Tag (_object),
8548    --              <interface dispatch table index of target entry>),
8549    --           Abort_Present);
8550    --        return;
8551
8552    --        <rest of statement sequence for entry>
8553    --        Complete_Entry_Body (_object._object);
8554
8555    --     exception
8556    --        when all others =>
8557    --           Exceptional_Complete_Entry_Body (
8558    --             _object._object, Get_GNAT_Exception);
8559    --     end;
8560    --  end entE;
8561
8562    --  The requeue is inside a task entry:
8563
8564    --    Accept_Call (E, Ann);
8565    --     <start of statement sequence for accept statement>
8566    --     _Disp_Requeue
8567    --       (<interface class-wide object>,
8568    --        False,
8569    --        null,
8570    --        Ada.Tags.Get_Offset_Index
8571    --          (Tag (_object),
8572    --           <interface dispatch table index of target entrt>),
8573    --        Abort_Present);
8574    --     newS (new, Pnn);
8575    --     goto Lnn;
8576    --     <rest of statement sequence for accept statement>
8577    --     <<Lnn>>
8578    --     Complete_Rendezvous;
8579
8580    --  exception
8581    --     when all others =>
8582    --        Exceptional_Complete_Rendezvous (Get_GNAT_Exception);
8583
8584    --  Ada 2012 (AI05-0030): Dispatching requeue to an interface primitive
8585    --  marked by pragma Implemented (XXX, By_Protected_Procedure). The requeue
8586    --  statement is replaced by a dispatching call with actual parameters taken
8587    --  from the inner-most accept statement or entry body.
8588
8589    --    Target.Primitive (Param1, ..., ParamN);
8590
8591    --  Ada 2012 (AI05-0030): Dispatching requeue to an interface primitive
8592    --  marked by pragma Implemented (XXX, By_Any) or not marked at all.
8593
8594    --    declare
8595    --       S : constant Offset_Index :=
8596    --             Get_Offset_Index (Tag (Concval), DT_Position (Ename));
8597    --       C : constant Prim_Op_Kind := Get_Prim_Op_Kind (Tag (Concval), S);
8598
8599    --    begin
8600    --       if C = POK_Protected_Entry
8601    --         or else C = POK_Task_Entry
8602    --       then
8603    --          <statements for dispatching requeue>
8604
8605    --       elsif C = POK_Protected_Procedure then
8606    --          <dispatching call equivalent>
8607
8608    --       else
8609    --          raise Program_Error;
8610    --       end if;
8611    --    end;
8612
8613    procedure Expand_N_Requeue_Statement (N : Node_Id) is
8614       Loc      : constant Source_Ptr := Sloc (N);
8615       Conc_Typ : Entity_Id;
8616       Concval  : Node_Id;
8617       Ename    : Node_Id;
8618       Index    : Node_Id;
8619       Old_Typ  : Entity_Id;
8620
8621       function Build_Dispatching_Call_Equivalent return Node_Id;
8622       --  Ada 2012 (AI05-0030): N denotes a dispatching requeue statement of
8623       --  the form Concval.Ename. It is statically known that Ename is allowed
8624       --  to be implemented by a protected procedure. Create a dispatching call
8625       --  equivalent of Concval.Ename taking the actual parameters from the
8626       --  inner-most accept statement or entry body.
8627
8628       function Build_Dispatching_Requeue return Node_Id;
8629       --  Ada 2012 (AI05-0030): N denotes a dispatching requeue statement of
8630       --  the form Concval.Ename. It is statically known that Ename is allowed
8631       --  to be implemented by a protected or a task entry. Create a call to
8632       --  primitive _Disp_Requeue which handles the low-level actions.
8633
8634       function Build_Dispatching_Requeue_To_Any return Node_Id;
8635       --  Ada 2012 (AI05-0030): N denotes a dispatching requeue statement of
8636       --  the form Concval.Ename. Ename is either marked by pragma Implemented
8637       --  (XXX, By_Any) or not marked at all. Create a block which determines
8638       --  at runtime whether Ename denotes an entry or a procedure and perform
8639       --  the appropriate kind of dispatching select.
8640
8641       function Build_Normal_Requeue return Node_Id;
8642       --  N denotes a non-dispatching requeue statement to either a task or a
8643       --  protected entry. Build the appropriate runtime call to perform the
8644       --  action.
8645
8646       function Build_Skip_Statement (Search : Node_Id) return Node_Id;
8647       --  For a protected entry, create a return statement to skip the rest of
8648       --  the entry body. Otherwise, create a goto statement to skip the rest
8649       --  of a task accept statement. The lookup for the enclosing entry body
8650       --  or accept statement starts from Search.
8651
8652       ---------------------------------------
8653       -- Build_Dispatching_Call_Equivalent --
8654       ---------------------------------------
8655
8656       function Build_Dispatching_Call_Equivalent return Node_Id is
8657          Call_Ent : constant Entity_Id := Entity (Ename);
8658          Obj      : constant Node_Id   := Original_Node (Concval);
8659          Acc_Ent  : Node_Id;
8660          Actuals  : List_Id;
8661          Formal   : Node_Id;
8662          Formals  : List_Id;
8663
8664       begin
8665          --  Climb the parent chain looking for the inner-most entry body or
8666          --  accept statement.
8667
8668          Acc_Ent := N;
8669          while Present (Acc_Ent)
8670            and then not Nkind_In (Acc_Ent, N_Accept_Statement,
8671                                            N_Entry_Body)
8672          loop
8673             Acc_Ent := Parent (Acc_Ent);
8674          end loop;
8675
8676          --  A requeue statement should be housed inside an entry body or an
8677          --  accept statement at some level. If this is not the case, then the
8678          --  tree is malformed.
8679
8680          pragma Assert (Present (Acc_Ent));
8681
8682          --  Recover the list of formal parameters
8683
8684          if Nkind (Acc_Ent) = N_Entry_Body then
8685             Acc_Ent := Entry_Body_Formal_Part (Acc_Ent);
8686          end if;
8687
8688          Formals := Parameter_Specifications (Acc_Ent);
8689
8690          --  Create the actual parameters for the dispatching call. These are
8691          --  simply copies of the entry body or accept statement formals in the
8692          --  same order as they appear.
8693
8694          Actuals := No_List;
8695
8696          if Present (Formals) then
8697             Actuals := New_List;
8698             Formal  := First (Formals);
8699             while Present (Formal) loop
8700                Append_To (Actuals,
8701                  Make_Identifier (Loc, Chars (Defining_Identifier (Formal))));
8702                Next (Formal);
8703             end loop;
8704          end if;
8705
8706          --  Generate:
8707          --    Obj.Call_Ent (Actuals);
8708
8709          return
8710            Make_Procedure_Call_Statement (Loc,
8711              Name =>
8712                Make_Selected_Component (Loc,
8713                  Prefix        => Make_Identifier (Loc, Chars (Obj)),
8714                  Selector_Name => Make_Identifier (Loc, Chars (Call_Ent))),
8715
8716              Parameter_Associations => Actuals);
8717       end Build_Dispatching_Call_Equivalent;
8718
8719       -------------------------------
8720       -- Build_Dispatching_Requeue --
8721       -------------------------------
8722
8723       function Build_Dispatching_Requeue return Node_Id is
8724          Params : constant List_Id := New_List;
8725
8726       begin
8727          --  Process the "with abort" parameter
8728
8729          Prepend_To (Params,
8730            New_Reference_To (Boolean_Literals (Abort_Present (N)), Loc));
8731
8732          --  Process the entry wrapper's position in the primary dispatch
8733          --  table parameter. Generate:
8734
8735          --    Ada.Tags.Get_Offset_Index
8736          --      (Ada.Tags.Tag (Concval),
8737          --       <interface dispatch table position of Ename>)
8738
8739          if Tagged_Type_Expansion then
8740             Prepend_To (Params,
8741               Make_Function_Call (Loc,
8742                 Name => New_Reference_To (RTE (RE_Get_Offset_Index), Loc),
8743                 Parameter_Associations => New_List (
8744                   Unchecked_Convert_To (RTE (RE_Tag), Concval),
8745                   Make_Integer_Literal (Loc, DT_Position (Entity (Ename))))));
8746
8747          --  VM targets
8748
8749          else
8750             Prepend_To (Params,
8751               Make_Function_Call (Loc,
8752                 Name => New_Reference_To (RTE (RE_Get_Offset_Index), Loc),
8753
8754                 Parameter_Associations => New_List (
8755
8756                   --  Obj_Typ
8757
8758                   Make_Attribute_Reference (Loc,
8759                     Prefix         => Concval,
8760                     Attribute_Name => Name_Tag),
8761
8762                   --  Tag_Typ
8763
8764                   Make_Attribute_Reference (Loc,
8765                     Prefix         => New_Reference_To (Etype (Concval), Loc),
8766                     Attribute_Name => Name_Tag),
8767
8768                   --  Position
8769
8770                   Make_Integer_Literal (Loc, DT_Position (Entity (Ename))))));
8771          end if;
8772
8773          --  Specific actuals for protected to XXX requeue
8774
8775          if Is_Protected_Type (Old_Typ) then
8776             Prepend_To (Params,
8777               Make_Attribute_Reference (Loc,        --  _object'Address
8778                 Prefix =>
8779                   Concurrent_Ref (New_Occurrence_Of (Old_Typ, Loc)),
8780                 Attribute_Name => Name_Address));
8781
8782             Prepend_To (Params,                     --  True
8783               New_Reference_To (Standard_True, Loc));
8784
8785          --  Specific actuals for task to XXX requeue
8786
8787          else
8788             pragma Assert (Is_Task_Type (Old_Typ));
8789
8790             Prepend_To (Params,                     --  null
8791               New_Reference_To (RTE (RE_Null_Address), Loc));
8792
8793             Prepend_To (Params,                     --  False
8794               New_Reference_To (Standard_False, Loc));
8795          end if;
8796
8797          --  Add the object parameter
8798
8799          Prepend_To (Params, New_Copy_Tree (Concval));
8800
8801          --  Generate:
8802          --    _Disp_Requeue (<Params>);
8803
8804          return
8805            Make_Procedure_Call_Statement (Loc,
8806              Name => Make_Identifier (Loc, Name_uDisp_Requeue),
8807              Parameter_Associations => Params);
8808       end Build_Dispatching_Requeue;
8809
8810       --------------------------------------
8811       -- Build_Dispatching_Requeue_To_Any --
8812       --------------------------------------
8813
8814       function Build_Dispatching_Requeue_To_Any return Node_Id is
8815          Call_Ent : constant Entity_Id := Entity (Ename);
8816          Obj      : constant Node_Id   := Original_Node (Concval);
8817          Skip     : constant Node_Id   := Build_Skip_Statement (N);
8818          C        : Entity_Id;
8819          Decls    : List_Id;
8820          S        : Entity_Id;
8821          Stmts    : List_Id;
8822
8823       begin
8824          Decls := New_List;
8825          Stmts := New_List;
8826
8827          --  Dispatch table slot processing, generate:
8828          --    S : Integer;
8829
8830          S := Build_S (Loc, Decls);
8831
8832          --  Call kind processing, generate:
8833          --    C : Ada.Tags.Prim_Op_Kind;
8834
8835          C := Build_C (Loc, Decls);
8836
8837          --  Generate:
8838          --    S := Ada.Tags.Get_Offset_Index
8839          --           (Ada.Tags.Tag (Obj), DT_Position (Call_Ent));
8840
8841          Append_To (Stmts, Build_S_Assignment (Loc, S, Obj, Call_Ent));
8842
8843          --  Generate:
8844          --    _Disp_Get_Prim_Op_Kind (Obj, S, C);
8845
8846          Append_To (Stmts,
8847            Make_Procedure_Call_Statement (Loc,
8848              Name =>
8849                New_Reference_To (
8850                  Find_Prim_Op (Etype (Etype (Obj)),
8851                    Name_uDisp_Get_Prim_Op_Kind),
8852                  Loc),
8853              Parameter_Associations => New_List (
8854                New_Copy_Tree (Obj),
8855                New_Reference_To (S, Loc),
8856                New_Reference_To (C, Loc))));
8857
8858          Append_To (Stmts,
8859
8860             --  if C = POK_Protected_Entry
8861             --    or else C = POK_Task_Entry
8862             --  then
8863
8864            Make_If_Statement (Loc,
8865              Condition =>
8866                Make_Op_Or (Loc,
8867                  Left_Opnd =>
8868                    Make_Op_Eq (Loc,
8869                      Left_Opnd =>
8870                        New_Reference_To (C, Loc),
8871                      Right_Opnd =>
8872                        New_Reference_To (RTE (RE_POK_Protected_Entry), Loc)),
8873
8874                  Right_Opnd =>
8875                    Make_Op_Eq (Loc,
8876                      Left_Opnd =>
8877                        New_Reference_To (C, Loc),
8878                      Right_Opnd =>
8879                        New_Reference_To (RTE (RE_POK_Task_Entry), Loc))),
8880
8881                --  Dispatching requeue equivalent
8882
8883              Then_Statements => New_List (
8884                Build_Dispatching_Requeue,
8885                Skip),
8886
8887                --  elsif C = POK_Protected_Procedure then
8888
8889              Elsif_Parts => New_List (
8890                Make_Elsif_Part (Loc,
8891                  Condition =>
8892                    Make_Op_Eq (Loc,
8893                      Left_Opnd =>
8894                        New_Reference_To (C, Loc),
8895                      Right_Opnd =>
8896                        New_Reference_To (
8897                          RTE (RE_POK_Protected_Procedure), Loc)),
8898
8899                   --  Dispatching call equivalent
8900
8901                  Then_Statements => New_List (
8902                    Build_Dispatching_Call_Equivalent))),
8903
8904             --  else
8905             --     raise Program_Error;
8906             --  end if;
8907
8908              Else_Statements => New_List (
8909                Make_Raise_Program_Error (Loc,
8910                  Reason => PE_Explicit_Raise))));
8911
8912          --  Wrap everything into a block
8913
8914          return
8915            Make_Block_Statement (Loc,
8916              Declarations => Decls,
8917              Handled_Statement_Sequence =>
8918                Make_Handled_Sequence_Of_Statements (Loc,
8919                  Statements => Stmts));
8920       end Build_Dispatching_Requeue_To_Any;
8921
8922       --------------------------
8923       -- Build_Normal_Requeue --
8924       --------------------------
8925
8926       function Build_Normal_Requeue return Node_Id is
8927          Params  : constant List_Id := New_List;
8928          Param   : Node_Id;
8929          RT_Call : Node_Id;
8930
8931       begin
8932          --  Process the "with abort" parameter
8933
8934          Prepend_To (Params,
8935            New_Reference_To (Boolean_Literals (Abort_Present (N)), Loc));
8936
8937          --  Add the index expression to the parameters. It is common among all
8938          --  four cases.
8939
8940          Prepend_To (Params,
8941            Entry_Index_Expression (Loc, Entity (Ename), Index, Conc_Typ));
8942
8943          if Is_Protected_Type (Old_Typ) then
8944             declare
8945                Self_Param : Node_Id;
8946
8947             begin
8948                Self_Param :=
8949                  Make_Attribute_Reference (Loc,
8950                    Prefix =>
8951                      Concurrent_Ref (New_Occurrence_Of (Old_Typ, Loc)),
8952                    Attribute_Name =>
8953                      Name_Unchecked_Access);
8954
8955                --  Protected to protected requeue
8956
8957                if Is_Protected_Type (Conc_Typ) then
8958                   RT_Call :=
8959                     New_Reference_To (
8960                       RTE (RE_Requeue_Protected_Entry), Loc);
8961
8962                   Param :=
8963                     Make_Attribute_Reference (Loc,
8964                       Prefix =>
8965                         Concurrent_Ref (Concval),
8966                       Attribute_Name =>
8967                         Name_Unchecked_Access);
8968
8969                --  Protected to task requeue
8970
8971                else pragma Assert (Is_Task_Type (Conc_Typ));
8972                   RT_Call :=
8973                     New_Reference_To (
8974                       RTE (RE_Requeue_Protected_To_Task_Entry), Loc);
8975
8976                   Param := Concurrent_Ref (Concval);
8977                end if;
8978
8979                Prepend_To (Params, Param);
8980                Prepend_To (Params, Self_Param);
8981             end;
8982
8983          else pragma Assert (Is_Task_Type (Old_Typ));
8984
8985             --  Task to protected requeue
8986
8987             if Is_Protected_Type (Conc_Typ) then
8988                RT_Call :=
8989                  New_Reference_To (
8990                    RTE (RE_Requeue_Task_To_Protected_Entry), Loc);
8991
8992                Param :=
8993                  Make_Attribute_Reference (Loc,
8994                    Prefix =>
8995                      Concurrent_Ref (Concval),
8996                    Attribute_Name =>
8997                      Name_Unchecked_Access);
8998
8999             --  Task to task requeue
9000
9001             else pragma Assert (Is_Task_Type (Conc_Typ));
9002                RT_Call :=
9003                  New_Reference_To (RTE (RE_Requeue_Task_Entry), Loc);
9004
9005                Param := Concurrent_Ref (Concval);
9006             end if;
9007
9008             Prepend_To (Params, Param);
9009          end if;
9010
9011          return
9012             Make_Procedure_Call_Statement (Loc,
9013               Name => RT_Call,
9014               Parameter_Associations => Params);
9015       end Build_Normal_Requeue;
9016
9017       --------------------------
9018       -- Build_Skip_Statement --
9019       --------------------------
9020
9021       function Build_Skip_Statement (Search : Node_Id) return Node_Id is
9022          Skip_Stmt : Node_Id;
9023
9024       begin
9025          --  Build a return statement to skip the rest of the entire body
9026
9027          if Is_Protected_Type (Old_Typ) then
9028             Skip_Stmt := Make_Simple_Return_Statement (Loc);
9029
9030          --  If the requeue is within a task, find the end label of the
9031          --  enclosing accept statement and create a goto statement to it.
9032
9033          else
9034             declare
9035                Acc   : Node_Id;
9036                Label : Node_Id;
9037
9038             begin
9039                --  Climb the parent chain looking for the enclosing accept
9040                --  statement.
9041
9042                Acc := Parent (Search);
9043                while Present (Acc)
9044                  and then Nkind (Acc) /= N_Accept_Statement
9045                loop
9046                   Acc := Parent (Acc);
9047                end loop;
9048
9049                --  The last statement is the second label used for completing
9050                --  the rendezvous the usual way. The label we are looking for
9051                --  is right before it.
9052
9053                Label :=
9054                  Prev (Last (Statements (Handled_Statement_Sequence (Acc))));
9055
9056                pragma Assert (Nkind (Label) = N_Label);
9057
9058                --  Generate a goto statement to skip the rest of the accept
9059
9060                Skip_Stmt :=
9061                  Make_Goto_Statement (Loc,
9062                    Name =>
9063                      New_Occurrence_Of (Entity (Identifier (Label)), Loc));
9064             end;
9065          end if;
9066
9067          Set_Analyzed (Skip_Stmt);
9068
9069          return Skip_Stmt;
9070       end Build_Skip_Statement;
9071
9072    --  Start of processing for Expand_N_Requeue_Statement
9073
9074    begin
9075       --  Extract the components of the entry call
9076
9077       Extract_Entry (N, Concval, Ename, Index);
9078       Conc_Typ := Etype (Concval);
9079
9080       --  Examine the scope stack in order to find nearest enclosing protected
9081       --  or task type. This will constitute our invocation source.
9082
9083       Old_Typ := Current_Scope;
9084       while Present (Old_Typ)
9085         and then not Is_Protected_Type (Old_Typ)
9086         and then not Is_Task_Type (Old_Typ)
9087       loop
9088          Old_Typ := Scope (Old_Typ);
9089       end loop;
9090
9091       --  Ada 2012 (AI05-0030): We have a dispatching requeue of the form
9092       --  Concval.Ename where the type of Concval is class-wide concurrent
9093       --  interface.
9094
9095       if Ada_Version >= Ada_2012
9096         and then Present (Concval)
9097         and then Is_Class_Wide_Type (Conc_Typ)
9098         and then Is_Concurrent_Interface (Conc_Typ)
9099       then
9100          declare
9101             Has_Impl  : Boolean := False;
9102             Impl_Kind : Name_Id := No_Name;
9103
9104          begin
9105             --  Check whether the Ename is flagged by pragma Implemented
9106
9107             if Has_Rep_Pragma (Entity (Ename), Name_Implemented) then
9108                Has_Impl  := True;
9109                Impl_Kind := Implementation_Kind (Entity (Ename));
9110             end if;
9111
9112             --  The procedure_or_entry_NAME is guaranteed to be overridden by
9113             --  an entry. Create a call to predefined primitive _Disp_Requeue.
9114
9115             if Has_Impl
9116               and then Impl_Kind = Name_By_Entry
9117             then
9118                Rewrite (N, Build_Dispatching_Requeue);
9119                Analyze (N);
9120                Insert_After (N, Build_Skip_Statement (N));
9121
9122             --  The procedure_or_entry_NAME is guaranteed to be overridden by
9123             --  a protected procedure. In this case the requeue is transformed
9124             --  into a dispatching call.
9125
9126             elsif Has_Impl
9127               and then Impl_Kind = Name_By_Protected_Procedure
9128             then
9129                Rewrite (N, Build_Dispatching_Call_Equivalent);
9130                Analyze (N);
9131
9132             --  The procedure_or_entry_NAME's implementation kind is either
9133             --  By_Any or pragma Implemented was not applied at all. In this
9134             --  case a runtime test determines whether Ename denotes an entry
9135             --  or a protected procedure and performs the appropriate call.
9136
9137             else
9138                Rewrite (N, Build_Dispatching_Requeue_To_Any);
9139                Analyze (N);
9140             end if;
9141          end;
9142
9143       --  Processing for regular (non-dispatching) requeues
9144
9145       else
9146          Rewrite (N, Build_Normal_Requeue);
9147          Analyze (N);
9148          Insert_After (N, Build_Skip_Statement (N));
9149       end if;
9150    end Expand_N_Requeue_Statement;
9151
9152    -------------------------------
9153    -- Expand_N_Selective_Accept --
9154    -------------------------------
9155
9156    procedure Expand_N_Selective_Accept (N : Node_Id) is
9157       Loc            : constant Source_Ptr := Sloc (N);
9158       Alts           : constant List_Id    := Select_Alternatives (N);
9159
9160       --  Note: in the below declarations a lot of new lists are allocated
9161       --  unconditionally which may well not end up being used. That's
9162       --  not a good idea since it wastes space gratuitously ???
9163
9164       Accept_Case    : List_Id;
9165       Accept_List    : constant List_Id := New_List;
9166
9167       Alt            : Node_Id;
9168       Alt_List       : constant List_Id := New_List;
9169       Alt_Stats      : List_Id;
9170       Ann            : Entity_Id := Empty;
9171
9172       Block          : Node_Id;
9173       Check_Guard    : Boolean := True;
9174
9175       Decls          : constant List_Id := New_List;
9176       Stats          : constant List_Id := New_List;
9177       Body_List      : constant List_Id := New_List;
9178       Trailing_List  : constant List_Id := New_List;
9179
9180       Choices        : List_Id;
9181       Else_Present   : Boolean := False;
9182       Terminate_Alt  : Node_Id := Empty;
9183       Select_Mode    : Node_Id;
9184
9185       Delay_Case     : List_Id;
9186       Delay_Count    : Integer := 0;
9187       Delay_Val      : Entity_Id;
9188       Delay_Index    : Entity_Id;
9189       Delay_Min      : Entity_Id;
9190       Delay_Num      : Int := 1;
9191       Delay_Alt_List : List_Id := New_List;
9192       Delay_List     : constant List_Id := New_List;
9193       D              : Entity_Id;
9194       M              : Entity_Id;
9195
9196       First_Delay    : Boolean := True;
9197       Guard_Open     : Entity_Id;
9198
9199       End_Lab        : Node_Id;
9200       Index          : Int := 1;
9201       Lab            : Node_Id;
9202       Num_Alts       : Int;
9203       Num_Accept     : Nat := 0;
9204       Proc           : Node_Id;
9205       Q              : Node_Id;
9206       Time_Type      : Entity_Id;
9207       X              : Node_Id;
9208       Select_Call    : Node_Id;
9209
9210       Qnam : constant Entity_Id :=
9211                Make_Defining_Identifier (Loc, New_External_Name ('S', 0));
9212
9213       Xnam : constant Entity_Id :=
9214                Make_Defining_Identifier (Loc, New_External_Name ('J', 1));
9215
9216       -----------------------
9217       -- Local subprograms --
9218       -----------------------
9219
9220       function Accept_Or_Raise return List_Id;
9221       --  For the rare case where delay alternatives all have guards, and
9222       --  all of them are closed, it is still possible that there were open
9223       --  accept alternatives with no callers. We must reexamine the
9224       --  Accept_List, and execute a selective wait with no else if some
9225       --  accept is open. If none, we raise program_error.
9226
9227       procedure Add_Accept (Alt : Node_Id);
9228       --  Process a single accept statement in a select alternative. Build
9229       --  procedure for body of accept, and add entry to dispatch table with
9230       --  expression for guard, in preparation for call to run time select.
9231
9232       function Make_And_Declare_Label (Num : Int) return Node_Id;
9233       --  Manufacture a label using Num as a serial number and declare it.
9234       --  The declaration is appended to Decls. The label marks the trailing
9235       --  statements of an accept or delay alternative.
9236
9237       function Make_Select_Call (Select_Mode : Entity_Id) return Node_Id;
9238       --  Build call to Selective_Wait runtime routine
9239
9240       procedure Process_Delay_Alternative (Alt : Node_Id; Index : Int);
9241       --  Add code to compare value of delay with previous values, and
9242       --  generate case entry for trailing statements.
9243
9244       procedure Process_Accept_Alternative
9245         (Alt   : Node_Id;
9246          Index : Int;
9247          Proc  : Node_Id);
9248       --  Add code to call corresponding procedure, and branch to
9249       --  trailing statements, if any.
9250
9251       ---------------------
9252       -- Accept_Or_Raise --
9253       ---------------------
9254
9255       function Accept_Or_Raise return List_Id is
9256          Cond  : Node_Id;
9257          Stats : List_Id;
9258          J     : constant Entity_Id := Make_Temporary (Loc, 'J');
9259
9260       begin
9261          --  We generate the following:
9262
9263          --    for J in q'range loop
9264          --       if q(J).S /=null_task_entry then
9265          --          selective_wait (simple_mode,...);
9266          --          done := True;
9267          --          exit;
9268          --       end if;
9269          --    end loop;
9270          --
9271          --    if no rendez_vous then
9272          --       raise program_error;
9273          --    end if;
9274
9275          --    Note that the code needs to know that the selector name
9276          --    in an Accept_Alternative is named S.
9277
9278          Cond := Make_Op_Ne (Loc,
9279            Left_Opnd =>
9280              Make_Selected_Component (Loc,
9281                Prefix        =>
9282                  Make_Indexed_Component (Loc,
9283                    Prefix => New_Reference_To (Qnam, Loc),
9284                      Expressions => New_List (New_Reference_To (J, Loc))),
9285                Selector_Name => Make_Identifier (Loc, Name_S)),
9286            Right_Opnd =>
9287              New_Reference_To (RTE (RE_Null_Task_Entry), Loc));
9288
9289          Stats := New_List (
9290            Make_Implicit_Loop_Statement (N,
9291              Identifier => Empty,
9292              Iteration_Scheme =>
9293                Make_Iteration_Scheme (Loc,
9294                  Loop_Parameter_Specification =>
9295                    Make_Loop_Parameter_Specification (Loc,
9296                      Defining_Identifier => J,
9297                      Discrete_Subtype_Definition =>
9298                        Make_Attribute_Reference (Loc,
9299                          Prefix => New_Reference_To (Qnam, Loc),
9300                          Attribute_Name => Name_Range,
9301                          Expressions => New_List (
9302                            Make_Integer_Literal (Loc, 1))))),
9303
9304              Statements => New_List (
9305                Make_Implicit_If_Statement (N,
9306                  Condition =>  Cond,
9307                  Then_Statements => New_List (
9308                    Make_Select_Call (
9309                     New_Reference_To (RTE (RE_Simple_Mode), Loc)),
9310                    Make_Exit_Statement (Loc))))));
9311
9312          Append_To (Stats,
9313            Make_Raise_Program_Error (Loc,
9314              Condition => Make_Op_Eq (Loc,
9315                Left_Opnd  => New_Reference_To (Xnam, Loc),
9316                Right_Opnd =>
9317                  New_Reference_To (RTE (RE_No_Rendezvous), Loc)),
9318              Reason => PE_All_Guards_Closed));
9319
9320          return Stats;
9321       end Accept_Or_Raise;
9322
9323       ----------------
9324       -- Add_Accept --
9325       ----------------
9326
9327       procedure Add_Accept (Alt : Node_Id) is
9328          Acc_Stm   : constant Node_Id    := Accept_Statement (Alt);
9329          Ename     : constant Node_Id    := Entry_Direct_Name (Acc_Stm);
9330          Eloc      : constant Source_Ptr := Sloc (Ename);
9331          Eent      : constant Entity_Id  := Entity (Ename);
9332          Index     : constant Node_Id    := Entry_Index (Acc_Stm);
9333          Null_Body : Node_Id;
9334          Proc_Body : Node_Id;
9335          PB_Ent    : Entity_Id;
9336          Expr      : Node_Id;
9337          Call      : Node_Id;
9338
9339       begin
9340          if No (Ann) then
9341             Ann := Node (Last_Elmt (Accept_Address (Eent)));
9342          end if;
9343
9344          if Present (Condition (Alt)) then
9345             Expr :=
9346               Make_Conditional_Expression (Eloc, New_List (
9347                 Condition (Alt),
9348                 Entry_Index_Expression (Eloc, Eent, Index, Scope (Eent)),
9349                 New_Reference_To (RTE (RE_Null_Task_Entry), Eloc)));
9350          else
9351             Expr :=
9352               Entry_Index_Expression
9353                 (Eloc, Eent, Index, Scope (Eent));
9354          end if;
9355
9356          if Present (Handled_Statement_Sequence (Accept_Statement (Alt))) then
9357             Null_Body := New_Reference_To (Standard_False, Eloc);
9358
9359             if Abort_Allowed then
9360                Call := Make_Procedure_Call_Statement (Eloc,
9361                  Name => New_Reference_To (RTE (RE_Abort_Undefer), Eloc));
9362                Insert_Before (First (Statements (Handled_Statement_Sequence (
9363                  Accept_Statement (Alt)))), Call);
9364                Analyze (Call);
9365             end if;
9366
9367             PB_Ent :=
9368               Make_Defining_Identifier (Eloc,
9369                 New_External_Name (Chars (Ename), 'A', Num_Accept));
9370
9371             if Comes_From_Source (Alt) then
9372                Set_Debug_Info_Needed (PB_Ent);
9373             end if;
9374
9375             Proc_Body :=
9376               Make_Subprogram_Body (Eloc,
9377                 Specification =>
9378                   Make_Procedure_Specification (Eloc,
9379                     Defining_Unit_Name => PB_Ent),
9380                Declarations => Declarations (Acc_Stm),
9381                Handled_Statement_Sequence =>
9382                  Build_Accept_Body (Accept_Statement (Alt)));
9383
9384             --  During the analysis of the body of the accept statement, any
9385             --  zero cost exception handler records were collected in the
9386             --  Accept_Handler_Records field of the N_Accept_Alternative node.
9387             --  This is where we move them to where they belong, namely the
9388             --  newly created procedure.
9389
9390             Set_Handler_Records (PB_Ent, Accept_Handler_Records (Alt));
9391             Append (Proc_Body, Body_List);
9392
9393          else
9394             Null_Body := New_Reference_To (Standard_True,  Eloc);
9395
9396             --  if accept statement has declarations, insert above, given that
9397             --  we are not creating a body for the accept.
9398
9399             if Present (Declarations (Acc_Stm)) then
9400                Insert_Actions (N, Declarations (Acc_Stm));
9401             end if;
9402          end if;
9403
9404          Append_To (Accept_List,
9405            Make_Aggregate (Eloc, Expressions => New_List (Null_Body, Expr)));
9406
9407          Num_Accept := Num_Accept + 1;
9408       end Add_Accept;
9409
9410       ----------------------------
9411       -- Make_And_Declare_Label --
9412       ----------------------------
9413
9414       function Make_And_Declare_Label (Num : Int) return Node_Id is
9415          Lab_Id : Node_Id;
9416
9417       begin
9418          Lab_Id := Make_Identifier (Loc, New_External_Name ('L', Num));
9419          Lab :=
9420            Make_Label (Loc, Lab_Id);
9421
9422          Append_To (Decls,
9423            Make_Implicit_Label_Declaration (Loc,
9424              Defining_Identifier  =>
9425                Make_Defining_Identifier (Loc, Chars (Lab_Id)),
9426              Label_Construct => Lab));
9427
9428          return Lab;
9429       end Make_And_Declare_Label;
9430
9431       ----------------------
9432       -- Make_Select_Call --
9433       ----------------------
9434
9435       function Make_Select_Call (Select_Mode : Entity_Id) return Node_Id is
9436          Params : constant List_Id := New_List;
9437
9438       begin
9439          Append (
9440            Make_Attribute_Reference (Loc,
9441              Prefix => New_Reference_To (Qnam, Loc),
9442              Attribute_Name => Name_Unchecked_Access),
9443            Params);
9444          Append (Select_Mode, Params);
9445          Append (New_Reference_To (Ann, Loc), Params);
9446          Append (New_Reference_To (Xnam, Loc), Params);
9447
9448          return
9449            Make_Procedure_Call_Statement (Loc,
9450              Name => New_Reference_To (RTE (RE_Selective_Wait), Loc),
9451              Parameter_Associations => Params);
9452       end Make_Select_Call;
9453
9454       --------------------------------
9455       -- Process_Accept_Alternative --
9456       --------------------------------
9457
9458       procedure Process_Accept_Alternative
9459         (Alt   : Node_Id;
9460          Index : Int;
9461          Proc  : Node_Id)
9462       is
9463          Choices   : List_Id := No_List;
9464          Alt_Stats : List_Id;
9465
9466       begin
9467          Adjust_Condition (Condition (Alt));
9468          Alt_Stats := No_List;
9469
9470          if Present (Handled_Statement_Sequence (Accept_Statement (Alt))) then
9471             Choices := New_List (
9472               Make_Integer_Literal (Loc, Index));
9473
9474             Alt_Stats := New_List (
9475               Make_Procedure_Call_Statement (Sloc (Proc),
9476                 Name => New_Reference_To (
9477                   Defining_Unit_Name (Specification (Proc)), Sloc (Proc))));
9478          end if;
9479
9480          if Statements (Alt) /= Empty_List then
9481
9482             if No (Alt_Stats) then
9483
9484                --  Accept with no body, followed by trailing statements
9485
9486                Choices := New_List (
9487                  Make_Integer_Literal (Loc, Index));
9488
9489                Alt_Stats := New_List;
9490             end if;
9491
9492             --  After the call, if any, branch to trailing statements. We
9493             --  create a label for each, as well as the corresponding label
9494             --  declaration.
9495
9496             Lab := Make_And_Declare_Label (Index);
9497             Append_To (Alt_Stats,
9498               Make_Goto_Statement (Loc,
9499                 Name => New_Copy (Identifier (Lab))));
9500
9501             Append (Lab, Trailing_List);
9502             Append_List (Statements (Alt), Trailing_List);
9503             Append_To (Trailing_List,
9504               Make_Goto_Statement (Loc,
9505                 Name => New_Copy (Identifier (End_Lab))));
9506          end if;
9507
9508          if Present (Alt_Stats) then
9509
9510             --  Procedure call. and/or trailing statements
9511
9512             Append_To (Alt_List,
9513               Make_Case_Statement_Alternative (Loc,
9514                 Discrete_Choices => Choices,
9515                 Statements => Alt_Stats));
9516          end if;
9517       end Process_Accept_Alternative;
9518
9519       -------------------------------
9520       -- Process_Delay_Alternative --
9521       -------------------------------
9522
9523       procedure Process_Delay_Alternative (Alt : Node_Id; Index : Int) is
9524          Choices   : List_Id;
9525          Cond      : Node_Id;
9526          Delay_Alt : List_Id;
9527
9528       begin
9529          --  Deal with C/Fortran boolean as delay condition
9530
9531          Adjust_Condition (Condition (Alt));
9532
9533          --  Determine the smallest specified delay
9534
9535          --  for each delay alternative generate:
9536
9537          --    if guard-expression then
9538          --       Delay_Val  := delay-expression;
9539          --       Guard_Open := True;
9540          --       if Delay_Val < Delay_Min then
9541          --          Delay_Min   := Delay_Val;
9542          --          Delay_Index := Index;
9543          --       end if;
9544          --    end if;
9545
9546          --  The enclosing if-statement is omitted if there is no guard
9547
9548          if Delay_Count = 1
9549            or else First_Delay
9550          then
9551             First_Delay := False;
9552
9553             Delay_Alt := New_List (
9554               Make_Assignment_Statement (Loc,
9555                 Name => New_Reference_To (Delay_Min, Loc),
9556                 Expression => Expression (Delay_Statement (Alt))));
9557
9558             if Delay_Count > 1 then
9559                Append_To (Delay_Alt,
9560                  Make_Assignment_Statement (Loc,
9561                    Name       => New_Reference_To (Delay_Index, Loc),
9562                    Expression => Make_Integer_Literal (Loc, Index)));
9563             end if;
9564
9565          else
9566             Delay_Alt := New_List (
9567               Make_Assignment_Statement (Loc,
9568                 Name => New_Reference_To (Delay_Val, Loc),
9569                 Expression => Expression (Delay_Statement (Alt))));
9570
9571             if Time_Type = Standard_Duration then
9572                Cond :=
9573                   Make_Op_Lt (Loc,
9574                     Left_Opnd  => New_Reference_To (Delay_Val, Loc),
9575                     Right_Opnd => New_Reference_To (Delay_Min, Loc));
9576
9577             else
9578                --  The scope of the time type must define a comparison
9579                --  operator. The scope itself may not be visible, so we
9580                --  construct a node with entity information to insure that
9581                --  semantic analysis can find the proper operator.
9582
9583                Cond :=
9584                  Make_Function_Call (Loc,
9585                    Name => Make_Selected_Component (Loc,
9586                      Prefix => New_Reference_To (Scope (Time_Type), Loc),
9587                      Selector_Name =>
9588                        Make_Operator_Symbol (Loc,
9589                          Chars => Name_Op_Lt,
9590                          Strval => No_String)),
9591                     Parameter_Associations =>
9592                       New_List (
9593                         New_Reference_To (Delay_Val, Loc),
9594                         New_Reference_To (Delay_Min, Loc)));
9595
9596                Set_Entity (Prefix (Name (Cond)), Scope (Time_Type));
9597             end if;
9598
9599             Append_To (Delay_Alt,
9600               Make_Implicit_If_Statement (N,
9601                 Condition => Cond,
9602                 Then_Statements => New_List (
9603                   Make_Assignment_Statement (Loc,
9604                     Name       => New_Reference_To (Delay_Min, Loc),
9605                     Expression => New_Reference_To (Delay_Val, Loc)),
9606
9607                   Make_Assignment_Statement (Loc,
9608                     Name       => New_Reference_To (Delay_Index, Loc),
9609                     Expression => Make_Integer_Literal (Loc, Index)))));
9610          end if;
9611
9612          if Check_Guard then
9613             Append_To (Delay_Alt,
9614               Make_Assignment_Statement (Loc,
9615                 Name => New_Reference_To (Guard_Open, Loc),
9616                 Expression => New_Reference_To (Standard_True, Loc)));
9617          end if;
9618
9619          if Present (Condition (Alt)) then
9620             Delay_Alt := New_List (
9621               Make_Implicit_If_Statement (N,
9622                 Condition => Condition (Alt),
9623                 Then_Statements => Delay_Alt));
9624          end if;
9625
9626          Append_List (Delay_Alt, Delay_List);
9627
9628          --  If the delay alternative has a statement part, add choice to the
9629          --  case statements for delays.
9630
9631          if Present (Statements (Alt)) then
9632
9633             if Delay_Count = 1 then
9634                Append_List (Statements (Alt), Delay_Alt_List);
9635
9636             else
9637                Choices := New_List (
9638                  Make_Integer_Literal (Loc, Index));
9639
9640                Append_To (Delay_Alt_List,
9641                  Make_Case_Statement_Alternative (Loc,
9642                    Discrete_Choices => Choices,
9643                    Statements => Statements (Alt)));
9644             end if;
9645
9646          elsif Delay_Count = 1 then
9647
9648             --  If the single delay has no trailing statements, add a branch
9649             --  to the exit label to the selective wait.
9650
9651             Delay_Alt_List := New_List (
9652               Make_Goto_Statement (Loc,
9653                 Name => New_Copy (Identifier (End_Lab))));
9654
9655          end if;
9656       end Process_Delay_Alternative;
9657
9658    --  Start of processing for Expand_N_Selective_Accept
9659
9660    begin
9661       Process_Statements_For_Controlled_Objects (N);
9662
9663       --  First insert some declarations before the select. The first is:
9664
9665       --    Ann : Address
9666
9667       --  This variable holds the parameters passed to the accept body. This
9668       --  declaration has already been inserted by the time we get here by
9669       --  a call to Expand_Accept_Declarations made from the semantics when
9670       --  processing the first accept statement contained in the select. We
9671       --  can find this entity as Accept_Address (E), where E is any of the
9672       --  entries references by contained accept statements.
9673
9674       --  The first step is to scan the list of Selective_Accept_Statements
9675       --  to find this entity, and also count the number of accepts, and
9676       --  determine if terminated, delay or else is present:
9677
9678       Num_Alts := 0;
9679
9680       Alt := First (Alts);
9681       while Present (Alt) loop
9682          Process_Statements_For_Controlled_Objects (Alt);
9683
9684          if Nkind (Alt) = N_Accept_Alternative then
9685             Add_Accept (Alt);
9686
9687          elsif Nkind (Alt) = N_Delay_Alternative then
9688             Delay_Count := Delay_Count + 1;
9689
9690             --  If the delays are relative delays, the delay expressions have
9691             --  type Standard_Duration. Otherwise they must have some time type
9692             --  recognized by GNAT.
9693
9694             if Nkind (Delay_Statement (Alt)) = N_Delay_Relative_Statement then
9695                Time_Type := Standard_Duration;
9696             else
9697                Time_Type := Etype (Expression (Delay_Statement (Alt)));
9698
9699                if Is_RTE (Base_Type (Etype (Time_Type)), RO_CA_Time)
9700                  or else Is_RTE (Base_Type (Etype (Time_Type)), RO_RT_Time)
9701                then
9702                   null;
9703                else
9704                   Error_Msg_NE (
9705                     "& is not a time type (RM 9.6(6))",
9706                        Expression (Delay_Statement (Alt)), Time_Type);
9707                   Time_Type := Standard_Duration;
9708                   Set_Etype (Expression (Delay_Statement (Alt)), Any_Type);
9709                end if;
9710             end if;
9711
9712             if No (Condition (Alt)) then
9713
9714                --  This guard will always be open
9715
9716                Check_Guard := False;
9717             end if;
9718
9719          elsif Nkind (Alt) = N_Terminate_Alternative then
9720             Adjust_Condition (Condition (Alt));
9721             Terminate_Alt := Alt;
9722          end if;
9723
9724          Num_Alts := Num_Alts + 1;
9725          Next (Alt);
9726       end loop;
9727
9728       Else_Present := Present (Else_Statements (N));
9729
9730       --  At the same time (see procedure Add_Accept) we build the accept list:
9731
9732       --    Qnn : Accept_List (1 .. num-select) := (
9733       --          (null-body, entry-index),
9734       --          (null-body, entry-index),
9735       --          ..
9736       --          (null_body, entry-index));
9737
9738       --  In the above declaration, null-body is True if the corresponding
9739       --  accept has no body, and false otherwise. The entry is either the
9740       --  entry index expression if there is no guard, or if a guard is
9741       --  present, then a conditional expression of the form:
9742
9743       --    (if guard then entry-index else Null_Task_Entry)
9744
9745       --  If a guard is statically known to be false, the entry can simply
9746       --  be omitted from the accept list.
9747
9748       Q :=
9749         Make_Object_Declaration (Loc,
9750           Defining_Identifier => Qnam,
9751           Object_Definition =>
9752             New_Reference_To (RTE (RE_Accept_List), Loc),
9753           Aliased_Present => True,
9754
9755           Expression =>
9756              Make_Qualified_Expression (Loc,
9757                Subtype_Mark =>
9758                  New_Reference_To (RTE (RE_Accept_List), Loc),
9759                Expression =>
9760                  Make_Aggregate (Loc, Expressions => Accept_List)));
9761
9762       Append (Q, Decls);
9763
9764       --  Then we declare the variable that holds the index for the accept
9765       --  that will be selected for service:
9766
9767       --    Xnn : Select_Index;
9768
9769       X :=
9770         Make_Object_Declaration (Loc,
9771           Defining_Identifier => Xnam,
9772           Object_Definition =>
9773             New_Reference_To (RTE (RE_Select_Index), Loc),
9774           Expression =>
9775             New_Reference_To (RTE (RE_No_Rendezvous), Loc));
9776
9777       Append (X, Decls);
9778
9779       --  After this follow procedure declarations for each accept body
9780
9781       --    procedure Pnn is
9782       --    begin
9783       --       ...
9784       --    end;
9785
9786       --  where the ... are statements from the corresponding procedure body.
9787       --  No parameters are involved, since the parameters are passed via Ann
9788       --  and the parameter references have already been expanded to be direct
9789       --  references to Ann (see Exp_Ch2.Expand_Entry_Parameter). Furthermore,
9790       --  any embedded tasking statements (which would normally be illegal in
9791       --  procedures), have been converted to calls to the tasking runtime so
9792       --  there is no problem in putting them into procedures.
9793
9794       --  The original accept statement has been expanded into a block in
9795       --  the same fashion as for simple accepts (see Build_Accept_Body).
9796
9797       --  Note: we don't really need to build these procedures for the case
9798       --  where no delay statement is present, but it is just as easy to
9799       --  build them unconditionally, and not significantly inefficient,
9800       --  since if they are short they will be inlined anyway.
9801
9802       --  The procedure declarations have been assembled in Body_List
9803
9804       --  If delays are present, we must compute the required delay.
9805       --  We first generate the declarations:
9806
9807       --    Delay_Index : Boolean := 0;
9808       --    Delay_Min   : Some_Time_Type.Time;
9809       --    Delay_Val   : Some_Time_Type.Time;
9810
9811       --  Delay_Index will be set to the index of the minimum delay, i.e. the
9812       --  active delay that is actually chosen as the basis for the possible
9813       --  delay if an immediate rendez-vous is not possible.
9814
9815       --  In the most common case there is a single delay statement, and this
9816       --  is handled specially.
9817
9818       if Delay_Count > 0 then
9819
9820          --  Generate the required declarations
9821
9822          Delay_Val :=
9823            Make_Defining_Identifier (Loc, New_External_Name ('D', 1));
9824          Delay_Index :=
9825            Make_Defining_Identifier (Loc, New_External_Name ('D', 2));
9826          Delay_Min :=
9827            Make_Defining_Identifier (Loc, New_External_Name ('D', 3));
9828
9829          Append_To (Decls,
9830            Make_Object_Declaration (Loc,
9831              Defining_Identifier => Delay_Val,
9832              Object_Definition   => New_Reference_To (Time_Type, Loc)));
9833
9834          Append_To (Decls,
9835            Make_Object_Declaration (Loc,
9836              Defining_Identifier => Delay_Index,
9837              Object_Definition   => New_Reference_To (Standard_Integer, Loc),
9838              Expression          => Make_Integer_Literal (Loc, 0)));
9839
9840          Append_To (Decls,
9841            Make_Object_Declaration (Loc,
9842              Defining_Identifier => Delay_Min,
9843              Object_Definition   => New_Reference_To (Time_Type, Loc),
9844              Expression          =>
9845                Unchecked_Convert_To (Time_Type,
9846                  Make_Attribute_Reference (Loc,
9847                    Prefix =>
9848                      New_Occurrence_Of (Underlying_Type (Time_Type), Loc),
9849                    Attribute_Name => Name_Last))));
9850
9851          --  Create Duration and Delay_Mode objects used for passing a delay
9852          --  value to RTS
9853
9854          D := Make_Temporary (Loc, 'D');
9855          M := Make_Temporary (Loc, 'M');
9856
9857          declare
9858             Discr : Entity_Id;
9859
9860          begin
9861             --  Note that these values are defined in s-osprim.ads and must
9862             --  be kept in sync:
9863             --
9864             --     Relative          : constant := 0;
9865             --     Absolute_Calendar : constant := 1;
9866             --     Absolute_RT       : constant := 2;
9867
9868             if Time_Type = Standard_Duration then
9869                Discr := Make_Integer_Literal (Loc, 0);
9870
9871             elsif Is_RTE (Base_Type (Etype (Time_Type)), RO_CA_Time) then
9872                Discr := Make_Integer_Literal (Loc, 1);
9873
9874             else
9875                pragma Assert
9876                  (Is_RTE (Base_Type (Etype (Time_Type)), RO_RT_Time));
9877                Discr := Make_Integer_Literal (Loc, 2);
9878             end if;
9879
9880             Append_To (Decls,
9881               Make_Object_Declaration (Loc,
9882                 Defining_Identifier => D,
9883                 Object_Definition =>
9884                   New_Reference_To (Standard_Duration, Loc)));
9885
9886             Append_To (Decls,
9887               Make_Object_Declaration (Loc,
9888                 Defining_Identifier => M,
9889                 Object_Definition   =>
9890                   New_Reference_To (Standard_Integer, Loc),
9891                 Expression          => Discr));
9892          end;
9893
9894          if Check_Guard then
9895             Guard_Open :=
9896               Make_Defining_Identifier (Loc, New_External_Name ('G', 1));
9897
9898             Append_To (Decls,
9899               Make_Object_Declaration (Loc,
9900                  Defining_Identifier => Guard_Open,
9901                  Object_Definition => New_Reference_To (Standard_Boolean, Loc),
9902                  Expression        => New_Reference_To (Standard_False, Loc)));
9903          end if;
9904
9905       --  Delay_Count is zero, don't need M and D set (suppress warning)
9906
9907       else
9908          M := Empty;
9909          D := Empty;
9910       end if;
9911
9912       if Present (Terminate_Alt) then
9913
9914          --  If the terminate alternative guard is False, use
9915          --  Simple_Mode; otherwise use Terminate_Mode.
9916
9917          if Present (Condition (Terminate_Alt)) then
9918             Select_Mode := Make_Conditional_Expression (Loc,
9919               New_List (Condition (Terminate_Alt),
9920                         New_Reference_To (RTE (RE_Terminate_Mode), Loc),
9921                         New_Reference_To (RTE (RE_Simple_Mode), Loc)));
9922          else
9923             Select_Mode := New_Reference_To (RTE (RE_Terminate_Mode), Loc);
9924          end if;
9925
9926       elsif Else_Present or Delay_Count > 0 then
9927          Select_Mode := New_Reference_To (RTE (RE_Else_Mode), Loc);
9928
9929       else
9930          Select_Mode := New_Reference_To (RTE (RE_Simple_Mode), Loc);
9931       end if;
9932
9933       Select_Call := Make_Select_Call (Select_Mode);
9934       Append (Select_Call, Stats);
9935
9936       --  Now generate code to act on the result. There is an entry
9937       --  in this case for each accept statement with a non-null body,
9938       --  followed by a branch to the statements that follow the Accept.
9939       --  In the absence of delay alternatives, we generate:
9940
9941       --    case X is
9942       --      when No_Rendezvous =>  --  omitted if simple mode
9943       --         goto Lab0;
9944
9945       --      when 1 =>
9946       --         P1n;
9947       --         goto Lab1;
9948
9949       --      when 2 =>
9950       --         P2n;
9951       --         goto Lab2;
9952
9953       --      when others =>
9954       --         goto Exit;
9955       --    end case;
9956       --
9957       --    Lab0: Else_Statements;
9958       --    goto exit;
9959
9960       --    Lab1:  Trailing_Statements1;
9961       --    goto Exit;
9962       --
9963       --    Lab2:  Trailing_Statements2;
9964       --    goto Exit;
9965       --    ...
9966       --    Exit:
9967
9968       --  Generate label for common exit
9969
9970       End_Lab := Make_And_Declare_Label (Num_Alts + 1);
9971
9972       --  First entry is the default case, when no rendezvous is possible
9973
9974       Choices := New_List (New_Reference_To (RTE (RE_No_Rendezvous), Loc));
9975
9976       if Else_Present then
9977
9978          --  If no rendezvous is possible, the else part is executed
9979
9980          Lab := Make_And_Declare_Label (0);
9981          Alt_Stats := New_List (
9982            Make_Goto_Statement (Loc,
9983              Name => New_Copy (Identifier (Lab))));
9984
9985          Append (Lab, Trailing_List);
9986          Append_List (Else_Statements (N), Trailing_List);
9987          Append_To (Trailing_List,
9988            Make_Goto_Statement (Loc,
9989              Name => New_Copy (Identifier (End_Lab))));
9990       else
9991          Alt_Stats := New_List (
9992            Make_Goto_Statement (Loc,
9993              Name => New_Copy (Identifier (End_Lab))));
9994       end if;
9995
9996       Append_To (Alt_List,
9997         Make_Case_Statement_Alternative (Loc,
9998           Discrete_Choices => Choices,
9999           Statements => Alt_Stats));
10000
10001       --  We make use of the fact that Accept_Index is an integer type, and
10002       --  generate successive literals for entries for each accept. Only those
10003       --  for which there is a body or trailing statements get a case entry.
10004
10005       Alt := First (Select_Alternatives (N));
10006       Proc := First (Body_List);
10007       while Present (Alt) loop
10008
10009          if Nkind (Alt) = N_Accept_Alternative then
10010             Process_Accept_Alternative (Alt, Index, Proc);
10011             Index := Index + 1;
10012
10013             if Present
10014               (Handled_Statement_Sequence (Accept_Statement (Alt)))
10015             then
10016                Next (Proc);
10017             end if;
10018
10019          elsif Nkind (Alt) = N_Delay_Alternative then
10020             Process_Delay_Alternative (Alt, Delay_Num);
10021             Delay_Num := Delay_Num + 1;
10022          end if;
10023
10024          Next (Alt);
10025       end loop;
10026
10027       --  An others choice is always added to the main case, as well
10028       --  as the delay case (to satisfy the compiler).
10029
10030       Append_To (Alt_List,
10031         Make_Case_Statement_Alternative (Loc,
10032           Discrete_Choices =>
10033             New_List (Make_Others_Choice (Loc)),
10034           Statements       =>
10035             New_List (Make_Goto_Statement (Loc,
10036               Name => New_Copy (Identifier (End_Lab))))));
10037
10038       Accept_Case := New_List (
10039         Make_Case_Statement (Loc,
10040           Expression   => New_Reference_To (Xnam, Loc),
10041           Alternatives => Alt_List));
10042
10043       Append_List (Trailing_List, Accept_Case);
10044       Append (End_Lab, Accept_Case);
10045       Append_List (Body_List, Decls);
10046
10047       --  Construct case statement for trailing statements of delay
10048       --  alternatives, if there are several of them.
10049
10050       if Delay_Count > 1 then
10051          Append_To (Delay_Alt_List,
10052            Make_Case_Statement_Alternative (Loc,
10053              Discrete_Choices =>
10054                New_List (Make_Others_Choice (Loc)),
10055              Statements       =>
10056                New_List (Make_Null_Statement (Loc))));
10057
10058          Delay_Case := New_List (
10059            Make_Case_Statement (Loc,
10060              Expression   => New_Reference_To (Delay_Index, Loc),
10061              Alternatives => Delay_Alt_List));
10062       else
10063          Delay_Case := Delay_Alt_List;
10064       end if;
10065
10066       --  If there are no delay alternatives, we append the case statement
10067       --  to the statement list.
10068
10069       if Delay_Count = 0 then
10070          Append_List (Accept_Case, Stats);
10071
10072       --  Delay alternatives present
10073
10074       else
10075          --  If delay alternatives are present we generate:
10076
10077          --    find minimum delay.
10078          --    DX := minimum delay;
10079          --    M := <delay mode>;
10080          --    Timed_Selective_Wait (Q'Unchecked_Access, Delay_Mode, P,
10081          --      DX, MX, X);
10082          --
10083          --    if X = No_Rendezvous then
10084          --      case statement for delay statements.
10085          --    else
10086          --      case statement for accept alternatives.
10087          --    end if;
10088
10089          declare
10090             Cases : Node_Id;
10091             Stmt  : Node_Id;
10092             Parms : List_Id;
10093             Parm  : Node_Id;
10094             Conv  : Node_Id;
10095
10096          begin
10097             --  The type of the delay expression is known to be legal
10098
10099             if Time_Type = Standard_Duration then
10100                Conv := New_Reference_To (Delay_Min, Loc);
10101
10102             elsif Is_RTE (Base_Type (Etype (Time_Type)), RO_CA_Time) then
10103                Conv := Make_Function_Call (Loc,
10104                  New_Reference_To (RTE (RO_CA_To_Duration), Loc),
10105                  New_List (New_Reference_To (Delay_Min, Loc)));
10106
10107             else
10108                pragma Assert
10109                  (Is_RTE (Base_Type (Etype (Time_Type)), RO_RT_Time));
10110
10111                Conv := Make_Function_Call (Loc,
10112                  New_Reference_To (RTE (RO_RT_To_Duration), Loc),
10113                  New_List (New_Reference_To (Delay_Min, Loc)));
10114             end if;
10115
10116             Stmt := Make_Assignment_Statement (Loc,
10117               Name => New_Reference_To (D, Loc),
10118               Expression => Conv);
10119
10120             --  Change the value for Accept_Modes. (Else_Mode -> Delay_Mode)
10121
10122             Parms := Parameter_Associations (Select_Call);
10123             Parm := First (Parms);
10124
10125             while Present (Parm)
10126               and then Parm /= Select_Mode
10127             loop
10128                Next (Parm);
10129             end loop;
10130
10131             pragma Assert (Present (Parm));
10132             Rewrite (Parm, New_Reference_To (RTE (RE_Delay_Mode), Loc));
10133             Analyze (Parm);
10134
10135             --  Prepare two new parameters of Duration and Delay_Mode type
10136             --  which represent the value and the mode of the minimum delay.
10137
10138             Next (Parm);
10139             Insert_After (Parm, New_Reference_To (M, Loc));
10140             Insert_After (Parm, New_Reference_To (D, Loc));
10141
10142             --  Create a call to RTS
10143
10144             Rewrite (Select_Call,
10145               Make_Procedure_Call_Statement (Loc,
10146                 Name => New_Reference_To (RTE (RE_Timed_Selective_Wait), Loc),
10147                 Parameter_Associations => Parms));
10148
10149             --  This new call should follow the calculation of the minimum
10150             --  delay.
10151
10152             Insert_List_Before (Select_Call, Delay_List);
10153
10154             if Check_Guard then
10155                Stmt :=
10156                  Make_Implicit_If_Statement (N,
10157                    Condition => New_Reference_To (Guard_Open, Loc),
10158                    Then_Statements =>
10159                      New_List (New_Copy_Tree (Stmt),
10160                        New_Copy_Tree (Select_Call)),
10161                    Else_Statements => Accept_Or_Raise);
10162                Rewrite (Select_Call, Stmt);
10163             else
10164                Insert_Before (Select_Call, Stmt);
10165             end if;
10166
10167             Cases :=
10168               Make_Implicit_If_Statement (N,
10169                 Condition => Make_Op_Eq (Loc,
10170                   Left_Opnd  => New_Reference_To (Xnam, Loc),
10171                   Right_Opnd =>
10172                     New_Reference_To (RTE (RE_No_Rendezvous), Loc)),
10173
10174                 Then_Statements => Delay_Case,
10175                 Else_Statements => Accept_Case);
10176
10177             Append (Cases, Stats);
10178          end;
10179       end if;
10180
10181       --  Replace accept statement with appropriate block
10182
10183       Block :=
10184         Make_Block_Statement (Loc,
10185           Declarations => Decls,
10186           Handled_Statement_Sequence =>
10187             Make_Handled_Sequence_Of_Statements (Loc,
10188               Statements => Stats));
10189
10190       Rewrite (N, Block);
10191       Analyze (N);
10192
10193       --  Note: have to worry more about abort deferral in above code ???
10194
10195       --  Final step is to unstack the Accept_Address entries for all accept
10196       --  statements appearing in accept alternatives in the select statement
10197
10198       Alt := First (Alts);
10199       while Present (Alt) loop
10200          if Nkind (Alt) = N_Accept_Alternative then
10201             Remove_Last_Elmt (Accept_Address
10202               (Entity (Entry_Direct_Name (Accept_Statement (Alt)))));
10203          end if;
10204
10205          Next (Alt);
10206       end loop;
10207    end Expand_N_Selective_Accept;
10208
10209    --------------------------------------
10210    -- Expand_N_Single_Task_Declaration --
10211    --------------------------------------
10212
10213    --  Single task declarations should never be present after semantic
10214    --  analysis, since we expect them to be replaced by a declaration of an
10215    --  anonymous task type, followed by a declaration of the task object. We
10216    --  include this routine to make sure that is happening!
10217
10218    procedure Expand_N_Single_Task_Declaration (N : Node_Id) is
10219    begin
10220       raise Program_Error;
10221    end Expand_N_Single_Task_Declaration;
10222
10223    ------------------------
10224    -- Expand_N_Task_Body --
10225    ------------------------
10226
10227    --  Given a task body
10228
10229    --    task body tname is
10230    --       <declarations>
10231    --    begin
10232    --       <statements>
10233    --    end x;
10234
10235    --  This expansion routine converts it into a procedure and sets the
10236    --  elaboration flag for the procedure to true, to represent the fact
10237    --  that the task body is now elaborated:
10238
10239    --    procedure tnameB (_Task : access tnameV) is
10240    --       discriminal : dtype renames _Task.discriminant;
10241
10242    --       procedure _clean is
10243    --       begin
10244    --          Abort_Defer.all;
10245    --          Complete_Task;
10246    --          Abort_Undefer.all;
10247    --          return;
10248    --       end _clean;
10249
10250    --    begin
10251    --       Abort_Undefer.all;
10252    --       <declarations>
10253    --       System.Task_Stages.Complete_Activation;
10254    --       <statements>
10255    --    at end
10256    --       _clean;
10257    --    end tnameB;
10258
10259    --    tnameE := True;
10260
10261    --  In addition, if the task body is an activator, then a call to activate
10262    --  tasks is added at the start of the statements, before the call to
10263    --  Complete_Activation, and if in addition the task is a master then it
10264    --  must be established as a master. These calls are inserted and analyzed
10265    --  in Expand_Cleanup_Actions, when the Handled_Sequence_Of_Statements is
10266    --  expanded.
10267
10268    --  There is one discriminal declaration line generated for each
10269    --  discriminant that is present to provide an easy reference point for
10270    --  discriminant references inside the body (see Exp_Ch2.Expand_Name).
10271
10272    --  Note on relationship to GNARLI definition. In the GNARLI definition,
10273    --  task body procedures have a profile (Arg : System.Address). That is
10274    --  needed because GNARLI has to use the same access-to-subprogram type
10275    --  for all task types. We depend here on knowing that in GNAT, passing
10276    --  an address argument by value is identical to passing a record value
10277    --  by access (in either case a single pointer is passed), so even though
10278    --  this procedure has the wrong profile. In fact it's all OK, since the
10279    --  callings sequence is identical.
10280
10281    procedure Expand_N_Task_Body (N : Node_Id) is
10282       Loc   : constant Source_Ptr := Sloc (N);
10283       Ttyp  : constant Entity_Id  := Corresponding_Spec (N);
10284       Call  : Node_Id;
10285       New_N : Node_Id;
10286
10287       Insert_Nod : Node_Id;
10288       --  Used to determine the proper location of wrapper body insertions
10289
10290    begin
10291       --  Add renaming declarations for discriminals and a declaration for the
10292       --  entry family index (if applicable).
10293
10294       Install_Private_Data_Declarations
10295         (Loc, Task_Body_Procedure (Ttyp), Ttyp, N, Declarations (N));
10296
10297       --  Add a call to Abort_Undefer at the very beginning of the task
10298       --  body since this body is called with abort still deferred.
10299
10300       if Abort_Allowed then
10301          Call := Build_Runtime_Call (Loc, RE_Abort_Undefer);
10302          Insert_Before
10303            (First (Statements (Handled_Statement_Sequence (N))), Call);
10304          Analyze (Call);
10305       end if;
10306
10307       --  The statement part has already been protected with an at_end and
10308       --  cleanup actions. The call to Complete_Activation must be placed
10309       --  at the head of the sequence of statements of that block. The
10310       --  declarations have been merged in this sequence of statements but
10311       --  the first real statement is accessible from the First_Real_Statement
10312       --  field (which was set for exactly this purpose).
10313
10314       if Restricted_Profile then
10315          Call := Build_Runtime_Call (Loc, RE_Complete_Restricted_Activation);
10316       else
10317          Call := Build_Runtime_Call (Loc, RE_Complete_Activation);
10318       end if;
10319
10320       Insert_Before
10321         (First_Real_Statement (Handled_Statement_Sequence (N)), Call);
10322       Analyze (Call);
10323
10324       New_N :=
10325         Make_Subprogram_Body (Loc,
10326           Specification              => Build_Task_Proc_Specification (Ttyp),
10327           Declarations               => Declarations (N),
10328           Handled_Statement_Sequence => Handled_Statement_Sequence (N));
10329
10330       --  If the task contains generic instantiations, cleanup actions are
10331       --  delayed until after instantiation. Transfer the activation chain to
10332       --  the subprogram, to insure that the activation call is properly
10333       --  generated. It the task body contains inner tasks, indicate that the
10334       --  subprogram is a task master.
10335
10336       if Delay_Cleanups (Ttyp) then
10337          Set_Activation_Chain_Entity (New_N, Activation_Chain_Entity (N));
10338          Set_Is_Task_Master  (New_N, Is_Task_Master (N));
10339       end if;
10340
10341       Rewrite (N, New_N);
10342       Analyze (N);
10343
10344       --  Set elaboration flag immediately after task body. If the body is a
10345       --  subunit, the flag is set in the declarative part containing the stub.
10346
10347       if Nkind (Parent (N)) /= N_Subunit then
10348          Insert_After (N,
10349            Make_Assignment_Statement (Loc,
10350              Name =>
10351                Make_Identifier (Loc, New_External_Name (Chars (Ttyp), 'E')),
10352              Expression => New_Reference_To (Standard_True, Loc)));
10353       end if;
10354
10355       --  Ada 2005 (AI-345): Construct the primitive entry wrapper bodies after
10356       --  the task body. At this point all wrapper specs have been created,
10357       --  frozen and included in the dispatch table for the task type.
10358
10359       if Ada_Version >= Ada_2005 then
10360          if Nkind (Parent (N)) = N_Subunit then
10361             Insert_Nod := Corresponding_Stub (Parent (N));
10362          else
10363             Insert_Nod := N;
10364          end if;
10365
10366          Build_Wrapper_Bodies (Loc, Ttyp, Insert_Nod);
10367       end if;
10368    end Expand_N_Task_Body;
10369
10370    ------------------------------------
10371    -- Expand_N_Task_Type_Declaration --
10372    ------------------------------------
10373
10374    --  We have several things to do. First we must create a Boolean flag used
10375    --  to mark if the body is elaborated yet. This variable gets set to True
10376    --  when the body of the task is elaborated (we can't rely on the normal
10377    --  ABE mechanism for the task body, since we need to pass an access to
10378    --  this elaboration boolean to the runtime routines).
10379
10380    --    taskE : aliased Boolean := False;
10381
10382    --  Next a variable is declared to hold the task stack size (either the
10383    --  default : Unspecified_Size, or a value that is set by a pragma
10384    --  Storage_Size). If the value of the pragma Storage_Size is static, then
10385    --  the variable is initialized with this value:
10386
10387    --    taskZ : Size_Type := Unspecified_Size;
10388    --  or
10389    --    taskZ : Size_Type := Size_Type (size_expression);
10390
10391    --  Note: No variable is needed to hold the task relative deadline since
10392    --  its value would never be static because the parameter is of a private
10393    --  type (Ada.Real_Time.Time_Span).
10394
10395    --  Next we create a corresponding record type declaration used to represent
10396    --  values of this task. The general form of this type declaration is
10397
10398    --    type taskV (discriminants) is record
10399    --      _Task_Id     : Task_Id;
10400    --      entry_family : array (bounds) of Void;
10401    --      _Priority    : Integer         := priority_expression;
10402    --      _Size        : Size_Type       := Size_Type (size_expression);
10403    --      _Task_Info   : Task_Info_Type  := task_info_expression;
10404    --      _CPU         : Integer         := cpu_range_expression;
10405    --    end record;
10406
10407    --  The discriminants are present only if the corresponding task type has
10408    --  discriminants, and they exactly mirror the task type discriminants.
10409
10410    --  The Id field is always present. It contains the Task_Id value, as set by
10411    --  the call to Create_Task. Note that although the task is limited, the
10412    --  task value record type is not limited, so there is no problem in passing
10413    --  this field as an out parameter to Create_Task.
10414
10415    --  One entry_family component is present for each entry family in the task
10416    --  definition. The bounds correspond to the bounds of the entry family
10417    --  (which may depend on discriminants). The element type is void, since we
10418    --  only need the bounds information for determining the entry index. Note
10419    --  that the use of an anonymous array would normally be illegal in this
10420    --  context, but this is a parser check, and the semantics is quite prepared
10421    --  to handle such a case.
10422
10423    --  The _Size field is present only if a Storage_Size pragma appears in the
10424    --  task definition. The expression captures the argument that was present
10425    --  in the pragma, and is used to override the task stack size otherwise
10426    --  associated with the task type.
10427
10428    --  The _Priority field is present only if a Priority or Interrupt_Priority
10429    --  pragma appears in the task definition. The expression captures the
10430    --  argument that was present in the pragma, and is used to provide the Size
10431    --  parameter to the call to Create_Task.
10432
10433    --  The _Task_Info field is present only if a Task_Info pragma appears in
10434    --  the task definition. The expression captures the argument that was
10435    --  present in the pragma, and is used to provide the Task_Image parameter
10436    --  to the call to Create_Task.
10437
10438    --  The _CPU field is present only if a CPU pragma appears in the task
10439    --  definition. The expression captures the argument that was present in
10440    --  the pragma, and is used to provide the CPU parameter to the call to
10441    --  Create_Task.
10442
10443    --  The _Relative_Deadline field is present only if a Relative_Deadline
10444    --  pragma appears in the task definition. The expression captures the
10445    --  argument that was present in the pragma, and is used to provide the
10446    --  Relative_Deadline parameter to the call to Create_Task.
10447
10448    --  When a task is declared, an instance of the task value record is
10449    --  created. The elaboration of this declaration creates the correct bounds
10450    --  for the entry families, and also evaluates the size, priority, and
10451    --  task_Info expressions if needed. The initialization routine for the task
10452    --  type itself then calls Create_Task with appropriate parameters to
10453    --  initialize the value of the Task_Id field.
10454
10455    --  Note: the address of this record is passed as the "Discriminants"
10456    --  parameter for Create_Task. Since Create_Task merely passes this onto the
10457    --  body procedure, it does not matter that it does not quite match the
10458    --  GNARLI model of what is being passed (the record contains more than just
10459    --  the discriminants, but the discriminants can be found from the record
10460    --  value).
10461
10462    --  The Entity_Id for this created record type is placed in the
10463    --  Corresponding_Record_Type field of the associated task type entity.
10464
10465    --  Next we create a procedure specification for the task body procedure:
10466
10467    --    procedure taskB (_Task : access taskV);
10468
10469    --  Note that this must come after the record type declaration, since
10470    --  the spec refers to this type. It turns out that the initialization
10471    --  procedure for the value type references the task body spec, but that's
10472    --  fine, since it won't be generated till the freeze point for the type,
10473    --  which is certainly after the task body spec declaration.
10474
10475    --  Finally, we set the task index value field of the entry attribute in
10476    --  the case of a simple entry.
10477
10478    procedure Expand_N_Task_Type_Declaration (N : Node_Id) is
10479       Loc     : constant Source_Ptr := Sloc (N);
10480       Tasktyp : constant Entity_Id  := Etype (Defining_Identifier (N));
10481       Tasknm  : constant Name_Id    := Chars (Tasktyp);
10482       Taskdef : constant Node_Id    := Task_Definition (N);
10483
10484       Proc_Spec  : Node_Id;
10485       Rec_Decl   : Node_Id;
10486       Rec_Ent    : Entity_Id;
10487       Cdecls     : List_Id;
10488       Elab_Decl  : Node_Id;
10489       Size_Decl  : Node_Id;
10490       Body_Decl  : Node_Id;
10491       Task_Size  : Node_Id;
10492       Ent_Stack  : Entity_Id;
10493       Decl_Stack : Node_Id;
10494
10495    begin
10496       --  If already expanded, nothing to do
10497
10498       if Present (Corresponding_Record_Type (Tasktyp)) then
10499          return;
10500       end if;
10501
10502       --  Here we will do the expansion
10503
10504       Rec_Decl := Build_Corresponding_Record (N, Tasktyp, Loc);
10505
10506       Rec_Ent  := Defining_Identifier (Rec_Decl);
10507       Cdecls   := Component_Items (Component_List
10508                                      (Type_Definition (Rec_Decl)));
10509
10510       Qualify_Entity_Names (N);
10511
10512       --  First create the elaboration variable
10513
10514       Elab_Decl :=
10515         Make_Object_Declaration (Loc,
10516           Defining_Identifier =>
10517             Make_Defining_Identifier (Sloc (Tasktyp),
10518               Chars => New_External_Name (Tasknm, 'E')),
10519           Aliased_Present      => True,
10520           Object_Definition    => New_Reference_To (Standard_Boolean, Loc),
10521           Expression           => New_Reference_To (Standard_False, Loc));
10522       Insert_After (N, Elab_Decl);
10523
10524       --  Next create the declaration of the size variable (tasknmZ)
10525
10526       Set_Storage_Size_Variable (Tasktyp,
10527         Make_Defining_Identifier (Sloc (Tasktyp),
10528           Chars => New_External_Name (Tasknm, 'Z')));
10529
10530       if Present (Taskdef) and then Has_Storage_Size_Pragma (Taskdef) and then
10531         Is_Static_Expression (Expression (First (
10532           Pragma_Argument_Associations (Find_Task_Or_Protected_Pragma (
10533             Taskdef, Name_Storage_Size)))))
10534       then
10535          Size_Decl :=
10536            Make_Object_Declaration (Loc,
10537              Defining_Identifier => Storage_Size_Variable (Tasktyp),
10538              Object_Definition => New_Reference_To (RTE (RE_Size_Type), Loc),
10539              Expression =>
10540                Convert_To (RTE (RE_Size_Type),
10541                  Relocate_Node (
10542                    Expression (First (
10543                      Pragma_Argument_Associations (
10544                        Find_Task_Or_Protected_Pragma
10545                          (Taskdef, Name_Storage_Size)))))));
10546
10547       else
10548          Size_Decl :=
10549            Make_Object_Declaration (Loc,
10550              Defining_Identifier => Storage_Size_Variable (Tasktyp),
10551              Object_Definition => New_Reference_To (RTE (RE_Size_Type), Loc),
10552              Expression => New_Reference_To (RTE (RE_Unspecified_Size), Loc));
10553       end if;
10554
10555       Insert_After (Elab_Decl, Size_Decl);
10556
10557       --  Next build the rest of the corresponding record declaration. This is
10558       --  done last, since the corresponding record initialization procedure
10559       --  will reference the previously created entities.
10560
10561       --  Fill in the component declarations -- first the _Task_Id field
10562
10563       Append_To (Cdecls,
10564         Make_Component_Declaration (Loc,
10565           Defining_Identifier =>
10566             Make_Defining_Identifier (Loc, Name_uTask_Id),
10567           Component_Definition =>
10568             Make_Component_Definition (Loc,
10569               Aliased_Present    => False,
10570               Subtype_Indication => New_Reference_To (RTE (RO_ST_Task_Id),
10571                                     Loc))));
10572
10573       --  Declare static ATCB (that is, created by the expander) if we are
10574       --  using the Restricted run time.
10575
10576       if Restricted_Profile then
10577          Append_To (Cdecls,
10578            Make_Component_Declaration (Loc,
10579              Defining_Identifier  =>
10580                Make_Defining_Identifier (Loc, Name_uATCB),
10581
10582              Component_Definition =>
10583                Make_Component_Definition (Loc,
10584                  Aliased_Present     => True,
10585                  Subtype_Indication  => Make_Subtype_Indication (Loc,
10586                    Subtype_Mark => New_Occurrence_Of
10587                      (RTE (RE_Ada_Task_Control_Block), Loc),
10588
10589                    Constraint   =>
10590                      Make_Index_Or_Discriminant_Constraint (Loc,
10591                        Constraints =>
10592                          New_List (Make_Integer_Literal (Loc, 0)))))));
10593
10594       end if;
10595
10596       --  Declare static stack (that is, created by the expander) if we are
10597       --  using the Restricted run time on a bare board configuration.
10598
10599       if Restricted_Profile
10600         and then Preallocated_Stacks_On_Target
10601       then
10602          --  First we need to extract the appropriate stack size
10603
10604          Ent_Stack := Make_Defining_Identifier (Loc, Name_uStack);
10605
10606          if Present (Taskdef) and then Has_Storage_Size_Pragma (Taskdef) then
10607             declare
10608                Expr_N : constant Node_Id :=
10609                           Expression (First (
10610                             Pragma_Argument_Associations (
10611                               Find_Task_Or_Protected_Pragma
10612                                 (Taskdef, Name_Storage_Size))));
10613                Etyp   : constant Entity_Id := Etype (Expr_N);
10614                P      : constant Node_Id   := Parent (Expr_N);
10615
10616             begin
10617                --  The stack is defined inside the corresponding record.
10618                --  Therefore if the size of the stack is set by means of
10619                --  a discriminant, we must reference the discriminant of the
10620                --  corresponding record type.
10621
10622                if Nkind (Expr_N) in N_Has_Entity
10623                  and then Present (Discriminal_Link (Entity (Expr_N)))
10624                then
10625                   Task_Size :=
10626                     New_Reference_To
10627                       (CR_Discriminant (Discriminal_Link (Entity (Expr_N))),
10628                        Loc);
10629                   Set_Parent   (Task_Size, P);
10630                   Set_Etype    (Task_Size, Etyp);
10631                   Set_Analyzed (Task_Size);
10632
10633                else
10634                   Task_Size := Relocate_Node (Expr_N);
10635                end if;
10636             end;
10637
10638          else
10639             Task_Size :=
10640               New_Reference_To (RTE (RE_Default_Stack_Size), Loc);
10641          end if;
10642
10643          Decl_Stack := Make_Component_Declaration (Loc,
10644            Defining_Identifier  => Ent_Stack,
10645
10646            Component_Definition =>
10647              Make_Component_Definition (Loc,
10648                Aliased_Present     => True,
10649                Subtype_Indication  => Make_Subtype_Indication (Loc,
10650                  Subtype_Mark =>
10651                    New_Occurrence_Of (RTE (RE_Storage_Array), Loc),
10652
10653                  Constraint   =>
10654                    Make_Index_Or_Discriminant_Constraint (Loc,
10655                      Constraints  => New_List (Make_Range (Loc,
10656                        Low_Bound  => Make_Integer_Literal (Loc, 1),
10657                        High_Bound => Convert_To (RTE (RE_Storage_Offset),
10658                          Task_Size)))))));
10659
10660          Append_To (Cdecls, Decl_Stack);
10661
10662          --  The appropriate alignment for the stack is ensured by the run-time
10663          --  code in charge of task creation.
10664
10665       end if;
10666
10667       --  Add components for entry families
10668
10669       Collect_Entry_Families (Loc, Cdecls, Size_Decl, Tasktyp);
10670
10671       --  Add the _Priority component if a Priority pragma is present
10672
10673       if Present (Taskdef) and then Has_Pragma_Priority (Taskdef) then
10674          declare
10675             Prag : constant Node_Id :=
10676                      Find_Task_Or_Protected_Pragma (Taskdef, Name_Priority);
10677             Expr : Node_Id;
10678
10679          begin
10680             Expr := First (Pragma_Argument_Associations (Prag));
10681
10682             if Nkind (Expr) = N_Pragma_Argument_Association then
10683                Expr := Expression (Expr);
10684             end if;
10685
10686             Expr := New_Copy_Tree (Expr);
10687
10688             --  Add conversion to proper type to do range check if required
10689             --  Note that for runtime units, we allow out of range interrupt
10690             --  priority values to be used in a priority pragma. This is for
10691             --  the benefit of some versions of System.Interrupts which use
10692             --  a special server task with maximum interrupt priority.
10693
10694             if Pragma_Name (Prag) = Name_Priority
10695               and then not GNAT_Mode
10696             then
10697                Rewrite (Expr, Convert_To (RTE (RE_Priority), Expr));
10698             else
10699                Rewrite (Expr, Convert_To (RTE (RE_Any_Priority), Expr));
10700             end if;
10701
10702             Append_To (Cdecls,
10703               Make_Component_Declaration (Loc,
10704                 Defining_Identifier =>
10705                   Make_Defining_Identifier (Loc, Name_uPriority),
10706                 Component_Definition =>
10707                   Make_Component_Definition (Loc,
10708                     Aliased_Present    => False,
10709                     Subtype_Indication => New_Reference_To (Standard_Integer,
10710                                                             Loc)),
10711                 Expression => Expr));
10712          end;
10713       end if;
10714
10715       --  Add the _Task_Size component if a Storage_Size pragma is present
10716
10717       if Present (Taskdef)
10718         and then Has_Storage_Size_Pragma (Taskdef)
10719       then
10720          Append_To (Cdecls,
10721            Make_Component_Declaration (Loc,
10722              Defining_Identifier =>
10723                Make_Defining_Identifier (Loc, Name_uSize),
10724
10725              Component_Definition =>
10726                Make_Component_Definition (Loc,
10727                  Aliased_Present    => False,
10728                  Subtype_Indication => New_Reference_To (RTE (RE_Size_Type),
10729                                                          Loc)),
10730
10731              Expression =>
10732                Convert_To (RTE (RE_Size_Type),
10733                  Relocate_Node (
10734                    Expression (First (
10735                      Pragma_Argument_Associations (
10736                        Find_Task_Or_Protected_Pragma
10737                          (Taskdef, Name_Storage_Size))))))));
10738       end if;
10739
10740       --  Add the _Task_Info component if a Task_Info pragma is present
10741
10742       if Present (Taskdef) and then Has_Task_Info_Pragma (Taskdef) then
10743          Append_To (Cdecls,
10744            Make_Component_Declaration (Loc,
10745              Defining_Identifier =>
10746                Make_Defining_Identifier (Loc, Name_uTask_Info),
10747
10748              Component_Definition =>
10749                Make_Component_Definition (Loc,
10750                  Aliased_Present    => False,
10751                  Subtype_Indication =>
10752                    New_Reference_To (RTE (RE_Task_Info_Type), Loc)),
10753
10754              Expression => New_Copy (
10755                Expression (First (
10756                  Pragma_Argument_Associations (
10757                    Find_Task_Or_Protected_Pragma
10758                      (Taskdef, Name_Task_Info)))))));
10759       end if;
10760
10761       --  Add the _CPU component if a CPU pragma is present
10762
10763       if Present (Taskdef) and then Has_Pragma_CPU (Taskdef) then
10764          Append_To (Cdecls,
10765            Make_Component_Declaration (Loc,
10766              Defining_Identifier =>
10767                Make_Defining_Identifier (Loc, Name_uCPU),
10768
10769              Component_Definition =>
10770                Make_Component_Definition (Loc,
10771                  Aliased_Present    => False,
10772                  Subtype_Indication =>
10773                    New_Reference_To (RTE (RE_CPU_Range), Loc)),
10774
10775              Expression => New_Copy (
10776                Expression (First (
10777                  Pragma_Argument_Associations (
10778                    Find_Task_Or_Protected_Pragma
10779                      (Taskdef, Name_CPU)))))));
10780       end if;
10781
10782       --  Add the _Relative_Deadline component if a Relative_Deadline pragma is
10783       --  present. If we are using a restricted run time this component will
10784       --  not be added (deadlines are not allowed by the Ravenscar profile).
10785
10786       if not Restricted_Profile
10787         and then Present (Taskdef)
10788         and then Has_Relative_Deadline_Pragma (Taskdef)
10789       then
10790          Append_To (Cdecls,
10791            Make_Component_Declaration (Loc,
10792              Defining_Identifier =>
10793                Make_Defining_Identifier (Loc, Name_uRelative_Deadline),
10794
10795              Component_Definition =>
10796                Make_Component_Definition (Loc,
10797                  Aliased_Present    => False,
10798                  Subtype_Indication =>
10799                    New_Reference_To (RTE (RE_Time_Span), Loc)),
10800
10801              Expression =>
10802                Convert_To (RTE (RE_Time_Span),
10803                  Relocate_Node (
10804                    Expression (First (
10805                      Pragma_Argument_Associations (
10806                        Find_Task_Or_Protected_Pragma
10807                          (Taskdef, Name_Relative_Deadline))))))));
10808       end if;
10809
10810       Insert_After (Size_Decl, Rec_Decl);
10811
10812       --  Analyze the record declaration immediately after construction,
10813       --  because the initialization procedure is needed for single task
10814       --  declarations before the next entity is analyzed.
10815
10816       Analyze (Rec_Decl);
10817
10818       --  Create the declaration of the task body procedure
10819
10820       Proc_Spec := Build_Task_Proc_Specification (Tasktyp);
10821       Body_Decl :=
10822         Make_Subprogram_Declaration (Loc,
10823           Specification => Proc_Spec);
10824
10825       Insert_After (Rec_Decl, Body_Decl);
10826
10827       --  The subprogram does not comes from source, so we have to indicate the
10828       --  need for debugging information explicitly.
10829
10830       if Comes_From_Source (Original_Node (N)) then
10831          Set_Debug_Info_Needed (Defining_Entity (Proc_Spec));
10832       end if;
10833
10834       --  Ada 2005 (AI-345): Construct the primitive entry wrapper specs before
10835       --  the corresponding record has been frozen.
10836
10837       if Ada_Version >= Ada_2005 then
10838          Build_Wrapper_Specs (Loc, Tasktyp, Rec_Decl);
10839       end if;
10840
10841       --  Ada 2005 (AI-345): We must defer freezing to allow further
10842       --  declaration of primitive subprograms covering task interfaces
10843
10844       if Ada_Version <= Ada_95 then
10845
10846          --  Now we can freeze the corresponding record. This needs manually
10847          --  freezing, since it is really part of the task type, and the task
10848          --  type is frozen at this stage. We of course need the initialization
10849          --  procedure for this corresponding record type and we won't get it
10850          --  in time if we don't freeze now.
10851
10852          declare
10853             L : constant List_Id := Freeze_Entity (Rec_Ent, N);
10854          begin
10855             if Is_Non_Empty_List (L) then
10856                Insert_List_After (Body_Decl, L);
10857             end if;
10858          end;
10859       end if;
10860
10861       --  Complete the expansion of access types to the current task type, if
10862       --  any were declared.
10863
10864       Expand_Previous_Access_Type (Tasktyp);
10865
10866       --  Create wrappers for entries that have pre/postconditions
10867
10868       declare
10869          Ent : Entity_Id;
10870
10871       begin
10872          Ent := First_Entity (Tasktyp);
10873          while Present (Ent) loop
10874             if Ekind_In (Ent, E_Entry, E_Entry_Family)
10875               and then Present (Spec_PPC_List (Contract (Ent)))
10876             then
10877                Build_PPC_Wrapper (Ent, N);
10878             end if;
10879
10880             Next_Entity (Ent);
10881          end loop;
10882       end;
10883    end Expand_N_Task_Type_Declaration;
10884
10885    -------------------------------
10886    -- Expand_N_Timed_Entry_Call --
10887    -------------------------------
10888
10889    --  A timed entry call in normal case is not implemented using ATC mechanism
10890    --  anymore for efficiency reason.
10891
10892    --     select
10893    --        T.E;
10894    --        S1;
10895    --     or
10896    --        Delay D;
10897    --        S2;
10898    --     end select;
10899
10900    --  is expanded as follow:
10901
10902    --  1) When T.E is a task entry_call;
10903
10904    --    declare
10905    --       B  : Boolean;
10906    --       X  : Task_Entry_Index := <entry index>;
10907    --       DX : Duration := To_Duration (D);
10908    --       M  : Delay_Mode := <discriminant>;
10909    --       P  : parms := (parm, parm, parm);
10910
10911    --    begin
10912    --       Timed_Protected_Entry_Call
10913    --         (<acceptor-task>, X, P'Address, DX, M, B);
10914    --       if B then
10915    --          S1;
10916    --       else
10917    --          S2;
10918    --       end if;
10919    --    end;
10920
10921    --  2) When T.E is a protected entry_call;
10922
10923    --    declare
10924    --       B  : Boolean;
10925    --       X  : Protected_Entry_Index := <entry index>;
10926    --       DX : Duration := To_Duration (D);
10927    --       M  : Delay_Mode := <discriminant>;
10928    --       P  : parms := (parm, parm, parm);
10929
10930    --    begin
10931    --       Timed_Protected_Entry_Call
10932    --         (<object>'unchecked_access, X, P'Address, DX, M, B);
10933    --       if B then
10934    --          S1;
10935    --       else
10936    --          S2;
10937    --       end if;
10938    --    end;
10939
10940    --  3) Ada 2005 (AI-345): When T.E is a dispatching procedure call;
10941
10942    --    declare
10943    --       B  : Boolean := False;
10944    --       C  : Ada.Tags.Prim_Op_Kind;
10945    --       DX : Duration := To_Duration (D)
10946    --       K  : Ada.Tags.Tagged_Kind :=
10947    --              Ada.Tags.Get_Tagged_Kind (Ada.Tags.Tag (<object>));
10948    --       M  : Integer :=...;
10949    --       P  : Parameters := (Param1 .. ParamN);
10950    --       S  : Integer;
10951
10952    --    begin
10953    --       if K = Ada.Tags.TK_Limited_Tagged then
10954    --          <dispatching-call>;
10955    --          <triggering-statements>
10956
10957    --       else
10958    --          S :=
10959    --            Ada.Tags.Get_Offset_Index
10960    --              (Ada.Tags.Tag (<object>), DT_Position (<dispatching-call>));
10961
10962    --          _Disp_Timed_Select (<object>, S, P'Address, DX, M, C, B);
10963
10964    --          if C = POK_Protected_Entry
10965    --            or else C = POK_Task_Entry
10966    --          then
10967    --             Param1 := P.Param1;
10968    --             ...
10969    --             ParamN := P.ParamN;
10970    --          end if;
10971
10972    --          if B then
10973    --             if C = POK_Procedure
10974    --               or else C = POK_Protected_Procedure
10975    --               or else C = POK_Task_Procedure
10976    --             then
10977    --                <dispatching-call>;
10978    --             end if;
10979
10980    --             <triggering-statements>
10981    --          else
10982    --             <timed-statements>
10983    --          end if;
10984    --       end if;
10985    --    end;
10986
10987    --  The triggering statement and the sequence of timed statements have not
10988    --  been analyzed yet (see Analyzed_Timed_Entry_Call). They may contain
10989    --  local declarations, and therefore the copies that are made during
10990    --  expansion must be disjoint, as for any other inlining.
10991
10992    procedure Expand_N_Timed_Entry_Call (N : Node_Id) is
10993       Loc : constant Source_Ptr := Sloc (N);
10994
10995       E_Call  : Node_Id :=
10996                   Entry_Call_Statement (Entry_Call_Alternative (N));
10997       E_Stats : constant List_Id :=
10998                   Statements (Entry_Call_Alternative (N));
10999       D_Stat  : Node_Id :=
11000                   Delay_Statement (Delay_Alternative (N));
11001       D_Stats : constant List_Id :=
11002                   Statements (Delay_Alternative (N));
11003
11004       Actuals        : List_Id;
11005       Blk_Typ        : Entity_Id;
11006       Call           : Node_Id;
11007       Call_Ent       : Entity_Id;
11008       Conc_Typ_Stmts : List_Id;
11009       Concval        : Node_Id;
11010       D_Conv         : Node_Id;
11011       D_Disc         : Node_Id;
11012       D_Type         : Entity_Id;
11013       Decls          : List_Id;
11014       Dummy          : Node_Id;
11015       Ename          : Node_Id;
11016       Formals        : List_Id;
11017       Index          : Node_Id;
11018       Is_Disp_Select : Boolean;
11019       Lim_Typ_Stmts  : List_Id;
11020       N_Stats        : List_Id;
11021       Obj            : Entity_Id;
11022       Param          : Node_Id;
11023       Params         : List_Id;
11024       Stmt           : Node_Id;
11025       Stmts          : List_Id;
11026       Unpack         : List_Id;
11027
11028       B : Entity_Id;  --  Call status flag
11029       C : Entity_Id;  --  Call kind
11030       D : Entity_Id;  --  Delay
11031       K : Entity_Id;  --  Tagged kind
11032       M : Entity_Id;  --  Delay mode
11033       P : Entity_Id;  --  Parameter block
11034       S : Entity_Id;  --  Primitive operation slot
11035
11036    begin
11037       --  Under the Ravenscar profile, timed entry calls are excluded. An error
11038       --  was already reported on spec, so do not attempt to expand the call.
11039
11040       if Restriction_Active (No_Select_Statements) then
11041          return;
11042       end if;
11043
11044       Process_Statements_For_Controlled_Objects (Entry_Call_Alternative (N));
11045       Process_Statements_For_Controlled_Objects (Delay_Alternative (N));
11046
11047       --  The arguments in the call may require dynamic allocation, and the
11048       --  call statement may have been transformed into a block. The block
11049       --  may contain additional declarations for internal entities, and the
11050       --  original call is found by sequential search.
11051
11052       if Nkind (E_Call) = N_Block_Statement then
11053          E_Call := First (Statements (Handled_Statement_Sequence (E_Call)));
11054          while not Nkind_In (E_Call, N_Procedure_Call_Statement,
11055                                      N_Entry_Call_Statement)
11056          loop
11057             Next (E_Call);
11058          end loop;
11059       end if;
11060
11061       Is_Disp_Select :=
11062         Ada_Version >= Ada_2005
11063           and then Nkind (E_Call) = N_Procedure_Call_Statement;
11064
11065       if Is_Disp_Select then
11066          Extract_Dispatching_Call (E_Call, Call_Ent, Obj, Actuals, Formals);
11067
11068          Decls := New_List;
11069          Stmts := New_List;
11070
11071          --  Generate:
11072          --    B : Boolean := False;
11073
11074          B := Build_B (Loc, Decls);
11075
11076          --  Generate:
11077          --    C : Ada.Tags.Prim_Op_Kind;
11078
11079          C := Build_C (Loc, Decls);
11080
11081          --  Because the analysis of all statements was disabled, manually
11082          --  analyze the delay statement.
11083
11084          Analyze (D_Stat);
11085          D_Stat := Original_Node (D_Stat);
11086
11087       else
11088          --  Build an entry call using Simple_Entry_Call
11089
11090          Extract_Entry (E_Call, Concval, Ename, Index);
11091          Build_Simple_Entry_Call (E_Call, Concval, Ename, Index);
11092
11093          Decls := Declarations (E_Call);
11094          Stmts := Statements (Handled_Statement_Sequence (E_Call));
11095
11096          if No (Decls) then
11097             Decls := New_List;
11098          end if;
11099
11100          --  Generate:
11101          --    B : Boolean;
11102
11103          B := Make_Defining_Identifier (Loc, Name_uB);
11104
11105          Prepend_To (Decls,
11106            Make_Object_Declaration (Loc,
11107              Defining_Identifier =>
11108                B,
11109              Object_Definition =>
11110                New_Reference_To (Standard_Boolean, Loc)));
11111       end if;
11112
11113       --  Duration and mode processing
11114
11115       D_Type := Base_Type (Etype (Expression (D_Stat)));
11116
11117       --  Use the type of the delay expression (Calendar or Real_Time) to
11118       --  generate the appropriate conversion.
11119
11120       if Nkind (D_Stat) = N_Delay_Relative_Statement then
11121          D_Disc := Make_Integer_Literal (Loc, 0);
11122          D_Conv := Relocate_Node (Expression (D_Stat));
11123
11124       elsif Is_RTE (D_Type, RO_CA_Time) then
11125          D_Disc := Make_Integer_Literal (Loc, 1);
11126          D_Conv := Make_Function_Call (Loc,
11127            New_Reference_To (RTE (RO_CA_To_Duration), Loc),
11128            New_List (New_Copy (Expression (D_Stat))));
11129
11130       else pragma Assert (Is_RTE (D_Type, RO_RT_Time));
11131          D_Disc := Make_Integer_Literal (Loc, 2);
11132          D_Conv := Make_Function_Call (Loc,
11133            New_Reference_To (RTE (RO_RT_To_Duration), Loc),
11134            New_List (New_Copy (Expression (D_Stat))));
11135       end if;
11136
11137       D := Make_Temporary (Loc, 'D');
11138
11139       --  Generate:
11140       --    D : Duration;
11141
11142       Append_To (Decls,
11143         Make_Object_Declaration (Loc,
11144           Defining_Identifier =>
11145             D,
11146           Object_Definition =>
11147             New_Reference_To (Standard_Duration, Loc)));
11148
11149       M := Make_Temporary (Loc, 'M');
11150
11151       --  Generate:
11152       --    M : Integer := (0 | 1 | 2);
11153
11154       Append_To (Decls,
11155         Make_Object_Declaration (Loc,
11156           Defining_Identifier =>
11157             M,
11158           Object_Definition =>
11159             New_Reference_To (Standard_Integer, Loc),
11160           Expression =>
11161             D_Disc));
11162
11163       --  Do the assignment at this stage only because the evaluation of the
11164       --  expression must not occur before (see ACVC C97302A).
11165
11166       Append_To (Stmts,
11167         Make_Assignment_Statement (Loc,
11168           Name =>
11169             New_Reference_To (D, Loc),
11170           Expression =>
11171             D_Conv));
11172
11173       --  Parameter block processing
11174
11175       --  Manually create the parameter block for dispatching calls. In the
11176       --  case of entries, the block has already been created during the call
11177       --  to Build_Simple_Entry_Call.
11178
11179       if Is_Disp_Select then
11180
11181          --  Tagged kind processing, generate:
11182          --    K : Ada.Tags.Tagged_Kind :=
11183          --          Ada.Tags.Get_Tagged_Kind (Ada.Tags.Tag <object>));
11184
11185          K := Build_K (Loc, Decls, Obj);
11186
11187          Blk_Typ := Build_Parameter_Block (Loc, Actuals, Formals, Decls);
11188          P := Parameter_Block_Pack
11189                 (Loc, Blk_Typ, Actuals, Formals, Decls, Stmts);
11190
11191          --  Dispatch table slot processing, generate:
11192          --    S : Integer;
11193
11194          S := Build_S (Loc, Decls);
11195
11196          --  Generate:
11197          --    S := Ada.Tags.Get_Offset_Index
11198          --           (Ada.Tags.Tag (<object>), DT_Position (Call_Ent));
11199
11200          Conc_Typ_Stmts :=
11201            New_List (Build_S_Assignment (Loc, S, Obj, Call_Ent));
11202
11203          --  Generate:
11204          --    _Disp_Timed_Select (<object>, S, P'Address, D, M, C, B);
11205
11206          --  where Obj is the controlling formal parameter, S is the dispatch
11207          --  table slot number of the dispatching operation, P is the wrapped
11208          --  parameter block, D is the duration, M is the duration mode, C is
11209          --  the call kind and B is the call status.
11210
11211          Params := New_List;
11212
11213          Append_To (Params, New_Copy_Tree (Obj));
11214          Append_To (Params, New_Reference_To (S, Loc));
11215          Append_To (Params, Make_Attribute_Reference (Loc,
11216                               Prefix => New_Reference_To (P, Loc),
11217                               Attribute_Name => Name_Address));
11218          Append_To (Params, New_Reference_To (D, Loc));
11219          Append_To (Params, New_Reference_To (M, Loc));
11220          Append_To (Params, New_Reference_To (C, Loc));
11221          Append_To (Params, New_Reference_To (B, Loc));
11222
11223          Append_To (Conc_Typ_Stmts,
11224            Make_Procedure_Call_Statement (Loc,
11225              Name =>
11226                New_Reference_To (
11227                  Find_Prim_Op (Etype (Etype (Obj)),
11228                    Name_uDisp_Timed_Select),
11229                  Loc),
11230              Parameter_Associations =>
11231                Params));
11232
11233          --  Generate:
11234          --    if C = POK_Protected_Entry
11235          --      or else C = POK_Task_Entry
11236          --    then
11237          --       Param1 := P.Param1;
11238          --       ...
11239          --       ParamN := P.ParamN;
11240          --    end if;
11241
11242          Unpack := Parameter_Block_Unpack (Loc, P, Actuals, Formals);
11243
11244          --  Generate the if statement only when the packed parameters need
11245          --  explicit assignments to their corresponding actuals.
11246
11247          if Present (Unpack) then
11248             Append_To (Conc_Typ_Stmts,
11249               Make_If_Statement (Loc,
11250
11251                 Condition =>
11252                   Make_Or_Else (Loc,
11253                     Left_Opnd =>
11254                       Make_Op_Eq (Loc,
11255                         Left_Opnd =>
11256                           New_Reference_To (C, Loc),
11257                         Right_Opnd =>
11258                           New_Reference_To (RTE (
11259                             RE_POK_Protected_Entry), Loc)),
11260                     Right_Opnd =>
11261                       Make_Op_Eq (Loc,
11262                         Left_Opnd =>
11263                           New_Reference_To (C, Loc),
11264                         Right_Opnd =>
11265                           New_Reference_To (RTE (RE_POK_Task_Entry), Loc))),
11266
11267                 Then_Statements =>
11268                   Unpack));
11269          end if;
11270
11271          --  Generate:
11272
11273          --    if B then
11274          --       if C = POK_Procedure
11275          --         or else C = POK_Protected_Procedure
11276          --         or else C = POK_Task_Procedure
11277          --       then
11278          --          <dispatching-call>
11279          --       end if;
11280          --       <triggering-statements>
11281          --    else
11282          --       <timed-statements>
11283          --    end if;
11284
11285          N_Stats := Copy_Separate_List (E_Stats);
11286
11287          Prepend_To (N_Stats,
11288            Make_If_Statement (Loc,
11289
11290              Condition =>
11291                Make_Or_Else (Loc,
11292                  Left_Opnd =>
11293                    Make_Op_Eq (Loc,
11294                      Left_Opnd =>
11295                        New_Reference_To (C, Loc),
11296                      Right_Opnd =>
11297                        New_Reference_To (RTE (RE_POK_Procedure), Loc)),
11298                  Right_Opnd =>
11299                    Make_Or_Else (Loc,
11300                      Left_Opnd =>
11301                        Make_Op_Eq (Loc,
11302                          Left_Opnd =>
11303                            New_Reference_To (C, Loc),
11304                          Right_Opnd =>
11305                            New_Reference_To (RTE (
11306                              RE_POK_Protected_Procedure), Loc)),
11307                      Right_Opnd =>
11308                        Make_Op_Eq (Loc,
11309                          Left_Opnd =>
11310                            New_Reference_To (C, Loc),
11311                          Right_Opnd =>
11312                            New_Reference_To (RTE (
11313                              RE_POK_Task_Procedure), Loc)))),
11314
11315              Then_Statements =>
11316                New_List (E_Call)));
11317
11318          Append_To (Conc_Typ_Stmts,
11319            Make_If_Statement (Loc,
11320              Condition => New_Reference_To (B, Loc),
11321              Then_Statements => N_Stats,
11322              Else_Statements => D_Stats));
11323
11324          --  Generate:
11325          --    <dispatching-call>;
11326          --    <triggering-statements>
11327
11328          Lim_Typ_Stmts := Copy_Separate_List (E_Stats);
11329          Prepend_To (Lim_Typ_Stmts, New_Copy_Tree (E_Call));
11330
11331          --  Generate:
11332          --    if K = Ada.Tags.TK_Limited_Tagged then
11333          --       Lim_Typ_Stmts
11334          --    else
11335          --       Conc_Typ_Stmts
11336          --    end if;
11337
11338          Append_To (Stmts,
11339            Make_If_Statement (Loc,
11340              Condition =>
11341                Make_Op_Eq (Loc,
11342                  Left_Opnd =>
11343                    New_Reference_To (K, Loc),
11344                  Right_Opnd =>
11345                    New_Reference_To (RTE (RE_TK_Limited_Tagged), Loc)),
11346
11347              Then_Statements =>
11348                Lim_Typ_Stmts,
11349
11350              Else_Statements =>
11351                Conc_Typ_Stmts));
11352
11353       else
11354          --  Skip assignments to temporaries created for in-out parameters.
11355          --  This makes unwarranted assumptions about the shape of the expanded
11356          --  tree for the call, and should be cleaned up ???
11357
11358          Stmt := First (Stmts);
11359          while Nkind (Stmt) /= N_Procedure_Call_Statement loop
11360             Next (Stmt);
11361          end loop;
11362
11363          --  Do the assignment at this stage only because the evaluation
11364          --  of the expression must not occur before (see ACVC C97302A).
11365
11366          Insert_Before (Stmt,
11367            Make_Assignment_Statement (Loc,
11368              Name => New_Reference_To (D, Loc),
11369              Expression => D_Conv));
11370
11371          Call   := Stmt;
11372          Params := Parameter_Associations (Call);
11373
11374          --  For a protected type, we build a Timed_Protected_Entry_Call
11375
11376          if Is_Protected_Type (Etype (Concval)) then
11377
11378             --  Create a new call statement
11379
11380             Param := First (Params);
11381             while Present (Param)
11382               and then not Is_RTE (Etype (Param), RE_Call_Modes)
11383             loop
11384                Next (Param);
11385             end loop;
11386
11387             Dummy := Remove_Next (Next (Param));
11388
11389             --  Remove garbage is following the Cancel_Param if present
11390
11391             Dummy := Next (Param);
11392
11393             --  Remove the mode of the Protected_Entry_Call call, then remove
11394             --  the Communication_Block of the Protected_Entry_Call call, and
11395             --  finally add Duration and a Delay_Mode parameter
11396
11397             pragma Assert (Present (Param));
11398             Rewrite (Param, New_Reference_To (D, Loc));
11399
11400             Rewrite (Dummy, New_Reference_To (M, Loc));
11401
11402             --  Add a Boolean flag for successful entry call
11403
11404             Append_To (Params, New_Reference_To (B, Loc));
11405
11406             case Corresponding_Runtime_Package (Etype (Concval)) is
11407                when System_Tasking_Protected_Objects_Entries =>
11408                   Rewrite (Call,
11409                     Make_Procedure_Call_Statement (Loc,
11410                       Name =>
11411                         New_Reference_To
11412                           (RTE (RE_Timed_Protected_Entry_Call), Loc),
11413                       Parameter_Associations => Params));
11414
11415                when System_Tasking_Protected_Objects_Single_Entry =>
11416                   Param := First (Params);
11417                   while Present (Param)
11418                     and then not
11419                       Is_RTE (Etype (Param), RE_Protected_Entry_Index)
11420                   loop
11421                      Next (Param);
11422                   end loop;
11423
11424                   Remove (Param);
11425
11426                   Rewrite (Call,
11427                     Make_Procedure_Call_Statement (Loc,
11428                       Name => New_Reference_To (
11429                         RTE (RE_Timed_Protected_Single_Entry_Call), Loc),
11430                       Parameter_Associations => Params));
11431
11432                when others =>
11433                   raise Program_Error;
11434             end case;
11435
11436          --  For the task case, build a Timed_Task_Entry_Call
11437
11438          else
11439             --  Create a new call statement
11440
11441             Append_To (Params, New_Reference_To (D, Loc));
11442             Append_To (Params, New_Reference_To (M, Loc));
11443             Append_To (Params, New_Reference_To (B, Loc));
11444
11445             Rewrite (Call,
11446               Make_Procedure_Call_Statement (Loc,
11447                 Name =>
11448                   New_Reference_To (RTE (RE_Timed_Task_Entry_Call), Loc),
11449                 Parameter_Associations => Params));
11450          end if;
11451
11452          Append_To (Stmts,
11453            Make_Implicit_If_Statement (N,
11454              Condition => New_Reference_To (B, Loc),
11455              Then_Statements => E_Stats,
11456              Else_Statements => D_Stats));
11457       end if;
11458
11459       Rewrite (N,
11460         Make_Block_Statement (Loc,
11461           Declarations => Decls,
11462           Handled_Statement_Sequence =>
11463             Make_Handled_Sequence_Of_Statements (Loc, Stmts)));
11464
11465       Analyze (N);
11466    end Expand_N_Timed_Entry_Call;
11467
11468    ----------------------------------------
11469    -- Expand_Protected_Body_Declarations --
11470    ----------------------------------------
11471
11472    procedure Expand_Protected_Body_Declarations
11473      (N       : Node_Id;
11474       Spec_Id : Entity_Id)
11475    is
11476    begin
11477       if No_Run_Time_Mode then
11478          Error_Msg_CRT ("protected body", N);
11479          return;
11480
11481       elsif Expander_Active then
11482
11483          --  Associate discriminals with the first subprogram or entry body to
11484          --  be expanded.
11485
11486          if Present (First_Protected_Operation (Declarations (N))) then
11487             Set_Discriminals (Parent (Spec_Id));
11488          end if;
11489       end if;
11490    end Expand_Protected_Body_Declarations;
11491
11492    -------------------------
11493    -- External_Subprogram --
11494    -------------------------
11495
11496    function External_Subprogram (E : Entity_Id) return Entity_Id is
11497       Subp : constant Entity_Id := Protected_Body_Subprogram (E);
11498
11499    begin
11500       --  The internal and external subprograms follow each other on the entity
11501       --  chain. Note that previously private operations had no separate
11502       --  external subprogram. We now create one in all cases, because a
11503       --  private operation may actually appear in an external call, through
11504       --  a 'Access reference used for a callback.
11505
11506       --  If the operation is a function that returns an anonymous access type,
11507       --  the corresponding itype appears before the operation, and must be
11508       --  skipped.
11509
11510       --  This mechanism is fragile, there should be a real link between the
11511       --  two versions of the operation, but there is no place to put it ???
11512
11513       if Is_Access_Type (Next_Entity (Subp)) then
11514          return Next_Entity (Next_Entity (Subp));
11515       else
11516          return Next_Entity (Subp);
11517       end if;
11518    end External_Subprogram;
11519
11520    ------------------------------
11521    -- Extract_Dispatching_Call --
11522    ------------------------------
11523
11524    procedure Extract_Dispatching_Call
11525      (N        : Node_Id;
11526       Call_Ent : out Entity_Id;
11527       Object   : out Entity_Id;
11528       Actuals  : out List_Id;
11529       Formals  : out List_Id)
11530    is
11531       Call_Nam : Node_Id;
11532
11533    begin
11534       pragma Assert (Nkind (N) = N_Procedure_Call_Statement);
11535
11536       if Present (Original_Node (N)) then
11537          Call_Nam := Name (Original_Node (N));
11538       else
11539          Call_Nam := Name (N);
11540       end if;
11541
11542       --  Retrieve the name of the dispatching procedure. It contains the
11543       --  dispatch table slot number.
11544
11545       loop
11546          case Nkind (Call_Nam) is
11547             when N_Identifier =>
11548                exit;
11549
11550             when N_Selected_Component =>
11551                Call_Nam := Selector_Name (Call_Nam);
11552
11553             when others =>
11554                raise Program_Error;
11555
11556          end case;
11557       end loop;
11558
11559       Actuals  := Parameter_Associations (N);
11560       Call_Ent := Entity (Call_Nam);
11561       Formals  := Parameter_Specifications (Parent (Call_Ent));
11562       Object   := First (Actuals);
11563
11564       if Present (Original_Node (Object)) then
11565          Object := Original_Node (Object);
11566       end if;
11567
11568       --  If the type of the dispatching object is an access type then return
11569       --  an explicit dereference.
11570
11571       if Is_Access_Type (Etype (Object)) then
11572          Object := Make_Explicit_Dereference (Sloc (N), Object);
11573          Analyze (Object);
11574       end if;
11575    end Extract_Dispatching_Call;
11576
11577    -------------------
11578    -- Extract_Entry --
11579    -------------------
11580
11581    procedure Extract_Entry
11582      (N       : Node_Id;
11583       Concval : out Node_Id;
11584       Ename   : out Node_Id;
11585       Index   : out Node_Id)
11586    is
11587       Nam : constant Node_Id := Name (N);
11588
11589    begin
11590       --  For a simple entry, the name is a selected component, with the
11591       --  prefix being the task value, and the selector being the entry.
11592
11593       if Nkind (Nam) = N_Selected_Component then
11594          Concval := Prefix (Nam);
11595          Ename   := Selector_Name (Nam);
11596          Index   := Empty;
11597
11598       --  For a member of an entry family, the name is an indexed component
11599       --  where the prefix is a selected component, whose prefix in turn is
11600       --  the task value, and whose selector is the entry family. The single
11601       --  expression in the expressions list of the indexed component is the
11602       --  subscript for the family.
11603
11604       else pragma Assert (Nkind (Nam) = N_Indexed_Component);
11605          Concval := Prefix (Prefix (Nam));
11606          Ename   := Selector_Name (Prefix (Nam));
11607          Index   := First (Expressions (Nam));
11608       end if;
11609    end Extract_Entry;
11610
11611    -------------------
11612    -- Family_Offset --
11613    -------------------
11614
11615    function Family_Offset
11616      (Loc  : Source_Ptr;
11617       Hi   : Node_Id;
11618       Lo   : Node_Id;
11619       Ttyp : Entity_Id;
11620       Cap  : Boolean) return Node_Id
11621    is
11622       Ityp : Entity_Id;
11623       Real_Hi : Node_Id;
11624       Real_Lo : Node_Id;
11625
11626       function Convert_Discriminant_Ref (Bound : Node_Id) return Node_Id;
11627       --  If one of the bounds is a reference to a discriminant, replace with
11628       --  corresponding discriminal of type. Within the body of a task retrieve
11629       --  the renamed discriminant by simple visibility, using its generated
11630       --  name. Within a protected object, find the original discriminant and
11631       --  replace it with the discriminal of the current protected operation.
11632
11633       ------------------------------
11634       -- Convert_Discriminant_Ref --
11635       ------------------------------
11636
11637       function Convert_Discriminant_Ref (Bound : Node_Id) return Node_Id is
11638          Loc : constant Source_Ptr := Sloc (Bound);
11639          B   : Node_Id;
11640          D   : Entity_Id;
11641
11642       begin
11643          if Is_Entity_Name (Bound)
11644            and then Ekind (Entity (Bound)) = E_Discriminant
11645          then
11646             if Is_Task_Type (Ttyp)
11647               and then Has_Completion (Ttyp)
11648             then
11649                B := Make_Identifier (Loc, Chars (Entity (Bound)));
11650                Find_Direct_Name (B);
11651
11652             elsif Is_Protected_Type (Ttyp) then
11653                D := First_Discriminant (Ttyp);
11654                while Chars (D) /= Chars (Entity (Bound)) loop
11655                   Next_Discriminant (D);
11656                end loop;
11657
11658                B := New_Reference_To  (Discriminal (D), Loc);
11659
11660             else
11661                B := New_Reference_To (Discriminal (Entity (Bound)), Loc);
11662             end if;
11663
11664          elsif Nkind (Bound) = N_Attribute_Reference then
11665             return Bound;
11666
11667          else
11668             B := New_Copy_Tree (Bound);
11669          end if;
11670
11671          return
11672            Make_Attribute_Reference (Loc,
11673              Attribute_Name => Name_Pos,
11674              Prefix => New_Occurrence_Of (Etype (Bound), Loc),
11675              Expressions    => New_List (B));
11676       end Convert_Discriminant_Ref;
11677
11678    --  Start of processing for Family_Offset
11679
11680    begin
11681       Real_Hi := Convert_Discriminant_Ref (Hi);
11682       Real_Lo := Convert_Discriminant_Ref (Lo);
11683
11684       if Cap then
11685          if Is_Task_Type (Ttyp) then
11686             Ityp := RTE (RE_Task_Entry_Index);
11687          else
11688             Ityp := RTE (RE_Protected_Entry_Index);
11689          end if;
11690
11691          Real_Hi :=
11692            Make_Attribute_Reference (Loc,
11693              Prefix         => New_Reference_To (Ityp, Loc),
11694              Attribute_Name => Name_Min,
11695              Expressions    => New_List (
11696                Real_Hi,
11697                Make_Integer_Literal (Loc, Entry_Family_Bound - 1)));
11698
11699          Real_Lo :=
11700            Make_Attribute_Reference (Loc,
11701              Prefix         => New_Reference_To (Ityp, Loc),
11702              Attribute_Name => Name_Max,
11703              Expressions    => New_List (
11704                Real_Lo,
11705                Make_Integer_Literal (Loc, -Entry_Family_Bound)));
11706       end if;
11707
11708       return Make_Op_Subtract (Loc, Real_Hi, Real_Lo);
11709    end Family_Offset;
11710
11711    -----------------
11712    -- Family_Size --
11713    -----------------
11714
11715    function Family_Size
11716      (Loc  : Source_Ptr;
11717       Hi   : Node_Id;
11718       Lo   : Node_Id;
11719       Ttyp : Entity_Id;
11720       Cap  : Boolean) return Node_Id
11721    is
11722       Ityp : Entity_Id;
11723
11724    begin
11725       if Is_Task_Type (Ttyp) then
11726          Ityp := RTE (RE_Task_Entry_Index);
11727       else
11728          Ityp := RTE (RE_Protected_Entry_Index);
11729       end if;
11730
11731       return
11732         Make_Attribute_Reference (Loc,
11733           Prefix         => New_Reference_To (Ityp, Loc),
11734           Attribute_Name => Name_Max,
11735           Expressions    => New_List (
11736             Make_Op_Add (Loc,
11737               Left_Opnd  =>
11738                 Family_Offset (Loc, Hi, Lo, Ttyp, Cap),
11739               Right_Opnd =>
11740                 Make_Integer_Literal (Loc, 1)),
11741             Make_Integer_Literal (Loc, 0)));
11742    end Family_Size;
11743
11744    -----------------------
11745    -- Find_Master_Scope --
11746    -----------------------
11747
11748    function Find_Master_Scope (E : Entity_Id) return Entity_Id is
11749       S : Entity_Id;
11750
11751    begin
11752       --  In Ada2005, the master is the innermost enclosing scope that is not
11753       --  transient. If the enclosing block is the rewriting of a call or the
11754       --  scope is an extended return statement this is valid master. The
11755       --  master in an extended return is only used within the return, and is
11756       --  subsequently overwritten in Move_Activation_Chain, but it must exist
11757       --  now before that overwriting occurs.
11758
11759       S := Scope (E);
11760
11761       if Ada_Version >= Ada_2005 then
11762          while Is_Internal (S) loop
11763             if Nkind (Parent (S)) = N_Block_Statement
11764               and then
11765                 Nkind (Original_Node (Parent (S))) = N_Procedure_Call_Statement
11766             then
11767                exit;
11768
11769             elsif Ekind (S) = E_Return_Statement then
11770                exit;
11771
11772             else
11773                S := Scope (S);
11774             end if;
11775          end loop;
11776       end if;
11777
11778       return S;
11779    end Find_Master_Scope;
11780
11781    -----------------------------------
11782    -- Find_Task_Or_Protected_Pragma --
11783    -----------------------------------
11784
11785    function Find_Task_Or_Protected_Pragma
11786      (T : Node_Id;
11787       P : Name_Id) return Node_Id
11788    is
11789       N : Node_Id;
11790
11791    begin
11792       N := First (Visible_Declarations (T));
11793       while Present (N) loop
11794          if Nkind (N) = N_Pragma then
11795             if Pragma_Name (N) = P then
11796                return N;
11797
11798             elsif P = Name_Priority
11799               and then Pragma_Name (N) = Name_Interrupt_Priority
11800             then
11801                return N;
11802
11803             else
11804                Next (N);
11805             end if;
11806
11807          else
11808             Next (N);
11809          end if;
11810       end loop;
11811
11812       N := First (Private_Declarations (T));
11813       while Present (N) loop
11814          if Nkind (N) = N_Pragma then
11815             if Pragma_Name (N) = P then
11816                return N;
11817
11818             elsif P = Name_Priority
11819               and then Pragma_Name (N) = Name_Interrupt_Priority
11820             then
11821                return N;
11822
11823             else
11824                Next (N);
11825             end if;
11826
11827          else
11828             Next (N);
11829          end if;
11830       end loop;
11831
11832       raise Program_Error;
11833    end Find_Task_Or_Protected_Pragma;
11834
11835    -------------------------------
11836    -- First_Protected_Operation --
11837    -------------------------------
11838
11839    function First_Protected_Operation (D : List_Id) return Node_Id is
11840       First_Op : Node_Id;
11841
11842    begin
11843       First_Op := First (D);
11844       while Present (First_Op)
11845         and then not Nkind_In (First_Op, N_Subprogram_Body, N_Entry_Body)
11846       loop
11847          Next (First_Op);
11848       end loop;
11849
11850       return First_Op;
11851    end First_Protected_Operation;
11852
11853    ---------------------------------------
11854    -- Install_Private_Data_Declarations --
11855    ---------------------------------------
11856
11857    procedure Install_Private_Data_Declarations
11858      (Loc      : Source_Ptr;
11859       Spec_Id  : Entity_Id;
11860       Conc_Typ : Entity_Id;
11861       Body_Nod : Node_Id;
11862       Decls    : List_Id;
11863       Barrier  : Boolean := False;
11864       Family   : Boolean := False)
11865    is
11866       Is_Protected : constant Boolean := Is_Protected_Type (Conc_Typ);
11867       Decl         : Node_Id;
11868       Def          : Node_Id;
11869       Insert_Node  : Node_Id := Empty;
11870       Obj_Ent      : Entity_Id;
11871
11872       procedure Add (Decl : Node_Id);
11873       --  Add a single declaration after Insert_Node. If this is the first
11874       --  addition, Decl is added to the front of Decls and it becomes the
11875       --  insertion node.
11876
11877       function Replace_Bound (Bound : Node_Id) return Node_Id;
11878       --  The bounds of an entry index may depend on discriminants, create a
11879       --  reference to the corresponding prival. Otherwise return a duplicate
11880       --  of the original bound.
11881
11882       ---------
11883       -- Add --
11884       ---------
11885
11886       procedure Add (Decl : Node_Id) is
11887       begin
11888          if No (Insert_Node) then
11889             Prepend_To (Decls, Decl);
11890          else
11891             Insert_After (Insert_Node, Decl);
11892          end if;
11893
11894          Insert_Node := Decl;
11895       end Add;
11896
11897       --------------------------
11898       -- Replace_Discriminant --
11899       --------------------------
11900
11901       function Replace_Bound (Bound : Node_Id) return Node_Id is
11902       begin
11903          if Nkind (Bound) = N_Identifier
11904            and then Is_Discriminal (Entity (Bound))
11905          then
11906             return Make_Identifier (Loc, Chars (Entity (Bound)));
11907          else
11908             return Duplicate_Subexpr (Bound);
11909          end if;
11910       end Replace_Bound;
11911
11912    --  Start of processing for Install_Private_Data_Declarations
11913
11914    begin
11915       --  Step 1: Retrieve the concurrent object entity. Obj_Ent can denote
11916       --  formal parameter _O, _object or _task depending on the context.
11917
11918       Obj_Ent := Concurrent_Object (Spec_Id, Conc_Typ);
11919
11920       --  Special processing of _O for barrier functions, protected entries
11921       --  and families.
11922
11923       if Barrier
11924         or else
11925           (Is_Protected
11926              and then
11927                (Ekind (Spec_Id) = E_Entry
11928                   or else Ekind (Spec_Id) = E_Entry_Family))
11929       then
11930          declare
11931             Conc_Rec : constant Entity_Id :=
11932                          Corresponding_Record_Type (Conc_Typ);
11933             Typ_Id   : constant Entity_Id :=
11934                          Make_Defining_Identifier (Loc,
11935                            New_External_Name (Chars (Conc_Rec), 'P'));
11936          begin
11937             --  Generate:
11938             --    type prot_typVP is access prot_typV;
11939
11940             Decl :=
11941               Make_Full_Type_Declaration (Loc,
11942                 Defining_Identifier => Typ_Id,
11943                 Type_Definition     =>
11944                   Make_Access_To_Object_Definition (Loc,
11945                     Subtype_Indication =>
11946                       New_Reference_To (Conc_Rec, Loc)));
11947             Add (Decl);
11948
11949             --  Generate:
11950             --    _object : prot_typVP := prot_typV (_O);
11951
11952             Decl :=
11953               Make_Object_Declaration (Loc,
11954                 Defining_Identifier =>
11955                   Make_Defining_Identifier (Loc, Name_uObject),
11956                 Object_Definition   => New_Reference_To (Typ_Id, Loc),
11957                 Expression          =>
11958                   Unchecked_Convert_To (Typ_Id,
11959                     New_Reference_To (Obj_Ent, Loc)));
11960             Add (Decl);
11961
11962             --  Set the reference to the concurrent object
11963
11964             Obj_Ent := Defining_Identifier (Decl);
11965          end;
11966       end if;
11967
11968       --  Step 2: Create the Protection object and build its declaration for
11969       --  any protected entry (family) of subprogram.
11970
11971       if Is_Protected then
11972          declare
11973             Prot_Ent : constant Entity_Id := Make_Temporary (Loc, 'R');
11974             Prot_Typ : RE_Id;
11975
11976          begin
11977             Set_Protection_Object (Spec_Id, Prot_Ent);
11978
11979             --  Determine the proper protection type
11980
11981             if Has_Attach_Handler (Conc_Typ)
11982               and then not Restricted_Profile
11983             then
11984                Prot_Typ := RE_Static_Interrupt_Protection;
11985
11986             elsif Has_Interrupt_Handler (Conc_Typ) then
11987                Prot_Typ := RE_Dynamic_Interrupt_Protection;
11988
11989             --  The type has explicit entries or generated primitive entry
11990             --  wrappers.
11991
11992             elsif Has_Entries (Conc_Typ)
11993               or else
11994                 (Ada_Version >= Ada_2005
11995                    and then Present (Interface_List (Parent (Conc_Typ))))
11996             then
11997                case Corresponding_Runtime_Package (Conc_Typ) is
11998                   when System_Tasking_Protected_Objects_Entries =>
11999                      Prot_Typ := RE_Protection_Entries;
12000
12001                   when System_Tasking_Protected_Objects_Single_Entry =>
12002                      Prot_Typ := RE_Protection_Entry;
12003
12004                   when others =>
12005                      raise Program_Error;
12006                end case;
12007
12008             else
12009                Prot_Typ := RE_Protection;
12010             end if;
12011
12012             --  Generate:
12013             --    conc_typR : protection_typ renames _object._object;
12014
12015             Decl :=
12016               Make_Object_Renaming_Declaration (Loc,
12017                 Defining_Identifier => Prot_Ent,
12018                 Subtype_Mark =>
12019                   New_Reference_To (RTE (Prot_Typ), Loc),
12020                 Name =>
12021                   Make_Selected_Component (Loc,
12022                     Prefix        => New_Reference_To (Obj_Ent, Loc),
12023                     Selector_Name => Make_Identifier (Loc, Name_uObject)));
12024             Add (Decl);
12025          end;
12026       end if;
12027
12028       --  Step 3: Add discriminant renamings (if any)
12029
12030       if Has_Discriminants (Conc_Typ) then
12031          declare
12032             D : Entity_Id;
12033
12034          begin
12035             D := First_Discriminant (Conc_Typ);
12036             while Present (D) loop
12037
12038                --  Adjust the source location
12039
12040                Set_Sloc (Discriminal (D), Loc);
12041
12042                --  Generate:
12043                --    discr_name : discr_typ renames _object.discr_name;
12044                --      or
12045                --    discr_name : discr_typ renames _task.discr_name;
12046
12047                Decl :=
12048                  Make_Object_Renaming_Declaration (Loc,
12049                    Defining_Identifier => Discriminal (D),
12050                    Subtype_Mark        => New_Reference_To (Etype (D), Loc),
12051                    Name                =>
12052                      Make_Selected_Component (Loc,
12053                        Prefix        => New_Reference_To (Obj_Ent, Loc),
12054                        Selector_Name => Make_Identifier (Loc, Chars (D))));
12055                Add (Decl);
12056
12057                Next_Discriminant (D);
12058             end loop;
12059          end;
12060       end if;
12061
12062       --  Step 4: Add private component renamings (if any)
12063
12064       if Is_Protected then
12065          Def := Protected_Definition (Parent (Conc_Typ));
12066
12067          if Present (Private_Declarations (Def)) then
12068             declare
12069                Comp    : Node_Id;
12070                Comp_Id : Entity_Id;
12071                Decl_Id : Entity_Id;
12072
12073             begin
12074                Comp := First (Private_Declarations (Def));
12075                while Present (Comp) loop
12076                   if Nkind (Comp) = N_Component_Declaration then
12077                      Comp_Id := Defining_Identifier (Comp);
12078                      Decl_Id :=
12079                        Make_Defining_Identifier (Loc, Chars (Comp_Id));
12080
12081                      --  Minimal decoration
12082
12083                      if Ekind (Spec_Id) = E_Function then
12084                         Set_Ekind (Decl_Id, E_Constant);
12085                      else
12086                         Set_Ekind (Decl_Id, E_Variable);
12087                      end if;
12088
12089                      Set_Prival      (Comp_Id, Decl_Id);
12090                      Set_Prival_Link (Decl_Id, Comp_Id);
12091                      Set_Is_Aliased  (Decl_Id, Is_Aliased (Comp_Id));
12092
12093                      --  Generate:
12094                      --    comp_name : comp_typ renames _object.comp_name;
12095
12096                      Decl :=
12097                        Make_Object_Renaming_Declaration (Loc,
12098                          Defining_Identifier => Decl_Id,
12099                          Subtype_Mark =>
12100                            New_Reference_To (Etype (Comp_Id), Loc),
12101                          Name =>
12102                            Make_Selected_Component (Loc,
12103                              Prefix =>
12104                                New_Reference_To (Obj_Ent, Loc),
12105                              Selector_Name =>
12106                                Make_Identifier (Loc, Chars (Comp_Id))));
12107                      Add (Decl);
12108                   end if;
12109
12110                   Next (Comp);
12111                end loop;
12112             end;
12113          end if;
12114       end if;
12115
12116       --  Step 5: Add the declaration of the entry index and the associated
12117       --  type for barrier functions and entry families.
12118
12119       if (Barrier and then Family)
12120         or else Ekind (Spec_Id) = E_Entry_Family
12121       then
12122          declare
12123             E         : constant Entity_Id := Index_Object (Spec_Id);
12124             Index     : constant Entity_Id :=
12125                           Defining_Identifier (
12126                             Entry_Index_Specification (
12127                               Entry_Body_Formal_Part (Body_Nod)));
12128             Index_Con : constant Entity_Id :=
12129                           Make_Defining_Identifier (Loc, Chars (Index));
12130             High      : Node_Id;
12131             Index_Typ : Entity_Id;
12132             Low       : Node_Id;
12133
12134          begin
12135             --  Minimal decoration
12136
12137             Set_Ekind                (Index_Con, E_Constant);
12138             Set_Entry_Index_Constant (Index, Index_Con);
12139             Set_Discriminal_Link     (Index_Con, Index);
12140
12141             --  Retrieve the bounds of the entry family
12142
12143             High := Type_High_Bound (Etype (Index));
12144             Low  := Type_Low_Bound  (Etype (Index));
12145
12146             --  In the simple case the entry family is given by a subtype
12147             --  mark and the index constant has the same type.
12148
12149             if Is_Entity_Name (Original_Node (
12150                  Discrete_Subtype_Definition (Parent (Index))))
12151             then
12152                Index_Typ := Etype (Index);
12153
12154             --  Otherwise a new subtype declaration is required
12155
12156             else
12157                High := Replace_Bound (High);
12158                Low  := Replace_Bound (Low);
12159
12160                Index_Typ := Make_Temporary (Loc, 'J');
12161
12162                --  Generate:
12163                --    subtype Jnn is <Etype of Index> range Low .. High;
12164
12165                Decl :=
12166                  Make_Subtype_Declaration (Loc,
12167                    Defining_Identifier => Index_Typ,
12168                    Subtype_Indication =>
12169                      Make_Subtype_Indication (Loc,
12170                        Subtype_Mark =>
12171                          New_Reference_To (Base_Type (Etype (Index)), Loc),
12172                        Constraint =>
12173                          Make_Range_Constraint (Loc,
12174                            Range_Expression =>
12175                              Make_Range (Loc, Low, High))));
12176                Add (Decl);
12177             end if;
12178
12179             Set_Etype (Index_Con, Index_Typ);
12180
12181             --  Create the object which designates the index:
12182             --    J : constant Jnn :=
12183             --          Jnn'Val (_E - <index expr> + Jnn'Pos (Jnn'First));
12184             --
12185             --  where Jnn is the subtype created above or the original type of
12186             --  the index, _E is a formal of the protected body subprogram and
12187             --  <index expr> is the index of the first family member.
12188
12189             Decl :=
12190               Make_Object_Declaration (Loc,
12191                 Defining_Identifier => Index_Con,
12192                 Constant_Present => True,
12193                 Object_Definition =>
12194                   New_Reference_To (Index_Typ, Loc),
12195
12196                 Expression =>
12197                   Make_Attribute_Reference (Loc,
12198                     Prefix =>
12199                       New_Reference_To (Index_Typ, Loc),
12200                     Attribute_Name => Name_Val,
12201
12202                     Expressions => New_List (
12203
12204                       Make_Op_Add (Loc,
12205                         Left_Opnd =>
12206                           Make_Op_Subtract (Loc,
12207                             Left_Opnd =>
12208                               New_Reference_To (E, Loc),
12209                             Right_Opnd =>
12210                               Entry_Index_Expression (Loc,
12211                                 Defining_Identifier (Body_Nod),
12212                                 Empty, Conc_Typ)),
12213
12214                         Right_Opnd =>
12215                           Make_Attribute_Reference (Loc,
12216                             Prefix =>
12217                               New_Reference_To (Index_Typ, Loc),
12218                             Attribute_Name => Name_Pos,
12219                             Expressions => New_List (
12220                               Make_Attribute_Reference (Loc,
12221                                 Prefix =>
12222                                   New_Reference_To (Index_Typ, Loc),
12223                                 Attribute_Name => Name_First)))))));
12224             Add (Decl);
12225          end;
12226       end if;
12227    end Install_Private_Data_Declarations;
12228
12229    ---------------------------------
12230    -- Is_Potentially_Large_Family --
12231    ---------------------------------
12232
12233    function Is_Potentially_Large_Family
12234      (Base_Index : Entity_Id;
12235       Conctyp    : Entity_Id;
12236       Lo         : Node_Id;
12237       Hi         : Node_Id) return Boolean
12238    is
12239    begin
12240       return Scope (Base_Index) = Standard_Standard
12241         and then Base_Index = Base_Type (Standard_Integer)
12242         and then Has_Discriminants (Conctyp)
12243         and then Present
12244           (Discriminant_Default_Value (First_Discriminant (Conctyp)))
12245         and then
12246           (Denotes_Discriminant (Lo, True)
12247             or else Denotes_Discriminant (Hi, True));
12248    end Is_Potentially_Large_Family;
12249
12250    -------------------------------------
12251    -- Is_Private_Primitive_Subprogram --
12252    -------------------------------------
12253
12254    function Is_Private_Primitive_Subprogram (Id : Entity_Id) return Boolean is
12255    begin
12256       return
12257         (Ekind (Id) = E_Function or else Ekind (Id) = E_Procedure)
12258           and then Is_Private_Primitive (Id);
12259    end Is_Private_Primitive_Subprogram;
12260
12261    ------------------
12262    -- Index_Object --
12263    ------------------
12264
12265    function Index_Object (Spec_Id : Entity_Id) return Entity_Id is
12266       Bod_Subp : constant Entity_Id := Protected_Body_Subprogram (Spec_Id);
12267       Formal   : Entity_Id;
12268
12269    begin
12270       Formal := First_Formal (Bod_Subp);
12271       while Present (Formal) loop
12272
12273          --  Look for formal parameter _E
12274
12275          if Chars (Formal) = Name_uE then
12276             return Formal;
12277          end if;
12278
12279          Next_Formal (Formal);
12280       end loop;
12281
12282       --  A protected body subprogram should always have the parameter in
12283       --  question.
12284
12285       raise Program_Error;
12286    end Index_Object;
12287
12288    --------------------------------
12289    -- Make_Initialize_Protection --
12290    --------------------------------
12291
12292    function Make_Initialize_Protection
12293      (Protect_Rec : Entity_Id) return List_Id
12294    is
12295       Loc         : constant Source_Ptr := Sloc (Protect_Rec);
12296       P_Arr       : Entity_Id;
12297       Pdef        : Node_Id;
12298       Pdec        : Node_Id;
12299       Ptyp        : constant Node_Id :=
12300                       Corresponding_Concurrent_Type (Protect_Rec);
12301       Args        : List_Id;
12302       L           : constant List_Id := New_List;
12303       Has_Entry   : constant Boolean := Has_Entries (Ptyp);
12304       Restricted  : constant Boolean := Restricted_Profile;
12305
12306    begin
12307       --  We may need two calls to properly initialize the object, one to
12308       --  Initialize_Protection, and possibly one to Install_Handlers if we
12309       --  have a pragma Attach_Handler.
12310
12311       --  Get protected declaration. In the case of a task type declaration,
12312       --  this is simply the parent of the protected type entity. In the single
12313       --  protected object declaration, this parent will be the implicit type,
12314       --  and we can find the corresponding single protected object declaration
12315       --  by searching forward in the declaration list in the tree.
12316
12317       --  Is the test for N_Single_Protected_Declaration needed here??? Nodes
12318       --  of this type should have been removed during semantic analysis.
12319
12320       Pdec := Parent (Ptyp);
12321       while not Nkind_In (Pdec, N_Protected_Type_Declaration,
12322                                 N_Single_Protected_Declaration)
12323       loop
12324          Next (Pdec);
12325       end loop;
12326
12327       --  Now we can find the object definition from this declaration
12328
12329       Pdef := Protected_Definition (Pdec);
12330
12331       --  Build the parameter list for the call. Note that _Init is the name
12332       --  of the formal for the object to be initialized, which is the task
12333       --  value record itself.
12334
12335       Args := New_List;
12336
12337       --  Object parameter. This is a pointer to the object of type
12338       --  Protection used by the GNARL to control the protected object.
12339
12340       Append_To (Args,
12341         Make_Attribute_Reference (Loc,
12342           Prefix =>
12343             Make_Selected_Component (Loc,
12344               Prefix        => Make_Identifier (Loc, Name_uInit),
12345               Selector_Name => Make_Identifier (Loc, Name_uObject)),
12346           Attribute_Name => Name_Unchecked_Access));
12347
12348       --  Priority parameter. Set to Unspecified_Priority unless there is a
12349       --  priority pragma, in which case we take the value from the pragma,
12350       --  or there is an interrupt pragma and no priority pragma, and we
12351       --  set the ceiling to Interrupt_Priority'Last, an implementation-
12352       --  defined value, see D.3(10).
12353
12354       if Present (Pdef)
12355         and then Has_Pragma_Priority (Pdef)
12356       then
12357          declare
12358             Prio : constant Node_Id :=
12359                      Expression
12360                        (First
12361                           (Pragma_Argument_Associations
12362                              (Find_Task_Or_Protected_Pragma
12363                                 (Pdef, Name_Priority))));
12364             Temp : Entity_Id;
12365
12366          begin
12367             --  If priority is a static expression, then we can duplicate it
12368             --  with no problem and simply append it to the argument list.
12369
12370             if Is_Static_Expression (Prio) then
12371                Append_To (Args,
12372                           Duplicate_Subexpr_No_Checks (Prio));
12373
12374             --  Otherwise, the priority may be a per-object expression, if it
12375             --  depends on a discriminant of the type. In this case, create
12376             --  local variable to capture the expression. Note that it is
12377             --  really necessary to create this variable explicitly. It might
12378             --  be thought that removing side effects would the appropriate
12379             --  approach, but that could generate declarations improperly
12380             --  placed in the enclosing scope.
12381
12382             --  Note: Use System.Any_Priority as the expected type for the
12383             --  non-static priority expression, in case the expression has not
12384             --  been analyzed yet (as occurs for example with pragma
12385             --  Interrupt_Priority).
12386
12387             else
12388                Temp := Make_Temporary (Loc, 'R', Prio);
12389                Append_To (L,
12390                   Make_Object_Declaration (Loc,
12391                      Defining_Identifier => Temp,
12392                      Object_Definition   =>
12393                        New_Occurrence_Of (RTE (RE_Any_Priority), Loc),
12394                      Expression          => Relocate_Node (Prio)));
12395
12396                Append_To (Args, New_Occurrence_Of (Temp, Loc));
12397             end if;
12398          end;
12399
12400       --  When no priority is specified but an xx_Handler pragma is, we default
12401       --  to System.Interrupts.Default_Interrupt_Priority, see D.3(10).
12402
12403       elsif Has_Interrupt_Handler (Ptyp)
12404         or else Has_Attach_Handler (Ptyp)
12405       then
12406          Append_To (Args,
12407            New_Reference_To (RTE (RE_Default_Interrupt_Priority), Loc));
12408
12409       --  Normal case, no priority or xx_Handler specified, default priority
12410
12411       else
12412          Append_To (Args,
12413            New_Reference_To (RTE (RE_Unspecified_Priority), Loc));
12414       end if;
12415
12416       --  Test for Compiler_Info parameter. This parameter allows entry body
12417       --  procedures and barrier functions to be called from the runtime. It
12418       --  is a pointer to the record generated by the compiler to represent
12419       --  the protected object.
12420
12421       --  A protected type without entries that covers an interface and
12422       --  overrides the abstract routines with protected procedures is
12423       --  considered equivalent to a protected type with entries in the
12424       --  context of dispatching select statements.
12425
12426       if Has_Entry
12427         or else Has_Interrupt_Handler (Ptyp)
12428         or else Has_Attach_Handler (Ptyp)
12429         or else Has_Interfaces (Protect_Rec)
12430       then
12431          declare
12432             Pkg_Id      : constant RTU_Id  :=
12433                             Corresponding_Runtime_Package (Ptyp);
12434             Called_Subp : RE_Id;
12435
12436          begin
12437             case Pkg_Id is
12438                when System_Tasking_Protected_Objects_Entries =>
12439                   Called_Subp := RE_Initialize_Protection_Entries;
12440
12441                when System_Tasking_Protected_Objects =>
12442                   Called_Subp := RE_Initialize_Protection;
12443
12444                when System_Tasking_Protected_Objects_Single_Entry =>
12445                   Called_Subp := RE_Initialize_Protection_Entry;
12446
12447                when others =>
12448                   raise Program_Error;
12449             end case;
12450
12451             if Has_Entry
12452               or else not Restricted
12453               or else Has_Interfaces (Protect_Rec)
12454             then
12455                Append_To (Args,
12456                  Make_Attribute_Reference (Loc,
12457                    Prefix         => Make_Identifier (Loc, Name_uInit),
12458                    Attribute_Name => Name_Address));
12459             end if;
12460
12461             --  Entry_Bodies parameter. This is a pointer to an array of
12462             --  pointers to the entry body procedures and barrier functions of
12463             --  the object. If the protected type has no entries this object
12464             --  will not exist, in this case, pass a null.
12465
12466             if Has_Entry then
12467                P_Arr := Entry_Bodies_Array (Ptyp);
12468
12469                Append_To (Args,
12470                  Make_Attribute_Reference (Loc,
12471                    Prefix => New_Reference_To (P_Arr, Loc),
12472                    Attribute_Name => Name_Unrestricted_Access));
12473
12474                if Pkg_Id = System_Tasking_Protected_Objects_Entries then
12475
12476                   --  Find index mapping function (clumsy but ok for now)
12477
12478                   while Ekind (P_Arr) /= E_Function loop
12479                      Next_Entity (P_Arr);
12480                   end loop;
12481
12482                   Append_To (Args,
12483                     Make_Attribute_Reference (Loc,
12484                       Prefix =>
12485                         New_Reference_To (P_Arr, Loc),
12486                       Attribute_Name => Name_Unrestricted_Access));
12487
12488                   --  Build_Entry_Names generation flag. When set to true, the
12489                   --  runtime will allocate an array to hold the string names
12490                   --  of protected entries.
12491
12492                   if not Restricted_Profile then
12493                      if Entry_Names_OK then
12494                         Append_To (Args,
12495                           New_Reference_To (Standard_True, Loc));
12496                      else
12497                         Append_To (Args,
12498                           New_Reference_To (Standard_False, Loc));
12499                      end if;
12500                   end if;
12501                end if;
12502
12503             elsif Pkg_Id = System_Tasking_Protected_Objects_Single_Entry then
12504                Append_To (Args, Make_Null (Loc));
12505
12506             elsif Pkg_Id = System_Tasking_Protected_Objects_Entries then
12507                Append_To (Args, Make_Null (Loc));
12508                Append_To (Args, Make_Null (Loc));
12509                Append_To (Args, New_Reference_To (Standard_False, Loc));
12510             end if;
12511
12512             Append_To (L,
12513               Make_Procedure_Call_Statement (Loc,
12514                 Name => New_Reference_To (RTE (Called_Subp), Loc),
12515                 Parameter_Associations => Args));
12516          end;
12517       else
12518          Append_To (L,
12519            Make_Procedure_Call_Statement (Loc,
12520              Name => New_Reference_To (RTE (RE_Initialize_Protection), Loc),
12521              Parameter_Associations => Args));
12522       end if;
12523
12524       if Has_Attach_Handler (Ptyp) then
12525
12526          --  We have a list of N Attach_Handler (ProcI, ExprI), and we have to
12527          --  make the following call:
12528
12529          --  Install_Handlers (_object,
12530          --    ((Expr1, Proc1'access), ...., (ExprN, ProcN'access));
12531
12532          --  or, in the case of Ravenscar:
12533
12534          --  Install_Restricted_Handlers
12535          --    ((Expr1, Proc1'access), ...., (ExprN, ProcN'access));
12536
12537          declare
12538             Args  : constant List_Id := New_List;
12539             Table : constant List_Id := New_List;
12540             Ritem : Node_Id          := First_Rep_Item (Ptyp);
12541
12542          begin
12543             --  Build the Attach_Handler table argument
12544
12545             while Present (Ritem) loop
12546                if Nkind (Ritem) = N_Pragma
12547                  and then Pragma_Name (Ritem) = Name_Attach_Handler
12548                then
12549                   declare
12550                      Handler : constant Node_Id :=
12551                                  First (Pragma_Argument_Associations (Ritem));
12552
12553                      Interrupt : constant Node_Id := Next (Handler);
12554                      Expr      : constant Node_Id := Expression (Interrupt);
12555
12556                   begin
12557                      Append_To (Table,
12558                        Make_Aggregate (Loc, Expressions => New_List (
12559                          Unchecked_Convert_To
12560                           (RTE (RE_System_Interrupt_Id), Expr),
12561                          Make_Attribute_Reference (Loc,
12562                            Prefix => Make_Selected_Component (Loc,
12563                               Make_Identifier (Loc, Name_uInit),
12564                               Duplicate_Subexpr_No_Checks
12565                                 (Expression (Handler))),
12566                            Attribute_Name => Name_Access))));
12567                   end;
12568                end if;
12569
12570                Next_Rep_Item (Ritem);
12571             end loop;
12572
12573             --  Append the table argument we just built
12574
12575             Append_To (Args, Make_Aggregate (Loc, Table));
12576
12577             --  Append the Install_Handlers (or Install_Restricted_Handlers)
12578             --  call to the statements.
12579
12580             if Restricted then
12581                --  Call a simplified version of Install_Handlers to be used
12582                --  when the Ravenscar restrictions are in effect
12583                --  (Install_Restricted_Handlers).
12584
12585                Append_To (L,
12586                  Make_Procedure_Call_Statement (Loc,
12587                    Name =>
12588                      New_Reference_To
12589                         (RTE (RE_Install_Restricted_Handlers), Loc),
12590                    Parameter_Associations => Args));
12591
12592             else
12593                --  First, prepends the _object argument
12594
12595                Prepend_To (Args,
12596                  Make_Attribute_Reference (Loc,
12597                    Prefix =>
12598                      Make_Selected_Component (Loc,
12599                        Prefix        => Make_Identifier (Loc, Name_uInit),
12600                        Selector_Name => Make_Identifier (Loc, Name_uObject)),
12601                    Attribute_Name => Name_Unchecked_Access));
12602
12603                --  Then, insert call to Install_Handlers
12604
12605                Append_To (L,
12606                  Make_Procedure_Call_Statement (Loc,
12607                    Name => New_Reference_To (RTE (RE_Install_Handlers), Loc),
12608                    Parameter_Associations => Args));
12609             end if;
12610          end;
12611       end if;
12612
12613       return L;
12614    end Make_Initialize_Protection;
12615
12616    ---------------------------
12617    -- Make_Task_Create_Call --
12618    ---------------------------
12619
12620    function Make_Task_Create_Call (Task_Rec : Entity_Id) return Node_Id is
12621       Loc    : constant Source_Ptr := Sloc (Task_Rec);
12622       Args   : List_Id;
12623       Ecount : Node_Id;
12624       Name   : Node_Id;
12625       Tdec   : Node_Id;
12626       Tdef   : Node_Id;
12627       Tnam   : Name_Id;
12628       Ttyp   : Node_Id;
12629
12630    begin
12631       Ttyp := Corresponding_Concurrent_Type (Task_Rec);
12632       Tnam := Chars (Ttyp);
12633
12634       --  Get task declaration. In the case of a task type declaration, this is
12635       --  simply the parent of the task type entity. In the single task
12636       --  declaration, this parent will be the implicit type, and we can find
12637       --  the corresponding single task declaration by searching forward in the
12638       --  declaration list in the tree.
12639
12640       --  Is the test for N_Single_Task_Declaration needed here??? Nodes of
12641       --  this type should have been removed during semantic analysis.
12642
12643       Tdec := Parent (Ttyp);
12644       while not Nkind_In (Tdec, N_Task_Type_Declaration,
12645                                 N_Single_Task_Declaration)
12646       loop
12647          Next (Tdec);
12648       end loop;
12649
12650       --  Now we can find the task definition from this declaration
12651
12652       Tdef := Task_Definition (Tdec);
12653
12654       --  Build the parameter list for the call. Note that _Init is the name
12655       --  of the formal for the object to be initialized, which is the task
12656       --  value record itself.
12657
12658       Args := New_List;
12659
12660       --  Priority parameter. Set to Unspecified_Priority unless there is a
12661       --  priority pragma, in which case we take the value from the pragma.
12662
12663       if Present (Tdef) and then Has_Pragma_Priority (Tdef) then
12664          Append_To (Args,
12665            Make_Selected_Component (Loc,
12666              Prefix        => Make_Identifier (Loc, Name_uInit),
12667              Selector_Name => Make_Identifier (Loc, Name_uPriority)));
12668       else
12669          Append_To (Args,
12670            New_Reference_To (RTE (RE_Unspecified_Priority), Loc));
12671       end if;
12672
12673       --  Optional Stack parameter
12674
12675       if Restricted_Profile then
12676
12677          --  If the stack has been preallocated by the expander then
12678          --  pass its address. Otherwise, pass a null address.
12679
12680          if Preallocated_Stacks_On_Target then
12681             Append_To (Args,
12682               Make_Attribute_Reference (Loc,
12683                 Prefix         =>
12684                   Make_Selected_Component (Loc,
12685                     Prefix        => Make_Identifier (Loc, Name_uInit),
12686                     Selector_Name => Make_Identifier (Loc, Name_uStack)),
12687                 Attribute_Name => Name_Address));
12688
12689          else
12690             Append_To (Args,
12691               New_Reference_To (RTE (RE_Null_Address), Loc));
12692          end if;
12693       end if;
12694
12695       --  Size parameter. If no Storage_Size pragma is present, then
12696       --  the size is taken from the taskZ variable for the type, which
12697       --  is either Unspecified_Size, or has been reset by the use of
12698       --  a Storage_Size attribute definition clause. If a pragma is
12699       --  present, then the size is taken from the _Size field of the
12700       --  task value record, which was set from the pragma value.
12701
12702       if Present (Tdef)
12703         and then Has_Storage_Size_Pragma (Tdef)
12704       then
12705          Append_To (Args,
12706            Make_Selected_Component (Loc,
12707              Prefix        => Make_Identifier (Loc, Name_uInit),
12708              Selector_Name => Make_Identifier (Loc, Name_uSize)));
12709
12710       else
12711          Append_To (Args,
12712            New_Reference_To (Storage_Size_Variable (Ttyp), Loc));
12713       end if;
12714
12715       --  Task_Info parameter. Set to Unspecified_Task_Info unless there is a
12716       --  Task_Info pragma, in which case we take the value from the pragma.
12717
12718       if Present (Tdef)
12719         and then Has_Task_Info_Pragma (Tdef)
12720       then
12721          Append_To (Args,
12722            Make_Selected_Component (Loc,
12723              Prefix        => Make_Identifier (Loc, Name_uInit),
12724              Selector_Name => Make_Identifier (Loc, Name_uTask_Info)));
12725
12726       else
12727          Append_To (Args,
12728            New_Reference_To (RTE (RE_Unspecified_Task_Info), Loc));
12729       end if;
12730
12731       --  CPU parameter. Set to Unspecified_CPU unless there is a CPU pragma,
12732       --  in which case we take the value from the pragma. The parameter is
12733       --  passed as an Integer because in the case of unspecified CPU the
12734       --  value is not in the range of CPU_Range.
12735
12736       if Present (Tdef) and then Has_Pragma_CPU (Tdef) then
12737          Append_To (Args,
12738            Convert_To (Standard_Integer,
12739              Make_Selected_Component (Loc,
12740                Prefix        => Make_Identifier (Loc, Name_uInit),
12741                Selector_Name => Make_Identifier (Loc, Name_uCPU))));
12742
12743       else
12744          Append_To (Args,
12745            New_Reference_To (RTE (RE_Unspecified_CPU), Loc));
12746       end if;
12747
12748       if not Restricted_Profile then
12749
12750          --  Deadline parameter. If no Relative_Deadline pragma is present,
12751          --  then the deadline is Time_Span_Zero. If a pragma is present, then
12752          --  the deadline is taken from the _Relative_Deadline field of the
12753          --  task value record, which was set from the pragma value. Note that
12754          --  this parameter must not be generated for the restricted profiles
12755          --  since Ravenscar does not allow deadlines.
12756
12757          --  Case where pragma Relative_Deadline applies: use given value
12758
12759          if Present (Tdef) and then Has_Relative_Deadline_Pragma (Tdef) then
12760             Append_To (Args,
12761               Make_Selected_Component (Loc,
12762                 Prefix        =>
12763                   Make_Identifier (Loc, Name_uInit),
12764                 Selector_Name =>
12765                   Make_Identifier (Loc, Name_uRelative_Deadline)));
12766
12767          --  No pragma Relative_Deadline apply to the task
12768
12769          else
12770             Append_To (Args,
12771               New_Reference_To (RTE (RE_Time_Span_Zero), Loc));
12772          end if;
12773
12774          --  Number of entries. This is an expression of the form:
12775
12776          --    n + _Init.a'Length + _Init.a'B'Length + ...
12777
12778          --  where a,b... are the entry family names for the task definition
12779
12780          Ecount :=
12781            Build_Entry_Count_Expression
12782              (Ttyp,
12783               Component_Items
12784                 (Component_List
12785                    (Type_Definition
12786                       (Parent (Corresponding_Record_Type (Ttyp))))),
12787               Loc);
12788          Append_To (Args, Ecount);
12789
12790          --  Master parameter. This is a reference to the _Master parameter of
12791          --  the initialization procedure, except in the case of the pragma
12792          --  Restrictions (No_Task_Hierarchy) where the value is fixed to
12793          --  System.Tasking.Library_Task_Level.
12794
12795          if Restriction_Active (No_Task_Hierarchy) = False then
12796             Append_To (Args, Make_Identifier (Loc, Name_uMaster));
12797          else
12798             Append_To (Args,
12799               New_Occurrence_Of (RTE (RE_Library_Task_Level), Loc));
12800          end if;
12801       end if;
12802
12803       --  State parameter. This is a pointer to the task body procedure. The
12804       --  required value is obtained by taking 'Unrestricted_Access of the task
12805       --  body procedure and converting it (with an unchecked conversion) to
12806       --  the type required by the task kernel. For further details, see the
12807       --  description of Expand_N_Task_Body. We use 'Unrestricted_Access rather
12808       --  than 'Address in order to avoid creating trampolines.
12809
12810       declare
12811          Body_Proc    : constant Node_Id := Get_Task_Body_Procedure (Ttyp);
12812          Subp_Ptr_Typ : constant Node_Id :=
12813                           Create_Itype (E_Access_Subprogram_Type, Tdec);
12814          Ref          : constant Node_Id := Make_Itype_Reference (Loc);
12815
12816       begin
12817          Set_Directly_Designated_Type (Subp_Ptr_Typ, Body_Proc);
12818          Set_Etype (Subp_Ptr_Typ, Subp_Ptr_Typ);
12819
12820          --  Be sure to freeze a reference to the access-to-subprogram type,
12821          --  otherwise gigi will complain that it's in the wrong scope, because
12822          --  it's actually inside the init procedure for the record type that
12823          --  corresponds to the task type.
12824
12825          --  This processing is causing a crash in the .NET/JVM back ends that
12826          --  is not yet understood, so skip it in these cases ???
12827
12828          if VM_Target = No_VM then
12829             Set_Itype (Ref, Subp_Ptr_Typ);
12830             Append_Freeze_Action (Task_Rec, Ref);
12831
12832             Append_To (Args,
12833               Unchecked_Convert_To (RTE (RE_Task_Procedure_Access),
12834                 Make_Qualified_Expression (Loc,
12835                   Subtype_Mark => New_Reference_To (Subp_Ptr_Typ, Loc),
12836                   Expression   =>
12837                     Make_Attribute_Reference (Loc,
12838                       Prefix =>
12839                         New_Occurrence_Of (Body_Proc, Loc),
12840                       Attribute_Name => Name_Unrestricted_Access))));
12841
12842          --  For the .NET/JVM cases revert to the original code below ???
12843
12844          else
12845             Append_To (Args,
12846               Unchecked_Convert_To (RTE (RE_Task_Procedure_Access),
12847                 Make_Attribute_Reference (Loc,
12848                   Prefix =>
12849                     New_Occurrence_Of (Body_Proc, Loc),
12850                   Attribute_Name => Name_Address)));
12851          end if;
12852       end;
12853
12854       --  Discriminants parameter. This is just the address of the task
12855       --  value record itself (which contains the discriminant values
12856
12857       Append_To (Args,
12858         Make_Attribute_Reference (Loc,
12859           Prefix => Make_Identifier (Loc, Name_uInit),
12860           Attribute_Name => Name_Address));
12861
12862       --  Elaborated parameter. This is an access to the elaboration Boolean
12863
12864       Append_To (Args,
12865         Make_Attribute_Reference (Loc,
12866           Prefix => Make_Identifier (Loc, New_External_Name (Tnam, 'E')),
12867           Attribute_Name => Name_Unchecked_Access));
12868
12869       --  Chain parameter. This is a reference to the _Chain parameter of
12870       --  the initialization procedure.
12871
12872       Append_To (Args, Make_Identifier (Loc, Name_uChain));
12873
12874       --  Task name parameter. Take this from the _Task_Id parameter to the
12875       --  init call unless there is a Task_Name pragma, in which case we take
12876       --  the value from the pragma.
12877
12878       if Present (Tdef)
12879         and then Has_Task_Name_Pragma (Tdef)
12880       then
12881          --  Copy expression in full, because it may be dynamic and have
12882          --  side effects.
12883
12884          Append_To (Args,
12885            New_Copy_Tree
12886              (Expression (First
12887                            (Pragma_Argument_Associations
12888                              (Find_Task_Or_Protected_Pragma
12889                                (Tdef, Name_Task_Name))))));
12890
12891       else
12892          Append_To (Args, Make_Identifier (Loc, Name_uTask_Name));
12893       end if;
12894
12895       --  Created_Task parameter. This is the _Task_Id field of the task
12896       --  record value
12897
12898       Append_To (Args,
12899         Make_Selected_Component (Loc,
12900           Prefix        => Make_Identifier (Loc, Name_uInit),
12901           Selector_Name => Make_Identifier (Loc, Name_uTask_Id)));
12902
12903       --  Build_Entry_Names generation flag. When set to true, the runtime
12904       --  will allocate an array to hold the string names of task entries.
12905
12906       if not Restricted_Profile then
12907          if Has_Entries (Ttyp)
12908            and then Entry_Names_OK
12909          then
12910             Append_To (Args, New_Reference_To (Standard_True, Loc));
12911          else
12912             Append_To (Args, New_Reference_To (Standard_False, Loc));
12913          end if;
12914       end if;
12915
12916       if Restricted_Profile then
12917          Name := New_Reference_To (RTE (RE_Create_Restricted_Task), Loc);
12918       else
12919          Name := New_Reference_To (RTE (RE_Create_Task), Loc);
12920       end if;
12921
12922       return
12923         Make_Procedure_Call_Statement (Loc,
12924           Name => Name,
12925           Parameter_Associations => Args);
12926    end Make_Task_Create_Call;
12927
12928    ------------------------------
12929    -- Next_Protected_Operation --
12930    ------------------------------
12931
12932    function Next_Protected_Operation (N : Node_Id) return Node_Id is
12933       Next_Op : Node_Id;
12934
12935    begin
12936       Next_Op := Next (N);
12937       while Present (Next_Op)
12938         and then not Nkind_In (Next_Op, N_Subprogram_Body, N_Entry_Body)
12939       loop
12940          Next (Next_Op);
12941       end loop;
12942
12943       return Next_Op;
12944    end Next_Protected_Operation;
12945
12946    ---------------------
12947    -- Null_Statements --
12948    ---------------------
12949
12950    function Null_Statements (Stats : List_Id) return Boolean is
12951       Stmt : Node_Id;
12952
12953    begin
12954       Stmt := First (Stats);
12955       while Nkind (Stmt) /= N_Empty
12956         and then (Nkind_In (Stmt, N_Null_Statement, N_Label)
12957                     or else
12958                       (Nkind (Stmt) = N_Pragma
12959                          and then (Pragma_Name (Stmt) = Name_Unreferenced
12960                                      or else
12961                                    Pragma_Name (Stmt) = Name_Unmodified
12962                                      or else
12963                                    Pragma_Name (Stmt) = Name_Warnings)))
12964       loop
12965          Next (Stmt);
12966       end loop;
12967
12968       return Nkind (Stmt) = N_Empty;
12969    end Null_Statements;
12970
12971    --------------------------
12972    -- Parameter_Block_Pack --
12973    --------------------------
12974
12975    function Parameter_Block_Pack
12976      (Loc     : Source_Ptr;
12977       Blk_Typ : Entity_Id;
12978       Actuals : List_Id;
12979       Formals : List_Id;
12980       Decls   : List_Id;
12981       Stmts   : List_Id) return Node_Id
12982    is
12983       Actual    : Entity_Id;
12984       Expr      : Node_Id := Empty;
12985       Formal    : Entity_Id;
12986       Has_Param : Boolean := False;
12987       P         : Entity_Id;
12988       Params    : List_Id;
12989       Temp_Asn  : Node_Id;
12990       Temp_Nam  : Node_Id;
12991
12992    begin
12993       Actual := First (Actuals);
12994       Formal := Defining_Identifier (First (Formals));
12995       Params := New_List;
12996
12997       while Present (Actual) loop
12998          if Is_By_Copy_Type (Etype (Actual)) then
12999             --  Generate:
13000             --    Jnn : aliased <formal-type>
13001
13002             Temp_Nam := Make_Temporary (Loc, 'J');
13003
13004             Append_To (Decls,
13005               Make_Object_Declaration (Loc,
13006                 Aliased_Present =>
13007                   True,
13008                 Defining_Identifier =>
13009                   Temp_Nam,
13010                 Object_Definition =>
13011                   New_Reference_To (Etype (Formal), Loc)));
13012
13013             if Ekind (Formal) /= E_Out_Parameter then
13014
13015                --  Generate:
13016                --    Jnn := <actual>
13017
13018                Temp_Asn :=
13019                  New_Reference_To (Temp_Nam, Loc);
13020
13021                Set_Assignment_OK (Temp_Asn);
13022
13023                Append_To (Stmts,
13024                  Make_Assignment_Statement (Loc,
13025                    Name =>
13026                      Temp_Asn,
13027                    Expression =>
13028                      New_Copy_Tree (Actual)));
13029             end if;
13030
13031             --  Generate:
13032             --    Jnn'unchecked_access
13033
13034             Append_To (Params,
13035               Make_Attribute_Reference (Loc,
13036                 Attribute_Name =>
13037                   Name_Unchecked_Access,
13038                 Prefix =>
13039                   New_Reference_To (Temp_Nam, Loc)));
13040
13041             Has_Param := True;
13042
13043          --  The controlling parameter is omitted
13044
13045          else
13046             if not Is_Controlling_Actual (Actual) then
13047                Append_To (Params,
13048                  Make_Reference (Loc, New_Copy_Tree (Actual)));
13049
13050                Has_Param := True;
13051             end if;
13052          end if;
13053
13054          Next_Actual (Actual);
13055          Next_Formal_With_Extras (Formal);
13056       end loop;
13057
13058       if Has_Param then
13059          Expr := Make_Aggregate (Loc, Params);
13060       end if;
13061
13062       --  Generate:
13063       --    P : Ann := (
13064       --      J1'unchecked_access;
13065       --      <actual2>'reference;
13066       --      ...);
13067
13068       P := Make_Temporary (Loc, 'P');
13069
13070       Append_To (Decls,
13071         Make_Object_Declaration (Loc,
13072           Defining_Identifier =>
13073             P,
13074           Object_Definition =>
13075             New_Reference_To (Blk_Typ, Loc),
13076           Expression =>
13077             Expr));
13078
13079       return P;
13080    end Parameter_Block_Pack;
13081
13082    ----------------------------
13083    -- Parameter_Block_Unpack --
13084    ----------------------------
13085
13086    function Parameter_Block_Unpack
13087      (Loc     : Source_Ptr;
13088       P       : Entity_Id;
13089       Actuals : List_Id;
13090       Formals : List_Id) return List_Id
13091    is
13092       Actual    : Entity_Id;
13093       Asnmt     : Node_Id;
13094       Formal    : Entity_Id;
13095       Has_Asnmt : Boolean := False;
13096       Result    : constant List_Id := New_List;
13097
13098    begin
13099       Actual := First (Actuals);
13100       Formal := Defining_Identifier (First (Formals));
13101       while Present (Actual) loop
13102          if Is_By_Copy_Type (Etype (Actual))
13103            and then Ekind (Formal) /= E_In_Parameter
13104          then
13105             --  Generate:
13106             --    <actual> := P.<formal>;
13107
13108             Asnmt :=
13109               Make_Assignment_Statement (Loc,
13110                 Name =>
13111                   New_Copy (Actual),
13112                 Expression =>
13113                   Make_Explicit_Dereference (Loc,
13114                     Make_Selected_Component (Loc,
13115                       Prefix        =>
13116                         New_Reference_To (P, Loc),
13117                       Selector_Name =>
13118                         Make_Identifier (Loc, Chars (Formal)))));
13119
13120             Set_Assignment_OK (Name (Asnmt));
13121             Append_To (Result, Asnmt);
13122
13123             Has_Asnmt := True;
13124          end if;
13125
13126          Next_Actual (Actual);
13127          Next_Formal_With_Extras (Formal);
13128       end loop;
13129
13130       if Has_Asnmt then
13131          return Result;
13132       else
13133          return New_List (Make_Null_Statement (Loc));
13134       end if;
13135    end Parameter_Block_Unpack;
13136
13137    ----------------------
13138    -- Set_Discriminals --
13139    ----------------------
13140
13141    procedure Set_Discriminals (Dec : Node_Id) is
13142       D       : Entity_Id;
13143       Pdef    : Entity_Id;
13144       D_Minal : Entity_Id;
13145
13146    begin
13147       pragma Assert (Nkind (Dec) = N_Protected_Type_Declaration);
13148       Pdef := Defining_Identifier (Dec);
13149
13150       if Has_Discriminants (Pdef) then
13151          D := First_Discriminant (Pdef);
13152          while Present (D) loop
13153             D_Minal :=
13154               Make_Defining_Identifier (Sloc (D),
13155                 Chars => New_External_Name (Chars (D), 'D'));
13156
13157             Set_Ekind (D_Minal, E_Constant);
13158             Set_Etype (D_Minal, Etype (D));
13159             Set_Scope (D_Minal, Pdef);
13160             Set_Discriminal (D, D_Minal);
13161             Set_Discriminal_Link (D_Minal, D);
13162
13163             Next_Discriminant (D);
13164          end loop;
13165       end if;
13166    end Set_Discriminals;
13167
13168    -----------------------
13169    -- Trivial_Accept_OK --
13170    -----------------------
13171
13172    function Trivial_Accept_OK return Boolean is
13173    begin
13174       case Opt.Task_Dispatching_Policy is
13175
13176          --  If we have the default task dispatching policy in effect, we can
13177          --  definitely do the optimization (one way of looking at this is to
13178          --  think of the formal definition of the default policy being allowed
13179          --  to run any task it likes after a rendezvous, so even if notionally
13180          --  a full rescheduling occurs, we can say that our dispatching policy
13181          --  (i.e. the default dispatching policy) reorders the queue to be the
13182          --  same as just before the call.
13183
13184          when ' ' =>
13185             return True;
13186
13187          --  FIFO_Within_Priorities certainly does not permit this
13188          --  optimization since the Rendezvous is a scheduling action that may
13189          --  require some other task to be run.
13190
13191          when 'F' =>
13192             return False;
13193
13194          --  For now, disallow the optimization for all other policies. This
13195          --  may be over-conservative, but it is certainly not incorrect.
13196
13197          when others =>
13198             return False;
13199
13200       end case;
13201    end Trivial_Accept_OK;
13202
13203 end Exp_Ch9;