[multiple changes]
[gcc.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 (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 Index : Node_Id;
5852 Lim_Typ_Stmts : List_Id;
5853 N_Orig : Node_Id;
5854 Obj : Entity_Id;
5855 Param : Node_Id;
5856 Params : List_Id;
5857 Pdef : Entity_Id;
5858 ProtE_Stmts : List_Id;
5859 ProtP_Stmts : List_Id;
5860 Stmt : Node_Id;
5861 Stmts : List_Id;
5862 Target_Undefer : RE_Id;
5863 TaskE_Stmts : List_Id;
5864 Undefer_Args : List_Id := No_List;
5865
5866 B : Entity_Id; -- Call status flag
5867 Bnn : Entity_Id; -- Communication block
5868 C : Entity_Id; -- Call kind
5869 K : Entity_Id; -- Tagged kind
5870 P : Entity_Id; -- Parameter block
5871 S : Entity_Id; -- Primitive operation slot
5872 T : Entity_Id; -- Additional status flag
5873
5874 begin
5875 Blk_Ent := Make_Temporary (Loc, 'A');
5876 Ecall := Triggering_Statement (Trig);
5877
5878 -- The arguments in the call may require dynamic allocation, and the
5879 -- call statement may have been transformed into a block. The block
5880 -- may contain additional declarations for internal entities, and the
5881 -- original call is found by sequential search.
5882
5883 if Nkind (Ecall) = N_Block_Statement then
5884 Ecall := First (Statements (Handled_Statement_Sequence (Ecall)));
5885 while not Nkind_In (Ecall, N_Procedure_Call_Statement,
5886 N_Entry_Call_Statement)
5887 loop
5888 Next (Ecall);
5889 end loop;
5890 end if;
5891
5892 -- This is either a dispatching call or a delay statement used as a
5893 -- trigger which was expanded into a procedure call.
5894
5895 if Nkind (Ecall) = N_Procedure_Call_Statement then
5896 if Ada_Version >= Ada_2005
5897 and then
5898 (No (Original_Node (Ecall))
5899 or else not Nkind_In (Original_Node (Ecall),
5900 N_Delay_Relative_Statement,
5901 N_Delay_Until_Statement))
5902 then
5903 Extract_Dispatching_Call (Ecall, Call_Ent, Obj, Actuals, Formals);
5904
5905 Decls := New_List;
5906 Stmts := New_List;
5907
5908 -- Call status flag processing, generate:
5909 -- B : Boolean := False;
5910
5911 B := Build_B (Loc, Decls);
5912
5913 -- Communication block processing, generate:
5914 -- Bnn : Communication_Block;
5915
5916 Bnn := Make_Temporary (Loc, 'B');
5917 Append_To (Decls,
5918 Make_Object_Declaration (Loc,
5919 Defining_Identifier => Bnn,
5920 Object_Definition =>
5921 New_Reference_To (RTE (RE_Communication_Block), Loc)));
5922
5923 -- Call kind processing, generate:
5924 -- C : Ada.Tags.Prim_Op_Kind;
5925
5926 C := Build_C (Loc, Decls);
5927
5928 -- Tagged kind processing, generate:
5929 -- K : Ada.Tags.Tagged_Kind :=
5930 -- Ada.Tags.Get_Tagged_Kind (Ada.Tags.Tag (<object>));
5931
5932 -- Dummy communication block, generate:
5933 -- D : Dummy_Communication_Block;
5934
5935 Append_To (Decls,
5936 Make_Object_Declaration (Loc,
5937 Defining_Identifier =>
5938 Make_Defining_Identifier (Loc, Name_uD),
5939 Object_Definition =>
5940 New_Reference_To (
5941 RTE (RE_Dummy_Communication_Block), Loc)));
5942
5943 K := Build_K (Loc, Decls, Obj);
5944
5945 -- Parameter block processing
5946
5947 Blk_Typ := Build_Parameter_Block
5948 (Loc, Actuals, Formals, Decls);
5949 P := Parameter_Block_Pack
5950 (Loc, Blk_Typ, Actuals, Formals, Decls, Stmts);
5951
5952 -- Dispatch table slot processing, generate:
5953 -- S : Integer;
5954
5955 S := Build_S (Loc, Decls);
5956
5957 -- Additional status flag processing, generate:
5958 -- Tnn : Boolean;
5959
5960 T := Make_Temporary (Loc, 'T');
5961 Append_To (Decls,
5962 Make_Object_Declaration (Loc,
5963 Defining_Identifier => T,
5964 Object_Definition =>
5965 New_Reference_To (Standard_Boolean, Loc)));
5966
5967 ------------------------------
5968 -- Protected entry handling --
5969 ------------------------------
5970
5971 -- Generate:
5972 -- Param1 := P.Param1;
5973 -- ...
5974 -- ParamN := P.ParamN;
5975
5976 Cleanup_Stmts := Parameter_Block_Unpack (Loc, P, Actuals, Formals);
5977
5978 -- Generate:
5979 -- Bnn := Communication_Block (D);
5980
5981 Prepend_To (Cleanup_Stmts,
5982 Make_Assignment_Statement (Loc,
5983 Name =>
5984 New_Reference_To (Bnn, Loc),
5985 Expression =>
5986 Make_Unchecked_Type_Conversion (Loc,
5987 Subtype_Mark =>
5988 New_Reference_To (RTE (RE_Communication_Block), Loc),
5989 Expression => Make_Identifier (Loc, Name_uD))));
5990
5991 -- Generate:
5992 -- _Disp_Asynchronous_Select (<object>, S, P'Address, D, B);
5993
5994 Prepend_To (Cleanup_Stmts,
5995 Make_Procedure_Call_Statement (Loc,
5996 Name =>
5997 New_Reference_To (
5998 Find_Prim_Op (Etype (Etype (Obj)),
5999 Name_uDisp_Asynchronous_Select),
6000 Loc),
6001 Parameter_Associations =>
6002 New_List (
6003 New_Copy_Tree (Obj), -- <object>
6004 New_Reference_To (S, Loc), -- S
6005 Make_Attribute_Reference (Loc, -- P'Address
6006 Prefix =>
6007 New_Reference_To (P, Loc),
6008 Attribute_Name =>
6009 Name_Address),
6010 Make_Identifier (Loc, Name_uD), -- D
6011 New_Reference_To (B, Loc)))); -- B
6012
6013 -- Generate:
6014 -- if Enqueued (Bnn) then
6015 -- <abortable-statements>
6016 -- end if;
6017
6018 Append_To (Cleanup_Stmts,
6019 Make_If_Statement (Loc,
6020 Condition =>
6021 Make_Function_Call (Loc,
6022 Name =>
6023 New_Reference_To (RTE (RE_Enqueued), Loc),
6024 Parameter_Associations =>
6025 New_List (
6026 New_Reference_To (Bnn, Loc))),
6027
6028 Then_Statements =>
6029 New_Copy_List_Tree (Astats)));
6030
6031 -- Wrap the statements in a block. Exp_Ch7.Expand_Cleanup_Actions
6032 -- will then generate a _clean for the communication block Bnn.
6033
6034 -- Generate:
6035 -- declare
6036 -- procedure _clean is
6037 -- begin
6038 -- if Enqueued (Bnn) then
6039 -- Cancel_Protected_Entry_Call (Bnn);
6040 -- end if;
6041 -- end _clean;
6042 -- begin
6043 -- Cleanup_Stmts
6044 -- at end
6045 -- _clean;
6046 -- end;
6047
6048 Cleanup_Block_Ent := Make_Temporary (Loc, 'C');
6049 Cleanup_Block :=
6050 Build_Cleanup_Block (Loc, Cleanup_Block_Ent, Cleanup_Stmts, Bnn);
6051
6052 -- Wrap the cleanup block in an exception handling block
6053
6054 -- Generate:
6055 -- begin
6056 -- Cleanup_Block
6057 -- exception
6058 -- when Abort_Signal => Abort_Undefer;
6059 -- end;
6060
6061 Abort_Block_Ent := Make_Temporary (Loc, 'A');
6062 ProtE_Stmts :=
6063 New_List (
6064 Make_Implicit_Label_Declaration (Loc,
6065 Defining_Identifier =>
6066 Abort_Block_Ent),
6067
6068 Build_Abort_Block
6069 (Loc, Abort_Block_Ent, Cleanup_Block_Ent, Cleanup_Block));
6070
6071 -- Generate:
6072 -- if not Cancelled (Bnn) then
6073 -- <triggering-statements>
6074 -- end if;
6075
6076 Append_To (ProtE_Stmts,
6077 Make_If_Statement (Loc,
6078 Condition =>
6079 Make_Op_Not (Loc,
6080 Right_Opnd =>
6081 Make_Function_Call (Loc,
6082 Name =>
6083 New_Reference_To (RTE (RE_Cancelled), Loc),
6084 Parameter_Associations =>
6085 New_List (
6086 New_Reference_To (Bnn, Loc)))),
6087
6088 Then_Statements =>
6089 New_Copy_List_Tree (Tstats)));
6090
6091 -------------------------
6092 -- Task entry handling --
6093 -------------------------
6094
6095 -- Generate:
6096 -- Param1 := P.Param1;
6097 -- ...
6098 -- ParamN := P.ParamN;
6099
6100 TaskE_Stmts := Parameter_Block_Unpack (Loc, P, Actuals, Formals);
6101
6102 -- Generate:
6103 -- Bnn := Communication_Block (D);
6104
6105 Append_To (TaskE_Stmts,
6106 Make_Assignment_Statement (Loc,
6107 Name =>
6108 New_Reference_To (Bnn, Loc),
6109 Expression =>
6110 Make_Unchecked_Type_Conversion (Loc,
6111 Subtype_Mark =>
6112 New_Reference_To (RTE (RE_Communication_Block), Loc),
6113 Expression => Make_Identifier (Loc, Name_uD))));
6114
6115 -- Generate:
6116 -- _Disp_Asynchronous_Select (<object>, S, P'Address, D, B);
6117
6118 Prepend_To (TaskE_Stmts,
6119 Make_Procedure_Call_Statement (Loc,
6120 Name =>
6121 New_Reference_To (
6122 Find_Prim_Op (Etype (Etype (Obj)),
6123 Name_uDisp_Asynchronous_Select),
6124 Loc),
6125 Parameter_Associations =>
6126 New_List (
6127 New_Copy_Tree (Obj), -- <object>
6128 New_Reference_To (S, Loc), -- S
6129 Make_Attribute_Reference (Loc, -- P'Address
6130 Prefix =>
6131 New_Reference_To (P, Loc),
6132 Attribute_Name =>
6133 Name_Address),
6134 Make_Identifier (Loc, Name_uD), -- D
6135 New_Reference_To (B, Loc)))); -- B
6136
6137 -- Generate:
6138 -- Abort_Defer;
6139
6140 Prepend_To (TaskE_Stmts,
6141 Make_Procedure_Call_Statement (Loc,
6142 Name =>
6143 New_Reference_To (RTE (RE_Abort_Defer), Loc),
6144 Parameter_Associations =>
6145 No_List));
6146
6147 -- Generate:
6148 -- Abort_Undefer;
6149 -- <abortable-statements>
6150
6151 Cleanup_Stmts := New_Copy_List_Tree (Astats);
6152
6153 Prepend_To (Cleanup_Stmts,
6154 Make_Procedure_Call_Statement (Loc,
6155 Name =>
6156 New_Reference_To (RTE (RE_Abort_Undefer), Loc),
6157 Parameter_Associations =>
6158 No_List));
6159
6160 -- Wrap the statements in a block. Exp_Ch7.Expand_Cleanup_Actions
6161 -- will generate a _clean for the additional status flag.
6162
6163 -- Generate:
6164 -- declare
6165 -- procedure _clean is
6166 -- begin
6167 -- Cancel_Task_Entry_Call (U);
6168 -- end _clean;
6169 -- begin
6170 -- Cleanup_Stmts
6171 -- at end
6172 -- _clean;
6173 -- end;
6174
6175 Cleanup_Block_Ent := Make_Temporary (Loc, 'C');
6176 Cleanup_Block :=
6177 Build_Cleanup_Block (Loc, Cleanup_Block_Ent, Cleanup_Stmts, T);
6178
6179 -- Wrap the cleanup block in an exception handling block
6180
6181 -- Generate:
6182 -- begin
6183 -- Cleanup_Block
6184 -- exception
6185 -- when Abort_Signal => Abort_Undefer;
6186 -- end;
6187
6188 Abort_Block_Ent := Make_Temporary (Loc, 'A');
6189
6190 Append_To (TaskE_Stmts,
6191 Make_Implicit_Label_Declaration (Loc,
6192 Defining_Identifier => Abort_Block_Ent));
6193
6194 Append_To (TaskE_Stmts,
6195 Build_Abort_Block
6196 (Loc, Abort_Block_Ent, Cleanup_Block_Ent, Cleanup_Block));
6197
6198 -- Generate:
6199 -- if not T then
6200 -- <triggering-statements>
6201 -- end if;
6202
6203 Append_To (TaskE_Stmts,
6204 Make_If_Statement (Loc,
6205 Condition =>
6206 Make_Op_Not (Loc,
6207 Right_Opnd =>
6208 New_Reference_To (T, Loc)),
6209
6210 Then_Statements =>
6211 New_Copy_List_Tree (Tstats)));
6212
6213 ----------------------------------
6214 -- Protected procedure handling --
6215 ----------------------------------
6216
6217 -- Generate:
6218 -- <dispatching-call>;
6219 -- <triggering-statements>
6220
6221 ProtP_Stmts := New_Copy_List_Tree (Tstats);
6222 Prepend_To (ProtP_Stmts, New_Copy_Tree (Ecall));
6223
6224 -- Generate:
6225 -- S := Ada.Tags.Get_Offset_Index
6226 -- (Ada.Tags.Tag (<object>), DT_Position (Call_Ent));
6227
6228 Conc_Typ_Stmts :=
6229 New_List (Build_S_Assignment (Loc, S, Obj, Call_Ent));
6230
6231 -- Generate:
6232 -- _Disp_Get_Prim_Op_Kind (<object>, S, C);
6233
6234 Append_To (Conc_Typ_Stmts,
6235 Make_Procedure_Call_Statement (Loc,
6236 Name =>
6237 New_Reference_To (
6238 Find_Prim_Op (Etype (Etype (Obj)),
6239 Name_uDisp_Get_Prim_Op_Kind),
6240 Loc),
6241 Parameter_Associations =>
6242 New_List (
6243 New_Copy_Tree (Obj),
6244 New_Reference_To (S, Loc),
6245 New_Reference_To (C, Loc))));
6246
6247 -- Generate:
6248 -- if C = POK_Procedure_Entry then
6249 -- ProtE_Stmts
6250 -- elsif C = POK_Task_Entry then
6251 -- TaskE_Stmts
6252 -- else
6253 -- ProtP_Stmts
6254 -- end if;
6255
6256 Append_To (Conc_Typ_Stmts,
6257 Make_If_Statement (Loc,
6258 Condition =>
6259 Make_Op_Eq (Loc,
6260 Left_Opnd =>
6261 New_Reference_To (C, Loc),
6262 Right_Opnd =>
6263 New_Reference_To (RTE (RE_POK_Protected_Entry), Loc)),
6264
6265 Then_Statements =>
6266 ProtE_Stmts,
6267
6268 Elsif_Parts =>
6269 New_List (
6270 Make_Elsif_Part (Loc,
6271 Condition =>
6272 Make_Op_Eq (Loc,
6273 Left_Opnd =>
6274 New_Reference_To (C, Loc),
6275 Right_Opnd =>
6276 New_Reference_To (RTE (RE_POK_Task_Entry), Loc)),
6277
6278 Then_Statements =>
6279 TaskE_Stmts)),
6280
6281 Else_Statements =>
6282 ProtP_Stmts));
6283
6284 -- Generate:
6285 -- <dispatching-call>;
6286 -- <triggering-statements>
6287
6288 Lim_Typ_Stmts := New_Copy_List_Tree (Tstats);
6289 Prepend_To (Lim_Typ_Stmts, New_Copy_Tree (Ecall));
6290
6291 -- Generate:
6292 -- if K = Ada.Tags.TK_Limited_Tagged then
6293 -- Lim_Typ_Stmts
6294 -- else
6295 -- Conc_Typ_Stmts
6296 -- end if;
6297
6298 Append_To (Stmts,
6299 Make_If_Statement (Loc,
6300 Condition =>
6301 Make_Op_Eq (Loc,
6302 Left_Opnd =>
6303 New_Reference_To (K, Loc),
6304 Right_Opnd =>
6305 New_Reference_To (RTE (RE_TK_Limited_Tagged), Loc)),
6306
6307 Then_Statements =>
6308 Lim_Typ_Stmts,
6309
6310 Else_Statements =>
6311 Conc_Typ_Stmts));
6312
6313 Rewrite (N,
6314 Make_Block_Statement (Loc,
6315 Declarations =>
6316 Decls,
6317 Handled_Statement_Sequence =>
6318 Make_Handled_Sequence_Of_Statements (Loc, Stmts)));
6319
6320 Analyze (N);
6321 return;
6322
6323 -- Delay triggering statement processing
6324
6325 else
6326 -- Add a Delay_Block object to the parameter list of the delay
6327 -- procedure to form the parameter list of the Wait entry call.
6328
6329 Dblock_Ent := Make_Temporary (Loc, 'D');
6330
6331 Pdef := Entity (Name (Ecall));
6332
6333 if Is_RTE (Pdef, RO_CA_Delay_For) then
6334 Enqueue_Call :=
6335 New_Reference_To (RTE (RE_Enqueue_Duration), Loc);
6336
6337 elsif Is_RTE (Pdef, RO_CA_Delay_Until) then
6338 Enqueue_Call :=
6339 New_Reference_To (RTE (RE_Enqueue_Calendar), Loc);
6340
6341 else pragma Assert (Is_RTE (Pdef, RO_RT_Delay_Until));
6342 Enqueue_Call := New_Reference_To (RTE (RE_Enqueue_RT), Loc);
6343 end if;
6344
6345 Append_To (Parameter_Associations (Ecall),
6346 Make_Attribute_Reference (Loc,
6347 Prefix => New_Reference_To (Dblock_Ent, Loc),
6348 Attribute_Name => Name_Unchecked_Access));
6349
6350 -- Create the inner block to protect the abortable part
6351
6352 Hdle := New_List (
6353 Make_Implicit_Exception_Handler (Loc,
6354 Exception_Choices =>
6355 New_List (New_Reference_To (Stand.Abort_Signal, Loc)),
6356 Statements => New_List (
6357 Make_Procedure_Call_Statement (Loc,
6358 Name => New_Reference_To (RTE (RE_Abort_Undefer), Loc)))));
6359
6360 Prepend_To (Astats,
6361 Make_Procedure_Call_Statement (Loc,
6362 Name => New_Reference_To (RTE (RE_Abort_Undefer), Loc)));
6363
6364 Abortable_Block :=
6365 Make_Block_Statement (Loc,
6366 Identifier => New_Reference_To (Blk_Ent, Loc),
6367 Handled_Statement_Sequence =>
6368 Make_Handled_Sequence_Of_Statements (Loc,
6369 Statements => Astats),
6370 Has_Created_Identifier => True,
6371 Is_Asynchronous_Call_Block => True);
6372
6373 -- Append call to if Enqueue (When, DB'Unchecked_Access) then
6374
6375 Rewrite (Ecall,
6376 Make_Implicit_If_Statement (N,
6377 Condition => Make_Function_Call (Loc,
6378 Name => Enqueue_Call,
6379 Parameter_Associations => Parameter_Associations (Ecall)),
6380 Then_Statements =>
6381 New_List (Make_Block_Statement (Loc,
6382 Handled_Statement_Sequence =>
6383 Make_Handled_Sequence_Of_Statements (Loc,
6384 Statements => New_List (
6385 Make_Implicit_Label_Declaration (Loc,
6386 Defining_Identifier => Blk_Ent,
6387 Label_Construct => Abortable_Block),
6388 Abortable_Block),
6389 Exception_Handlers => Hdle)))));
6390
6391 Stmts := New_List (Ecall);
6392
6393 -- Construct statement sequence for new block
6394
6395 Append_To (Stmts,
6396 Make_Implicit_If_Statement (N,
6397 Condition => Make_Function_Call (Loc,
6398 Name => New_Reference_To (
6399 RTE (RE_Timed_Out), Loc),
6400 Parameter_Associations => New_List (
6401 Make_Attribute_Reference (Loc,
6402 Prefix => New_Reference_To (Dblock_Ent, Loc),
6403 Attribute_Name => Name_Unchecked_Access))),
6404 Then_Statements => Tstats));
6405
6406 -- The result is the new block
6407
6408 Set_Entry_Cancel_Parameter (Blk_Ent, Dblock_Ent);
6409
6410 Rewrite (N,
6411 Make_Block_Statement (Loc,
6412 Declarations => New_List (
6413 Make_Object_Declaration (Loc,
6414 Defining_Identifier => Dblock_Ent,
6415 Aliased_Present => True,
6416 Object_Definition => New_Reference_To (
6417 RTE (RE_Delay_Block), Loc))),
6418
6419 Handled_Statement_Sequence =>
6420 Make_Handled_Sequence_Of_Statements (Loc, Stmts)));
6421
6422 Analyze (N);
6423 return;
6424 end if;
6425
6426 else
6427 N_Orig := N;
6428 end if;
6429
6430 Extract_Entry (Ecall, Concval, Ename, Index);
6431 Build_Simple_Entry_Call (Ecall, Concval, Ename, Index);
6432
6433 Stmts := Statements (Handled_Statement_Sequence (Ecall));
6434 Decls := Declarations (Ecall);
6435
6436 if Is_Protected_Type (Etype (Concval)) then
6437
6438 -- Get the declarations of the block expanded from the entry call
6439
6440 Decl := First (Decls);
6441 while Present (Decl)
6442 and then
6443 (Nkind (Decl) /= N_Object_Declaration
6444 or else not Is_RTE (Etype (Object_Definition (Decl)),
6445 RE_Communication_Block))
6446 loop
6447 Next (Decl);
6448 end loop;
6449
6450 pragma Assert (Present (Decl));
6451 Cancel_Param := Defining_Identifier (Decl);
6452
6453 -- Change the mode of the Protected_Entry_Call call
6454
6455 -- Protected_Entry_Call (
6456 -- Object => po._object'Access,
6457 -- E => <entry index>;
6458 -- Uninterpreted_Data => P'Address;
6459 -- Mode => Asynchronous_Call;
6460 -- Block => Bnn);
6461
6462 Stmt := First (Stmts);
6463
6464 -- Skip assignments to temporaries created for in-out parameters
6465
6466 -- This makes unwarranted assumptions about the shape of the expanded
6467 -- tree for the call, and should be cleaned up ???
6468
6469 while Nkind (Stmt) /= N_Procedure_Call_Statement loop
6470 Next (Stmt);
6471 end loop;
6472
6473 Call := Stmt;
6474
6475 Param := First (Parameter_Associations (Call));
6476 while Present (Param)
6477 and then not Is_RTE (Etype (Param), RE_Call_Modes)
6478 loop
6479 Next (Param);
6480 end loop;
6481
6482 pragma Assert (Present (Param));
6483 Rewrite (Param, New_Reference_To (RTE (RE_Asynchronous_Call), Loc));
6484 Analyze (Param);
6485
6486 -- Append an if statement to execute the abortable part
6487
6488 -- Generate:
6489 -- if Enqueued (Bnn) then
6490
6491 Append_To (Stmts,
6492 Make_Implicit_If_Statement (N,
6493 Condition => Make_Function_Call (Loc,
6494 Name => New_Reference_To (
6495 RTE (RE_Enqueued), Loc),
6496 Parameter_Associations => New_List (
6497 New_Reference_To (Cancel_Param, Loc))),
6498 Then_Statements => Astats));
6499
6500 Abortable_Block :=
6501 Make_Block_Statement (Loc,
6502 Identifier => New_Reference_To (Blk_Ent, Loc),
6503 Handled_Statement_Sequence =>
6504 Make_Handled_Sequence_Of_Statements (Loc,
6505 Statements => Stmts),
6506 Has_Created_Identifier => True,
6507 Is_Asynchronous_Call_Block => True);
6508
6509 -- For the VM call Update_Exception instead of Abort_Undefer.
6510 -- See 4jexcept.ads for an explanation.
6511
6512 if VM_Target = No_VM then
6513 Target_Undefer := RE_Abort_Undefer;
6514 else
6515 Target_Undefer := RE_Update_Exception;
6516 Undefer_Args :=
6517 New_List (Make_Function_Call (Loc,
6518 Name => New_Occurrence_Of
6519 (RTE (RE_Current_Target_Exception), Loc)));
6520 end if;
6521
6522 Stmts := New_List (
6523 Make_Block_Statement (Loc,
6524 Handled_Statement_Sequence =>
6525 Make_Handled_Sequence_Of_Statements (Loc,
6526 Statements => New_List (
6527 Make_Implicit_Label_Declaration (Loc,
6528 Defining_Identifier => Blk_Ent,
6529 Label_Construct => Abortable_Block),
6530 Abortable_Block),
6531
6532 -- exception
6533
6534 Exception_Handlers => New_List (
6535 Make_Implicit_Exception_Handler (Loc,
6536
6537 -- when Abort_Signal =>
6538 -- Abort_Undefer.all;
6539
6540 Exception_Choices =>
6541 New_List (New_Reference_To (Stand.Abort_Signal, Loc)),
6542 Statements => New_List (
6543 Make_Procedure_Call_Statement (Loc,
6544 Name => New_Reference_To (
6545 RTE (Target_Undefer), Loc),
6546 Parameter_Associations => Undefer_Args)))))),
6547
6548 -- if not Cancelled (Bnn) then
6549 -- triggered statements
6550 -- end if;
6551
6552 Make_Implicit_If_Statement (N,
6553 Condition => Make_Op_Not (Loc,
6554 Right_Opnd =>
6555 Make_Function_Call (Loc,
6556 Name => New_Occurrence_Of (RTE (RE_Cancelled), Loc),
6557 Parameter_Associations => New_List (
6558 New_Occurrence_Of (Cancel_Param, Loc)))),
6559 Then_Statements => Tstats));
6560
6561 -- Asynchronous task entry call
6562
6563 else
6564 if No (Decls) then
6565 Decls := New_List;
6566 end if;
6567
6568 B := Make_Defining_Identifier (Loc, Name_uB);
6569
6570 -- Insert declaration of B in declarations of existing block
6571
6572 Prepend_To (Decls,
6573 Make_Object_Declaration (Loc,
6574 Defining_Identifier => B,
6575 Object_Definition => New_Reference_To (Standard_Boolean, Loc)));
6576
6577 Cancel_Param := Make_Defining_Identifier (Loc, Name_uC);
6578
6579 -- Insert declaration of C in declarations of existing block
6580
6581 Prepend_To (Decls,
6582 Make_Object_Declaration (Loc,
6583 Defining_Identifier => Cancel_Param,
6584 Object_Definition => New_Reference_To (Standard_Boolean, Loc)));
6585
6586 -- Remove and save the call to Call_Simple
6587
6588 Stmt := First (Stmts);
6589
6590 -- Skip assignments to temporaries created for in-out parameters.
6591 -- This makes unwarranted assumptions about the shape of the expanded
6592 -- tree for the call, and should be cleaned up ???
6593
6594 while Nkind (Stmt) /= N_Procedure_Call_Statement loop
6595 Next (Stmt);
6596 end loop;
6597
6598 Call := Stmt;
6599
6600 -- Create the inner block to protect the abortable part
6601
6602 Hdle := New_List (
6603 Make_Implicit_Exception_Handler (Loc,
6604 Exception_Choices =>
6605 New_List (New_Reference_To (Stand.Abort_Signal, Loc)),
6606 Statements =>
6607 New_List (
6608 Make_Procedure_Call_Statement (Loc,
6609 Name => New_Reference_To (RTE (RE_Abort_Undefer), Loc)))));
6610
6611 Prepend_To (Astats,
6612 Make_Procedure_Call_Statement (Loc,
6613 Name => New_Reference_To (RTE (RE_Abort_Undefer), Loc)));
6614
6615 Abortable_Block :=
6616 Make_Block_Statement (Loc,
6617 Identifier => New_Reference_To (Blk_Ent, Loc),
6618 Handled_Statement_Sequence =>
6619 Make_Handled_Sequence_Of_Statements (Loc,
6620 Statements => Astats),
6621 Has_Created_Identifier => True,
6622 Is_Asynchronous_Call_Block => True);
6623
6624 Insert_After (Call,
6625 Make_Block_Statement (Loc,
6626 Handled_Statement_Sequence =>
6627 Make_Handled_Sequence_Of_Statements (Loc,
6628 Statements => New_List (
6629 Make_Implicit_Label_Declaration (Loc,
6630 Defining_Identifier =>
6631 Blk_Ent,
6632 Label_Construct =>
6633 Abortable_Block),
6634 Abortable_Block),
6635 Exception_Handlers => Hdle)));
6636
6637 -- Create new call statement
6638
6639 Params := Parameter_Associations (Call);
6640
6641 Append_To (Params,
6642 New_Reference_To (RTE (RE_Asynchronous_Call), Loc));
6643 Append_To (Params,
6644 New_Reference_To (B, Loc));
6645
6646 Rewrite (Call,
6647 Make_Procedure_Call_Statement (Loc,
6648 Name =>
6649 New_Reference_To (RTE (RE_Task_Entry_Call), Loc),
6650 Parameter_Associations => Params));
6651
6652 -- Construct statement sequence for new block
6653
6654 Append_To (Stmts,
6655 Make_Implicit_If_Statement (N,
6656 Condition =>
6657 Make_Op_Not (Loc,
6658 New_Reference_To (Cancel_Param, Loc)),
6659 Then_Statements => Tstats));
6660
6661 -- Protected the call against abort
6662
6663 Prepend_To (Stmts,
6664 Make_Procedure_Call_Statement (Loc,
6665 Name => New_Reference_To (RTE (RE_Abort_Defer), Loc),
6666 Parameter_Associations => Empty_List));
6667 end if;
6668
6669 Set_Entry_Cancel_Parameter (Blk_Ent, Cancel_Param);
6670
6671 -- The result is the new block
6672
6673 Rewrite (N_Orig,
6674 Make_Block_Statement (Loc,
6675 Declarations => Decls,
6676 Handled_Statement_Sequence =>
6677 Make_Handled_Sequence_Of_Statements (Loc, Stmts)));
6678
6679 Analyze (N_Orig);
6680 end Expand_N_Asynchronous_Select;
6681
6682 -------------------------------------
6683 -- Expand_N_Conditional_Entry_Call --
6684 -------------------------------------
6685
6686 -- The conditional task entry call is converted to a call to
6687 -- Task_Entry_Call:
6688
6689 -- declare
6690 -- B : Boolean;
6691 -- P : parms := (parm, parm, parm);
6692
6693 -- begin
6694 -- Task_Entry_Call
6695 -- (<acceptor-task>, -- Acceptor
6696 -- <entry-index>, -- E
6697 -- P'Address, -- Uninterpreted_Data
6698 -- Conditional_Call, -- Mode
6699 -- B); -- Rendezvous_Successful
6700 -- parm := P.param;
6701 -- parm := P.param;
6702 -- ...
6703 -- if B then
6704 -- normal-statements
6705 -- else
6706 -- else-statements
6707 -- end if;
6708 -- end;
6709
6710 -- For a description of the use of P and the assignments after the call,
6711 -- see Expand_N_Entry_Call_Statement. Note that the entry call of the
6712 -- conditional entry call has already been expanded (by the Expand_N_Entry
6713 -- _Call_Statement procedure) as follows:
6714
6715 -- declare
6716 -- P : parms := (parm, parm, parm);
6717 -- begin
6718 -- ... info for in-out parameters
6719 -- Call_Simple (acceptor-task, entry-index, P'Address);
6720 -- parm := P.param;
6721 -- parm := P.param;
6722 -- ...
6723 -- end;
6724
6725 -- so the task at hand is to convert the latter expansion into the former
6726
6727 -- The conditional protected entry call is converted to a call to
6728 -- Protected_Entry_Call:
6729
6730 -- declare
6731 -- P : parms := (parm, parm, parm);
6732 -- Bnn : Communications_Block;
6733
6734 -- begin
6735 -- Protected_Entry_Call
6736 -- (po._object'Access, -- Object
6737 -- <entry index>, -- E
6738 -- P'Address, -- Uninterpreted_Data
6739 -- Conditional_Call, -- Mode
6740 -- Bnn); -- Block
6741 -- parm := P.param;
6742 -- parm := P.param;
6743 -- ...
6744 -- if Cancelled (Bnn) then
6745 -- else-statements
6746 -- else
6747 -- normal-statements
6748 -- end if;
6749 -- end;
6750
6751 -- Ada 2005 (AI-345): A dispatching conditional entry call is converted
6752 -- into:
6753
6754 -- declare
6755 -- B : Boolean := False;
6756 -- C : Ada.Tags.Prim_Op_Kind;
6757 -- K : Ada.Tags.Tagged_Kind :=
6758 -- Ada.Tags.Get_Tagged_Kind (Ada.Tags.Tag (<object>));
6759 -- P : Parameters := (Param1 .. ParamN);
6760 -- S : Integer;
6761
6762 -- begin
6763 -- if K = Ada.Tags.TK_Limited_Tagged then
6764 -- <dispatching-call>;
6765 -- <triggering-statements>
6766
6767 -- else
6768 -- S :=
6769 -- Ada.Tags.Get_Offset_Index
6770 -- (Ada.Tags.Tag (<object>), DT_Position (<dispatching-call>));
6771
6772 -- _Disp_Conditional_Select (<object>, S, P'Address, C, B);
6773
6774 -- if C = POK_Protected_Entry
6775 -- or else C = POK_Task_Entry
6776 -- then
6777 -- Param1 := P.Param1;
6778 -- ...
6779 -- ParamN := P.ParamN;
6780 -- end if;
6781
6782 -- if B then
6783 -- if C = POK_Procedure
6784 -- or else C = POK_Protected_Procedure
6785 -- or else C = POK_Task_Procedure
6786 -- then
6787 -- <dispatching-call>;
6788 -- end if;
6789
6790 -- <triggering-statements>
6791 -- else
6792 -- <else-statements>
6793 -- end if;
6794 -- end if;
6795 -- end;
6796
6797 procedure Expand_N_Conditional_Entry_Call (N : Node_Id) is
6798 Loc : constant Source_Ptr := Sloc (N);
6799 Alt : constant Node_Id := Entry_Call_Alternative (N);
6800 Blk : Node_Id := Entry_Call_Statement (Alt);
6801
6802 Actuals : List_Id;
6803 Blk_Typ : Entity_Id;
6804 Call : Node_Id;
6805 Call_Ent : Entity_Id;
6806 Conc_Typ_Stmts : List_Id;
6807 Decl : Node_Id;
6808 Decls : List_Id;
6809 Formals : List_Id;
6810 Lim_Typ_Stmts : List_Id;
6811 N_Stats : List_Id;
6812 Obj : Entity_Id;
6813 Param : Node_Id;
6814 Params : List_Id;
6815 Stmt : Node_Id;
6816 Stmts : List_Id;
6817 Transient_Blk : Node_Id;
6818 Unpack : List_Id;
6819
6820 B : Entity_Id; -- Call status flag
6821 C : Entity_Id; -- Call kind
6822 K : Entity_Id; -- Tagged kind
6823 P : Entity_Id; -- Parameter block
6824 S : Entity_Id; -- Primitive operation slot
6825
6826 begin
6827 if Ada_Version >= Ada_2005
6828 and then Nkind (Blk) = N_Procedure_Call_Statement
6829 then
6830 Extract_Dispatching_Call (Blk, Call_Ent, Obj, Actuals, Formals);
6831
6832 Decls := New_List;
6833 Stmts := New_List;
6834
6835 -- Call status flag processing, generate:
6836 -- B : Boolean := False;
6837
6838 B := Build_B (Loc, Decls);
6839
6840 -- Call kind processing, generate:
6841 -- C : Ada.Tags.Prim_Op_Kind;
6842
6843 C := Build_C (Loc, Decls);
6844
6845 -- Tagged kind processing, generate:
6846 -- K : Ada.Tags.Tagged_Kind :=
6847 -- Ada.Tags.Get_Tagged_Kind (Ada.Tags.Tag (<object>));
6848
6849 K := Build_K (Loc, Decls, Obj);
6850
6851 -- Parameter block processing
6852
6853 Blk_Typ := Build_Parameter_Block (Loc, Actuals, Formals, Decls);
6854 P := Parameter_Block_Pack
6855 (Loc, Blk_Typ, Actuals, Formals, Decls, Stmts);
6856
6857 -- Dispatch table slot processing, generate:
6858 -- S : Integer;
6859
6860 S := Build_S (Loc, Decls);
6861
6862 -- Generate:
6863 -- S := Ada.Tags.Get_Offset_Index
6864 -- (Ada.Tags.Tag (<object>), DT_Position (Call_Ent));
6865
6866 Conc_Typ_Stmts :=
6867 New_List (Build_S_Assignment (Loc, S, Obj, Call_Ent));
6868
6869 -- Generate:
6870 -- _Disp_Conditional_Select (<object>, S, P'Address, C, B);
6871
6872 Append_To (Conc_Typ_Stmts,
6873 Make_Procedure_Call_Statement (Loc,
6874 Name =>
6875 New_Reference_To (
6876 Find_Prim_Op (Etype (Etype (Obj)),
6877 Name_uDisp_Conditional_Select),
6878 Loc),
6879 Parameter_Associations =>
6880 New_List (
6881 New_Copy_Tree (Obj), -- <object>
6882 New_Reference_To (S, Loc), -- S
6883 Make_Attribute_Reference (Loc, -- P'Address
6884 Prefix =>
6885 New_Reference_To (P, Loc),
6886 Attribute_Name =>
6887 Name_Address),
6888 New_Reference_To (C, Loc), -- C
6889 New_Reference_To (B, Loc)))); -- B
6890
6891 -- Generate:
6892 -- if C = POK_Protected_Entry
6893 -- or else C = POK_Task_Entry
6894 -- then
6895 -- Param1 := P.Param1;
6896 -- ...
6897 -- ParamN := P.ParamN;
6898 -- end if;
6899
6900 Unpack := Parameter_Block_Unpack (Loc, P, Actuals, Formals);
6901
6902 -- Generate the if statement only when the packed parameters need
6903 -- explicit assignments to their corresponding actuals.
6904
6905 if Present (Unpack) then
6906 Append_To (Conc_Typ_Stmts,
6907 Make_If_Statement (Loc,
6908
6909 Condition =>
6910 Make_Or_Else (Loc,
6911 Left_Opnd =>
6912 Make_Op_Eq (Loc,
6913 Left_Opnd =>
6914 New_Reference_To (C, Loc),
6915 Right_Opnd =>
6916 New_Reference_To (RTE (
6917 RE_POK_Protected_Entry), Loc)),
6918 Right_Opnd =>
6919 Make_Op_Eq (Loc,
6920 Left_Opnd =>
6921 New_Reference_To (C, Loc),
6922 Right_Opnd =>
6923 New_Reference_To (RTE (RE_POK_Task_Entry), Loc))),
6924
6925 Then_Statements =>
6926 Unpack));
6927 end if;
6928
6929 -- Generate:
6930 -- if B then
6931 -- if C = POK_Procedure
6932 -- or else C = POK_Protected_Procedure
6933 -- or else C = POK_Task_Procedure
6934 -- then
6935 -- <dispatching-call>
6936 -- end if;
6937 -- <normal-statements>
6938 -- else
6939 -- <else-statements>
6940 -- end if;
6941
6942 N_Stats := New_Copy_List_Tree (Statements (Alt));
6943
6944 Prepend_To (N_Stats,
6945 Make_If_Statement (Loc,
6946 Condition =>
6947 Make_Or_Else (Loc,
6948 Left_Opnd =>
6949 Make_Op_Eq (Loc,
6950 Left_Opnd =>
6951 New_Reference_To (C, Loc),
6952 Right_Opnd =>
6953 New_Reference_To (RTE (RE_POK_Procedure), Loc)),
6954
6955 Right_Opnd =>
6956 Make_Or_Else (Loc,
6957 Left_Opnd =>
6958 Make_Op_Eq (Loc,
6959 Left_Opnd =>
6960 New_Reference_To (C, Loc),
6961 Right_Opnd =>
6962 New_Reference_To (RTE (
6963 RE_POK_Protected_Procedure), Loc)),
6964
6965 Right_Opnd =>
6966 Make_Op_Eq (Loc,
6967 Left_Opnd =>
6968 New_Reference_To (C, Loc),
6969 Right_Opnd =>
6970 New_Reference_To (RTE (
6971 RE_POK_Task_Procedure), Loc)))),
6972
6973 Then_Statements =>
6974 New_List (Blk)));
6975
6976 Append_To (Conc_Typ_Stmts,
6977 Make_If_Statement (Loc,
6978 Condition => New_Reference_To (B, Loc),
6979 Then_Statements => N_Stats,
6980 Else_Statements => Else_Statements (N)));
6981
6982 -- Generate:
6983 -- <dispatching-call>;
6984 -- <triggering-statements>
6985
6986 Lim_Typ_Stmts := New_Copy_List_Tree (Statements (Alt));
6987 Prepend_To (Lim_Typ_Stmts, New_Copy_Tree (Blk));
6988
6989 -- Generate:
6990 -- if K = Ada.Tags.TK_Limited_Tagged then
6991 -- Lim_Typ_Stmts
6992 -- else
6993 -- Conc_Typ_Stmts
6994 -- end if;
6995
6996 Append_To (Stmts,
6997 Make_If_Statement (Loc,
6998 Condition =>
6999 Make_Op_Eq (Loc,
7000 Left_Opnd =>
7001 New_Reference_To (K, Loc),
7002 Right_Opnd =>
7003 New_Reference_To (RTE (RE_TK_Limited_Tagged), Loc)),
7004
7005 Then_Statements =>
7006 Lim_Typ_Stmts,
7007
7008 Else_Statements =>
7009 Conc_Typ_Stmts));
7010
7011 Rewrite (N,
7012 Make_Block_Statement (Loc,
7013 Declarations =>
7014 Decls,
7015 Handled_Statement_Sequence =>
7016 Make_Handled_Sequence_Of_Statements (Loc, Stmts)));
7017
7018 -- As described above, The entry alternative is transformed into a
7019 -- block that contains the gnulli call, and possibly assignment
7020 -- statements for in-out parameters. The gnulli call may itself be
7021 -- rewritten into a transient block if some unconstrained parameters
7022 -- require it. We need to retrieve the call to complete its parameter
7023 -- list.
7024
7025 else
7026 Transient_Blk :=
7027 First_Real_Statement (Handled_Statement_Sequence (Blk));
7028
7029 if Present (Transient_Blk)
7030 and then Nkind (Transient_Blk) = N_Block_Statement
7031 then
7032 Blk := Transient_Blk;
7033 end if;
7034
7035 Stmts := Statements (Handled_Statement_Sequence (Blk));
7036 Stmt := First (Stmts);
7037 while Nkind (Stmt) /= N_Procedure_Call_Statement loop
7038 Next (Stmt);
7039 end loop;
7040
7041 Call := Stmt;
7042 Params := Parameter_Associations (Call);
7043
7044 if Is_RTE (Entity (Name (Call)), RE_Protected_Entry_Call) then
7045
7046 -- Substitute Conditional_Entry_Call for Simple_Call parameter
7047
7048 Param := First (Params);
7049 while Present (Param)
7050 and then not Is_RTE (Etype (Param), RE_Call_Modes)
7051 loop
7052 Next (Param);
7053 end loop;
7054
7055 pragma Assert (Present (Param));
7056 Rewrite (Param, New_Reference_To (RTE (RE_Conditional_Call), Loc));
7057
7058 Analyze (Param);
7059
7060 -- Find the Communication_Block parameter for the call to the
7061 -- Cancelled function.
7062
7063 Decl := First (Declarations (Blk));
7064 while Present (Decl)
7065 and then not Is_RTE (Etype (Object_Definition (Decl)),
7066 RE_Communication_Block)
7067 loop
7068 Next (Decl);
7069 end loop;
7070
7071 -- Add an if statement to execute the else part if the call
7072 -- does not succeed (as indicated by the Cancelled predicate).
7073
7074 Append_To (Stmts,
7075 Make_Implicit_If_Statement (N,
7076 Condition => Make_Function_Call (Loc,
7077 Name => New_Reference_To (RTE (RE_Cancelled), Loc),
7078 Parameter_Associations => New_List (
7079 New_Reference_To (Defining_Identifier (Decl), Loc))),
7080 Then_Statements => Else_Statements (N),
7081 Else_Statements => Statements (Alt)));
7082
7083 else
7084 B := Make_Defining_Identifier (Loc, Name_uB);
7085
7086 -- Insert declaration of B in declarations of existing block
7087
7088 if No (Declarations (Blk)) then
7089 Set_Declarations (Blk, New_List);
7090 end if;
7091
7092 Prepend_To (Declarations (Blk),
7093 Make_Object_Declaration (Loc,
7094 Defining_Identifier => B,
7095 Object_Definition =>
7096 New_Reference_To (Standard_Boolean, Loc)));
7097
7098 -- Create new call statement
7099
7100 Append_To (Params,
7101 New_Reference_To (RTE (RE_Conditional_Call), Loc));
7102 Append_To (Params, New_Reference_To (B, Loc));
7103
7104 Rewrite (Call,
7105 Make_Procedure_Call_Statement (Loc,
7106 Name => New_Reference_To (RTE (RE_Task_Entry_Call), Loc),
7107 Parameter_Associations => Params));
7108
7109 -- Construct statement sequence for new block
7110
7111 Append_To (Stmts,
7112 Make_Implicit_If_Statement (N,
7113 Condition => New_Reference_To (B, Loc),
7114 Then_Statements => Statements (Alt),
7115 Else_Statements => Else_Statements (N)));
7116 end if;
7117
7118 -- The result is the new block
7119
7120 Rewrite (N,
7121 Make_Block_Statement (Loc,
7122 Declarations => Declarations (Blk),
7123 Handled_Statement_Sequence =>
7124 Make_Handled_Sequence_Of_Statements (Loc, Stmts)));
7125 end if;
7126
7127 Analyze (N);
7128 end Expand_N_Conditional_Entry_Call;
7129
7130 ---------------------------------------
7131 -- Expand_N_Delay_Relative_Statement --
7132 ---------------------------------------
7133
7134 -- Delay statement is implemented as a procedure call to Delay_For
7135 -- defined in Ada.Calendar.Delays in order to reduce the overhead of
7136 -- simple delays imposed by the use of Protected Objects.
7137
7138 procedure Expand_N_Delay_Relative_Statement (N : Node_Id) is
7139 Loc : constant Source_Ptr := Sloc (N);
7140 begin
7141 Rewrite (N,
7142 Make_Procedure_Call_Statement (Loc,
7143 Name => New_Reference_To (RTE (RO_CA_Delay_For), Loc),
7144 Parameter_Associations => New_List (Expression (N))));
7145 Analyze (N);
7146 end Expand_N_Delay_Relative_Statement;
7147
7148 ------------------------------------
7149 -- Expand_N_Delay_Until_Statement --
7150 ------------------------------------
7151
7152 -- Delay Until statement is implemented as a procedure call to
7153 -- Delay_Until defined in Ada.Calendar.Delays and Ada.Real_Time.Delays.
7154
7155 procedure Expand_N_Delay_Until_Statement (N : Node_Id) is
7156 Loc : constant Source_Ptr := Sloc (N);
7157 Typ : Entity_Id;
7158
7159 begin
7160 if Is_RTE (Base_Type (Etype (Expression (N))), RO_CA_Time) then
7161 Typ := RTE (RO_CA_Delay_Until);
7162 else
7163 Typ := RTE (RO_RT_Delay_Until);
7164 end if;
7165
7166 Rewrite (N,
7167 Make_Procedure_Call_Statement (Loc,
7168 Name => New_Reference_To (Typ, Loc),
7169 Parameter_Associations => New_List (Expression (N))));
7170
7171 Analyze (N);
7172 end Expand_N_Delay_Until_Statement;
7173
7174 -------------------------
7175 -- Expand_N_Entry_Body --
7176 -------------------------
7177
7178 procedure Expand_N_Entry_Body (N : Node_Id) is
7179 begin
7180 -- Associate discriminals with the next protected operation body to be
7181 -- expanded.
7182
7183 if Present (Next_Protected_Operation (N)) then
7184 Set_Discriminals (Parent (Current_Scope));
7185 end if;
7186 end Expand_N_Entry_Body;
7187
7188 -----------------------------------
7189 -- Expand_N_Entry_Call_Statement --
7190 -----------------------------------
7191
7192 -- An entry call is expanded into GNARLI calls to implement a simple entry
7193 -- call (see Build_Simple_Entry_Call).
7194
7195 procedure Expand_N_Entry_Call_Statement (N : Node_Id) is
7196 Concval : Node_Id;
7197 Ename : Node_Id;
7198 Index : Node_Id;
7199
7200 begin
7201 if No_Run_Time_Mode then
7202 Error_Msg_CRT ("entry call", N);
7203 return;
7204 end if;
7205
7206 -- If this entry call is part of an asynchronous select, don't expand it
7207 -- here; it will be expanded with the select statement. Don't expand
7208 -- timed entry calls either, as they are translated into asynchronous
7209 -- entry calls.
7210
7211 -- ??? This whole approach is questionable; it may be better to go back
7212 -- to allowing the expansion to take place and then attempting to fix it
7213 -- up in Expand_N_Asynchronous_Select. The tricky part is figuring out
7214 -- whether the expanded call is on a task or protected entry.
7215
7216 if (Nkind (Parent (N)) /= N_Triggering_Alternative
7217 or else N /= Triggering_Statement (Parent (N)))
7218 and then (Nkind (Parent (N)) /= N_Entry_Call_Alternative
7219 or else N /= Entry_Call_Statement (Parent (N))
7220 or else Nkind (Parent (Parent (N))) /= N_Timed_Entry_Call)
7221 then
7222 Extract_Entry (N, Concval, Ename, Index);
7223 Build_Simple_Entry_Call (N, Concval, Ename, Index);
7224 end if;
7225 end Expand_N_Entry_Call_Statement;
7226
7227 --------------------------------
7228 -- Expand_N_Entry_Declaration --
7229 --------------------------------
7230
7231 -- If there are parameters, then first, each of the formals is marked by
7232 -- setting Is_Entry_Formal. Next a record type is built which is used to
7233 -- hold the parameter values. The name of this record type is entryP where
7234 -- entry is the name of the entry, with an additional corresponding access
7235 -- type called entryPA. The record type has matching components for each
7236 -- formal (the component names are the same as the formal names). For
7237 -- elementary types, the component type matches the formal type. For
7238 -- composite types, an access type is declared (with the name formalA)
7239 -- which designates the formal type, and the type of the component is this
7240 -- access type. Finally the Entry_Component of each formal is set to
7241 -- reference the corresponding record component.
7242
7243 procedure Expand_N_Entry_Declaration (N : Node_Id) is
7244 Loc : constant Source_Ptr := Sloc (N);
7245 Entry_Ent : constant Entity_Id := Defining_Identifier (N);
7246 Components : List_Id;
7247 Formal : Node_Id;
7248 Ftype : Entity_Id;
7249 Last_Decl : Node_Id;
7250 Component : Entity_Id;
7251 Ctype : Entity_Id;
7252 Decl : Node_Id;
7253 Rec_Ent : Entity_Id;
7254 Acc_Ent : Entity_Id;
7255
7256 begin
7257 Formal := First_Formal (Entry_Ent);
7258 Last_Decl := N;
7259
7260 -- Most processing is done only if parameters are present
7261
7262 if Present (Formal) then
7263 Components := New_List;
7264
7265 -- Loop through formals
7266
7267 while Present (Formal) loop
7268 Set_Is_Entry_Formal (Formal);
7269 Component :=
7270 Make_Defining_Identifier (Sloc (Formal), Chars (Formal));
7271 Set_Entry_Component (Formal, Component);
7272 Set_Entry_Formal (Component, Formal);
7273 Ftype := Etype (Formal);
7274
7275 -- Declare new access type and then append
7276
7277 Ctype := Make_Temporary (Loc, 'A');
7278
7279 Decl :=
7280 Make_Full_Type_Declaration (Loc,
7281 Defining_Identifier => Ctype,
7282 Type_Definition =>
7283 Make_Access_To_Object_Definition (Loc,
7284 All_Present => True,
7285 Constant_Present => Ekind (Formal) = E_In_Parameter,
7286 Subtype_Indication => New_Reference_To (Ftype, Loc)));
7287
7288 Insert_After (Last_Decl, Decl);
7289 Last_Decl := Decl;
7290
7291 Append_To (Components,
7292 Make_Component_Declaration (Loc,
7293 Defining_Identifier => Component,
7294 Component_Definition =>
7295 Make_Component_Definition (Loc,
7296 Aliased_Present => False,
7297 Subtype_Indication => New_Reference_To (Ctype, Loc))));
7298
7299 Next_Formal_With_Extras (Formal);
7300 end loop;
7301
7302 -- Create the Entry_Parameter_Record declaration
7303
7304 Rec_Ent := Make_Temporary (Loc, 'P');
7305
7306 Decl :=
7307 Make_Full_Type_Declaration (Loc,
7308 Defining_Identifier => Rec_Ent,
7309 Type_Definition =>
7310 Make_Record_Definition (Loc,
7311 Component_List =>
7312 Make_Component_List (Loc,
7313 Component_Items => Components)));
7314
7315 Insert_After (Last_Decl, Decl);
7316 Last_Decl := Decl;
7317
7318 -- Construct and link in the corresponding access type
7319
7320 Acc_Ent := Make_Temporary (Loc, 'A');
7321
7322 Set_Entry_Parameters_Type (Entry_Ent, Acc_Ent);
7323
7324 Decl :=
7325 Make_Full_Type_Declaration (Loc,
7326 Defining_Identifier => Acc_Ent,
7327 Type_Definition =>
7328 Make_Access_To_Object_Definition (Loc,
7329 All_Present => True,
7330 Subtype_Indication => New_Reference_To (Rec_Ent, Loc)));
7331
7332 Insert_After (Last_Decl, Decl);
7333 Last_Decl := Decl;
7334 end if;
7335 end Expand_N_Entry_Declaration;
7336
7337 -----------------------------
7338 -- Expand_N_Protected_Body --
7339 -----------------------------
7340
7341 -- Protected bodies are expanded to the completion of the subprograms
7342 -- created for the corresponding protected type. These are a protected and
7343 -- unprotected version of each protected subprogram in the object, a
7344 -- function to calculate each entry barrier, and a procedure to execute the
7345 -- sequence of statements of each protected entry body. For example, for
7346 -- protected type ptype:
7347
7348 -- function entB
7349 -- (O : System.Address;
7350 -- E : Protected_Entry_Index)
7351 -- return Boolean
7352 -- is
7353 -- <discriminant renamings>
7354 -- <private object renamings>
7355 -- begin
7356 -- return <barrier expression>;
7357 -- end entB;
7358
7359 -- procedure pprocN (_object : in out poV;...) is
7360 -- <discriminant renamings>
7361 -- <private object renamings>
7362 -- begin
7363 -- <sequence of statements>
7364 -- end pprocN;
7365
7366 -- procedure pprocP (_object : in out poV;...) is
7367 -- procedure _clean is
7368 -- Pn : Boolean;
7369 -- begin
7370 -- ptypeS (_object, Pn);
7371 -- Unlock (_object._object'Access);
7372 -- Abort_Undefer.all;
7373 -- end _clean;
7374
7375 -- begin
7376 -- Abort_Defer.all;
7377 -- Lock (_object._object'Access);
7378 -- pprocN (_object;...);
7379 -- at end
7380 -- _clean;
7381 -- end pproc;
7382
7383 -- function pfuncN (_object : poV;...) return Return_Type is
7384 -- <discriminant renamings>
7385 -- <private object renamings>
7386 -- begin
7387 -- <sequence of statements>
7388 -- end pfuncN;
7389
7390 -- function pfuncP (_object : poV) return Return_Type is
7391 -- procedure _clean is
7392 -- begin
7393 -- Unlock (_object._object'Access);
7394 -- Abort_Undefer.all;
7395 -- end _clean;
7396
7397 -- begin
7398 -- Abort_Defer.all;
7399 -- Lock (_object._object'Access);
7400 -- return pfuncN (_object);
7401
7402 -- at end
7403 -- _clean;
7404 -- end pfunc;
7405
7406 -- procedure entE
7407 -- (O : System.Address;
7408 -- P : System.Address;
7409 -- E : Protected_Entry_Index)
7410 -- is
7411 -- <discriminant renamings>
7412 -- <private object renamings>
7413 -- type poVP is access poV;
7414 -- _Object : ptVP := ptVP!(O);
7415
7416 -- begin
7417 -- begin
7418 -- <statement sequence>
7419 -- Complete_Entry_Body (_Object._Object);
7420 -- exception
7421 -- when all others =>
7422 -- Exceptional_Complete_Entry_Body (
7423 -- _Object._Object, Get_GNAT_Exception);
7424 -- end;
7425 -- end entE;
7426
7427 -- The type poV is the record created for the protected type to hold
7428 -- the state of the protected object.
7429
7430 procedure Expand_N_Protected_Body (N : Node_Id) is
7431 Loc : constant Source_Ptr := Sloc (N);
7432 Pid : constant Entity_Id := Corresponding_Spec (N);
7433
7434 Current_Node : Node_Id;
7435 Disp_Op_Body : Node_Id;
7436 New_Op_Body : Node_Id;
7437 Num_Entries : Natural := 0;
7438 Op_Body : Node_Id;
7439 Op_Id : Entity_Id;
7440
7441 function Build_Dispatching_Subprogram_Body
7442 (N : Node_Id;
7443 Pid : Node_Id;
7444 Prot_Bod : Node_Id) return Node_Id;
7445 -- Build a dispatching version of the protected subprogram body. The
7446 -- newly generated subprogram contains a call to the original protected
7447 -- body. The following code is generated:
7448 --
7449 -- function <protected-function-name> (Param1 .. ParamN) return
7450 -- <return-type> is
7451 -- begin
7452 -- return <protected-function-name>P (Param1 .. ParamN);
7453 -- end <protected-function-name>;
7454 --
7455 -- or
7456 --
7457 -- procedure <protected-procedure-name> (Param1 .. ParamN) is
7458 -- begin
7459 -- <protected-procedure-name>P (Param1 .. ParamN);
7460 -- end <protected-procedure-name>
7461
7462 ---------------------------------------
7463 -- Build_Dispatching_Subprogram_Body --
7464 ---------------------------------------
7465
7466 function Build_Dispatching_Subprogram_Body
7467 (N : Node_Id;
7468 Pid : Node_Id;
7469 Prot_Bod : Node_Id) return Node_Id
7470 is
7471 Loc : constant Source_Ptr := Sloc (N);
7472 Actuals : List_Id;
7473 Formal : Node_Id;
7474 Spec : Node_Id;
7475 Stmts : List_Id;
7476
7477 begin
7478 -- Generate a specification without a letter suffix in order to
7479 -- override an interface function or procedure.
7480
7481 Spec := Build_Protected_Sub_Specification (N, Pid, Dispatching_Mode);
7482
7483 -- The formal parameters become the actuals of the protected function
7484 -- or procedure call.
7485
7486 Actuals := New_List;
7487 Formal := First (Parameter_Specifications (Spec));
7488 while Present (Formal) loop
7489 Append_To (Actuals,
7490 Make_Identifier (Loc, Chars (Defining_Identifier (Formal))));
7491
7492 Next (Formal);
7493 end loop;
7494
7495 if Nkind (Spec) = N_Procedure_Specification then
7496 Stmts :=
7497 New_List (
7498 Make_Procedure_Call_Statement (Loc,
7499 Name =>
7500 New_Reference_To (Corresponding_Spec (Prot_Bod), Loc),
7501 Parameter_Associations => Actuals));
7502 else
7503 pragma Assert (Nkind (Spec) = N_Function_Specification);
7504
7505 Stmts :=
7506 New_List (
7507 Make_Simple_Return_Statement (Loc,
7508 Expression =>
7509 Make_Function_Call (Loc,
7510 Name =>
7511 New_Reference_To (Corresponding_Spec (Prot_Bod), Loc),
7512 Parameter_Associations => Actuals)));
7513 end if;
7514
7515 return
7516 Make_Subprogram_Body (Loc,
7517 Declarations => Empty_List,
7518 Specification => Spec,
7519 Handled_Statement_Sequence =>
7520 Make_Handled_Sequence_Of_Statements (Loc, Stmts));
7521 end Build_Dispatching_Subprogram_Body;
7522
7523 -- Start of processing for Expand_N_Protected_Body
7524
7525 begin
7526 if No_Run_Time_Mode then
7527 Error_Msg_CRT ("protected body", N);
7528 return;
7529 end if;
7530
7531 -- This is the proper body corresponding to a stub. The declarations
7532 -- must be inserted at the point of the stub, which in turn is in the
7533 -- declarative part of the parent unit.
7534
7535 if Nkind (Parent (N)) = N_Subunit then
7536 Current_Node := Corresponding_Stub (Parent (N));
7537 else
7538 Current_Node := N;
7539 end if;
7540
7541 Op_Body := First (Declarations (N));
7542
7543 -- The protected body is replaced with the bodies of its
7544 -- protected operations, and the declarations for internal objects
7545 -- that may have been created for entry family bounds.
7546
7547 Rewrite (N, Make_Null_Statement (Sloc (N)));
7548 Analyze (N);
7549
7550 while Present (Op_Body) loop
7551 case Nkind (Op_Body) is
7552 when N_Subprogram_Declaration =>
7553 null;
7554
7555 when N_Subprogram_Body =>
7556
7557 -- Do not create bodies for eliminated operations
7558
7559 if not Is_Eliminated (Defining_Entity (Op_Body))
7560 and then not Is_Eliminated (Corresponding_Spec (Op_Body))
7561 then
7562 New_Op_Body :=
7563 Build_Unprotected_Subprogram_Body (Op_Body, Pid);
7564
7565 Insert_After (Current_Node, New_Op_Body);
7566 Current_Node := New_Op_Body;
7567 Analyze (New_Op_Body);
7568
7569 -- Build the corresponding protected operation. It may
7570 -- appear that this is needed only if this is a visible
7571 -- operation of the type, or if it is an interrupt handler,
7572 -- and this was the strategy used previously in GNAT.
7573 -- However, the operation may be exported through a 'Access
7574 -- to an external caller. This is the common idiom in code
7575 -- that uses the Ada 2005 Timing_Events package. As a result
7576 -- we need to produce the protected body for both visible
7577 -- and private operations, as well as operations that only
7578 -- have a body in the source, and for which we create a
7579 -- declaration in the protected body itself.
7580
7581 if Present (Corresponding_Spec (Op_Body)) then
7582 New_Op_Body :=
7583 Build_Protected_Subprogram_Body (
7584 Op_Body, Pid, Specification (New_Op_Body));
7585
7586 Insert_After (Current_Node, New_Op_Body);
7587 Analyze (New_Op_Body);
7588
7589 Current_Node := New_Op_Body;
7590
7591 -- Generate an overriding primitive operation body for
7592 -- this subprogram if the protected type implements an
7593 -- interface.
7594
7595 if Ada_Version >= Ada_2005
7596 and then
7597 Present (Interfaces (Corresponding_Record_Type (Pid)))
7598 then
7599 Disp_Op_Body :=
7600 Build_Dispatching_Subprogram_Body
7601 (Op_Body, Pid, New_Op_Body);
7602
7603 Insert_After (Current_Node, Disp_Op_Body);
7604 Analyze (Disp_Op_Body);
7605
7606 Current_Node := Disp_Op_Body;
7607 end if;
7608 end if;
7609 end if;
7610
7611 when N_Entry_Body =>
7612 Op_Id := Defining_Identifier (Op_Body);
7613 Num_Entries := Num_Entries + 1;
7614
7615 New_Op_Body := Build_Protected_Entry (Op_Body, Op_Id, Pid);
7616
7617 Insert_After (Current_Node, New_Op_Body);
7618 Current_Node := New_Op_Body;
7619 Analyze (New_Op_Body);
7620
7621 when N_Implicit_Label_Declaration =>
7622 null;
7623
7624 when N_Itype_Reference =>
7625 Insert_After (Current_Node, New_Copy (Op_Body));
7626
7627 when N_Freeze_Entity =>
7628 New_Op_Body := New_Copy (Op_Body);
7629
7630 if Present (Entity (Op_Body))
7631 and then Freeze_Node (Entity (Op_Body)) = Op_Body
7632 then
7633 Set_Freeze_Node (Entity (Op_Body), New_Op_Body);
7634 end if;
7635
7636 Insert_After (Current_Node, New_Op_Body);
7637 Current_Node := New_Op_Body;
7638 Analyze (New_Op_Body);
7639
7640 when N_Pragma =>
7641 New_Op_Body := New_Copy (Op_Body);
7642 Insert_After (Current_Node, New_Op_Body);
7643 Current_Node := New_Op_Body;
7644 Analyze (New_Op_Body);
7645
7646 when N_Object_Declaration =>
7647 pragma Assert (not Comes_From_Source (Op_Body));
7648 New_Op_Body := New_Copy (Op_Body);
7649 Insert_After (Current_Node, New_Op_Body);
7650 Current_Node := New_Op_Body;
7651 Analyze (New_Op_Body);
7652
7653 when others =>
7654 raise Program_Error;
7655
7656 end case;
7657
7658 Next (Op_Body);
7659 end loop;
7660
7661 -- Finally, create the body of the function that maps an entry index
7662 -- into the corresponding body index, except when there is no entry, or
7663 -- in a Ravenscar-like profile.
7664
7665 if Corresponding_Runtime_Package (Pid) =
7666 System_Tasking_Protected_Objects_Entries
7667 then
7668 New_Op_Body := Build_Find_Body_Index (Pid);
7669 Insert_After (Current_Node, New_Op_Body);
7670 Current_Node := New_Op_Body;
7671 Analyze (New_Op_Body);
7672 end if;
7673
7674 -- Ada 2005 (AI-345): Construct the primitive wrapper bodies after the
7675 -- protected body. At this point all wrapper specs have been created,
7676 -- frozen and included in the dispatch table for the protected type.
7677
7678 if Ada_Version >= Ada_2005 then
7679 Build_Wrapper_Bodies (Loc, Pid, Current_Node);
7680 end if;
7681 end Expand_N_Protected_Body;
7682
7683 -----------------------------------------
7684 -- Expand_N_Protected_Type_Declaration --
7685 -----------------------------------------
7686
7687 -- First we create a corresponding record type declaration used to
7688 -- represent values of this protected type.
7689 -- The general form of this type declaration is
7690
7691 -- type poV (discriminants) is record
7692 -- _Object : aliased <kind>Protection
7693 -- [(<entry count> [, <handler count>])];
7694 -- [entry_family : array (bounds) of Void;]
7695 -- <private data fields>
7696 -- end record;
7697
7698 -- The discriminants are present only if the corresponding protected type
7699 -- has discriminants, and they exactly mirror the protected type
7700 -- discriminants. The private data fields similarly mirror the private
7701 -- declarations of the protected type.
7702
7703 -- The Object field is always present. It contains RTS specific data used
7704 -- to control the protected object. It is declared as Aliased so that it
7705 -- can be passed as a pointer to the RTS. This allows the protected record
7706 -- to be referenced within RTS data structures. An appropriate Protection
7707 -- type and discriminant are generated.
7708
7709 -- The Service field is present for protected objects with entries. It
7710 -- contains sufficient information to allow the entry service procedure for
7711 -- this object to be called when the object is not known till runtime.
7712
7713 -- One entry_family component is present for each entry family in the
7714 -- task definition (see Expand_N_Task_Type_Declaration).
7715
7716 -- When a protected object is declared, an instance of the protected type
7717 -- value record is created. The elaboration of this declaration creates the
7718 -- correct bounds for the entry families, and also evaluates the priority
7719 -- expression if needed. The initialization routine for the protected type
7720 -- itself then calls Initialize_Protection with appropriate parameters to
7721 -- initialize the value of the Task_Id field. Install_Handlers may be also
7722 -- called if a pragma Attach_Handler applies.
7723
7724 -- Note: this record is passed to the subprograms created by the expansion
7725 -- of protected subprograms and entries. It is an in parameter to protected
7726 -- functions and an in out parameter to procedures and entry bodies. The
7727 -- Entity_Id for this created record type is placed in the
7728 -- Corresponding_Record_Type field of the associated protected type entity.
7729
7730 -- Next we create a procedure specifications for protected subprograms and
7731 -- entry bodies. For each protected subprograms two subprograms are
7732 -- created, an unprotected and a protected version. The unprotected version
7733 -- is called from within other operations of the same protected object.
7734
7735 -- We also build the call to register the procedure if a pragma
7736 -- Interrupt_Handler applies.
7737
7738 -- A single subprogram is created to service all entry bodies; it has an
7739 -- additional boolean out parameter indicating that the previous entry call
7740 -- made by the current task was serviced immediately, i.e. not by proxy.
7741 -- The O parameter contains a pointer to a record object of the type
7742 -- described above. An untyped interface is used here to allow this
7743 -- procedure to be called in places where the type of the object to be
7744 -- serviced is not known. This must be done, for example, when a call that
7745 -- may have been requeued is cancelled; the corresponding object must be
7746 -- serviced, but which object that is not known till runtime.
7747
7748 -- procedure ptypeS
7749 -- (O : System.Address; P : out Boolean);
7750 -- procedure pprocN (_object : in out poV);
7751 -- procedure pproc (_object : in out poV);
7752 -- function pfuncN (_object : poV);
7753 -- function pfunc (_object : poV);
7754 -- ...
7755
7756 -- Note that this must come after the record type declaration, since
7757 -- the specs refer to this type.
7758
7759 procedure Expand_N_Protected_Type_Declaration (N : Node_Id) is
7760 Loc : constant Source_Ptr := Sloc (N);
7761 Prot_Typ : constant Entity_Id := Defining_Identifier (N);
7762
7763 Pdef : constant Node_Id := Protected_Definition (N);
7764 -- This contains two lists; one for visible and one for private decls
7765
7766 Rec_Decl : Node_Id;
7767 Cdecls : List_Id;
7768 Discr_Map : constant Elist_Id := New_Elmt_List;
7769 Priv : Node_Id;
7770 New_Priv : Node_Id;
7771 Comp : Node_Id;
7772 Comp_Id : Entity_Id;
7773 Sub : Node_Id;
7774 Current_Node : Node_Id := N;
7775 Bdef : Entity_Id := Empty; -- avoid uninit warning
7776 Edef : Entity_Id := Empty; -- avoid uninit warning
7777 Entries_Aggr : Node_Id;
7778 Body_Id : Entity_Id;
7779 Body_Arr : Node_Id;
7780 E_Count : Int;
7781 Object_Comp : Node_Id;
7782
7783 procedure Check_Inlining (Subp : Entity_Id);
7784 -- If the original operation has a pragma Inline, propagate the flag
7785 -- to the internal body, for possible inlining later on. The source
7786 -- operation is invisible to the back-end and is never actually called.
7787
7788 function Static_Component_Size (Comp : Entity_Id) return Boolean;
7789 -- When compiling under the Ravenscar profile, private components must
7790 -- have a static size, or else a protected object will require heap
7791 -- allocation, violating the corresponding restriction. It is preferable
7792 -- to make this check here, because it provides a better error message
7793 -- than the back-end, which refers to the object as a whole.
7794
7795 procedure Register_Handler;
7796 -- For a protected operation that is an interrupt handler, add the
7797 -- freeze action that will register it as such.
7798
7799 --------------------
7800 -- Check_Inlining --
7801 --------------------
7802
7803 procedure Check_Inlining (Subp : Entity_Id) is
7804 begin
7805 if Is_Inlined (Subp) then
7806 Set_Is_Inlined (Protected_Body_Subprogram (Subp));
7807 Set_Is_Inlined (Subp, False);
7808 end if;
7809 end Check_Inlining;
7810
7811 ---------------------------------
7812 -- Check_Static_Component_Size --
7813 ---------------------------------
7814
7815 function Static_Component_Size (Comp : Entity_Id) return Boolean is
7816 Typ : constant Entity_Id := Etype (Comp);
7817 C : Entity_Id;
7818
7819 begin
7820 if Is_Scalar_Type (Typ) then
7821 return True;
7822
7823 elsif Is_Array_Type (Typ) then
7824 return Compile_Time_Known_Bounds (Typ);
7825
7826 elsif Is_Record_Type (Typ) then
7827 C := First_Component (Typ);
7828 while Present (C) loop
7829 if not Static_Component_Size (C) then
7830 return False;
7831 end if;
7832
7833 Next_Component (C);
7834 end loop;
7835
7836 return True;
7837
7838 -- Any other types will be checked by the back-end
7839
7840 else
7841 return True;
7842 end if;
7843 end Static_Component_Size;
7844
7845 ----------------------
7846 -- Register_Handler --
7847 ----------------------
7848
7849 procedure Register_Handler is
7850
7851 -- All semantic checks already done in Sem_Prag
7852
7853 Prot_Proc : constant Entity_Id :=
7854 Defining_Unit_Name
7855 (Specification (Current_Node));
7856
7857 Proc_Address : constant Node_Id :=
7858 Make_Attribute_Reference (Loc,
7859 Prefix => New_Reference_To (Prot_Proc, Loc),
7860 Attribute_Name => Name_Address);
7861
7862 RTS_Call : constant Entity_Id :=
7863 Make_Procedure_Call_Statement (Loc,
7864 Name =>
7865 New_Reference_To (
7866 RTE (RE_Register_Interrupt_Handler), Loc),
7867 Parameter_Associations =>
7868 New_List (Proc_Address));
7869 begin
7870 Append_Freeze_Action (Prot_Proc, RTS_Call);
7871 end Register_Handler;
7872
7873 -- Start of processing for Expand_N_Protected_Type_Declaration
7874
7875 begin
7876 if Present (Corresponding_Record_Type (Prot_Typ)) then
7877 return;
7878 else
7879 Rec_Decl := Build_Corresponding_Record (N, Prot_Typ, Loc);
7880 end if;
7881
7882 Cdecls := Component_Items (Component_List (Type_Definition (Rec_Decl)));
7883
7884 Qualify_Entity_Names (N);
7885
7886 -- If the type has discriminants, their occurrences in the declaration
7887 -- have been replaced by the corresponding discriminals. For components
7888 -- that are constrained by discriminants, their homologues in the
7889 -- corresponding record type must refer to the discriminants of that
7890 -- record, so we must apply a new renaming to subtypes_indications:
7891
7892 -- protected discriminant => discriminal => record discriminant
7893
7894 -- This replacement is not applied to default expressions, for which
7895 -- the discriminal is correct.
7896
7897 if Has_Discriminants (Prot_Typ) then
7898 declare
7899 Disc : Entity_Id;
7900 Decl : Node_Id;
7901
7902 begin
7903 Disc := First_Discriminant (Prot_Typ);
7904 Decl := First (Discriminant_Specifications (Rec_Decl));
7905 while Present (Disc) loop
7906 Append_Elmt (Discriminal (Disc), Discr_Map);
7907 Append_Elmt (Defining_Identifier (Decl), Discr_Map);
7908 Next_Discriminant (Disc);
7909 Next (Decl);
7910 end loop;
7911 end;
7912 end if;
7913
7914 -- Fill in the component declarations
7915
7916 -- Add components for entry families. For each entry family, create an
7917 -- anonymous type declaration with the same size, and analyze the type.
7918
7919 Collect_Entry_Families (Loc, Cdecls, Current_Node, Prot_Typ);
7920
7921 -- Prepend the _Object field with the right type to the component list.
7922 -- We need to compute the number of entries, and in some cases the
7923 -- number of Attach_Handler pragmas.
7924
7925 declare
7926 Ritem : Node_Id;
7927 Num_Attach_Handler : Int := 0;
7928 Protection_Subtype : Node_Id;
7929 Entry_Count_Expr : constant Node_Id :=
7930 Build_Entry_Count_Expression
7931 (Prot_Typ, Cdecls, Loc);
7932
7933 begin
7934 -- Could this be simplified using Corresponding_Runtime_Package???
7935
7936 if Has_Attach_Handler (Prot_Typ) then
7937 Ritem := First_Rep_Item (Prot_Typ);
7938 while Present (Ritem) loop
7939 if Nkind (Ritem) = N_Pragma
7940 and then Pragma_Name (Ritem) = Name_Attach_Handler
7941 then
7942 Num_Attach_Handler := Num_Attach_Handler + 1;
7943 end if;
7944
7945 Next_Rep_Item (Ritem);
7946 end loop;
7947
7948 if Restricted_Profile then
7949 if Has_Entries (Prot_Typ) then
7950 Protection_Subtype :=
7951 New_Reference_To (RTE (RE_Protection_Entry), Loc);
7952 else
7953 Protection_Subtype :=
7954 New_Reference_To (RTE (RE_Protection), Loc);
7955 end if;
7956 else
7957 Protection_Subtype :=
7958 Make_Subtype_Indication
7959 (Sloc => Loc,
7960 Subtype_Mark =>
7961 New_Reference_To
7962 (RTE (RE_Static_Interrupt_Protection), Loc),
7963 Constraint =>
7964 Make_Index_Or_Discriminant_Constraint (
7965 Sloc => Loc,
7966 Constraints => New_List (
7967 Entry_Count_Expr,
7968 Make_Integer_Literal (Loc, Num_Attach_Handler))));
7969 end if;
7970
7971 elsif Has_Interrupt_Handler (Prot_Typ) then
7972 Protection_Subtype :=
7973 Make_Subtype_Indication (
7974 Sloc => Loc,
7975 Subtype_Mark => New_Reference_To
7976 (RTE (RE_Dynamic_Interrupt_Protection), Loc),
7977 Constraint =>
7978 Make_Index_Or_Discriminant_Constraint (
7979 Sloc => Loc,
7980 Constraints => New_List (Entry_Count_Expr)));
7981
7982 -- Type has explicit entries or generated primitive entry wrappers
7983
7984 elsif Has_Entries (Prot_Typ)
7985 or else (Ada_Version >= Ada_2005
7986 and then Present (Interface_List (N)))
7987 then
7988 case Corresponding_Runtime_Package (Prot_Typ) is
7989 when System_Tasking_Protected_Objects_Entries =>
7990 Protection_Subtype :=
7991 Make_Subtype_Indication (Loc,
7992 Subtype_Mark =>
7993 New_Reference_To (RTE (RE_Protection_Entries), Loc),
7994 Constraint =>
7995 Make_Index_Or_Discriminant_Constraint (
7996 Sloc => Loc,
7997 Constraints => New_List (Entry_Count_Expr)));
7998
7999 when System_Tasking_Protected_Objects_Single_Entry =>
8000 Protection_Subtype :=
8001 New_Reference_To (RTE (RE_Protection_Entry), Loc);
8002
8003 when others =>
8004 raise Program_Error;
8005 end case;
8006
8007 else
8008 Protection_Subtype := New_Reference_To (RTE (RE_Protection), Loc);
8009 end if;
8010
8011 Object_Comp :=
8012 Make_Component_Declaration (Loc,
8013 Defining_Identifier =>
8014 Make_Defining_Identifier (Loc, Name_uObject),
8015 Component_Definition =>
8016 Make_Component_Definition (Loc,
8017 Aliased_Present => True,
8018 Subtype_Indication => Protection_Subtype));
8019 end;
8020
8021 pragma Assert (Present (Pdef));
8022
8023 -- Add private field components
8024
8025 if Present (Private_Declarations (Pdef)) then
8026 Priv := First (Private_Declarations (Pdef));
8027
8028 while Present (Priv) loop
8029
8030 if Nkind (Priv) = N_Component_Declaration then
8031 if not Static_Component_Size (Defining_Identifier (Priv)) then
8032
8033 -- When compiling for a restricted profile, the private
8034 -- components must have a static size. If not, this is an
8035 -- error for a single protected declaration, and rates a
8036 -- warning on a protected type declaration.
8037
8038 if not Comes_From_Source (Prot_Typ) then
8039 Check_Restriction (No_Implicit_Heap_Allocations, Priv);
8040
8041 elsif Restriction_Active (No_Implicit_Heap_Allocations) then
8042 Error_Msg_N ("component has non-static size?", Priv);
8043 Error_Msg_NE
8044 ("\creation of protected object of type& will violate"
8045 & " restriction No_Implicit_Heap_Allocations?",
8046 Priv, Prot_Typ);
8047 end if;
8048 end if;
8049
8050 -- The component definition consists of a subtype indication,
8051 -- or (in Ada 2005) an access definition. Make a copy of the
8052 -- proper definition.
8053
8054 declare
8055 Old_Comp : constant Node_Id := Component_Definition (Priv);
8056 Oent : constant Entity_Id := Defining_Identifier (Priv);
8057 New_Comp : Node_Id;
8058 Nent : constant Entity_Id :=
8059 Make_Defining_Identifier (Sloc (Oent),
8060 Chars => Chars (Oent));
8061
8062 begin
8063 if Present (Subtype_Indication (Old_Comp)) then
8064 New_Comp :=
8065 Make_Component_Definition (Sloc (Oent),
8066 Aliased_Present => False,
8067 Subtype_Indication =>
8068 New_Copy_Tree (Subtype_Indication (Old_Comp),
8069 Discr_Map));
8070 else
8071 New_Comp :=
8072 Make_Component_Definition (Sloc (Oent),
8073 Aliased_Present => False,
8074 Access_Definition =>
8075 New_Copy_Tree (Access_Definition (Old_Comp),
8076 Discr_Map));
8077 end if;
8078
8079 New_Priv :=
8080 Make_Component_Declaration (Loc,
8081 Defining_Identifier => Nent,
8082 Component_Definition => New_Comp,
8083 Expression => Expression (Priv));
8084
8085 Set_Has_Per_Object_Constraint (Nent,
8086 Has_Per_Object_Constraint (Oent));
8087
8088 Append_To (Cdecls, New_Priv);
8089 end;
8090
8091 elsif Nkind (Priv) = N_Subprogram_Declaration then
8092
8093 -- Make the unprotected version of the subprogram available
8094 -- for expansion of intra object calls. There is need for
8095 -- a protected version only if the subprogram is an interrupt
8096 -- handler, otherwise this operation can only be called from
8097 -- within the body.
8098
8099 Sub :=
8100 Make_Subprogram_Declaration (Loc,
8101 Specification =>
8102 Build_Protected_Sub_Specification
8103 (Priv, Prot_Typ, Unprotected_Mode));
8104
8105 Insert_After (Current_Node, Sub);
8106 Analyze (Sub);
8107
8108 Set_Protected_Body_Subprogram
8109 (Defining_Unit_Name (Specification (Priv)),
8110 Defining_Unit_Name (Specification (Sub)));
8111 Check_Inlining (Defining_Unit_Name (Specification (Priv)));
8112 Current_Node := Sub;
8113
8114 Sub :=
8115 Make_Subprogram_Declaration (Loc,
8116 Specification =>
8117 Build_Protected_Sub_Specification
8118 (Priv, Prot_Typ, Protected_Mode));
8119
8120 Insert_After (Current_Node, Sub);
8121 Analyze (Sub);
8122 Current_Node := Sub;
8123
8124 if Is_Interrupt_Handler
8125 (Defining_Unit_Name (Specification (Priv)))
8126 then
8127 if not Restricted_Profile then
8128 Register_Handler;
8129 end if;
8130 end if;
8131 end if;
8132
8133 Next (Priv);
8134 end loop;
8135 end if;
8136
8137 -- Put the _Object component after the private component so that it
8138 -- be finalized early as required by 9.4 (20)
8139
8140 Append_To (Cdecls, Object_Comp);
8141
8142 Insert_After (Current_Node, Rec_Decl);
8143 Current_Node := Rec_Decl;
8144
8145 -- Analyze the record declaration immediately after construction,
8146 -- because the initialization procedure is needed for single object
8147 -- declarations before the next entity is analyzed (the freeze call
8148 -- that generates this initialization procedure is found below).
8149
8150 Analyze (Rec_Decl, Suppress => All_Checks);
8151
8152 -- Ada 2005 (AI-345): Construct the primitive entry wrappers before
8153 -- the corresponding record is frozen. If any wrappers are generated,
8154 -- Current_Node is updated accordingly.
8155
8156 if Ada_Version >= Ada_2005 then
8157 Build_Wrapper_Specs (Loc, Prot_Typ, Current_Node);
8158 end if;
8159
8160 -- Collect pointers to entry bodies and their barriers, to be placed
8161 -- in the Entry_Bodies_Array for the type. For each entry/family we
8162 -- add an expression to the aggregate which is the initial value of
8163 -- this array. The array is declared after all protected subprograms.
8164
8165 if Has_Entries (Prot_Typ) then
8166 Entries_Aggr := Make_Aggregate (Loc, Expressions => New_List);
8167 else
8168 Entries_Aggr := Empty;
8169 end if;
8170
8171 -- Build two new procedure specifications for each protected subprogram;
8172 -- one to call from outside the object and one to call from inside.
8173 -- Build a barrier function and an entry body action procedure
8174 -- specification for each protected entry. Initialize the entry body
8175 -- array. If subprogram is flagged as eliminated, do not generate any
8176 -- internal operations.
8177
8178 E_Count := 0;
8179
8180 Comp := First (Visible_Declarations (Pdef));
8181
8182 while Present (Comp) loop
8183 if Nkind (Comp) = N_Subprogram_Declaration then
8184 Sub :=
8185 Make_Subprogram_Declaration (Loc,
8186 Specification =>
8187 Build_Protected_Sub_Specification
8188 (Comp, Prot_Typ, Unprotected_Mode));
8189
8190 Insert_After (Current_Node, Sub);
8191 Analyze (Sub);
8192
8193 Set_Protected_Body_Subprogram
8194 (Defining_Unit_Name (Specification (Comp)),
8195 Defining_Unit_Name (Specification (Sub)));
8196 Check_Inlining (Defining_Unit_Name (Specification (Comp)));
8197
8198 -- Make the protected version of the subprogram available for
8199 -- expansion of external calls.
8200
8201 Current_Node := Sub;
8202
8203 Sub :=
8204 Make_Subprogram_Declaration (Loc,
8205 Specification =>
8206 Build_Protected_Sub_Specification
8207 (Comp, Prot_Typ, Protected_Mode));
8208
8209 Insert_After (Current_Node, Sub);
8210 Analyze (Sub);
8211
8212 Current_Node := Sub;
8213
8214 -- Generate an overriding primitive operation specification for
8215 -- this subprogram if the protected type implements an interface.
8216
8217 if Ada_Version >= Ada_2005
8218 and then
8219 Present (Interfaces (Corresponding_Record_Type (Prot_Typ)))
8220 then
8221 Sub :=
8222 Make_Subprogram_Declaration (Loc,
8223 Specification =>
8224 Build_Protected_Sub_Specification
8225 (Comp, Prot_Typ, Dispatching_Mode));
8226
8227 Insert_After (Current_Node, Sub);
8228 Analyze (Sub);
8229
8230 Current_Node := Sub;
8231 end if;
8232
8233 -- If a pragma Interrupt_Handler applies, build and add a call to
8234 -- Register_Interrupt_Handler to the freezing actions of the
8235 -- protected version (Current_Node) of the subprogram:
8236
8237 -- system.interrupts.register_interrupt_handler
8238 -- (prot_procP'address);
8239
8240 if not Restricted_Profile
8241 and then Is_Interrupt_Handler
8242 (Defining_Unit_Name (Specification (Comp)))
8243 then
8244 Register_Handler;
8245 end if;
8246
8247 elsif Nkind (Comp) = N_Entry_Declaration then
8248 E_Count := E_Count + 1;
8249 Comp_Id := Defining_Identifier (Comp);
8250
8251 Edef :=
8252 Make_Defining_Identifier (Loc,
8253 Build_Selected_Name (Prot_Typ, Comp_Id, 'E'));
8254 Sub :=
8255 Make_Subprogram_Declaration (Loc,
8256 Specification =>
8257 Build_Protected_Entry_Specification (Loc, Edef, Comp_Id));
8258
8259 Insert_After (Current_Node, Sub);
8260 Analyze (Sub);
8261
8262 -- build wrapper procedure for pre/postconditions.
8263
8264 Build_PPC_Wrapper (Comp_Id, N);
8265
8266 Set_Protected_Body_Subprogram
8267 (Defining_Identifier (Comp),
8268 Defining_Unit_Name (Specification (Sub)));
8269
8270 Current_Node := Sub;
8271
8272 Bdef :=
8273 Make_Defining_Identifier (Loc,
8274 Chars => Build_Selected_Name (Prot_Typ, Comp_Id, 'B'));
8275 Sub :=
8276 Make_Subprogram_Declaration (Loc,
8277 Specification =>
8278 Build_Barrier_Function_Specification (Loc, Bdef));
8279
8280 Insert_After (Current_Node, Sub);
8281 Analyze (Sub);
8282 Set_Protected_Body_Subprogram (Bdef, Bdef);
8283 Set_Barrier_Function (Comp_Id, Bdef);
8284 Set_Scope (Bdef, Scope (Comp_Id));
8285 Current_Node := Sub;
8286
8287 -- Collect pointers to the protected subprogram and the barrier
8288 -- of the current entry, for insertion into Entry_Bodies_Array.
8289
8290 Append (
8291 Make_Aggregate (Loc,
8292 Expressions => New_List (
8293 Make_Attribute_Reference (Loc,
8294 Prefix => New_Reference_To (Bdef, Loc),
8295 Attribute_Name => Name_Unrestricted_Access),
8296 Make_Attribute_Reference (Loc,
8297 Prefix => New_Reference_To (Edef, Loc),
8298 Attribute_Name => Name_Unrestricted_Access))),
8299 Expressions (Entries_Aggr));
8300
8301 end if;
8302
8303 Next (Comp);
8304 end loop;
8305
8306 -- If there are some private entry declarations, expand it as if they
8307 -- were visible entries.
8308
8309 if Present (Private_Declarations (Pdef)) then
8310 Comp := First (Private_Declarations (Pdef));
8311 while Present (Comp) loop
8312 if Nkind (Comp) = N_Entry_Declaration then
8313 E_Count := E_Count + 1;
8314 Comp_Id := Defining_Identifier (Comp);
8315
8316 Edef :=
8317 Make_Defining_Identifier (Loc,
8318 Build_Selected_Name (Prot_Typ, Comp_Id, 'E'));
8319 Sub :=
8320 Make_Subprogram_Declaration (Loc,
8321 Specification =>
8322 Build_Protected_Entry_Specification (Loc, Edef, Comp_Id));
8323
8324 Insert_After (Current_Node, Sub);
8325 Analyze (Sub);
8326
8327 Set_Protected_Body_Subprogram
8328 (Defining_Identifier (Comp),
8329 Defining_Unit_Name (Specification (Sub)));
8330
8331 Current_Node := Sub;
8332
8333 Bdef :=
8334 Make_Defining_Identifier (Loc,
8335 Chars => Build_Selected_Name (Prot_Typ, Comp_Id, 'E'));
8336
8337 Sub :=
8338 Make_Subprogram_Declaration (Loc,
8339 Specification =>
8340 Build_Barrier_Function_Specification (Loc, Bdef));
8341
8342 Insert_After (Current_Node, Sub);
8343 Analyze (Sub);
8344 Set_Protected_Body_Subprogram (Bdef, Bdef);
8345 Set_Barrier_Function (Comp_Id, Bdef);
8346 Set_Scope (Bdef, Scope (Comp_Id));
8347 Current_Node := Sub;
8348
8349 -- Collect pointers to the protected subprogram and the barrier
8350 -- of the current entry, for insertion into Entry_Bodies_Array.
8351
8352 Append_To (Expressions (Entries_Aggr),
8353 Make_Aggregate (Loc,
8354 Expressions => New_List (
8355 Make_Attribute_Reference (Loc,
8356 Prefix => New_Reference_To (Bdef, Loc),
8357 Attribute_Name => Name_Unrestricted_Access),
8358 Make_Attribute_Reference (Loc,
8359 Prefix => New_Reference_To (Edef, Loc),
8360 Attribute_Name => Name_Unrestricted_Access))));
8361 end if;
8362
8363 Next (Comp);
8364 end loop;
8365 end if;
8366
8367 -- Emit declaration for Entry_Bodies_Array, now that the addresses of
8368 -- all protected subprograms have been collected.
8369
8370 if Has_Entries (Prot_Typ) then
8371 Body_Id :=
8372 Make_Defining_Identifier (Sloc (Prot_Typ),
8373 Chars => New_External_Name (Chars (Prot_Typ), 'A'));
8374
8375 case Corresponding_Runtime_Package (Prot_Typ) is
8376 when System_Tasking_Protected_Objects_Entries =>
8377 Body_Arr := Make_Object_Declaration (Loc,
8378 Defining_Identifier => Body_Id,
8379 Aliased_Present => True,
8380 Object_Definition =>
8381 Make_Subtype_Indication (Loc,
8382 Subtype_Mark => New_Reference_To (
8383 RTE (RE_Protected_Entry_Body_Array), Loc),
8384 Constraint =>
8385 Make_Index_Or_Discriminant_Constraint (Loc,
8386 Constraints => New_List (
8387 Make_Range (Loc,
8388 Make_Integer_Literal (Loc, 1),
8389 Make_Integer_Literal (Loc, E_Count))))),
8390 Expression => Entries_Aggr);
8391
8392 when System_Tasking_Protected_Objects_Single_Entry =>
8393 Body_Arr := Make_Object_Declaration (Loc,
8394 Defining_Identifier => Body_Id,
8395 Aliased_Present => True,
8396 Object_Definition => New_Reference_To
8397 (RTE (RE_Entry_Body), Loc),
8398 Expression =>
8399 Make_Aggregate (Loc,
8400 Expressions => New_List (
8401 Make_Attribute_Reference (Loc,
8402 Prefix => New_Reference_To (Bdef, Loc),
8403 Attribute_Name => Name_Unrestricted_Access),
8404 Make_Attribute_Reference (Loc,
8405 Prefix => New_Reference_To (Edef, Loc),
8406 Attribute_Name => Name_Unrestricted_Access))));
8407
8408 when others =>
8409 raise Program_Error;
8410 end case;
8411
8412 -- A pointer to this array will be placed in the corresponding record
8413 -- by its initialization procedure so this needs to be analyzed here.
8414
8415 Insert_After (Current_Node, Body_Arr);
8416 Current_Node := Body_Arr;
8417 Analyze (Body_Arr);
8418
8419 Set_Entry_Bodies_Array (Prot_Typ, Body_Id);
8420
8421 -- Finally, build the function that maps an entry index into the
8422 -- corresponding body. A pointer to this function is placed in each
8423 -- object of the type. Except for a ravenscar-like profile (no abort,
8424 -- no entry queue, 1 entry)
8425
8426 if Corresponding_Runtime_Package (Prot_Typ) =
8427 System_Tasking_Protected_Objects_Entries
8428 then
8429 Sub :=
8430 Make_Subprogram_Declaration (Loc,
8431 Specification => Build_Find_Body_Index_Spec (Prot_Typ));
8432 Insert_After (Current_Node, Sub);
8433 Analyze (Sub);
8434 end if;
8435 end if;
8436 end Expand_N_Protected_Type_Declaration;
8437
8438 --------------------------------
8439 -- Expand_N_Requeue_Statement --
8440 --------------------------------
8441
8442 -- A non-dispatching requeue statement is expanded into one of four GNARLI
8443 -- operations, depending on the source and destination (task or protected
8444 -- object). A dispatching requeue statement is expanded into a call to the
8445 -- predefined primitive _Disp_Requeue. In addition, code is generated to
8446 -- jump around the remainder of processing for the original entry and, if
8447 -- the destination is (different) protected object, to attempt to service
8448 -- it. The following illustrates the various cases:
8449
8450 -- procedure entE
8451 -- (O : System.Address;
8452 -- P : System.Address;
8453 -- E : Protected_Entry_Index)
8454 -- is
8455 -- <discriminant renamings>
8456 -- <private object renamings>
8457 -- type poVP is access poV;
8458 -- _object : ptVP := ptVP!(O);
8459
8460 -- begin
8461 -- begin
8462 -- <start of statement sequence for entry>
8463
8464 -- -- Requeue from one protected entry body to another protected
8465 -- -- entry.
8466
8467 -- Requeue_Protected_Entry (
8468 -- _object._object'Access,
8469 -- new._object'Access,
8470 -- E,
8471 -- Abort_Present);
8472 -- return;
8473
8474 -- <some more of the statement sequence for entry>
8475
8476 -- -- Requeue from an entry body to a task entry
8477
8478 -- Requeue_Protected_To_Task_Entry (
8479 -- New._task_id,
8480 -- E,
8481 -- Abort_Present);
8482 -- return;
8483
8484 -- <rest of statement sequence for entry>
8485 -- Complete_Entry_Body (_object._object);
8486
8487 -- exception
8488 -- when all others =>
8489 -- Exceptional_Complete_Entry_Body (
8490 -- _object._object, Get_GNAT_Exception);
8491 -- end;
8492 -- end entE;
8493
8494 -- Requeue of a task entry call to a task entry
8495
8496 -- Accept_Call (E, Ann);
8497 -- <start of statement sequence for accept statement>
8498 -- Requeue_Task_Entry (New._task_id, E, Abort_Present);
8499 -- goto Lnn;
8500 -- <rest of statement sequence for accept statement>
8501 -- <<Lnn>>
8502 -- Complete_Rendezvous;
8503
8504 -- exception
8505 -- when all others =>
8506 -- Exceptional_Complete_Rendezvous (Get_GNAT_Exception);
8507
8508 -- Requeue of a task entry call to a protected entry
8509
8510 -- Accept_Call (E, Ann);
8511 -- <start of statement sequence for accept statement>
8512 -- Requeue_Task_To_Protected_Entry (
8513 -- new._object'Access,
8514 -- E,
8515 -- Abort_Present);
8516 -- newS (new, Pnn);
8517 -- goto Lnn;
8518 -- <rest of statement sequence for accept statement>
8519 -- <<Lnn>>
8520 -- Complete_Rendezvous;
8521
8522 -- exception
8523 -- when all others =>
8524 -- Exceptional_Complete_Rendezvous (Get_GNAT_Exception);
8525
8526 -- Ada 2012 (AI05-0030): Dispatching requeue to an interface primitive
8527 -- marked by pragma Implemented (XXX, By_Entry).
8528
8529 -- The requeue is inside a protected entry:
8530
8531 -- procedure entE
8532 -- (O : System.Address;
8533 -- P : System.Address;
8534 -- E : Protected_Entry_Index)
8535 -- is
8536 -- <discriminant renamings>
8537 -- <private object renamings>
8538 -- type poVP is access poV;
8539 -- _object : ptVP := ptVP!(O);
8540
8541 -- begin
8542 -- begin
8543 -- <start of statement sequence for entry>
8544
8545 -- _Disp_Requeue
8546 -- (<interface class-wide object>,
8547 -- True,
8548 -- _object'Address,
8549 -- Ada.Tags.Get_Offset_Index
8550 -- (Tag (_object),
8551 -- <interface dispatch table index of target entry>),
8552 -- Abort_Present);
8553 -- return;
8554
8555 -- <rest of statement sequence for entry>
8556 -- Complete_Entry_Body (_object._object);
8557
8558 -- exception
8559 -- when all others =>
8560 -- Exceptional_Complete_Entry_Body (
8561 -- _object._object, Get_GNAT_Exception);
8562 -- end;
8563 -- end entE;
8564
8565 -- The requeue is inside a task entry:
8566
8567 -- Accept_Call (E, Ann);
8568 -- <start of statement sequence for accept statement>
8569 -- _Disp_Requeue
8570 -- (<interface class-wide object>,
8571 -- False,
8572 -- null,
8573 -- Ada.Tags.Get_Offset_Index
8574 -- (Tag (_object),
8575 -- <interface dispatch table index of target entrt>),
8576 -- Abort_Present);
8577 -- newS (new, Pnn);
8578 -- goto Lnn;
8579 -- <rest of statement sequence for accept statement>
8580 -- <<Lnn>>
8581 -- Complete_Rendezvous;
8582
8583 -- exception
8584 -- when all others =>
8585 -- Exceptional_Complete_Rendezvous (Get_GNAT_Exception);
8586
8587 -- Ada 2012 (AI05-0030): Dispatching requeue to an interface primitive
8588 -- marked by pragma Implemented (XXX, By_Protected_Procedure). The requeue
8589 -- statement is replaced by a dispatching call with actual parameters taken
8590 -- from the inner-most accept statement or entry body.
8591
8592 -- Target.Primitive (Param1, ..., ParamN);
8593
8594 -- Ada 2012 (AI05-0030): Dispatching requeue to an interface primitive
8595 -- marked by pragma Implemented (XXX, By_Any) or not marked at all.
8596
8597 -- declare
8598 -- S : constant Offset_Index :=
8599 -- Get_Offset_Index (Tag (Concval), DT_Position (Ename));
8600 -- C : constant Prim_Op_Kind := Get_Prim_Op_Kind (Tag (Concval), S);
8601
8602 -- begin
8603 -- if C = POK_Protected_Entry
8604 -- or else C = POK_Task_Entry
8605 -- then
8606 -- <statements for dispatching requeue>
8607
8608 -- elsif C = POK_Protected_Procedure then
8609 -- <dispatching call equivalent>
8610
8611 -- else
8612 -- raise Program_Error;
8613 -- end if;
8614 -- end;
8615
8616 procedure Expand_N_Requeue_Statement (N : Node_Id) is
8617 Loc : constant Source_Ptr := Sloc (N);
8618 Conc_Typ : Entity_Id;
8619 Concval : Node_Id;
8620 Ename : Node_Id;
8621 Index : Node_Id;
8622 Old_Typ : Entity_Id;
8623
8624 function Build_Dispatching_Call_Equivalent return Node_Id;
8625 -- Ada 2012 (AI05-0030): N denotes a dispatching requeue statement of
8626 -- the form Concval.Ename. It is statically known that Ename is allowed
8627 -- to be implemented by a protected procedure. Create a dispatching call
8628 -- equivalent of Concval.Ename taking the actual parameters from the
8629 -- inner-most accept statement or entry body.
8630
8631 function Build_Dispatching_Requeue return Node_Id;
8632 -- Ada 2012 (AI05-0030): N denotes a dispatching requeue statement of
8633 -- the form Concval.Ename. It is statically known that Ename is allowed
8634 -- to be implemented by a protected or a task entry. Create a call to
8635 -- primitive _Disp_Requeue which handles the low-level actions.
8636
8637 function Build_Dispatching_Requeue_To_Any return Node_Id;
8638 -- Ada 2012 (AI05-0030): N denotes a dispatching requeue statement of
8639 -- the form Concval.Ename. Ename is either marked by pragma Implemented
8640 -- (XXX, By_Any) or not marked at all. Create a block which determines
8641 -- at runtime whether Ename denotes an entry or a procedure and perform
8642 -- the appropriate kind of dispatching select.
8643
8644 function Build_Normal_Requeue return Node_Id;
8645 -- N denotes a non-dispatching requeue statement to either a task or a
8646 -- protected entry. Build the appropriate runtime call to perform the
8647 -- action.
8648
8649 function Build_Skip_Statement (Search : Node_Id) return Node_Id;
8650 -- For a protected entry, create a return statement to skip the rest of
8651 -- the entry body. Otherwise, create a goto statement to skip the rest
8652 -- of a task accept statement. The lookup for the enclosing entry body
8653 -- or accept statement starts from Search.
8654
8655 ---------------------------------------
8656 -- Build_Dispatching_Call_Equivalent --
8657 ---------------------------------------
8658
8659 function Build_Dispatching_Call_Equivalent return Node_Id is
8660 Call_Ent : constant Entity_Id := Entity (Ename);
8661 Obj : constant Node_Id := Original_Node (Concval);
8662 Acc_Ent : Node_Id;
8663 Actuals : List_Id;
8664 Formal : Node_Id;
8665 Formals : List_Id;
8666
8667 begin
8668 -- Climb the parent chain looking for the inner-most entry body or
8669 -- accept statement.
8670
8671 Acc_Ent := N;
8672 while Present (Acc_Ent)
8673 and then not Nkind_In (Acc_Ent, N_Accept_Statement,
8674 N_Entry_Body)
8675 loop
8676 Acc_Ent := Parent (Acc_Ent);
8677 end loop;
8678
8679 -- A requeue statement should be housed inside an entry body or an
8680 -- accept statement at some level. If this is not the case, then the
8681 -- tree is malformed.
8682
8683 pragma Assert (Present (Acc_Ent));
8684
8685 -- Recover the list of formal parameters
8686
8687 if Nkind (Acc_Ent) = N_Entry_Body then
8688 Acc_Ent := Entry_Body_Formal_Part (Acc_Ent);
8689 end if;
8690
8691 Formals := Parameter_Specifications (Acc_Ent);
8692
8693 -- Create the actual parameters for the dispatching call. These are
8694 -- simply copies of the entry body or accept statement formals in the
8695 -- same order as they appear.
8696
8697 Actuals := No_List;
8698
8699 if Present (Formals) then
8700 Actuals := New_List;
8701 Formal := First (Formals);
8702 while Present (Formal) loop
8703 Append_To (Actuals,
8704 Make_Identifier (Loc, Chars (Defining_Identifier (Formal))));
8705 Next (Formal);
8706 end loop;
8707 end if;
8708
8709 -- Generate:
8710 -- Obj.Call_Ent (Actuals);
8711
8712 return
8713 Make_Procedure_Call_Statement (Loc,
8714 Name =>
8715 Make_Selected_Component (Loc,
8716 Prefix => Make_Identifier (Loc, Chars (Obj)),
8717 Selector_Name => Make_Identifier (Loc, Chars (Call_Ent))),
8718
8719 Parameter_Associations => Actuals);
8720 end Build_Dispatching_Call_Equivalent;
8721
8722 -------------------------------
8723 -- Build_Dispatching_Requeue --
8724 -------------------------------
8725
8726 function Build_Dispatching_Requeue return Node_Id is
8727 Params : constant List_Id := New_List;
8728
8729 begin
8730 -- Process the "with abort" parameter
8731
8732 Prepend_To (Params,
8733 New_Reference_To (Boolean_Literals (Abort_Present (N)), Loc));
8734
8735 -- Process the entry wrapper's position in the primary dispatch
8736 -- table parameter. Generate:
8737
8738 -- Ada.Tags.Get_Offset_Index
8739 -- (Ada.Tags.Tag (Concval),
8740 -- <interface dispatch table position of Ename>)
8741
8742 if Tagged_Type_Expansion then
8743 Prepend_To (Params,
8744 Make_Function_Call (Loc,
8745 Name => New_Reference_To (RTE (RE_Get_Offset_Index), Loc),
8746 Parameter_Associations => New_List (
8747 Unchecked_Convert_To (RTE (RE_Tag), Concval),
8748 Make_Integer_Literal (Loc, DT_Position (Entity (Ename))))));
8749
8750 -- VM targets
8751
8752 else
8753 Prepend_To (Params,
8754 Make_Function_Call (Loc,
8755 Name => New_Reference_To (RTE (RE_Get_Offset_Index), Loc),
8756
8757 Parameter_Associations => New_List (
8758
8759 -- Obj_Typ
8760
8761 Make_Attribute_Reference (Loc,
8762 Prefix => Concval,
8763 Attribute_Name => Name_Tag),
8764
8765 -- Tag_Typ
8766
8767 Make_Attribute_Reference (Loc,
8768 Prefix => New_Reference_To (Etype (Concval), Loc),
8769 Attribute_Name => Name_Tag),
8770
8771 -- Position
8772
8773 Make_Integer_Literal (Loc, DT_Position (Entity (Ename))))));
8774 end if;
8775
8776 -- Specific actuals for protected to XXX requeue
8777
8778 if Is_Protected_Type (Old_Typ) then
8779 Prepend_To (Params,
8780 Make_Attribute_Reference (Loc, -- _object'Address
8781 Prefix =>
8782 Concurrent_Ref (New_Occurrence_Of (Old_Typ, Loc)),
8783 Attribute_Name => Name_Address));
8784
8785 Prepend_To (Params, -- True
8786 New_Reference_To (Standard_True, Loc));
8787
8788 -- Specific actuals for task to XXX requeue
8789
8790 else
8791 pragma Assert (Is_Task_Type (Old_Typ));
8792
8793 Prepend_To (Params, -- null
8794 New_Reference_To (RTE (RE_Null_Address), Loc));
8795
8796 Prepend_To (Params, -- False
8797 New_Reference_To (Standard_False, Loc));
8798 end if;
8799
8800 -- Add the object parameter
8801
8802 Prepend_To (Params, New_Copy_Tree (Concval));
8803
8804 -- Generate:
8805 -- _Disp_Requeue (<Params>);
8806
8807 return
8808 Make_Procedure_Call_Statement (Loc,
8809 Name => Make_Identifier (Loc, Name_uDisp_Requeue),
8810 Parameter_Associations => Params);
8811 end Build_Dispatching_Requeue;
8812
8813 --------------------------------------
8814 -- Build_Dispatching_Requeue_To_Any --
8815 --------------------------------------
8816
8817 function Build_Dispatching_Requeue_To_Any return Node_Id is
8818 Call_Ent : constant Entity_Id := Entity (Ename);
8819 Obj : constant Node_Id := Original_Node (Concval);
8820 Skip : constant Node_Id := Build_Skip_Statement (N);
8821 C : Entity_Id;
8822 Decls : List_Id;
8823 S : Entity_Id;
8824 Stmts : List_Id;
8825
8826 begin
8827 Decls := New_List;
8828 Stmts := New_List;
8829
8830 -- Dispatch table slot processing, generate:
8831 -- S : Integer;
8832
8833 S := Build_S (Loc, Decls);
8834
8835 -- Call kind processing, generate:
8836 -- C : Ada.Tags.Prim_Op_Kind;
8837
8838 C := Build_C (Loc, Decls);
8839
8840 -- Generate:
8841 -- S := Ada.Tags.Get_Offset_Index
8842 -- (Ada.Tags.Tag (Obj), DT_Position (Call_Ent));
8843
8844 Append_To (Stmts, Build_S_Assignment (Loc, S, Obj, Call_Ent));
8845
8846 -- Generate:
8847 -- _Disp_Get_Prim_Op_Kind (Obj, S, C);
8848
8849 Append_To (Stmts,
8850 Make_Procedure_Call_Statement (Loc,
8851 Name =>
8852 New_Reference_To (
8853 Find_Prim_Op (Etype (Etype (Obj)),
8854 Name_uDisp_Get_Prim_Op_Kind),
8855 Loc),
8856 Parameter_Associations => New_List (
8857 New_Copy_Tree (Obj),
8858 New_Reference_To (S, Loc),
8859 New_Reference_To (C, Loc))));
8860
8861 Append_To (Stmts,
8862
8863 -- if C = POK_Protected_Entry
8864 -- or else C = POK_Task_Entry
8865 -- then
8866
8867 Make_If_Statement (Loc,
8868 Condition =>
8869 Make_Op_Or (Loc,
8870 Left_Opnd =>
8871 Make_Op_Eq (Loc,
8872 Left_Opnd =>
8873 New_Reference_To (C, Loc),
8874 Right_Opnd =>
8875 New_Reference_To (RTE (RE_POK_Protected_Entry), Loc)),
8876
8877 Right_Opnd =>
8878 Make_Op_Eq (Loc,
8879 Left_Opnd =>
8880 New_Reference_To (C, Loc),
8881 Right_Opnd =>
8882 New_Reference_To (RTE (RE_POK_Task_Entry), Loc))),
8883
8884 -- Dispatching requeue equivalent
8885
8886 Then_Statements => New_List (
8887 Build_Dispatching_Requeue,
8888 Skip),
8889
8890 -- elsif C = POK_Protected_Procedure then
8891
8892 Elsif_Parts => New_List (
8893 Make_Elsif_Part (Loc,
8894 Condition =>
8895 Make_Op_Eq (Loc,
8896 Left_Opnd =>
8897 New_Reference_To (C, Loc),
8898 Right_Opnd =>
8899 New_Reference_To (
8900 RTE (RE_POK_Protected_Procedure), Loc)),
8901
8902 -- Dispatching call equivalent
8903
8904 Then_Statements => New_List (
8905 Build_Dispatching_Call_Equivalent))),
8906
8907 -- else
8908 -- raise Program_Error;
8909 -- end if;
8910
8911 Else_Statements => New_List (
8912 Make_Raise_Program_Error (Loc,
8913 Reason => PE_Explicit_Raise))));
8914
8915 -- Wrap everything into a block
8916
8917 return
8918 Make_Block_Statement (Loc,
8919 Declarations => Decls,
8920 Handled_Statement_Sequence =>
8921 Make_Handled_Sequence_Of_Statements (Loc,
8922 Statements => Stmts));
8923 end Build_Dispatching_Requeue_To_Any;
8924
8925 --------------------------
8926 -- Build_Normal_Requeue --
8927 --------------------------
8928
8929 function Build_Normal_Requeue return Node_Id is
8930 Params : constant List_Id := New_List;
8931 Param : Node_Id;
8932 RT_Call : Node_Id;
8933
8934 begin
8935 -- Process the "with abort" parameter
8936
8937 Prepend_To (Params,
8938 New_Reference_To (Boolean_Literals (Abort_Present (N)), Loc));
8939
8940 -- Add the index expression to the parameters. It is common among all
8941 -- four cases.
8942
8943 Prepend_To (Params,
8944 Entry_Index_Expression (Loc, Entity (Ename), Index, Conc_Typ));
8945
8946 if Is_Protected_Type (Old_Typ) then
8947 declare
8948 Self_Param : Node_Id;
8949
8950 begin
8951 Self_Param :=
8952 Make_Attribute_Reference (Loc,
8953 Prefix =>
8954 Concurrent_Ref (New_Occurrence_Of (Old_Typ, Loc)),
8955 Attribute_Name =>
8956 Name_Unchecked_Access);
8957
8958 -- Protected to protected requeue
8959
8960 if Is_Protected_Type (Conc_Typ) then
8961 RT_Call :=
8962 New_Reference_To (
8963 RTE (RE_Requeue_Protected_Entry), Loc);
8964
8965 Param :=
8966 Make_Attribute_Reference (Loc,
8967 Prefix =>
8968 Concurrent_Ref (Concval),
8969 Attribute_Name =>
8970 Name_Unchecked_Access);
8971
8972 -- Protected to task requeue
8973
8974 else pragma Assert (Is_Task_Type (Conc_Typ));
8975 RT_Call :=
8976 New_Reference_To (
8977 RTE (RE_Requeue_Protected_To_Task_Entry), Loc);
8978
8979 Param := Concurrent_Ref (Concval);
8980 end if;
8981
8982 Prepend_To (Params, Param);
8983 Prepend_To (Params, Self_Param);
8984 end;
8985
8986 else pragma Assert (Is_Task_Type (Old_Typ));
8987
8988 -- Task to protected requeue
8989
8990 if Is_Protected_Type (Conc_Typ) then
8991 RT_Call :=
8992 New_Reference_To (
8993 RTE (RE_Requeue_Task_To_Protected_Entry), Loc);
8994
8995 Param :=
8996 Make_Attribute_Reference (Loc,
8997 Prefix =>
8998 Concurrent_Ref (Concval),
8999 Attribute_Name =>
9000 Name_Unchecked_Access);
9001
9002 -- Task to task requeue
9003
9004 else pragma Assert (Is_Task_Type (Conc_Typ));
9005 RT_Call :=
9006 New_Reference_To (RTE (RE_Requeue_Task_Entry), Loc);
9007
9008 Param := Concurrent_Ref (Concval);
9009 end if;
9010
9011 Prepend_To (Params, Param);
9012 end if;
9013
9014 return
9015 Make_Procedure_Call_Statement (Loc,
9016 Name => RT_Call,
9017 Parameter_Associations => Params);
9018 end Build_Normal_Requeue;
9019
9020 --------------------------
9021 -- Build_Skip_Statement --
9022 --------------------------
9023
9024 function Build_Skip_Statement (Search : Node_Id) return Node_Id is
9025 Skip_Stmt : Node_Id;
9026
9027 begin
9028 -- Build a return statement to skip the rest of the entire body
9029
9030 if Is_Protected_Type (Old_Typ) then
9031 Skip_Stmt := Make_Simple_Return_Statement (Loc);
9032
9033 -- If the requeue is within a task, find the end label of the
9034 -- enclosing accept statement and create a goto statement to it.
9035
9036 else
9037 declare
9038 Acc : Node_Id;
9039 Label : Node_Id;
9040
9041 begin
9042 -- Climb the parent chain looking for the enclosing accept
9043 -- statement.
9044
9045 Acc := Parent (Search);
9046 while Present (Acc)
9047 and then Nkind (Acc) /= N_Accept_Statement
9048 loop
9049 Acc := Parent (Acc);
9050 end loop;
9051
9052 -- The last statement is the second label used for completing
9053 -- the rendezvous the usual way. The label we are looking for
9054 -- is right before it.
9055
9056 Label :=
9057 Prev (Last (Statements (Handled_Statement_Sequence (Acc))));
9058
9059 pragma Assert (Nkind (Label) = N_Label);
9060
9061 -- Generate a goto statement to skip the rest of the accept
9062
9063 Skip_Stmt :=
9064 Make_Goto_Statement (Loc,
9065 Name =>
9066 New_Occurrence_Of (Entity (Identifier (Label)), Loc));
9067 end;
9068 end if;
9069
9070 Set_Analyzed (Skip_Stmt);
9071
9072 return Skip_Stmt;
9073 end Build_Skip_Statement;
9074
9075 -- Start of processing for Expand_N_Requeue_Statement
9076
9077 begin
9078 -- Extract the components of the entry call
9079
9080 Extract_Entry (N, Concval, Ename, Index);
9081 Conc_Typ := Etype (Concval);
9082
9083 -- Examine the scope stack in order to find nearest enclosing protected
9084 -- or task type. This will constitute our invocation source.
9085
9086 Old_Typ := Current_Scope;
9087 while Present (Old_Typ)
9088 and then not Is_Protected_Type (Old_Typ)
9089 and then not Is_Task_Type (Old_Typ)
9090 loop
9091 Old_Typ := Scope (Old_Typ);
9092 end loop;
9093
9094 -- Ada 2012 (AI05-0030): We have a dispatching requeue of the form
9095 -- Concval.Ename where the type of Concval is class-wide concurrent
9096 -- interface.
9097
9098 if Ada_Version >= Ada_2012
9099 and then Present (Concval)
9100 and then Is_Class_Wide_Type (Conc_Typ)
9101 and then Is_Concurrent_Interface (Conc_Typ)
9102 then
9103 declare
9104 Has_Impl : Boolean := False;
9105 Impl_Kind : Name_Id := No_Name;
9106
9107 begin
9108 -- Check whether the Ename is flagged by pragma Implemented
9109
9110 if Has_Rep_Pragma (Entity (Ename), Name_Implemented) then
9111 Has_Impl := True;
9112 Impl_Kind := Implementation_Kind (Entity (Ename));
9113 end if;
9114
9115 -- The procedure_or_entry_NAME is guaranteed to be overridden by
9116 -- an entry. Create a call to predefined primitive _Disp_Requeue.
9117
9118 if Has_Impl
9119 and then Impl_Kind = Name_By_Entry
9120 then
9121 Rewrite (N, Build_Dispatching_Requeue);
9122 Analyze (N);
9123 Insert_After (N, Build_Skip_Statement (N));
9124
9125 -- The procedure_or_entry_NAME is guaranteed to be overridden by
9126 -- a protected procedure. In this case the requeue is transformed
9127 -- into a dispatching call.
9128
9129 elsif Has_Impl
9130 and then Impl_Kind = Name_By_Protected_Procedure
9131 then
9132 Rewrite (N, Build_Dispatching_Call_Equivalent);
9133 Analyze (N);
9134
9135 -- The procedure_or_entry_NAME's implementation kind is either
9136 -- By_Any or pragma Implemented was not applied at all. In this
9137 -- case a runtime test determines whether Ename denotes an entry
9138 -- or a protected procedure and performs the appropriate call.
9139
9140 else
9141 Rewrite (N, Build_Dispatching_Requeue_To_Any);
9142 Analyze (N);
9143 end if;
9144 end;
9145
9146 -- Processing for regular (non-dispatching) requeues
9147
9148 else
9149 Rewrite (N, Build_Normal_Requeue);
9150 Analyze (N);
9151 Insert_After (N, Build_Skip_Statement (N));
9152 end if;
9153 end Expand_N_Requeue_Statement;
9154
9155 -------------------------------
9156 -- Expand_N_Selective_Accept --
9157 -------------------------------
9158
9159 procedure Expand_N_Selective_Accept (N : Node_Id) is
9160 Loc : constant Source_Ptr := Sloc (N);
9161 Alts : constant List_Id := Select_Alternatives (N);
9162
9163 -- Note: in the below declarations a lot of new lists are allocated
9164 -- unconditionally which may well not end up being used. That's
9165 -- not a good idea since it wastes space gratuitously ???
9166
9167 Accept_Case : List_Id;
9168 Accept_List : constant List_Id := New_List;
9169
9170 Alt : Node_Id;
9171 Alt_List : constant List_Id := New_List;
9172 Alt_Stats : List_Id;
9173 Ann : Entity_Id := Empty;
9174
9175 Block : Node_Id;
9176 Check_Guard : Boolean := True;
9177
9178 Decls : constant List_Id := New_List;
9179 Stats : constant List_Id := New_List;
9180 Body_List : constant List_Id := New_List;
9181 Trailing_List : constant List_Id := New_List;
9182
9183 Choices : List_Id;
9184 Else_Present : Boolean := False;
9185 Terminate_Alt : Node_Id := Empty;
9186 Select_Mode : Node_Id;
9187
9188 Delay_Case : List_Id;
9189 Delay_Count : Integer := 0;
9190 Delay_Val : Entity_Id;
9191 Delay_Index : Entity_Id;
9192 Delay_Min : Entity_Id;
9193 Delay_Num : Int := 1;
9194 Delay_Alt_List : List_Id := New_List;
9195 Delay_List : constant List_Id := New_List;
9196 D : Entity_Id;
9197 M : Entity_Id;
9198
9199 First_Delay : Boolean := True;
9200 Guard_Open : Entity_Id;
9201
9202 End_Lab : Node_Id;
9203 Index : Int := 1;
9204 Lab : Node_Id;
9205 Num_Alts : Int;
9206 Num_Accept : Nat := 0;
9207 Proc : Node_Id;
9208 Q : Node_Id;
9209 Time_Type : Entity_Id;
9210 X : Node_Id;
9211 Select_Call : Node_Id;
9212
9213 Qnam : constant Entity_Id :=
9214 Make_Defining_Identifier (Loc, New_External_Name ('S', 0));
9215
9216 Xnam : constant Entity_Id :=
9217 Make_Defining_Identifier (Loc, New_External_Name ('J', 1));
9218
9219 -----------------------
9220 -- Local subprograms --
9221 -----------------------
9222
9223 function Accept_Or_Raise return List_Id;
9224 -- For the rare case where delay alternatives all have guards, and
9225 -- all of them are closed, it is still possible that there were open
9226 -- accept alternatives with no callers. We must reexamine the
9227 -- Accept_List, and execute a selective wait with no else if some
9228 -- accept is open. If none, we raise program_error.
9229
9230 procedure Add_Accept (Alt : Node_Id);
9231 -- Process a single accept statement in a select alternative. Build
9232 -- procedure for body of accept, and add entry to dispatch table with
9233 -- expression for guard, in preparation for call to run time select.
9234
9235 function Make_And_Declare_Label (Num : Int) return Node_Id;
9236 -- Manufacture a label using Num as a serial number and declare it.
9237 -- The declaration is appended to Decls. The label marks the trailing
9238 -- statements of an accept or delay alternative.
9239
9240 function Make_Select_Call (Select_Mode : Entity_Id) return Node_Id;
9241 -- Build call to Selective_Wait runtime routine
9242
9243 procedure Process_Delay_Alternative (Alt : Node_Id; Index : Int);
9244 -- Add code to compare value of delay with previous values, and
9245 -- generate case entry for trailing statements.
9246
9247 procedure Process_Accept_Alternative
9248 (Alt : Node_Id;
9249 Index : Int;
9250 Proc : Node_Id);
9251 -- Add code to call corresponding procedure, and branch to
9252 -- trailing statements, if any.
9253
9254 ---------------------
9255 -- Accept_Or_Raise --
9256 ---------------------
9257
9258 function Accept_Or_Raise return List_Id is
9259 Cond : Node_Id;
9260 Stats : List_Id;
9261 J : constant Entity_Id := Make_Temporary (Loc, 'J');
9262
9263 begin
9264 -- We generate the following:
9265
9266 -- for J in q'range loop
9267 -- if q(J).S /=null_task_entry then
9268 -- selective_wait (simple_mode,...);
9269 -- done := True;
9270 -- exit;
9271 -- end if;
9272 -- end loop;
9273 --
9274 -- if no rendez_vous then
9275 -- raise program_error;
9276 -- end if;
9277
9278 -- Note that the code needs to know that the selector name
9279 -- in an Accept_Alternative is named S.
9280
9281 Cond := Make_Op_Ne (Loc,
9282 Left_Opnd =>
9283 Make_Selected_Component (Loc,
9284 Prefix =>
9285 Make_Indexed_Component (Loc,
9286 Prefix => New_Reference_To (Qnam, Loc),
9287 Expressions => New_List (New_Reference_To (J, Loc))),
9288 Selector_Name => Make_Identifier (Loc, Name_S)),
9289 Right_Opnd =>
9290 New_Reference_To (RTE (RE_Null_Task_Entry), Loc));
9291
9292 Stats := New_List (
9293 Make_Implicit_Loop_Statement (N,
9294 Identifier => Empty,
9295 Iteration_Scheme =>
9296 Make_Iteration_Scheme (Loc,
9297 Loop_Parameter_Specification =>
9298 Make_Loop_Parameter_Specification (Loc,
9299 Defining_Identifier => J,
9300 Discrete_Subtype_Definition =>
9301 Make_Attribute_Reference (Loc,
9302 Prefix => New_Reference_To (Qnam, Loc),
9303 Attribute_Name => Name_Range,
9304 Expressions => New_List (
9305 Make_Integer_Literal (Loc, 1))))),
9306
9307 Statements => New_List (
9308 Make_Implicit_If_Statement (N,
9309 Condition => Cond,
9310 Then_Statements => New_List (
9311 Make_Select_Call (
9312 New_Reference_To (RTE (RE_Simple_Mode), Loc)),
9313 Make_Exit_Statement (Loc))))));
9314
9315 Append_To (Stats,
9316 Make_Raise_Program_Error (Loc,
9317 Condition => Make_Op_Eq (Loc,
9318 Left_Opnd => New_Reference_To (Xnam, Loc),
9319 Right_Opnd =>
9320 New_Reference_To (RTE (RE_No_Rendezvous), Loc)),
9321 Reason => PE_All_Guards_Closed));
9322
9323 return Stats;
9324 end Accept_Or_Raise;
9325
9326 ----------------
9327 -- Add_Accept --
9328 ----------------
9329
9330 procedure Add_Accept (Alt : Node_Id) is
9331 Acc_Stm : constant Node_Id := Accept_Statement (Alt);
9332 Ename : constant Node_Id := Entry_Direct_Name (Acc_Stm);
9333 Eloc : constant Source_Ptr := Sloc (Ename);
9334 Eent : constant Entity_Id := Entity (Ename);
9335 Index : constant Node_Id := Entry_Index (Acc_Stm);
9336 Null_Body : Node_Id;
9337 Proc_Body : Node_Id;
9338 PB_Ent : Entity_Id;
9339 Expr : Node_Id;
9340 Call : Node_Id;
9341
9342 begin
9343 if No (Ann) then
9344 Ann := Node (Last_Elmt (Accept_Address (Eent)));
9345 end if;
9346
9347 if Present (Condition (Alt)) then
9348 Expr :=
9349 Make_Conditional_Expression (Eloc, New_List (
9350 Condition (Alt),
9351 Entry_Index_Expression (Eloc, Eent, Index, Scope (Eent)),
9352 New_Reference_To (RTE (RE_Null_Task_Entry), Eloc)));
9353 else
9354 Expr :=
9355 Entry_Index_Expression
9356 (Eloc, Eent, Index, Scope (Eent));
9357 end if;
9358
9359 if Present (Handled_Statement_Sequence (Accept_Statement (Alt))) then
9360 Null_Body := New_Reference_To (Standard_False, Eloc);
9361
9362 if Abort_Allowed then
9363 Call := Make_Procedure_Call_Statement (Eloc,
9364 Name => New_Reference_To (RTE (RE_Abort_Undefer), Eloc));
9365 Insert_Before (First (Statements (Handled_Statement_Sequence (
9366 Accept_Statement (Alt)))), Call);
9367 Analyze (Call);
9368 end if;
9369
9370 PB_Ent :=
9371 Make_Defining_Identifier (Eloc,
9372 New_External_Name (Chars (Ename), 'A', Num_Accept));
9373
9374 if Comes_From_Source (Alt) then
9375 Set_Debug_Info_Needed (PB_Ent);
9376 end if;
9377
9378 Proc_Body :=
9379 Make_Subprogram_Body (Eloc,
9380 Specification =>
9381 Make_Procedure_Specification (Eloc,
9382 Defining_Unit_Name => PB_Ent),
9383 Declarations => Declarations (Acc_Stm),
9384 Handled_Statement_Sequence =>
9385 Build_Accept_Body (Accept_Statement (Alt)));
9386
9387 -- During the analysis of the body of the accept statement, any
9388 -- zero cost exception handler records were collected in the
9389 -- Accept_Handler_Records field of the N_Accept_Alternative node.
9390 -- This is where we move them to where they belong, namely the
9391 -- newly created procedure.
9392
9393 Set_Handler_Records (PB_Ent, Accept_Handler_Records (Alt));
9394 Append (Proc_Body, Body_List);
9395
9396 else
9397 Null_Body := New_Reference_To (Standard_True, Eloc);
9398
9399 -- if accept statement has declarations, insert above, given that
9400 -- we are not creating a body for the accept.
9401
9402 if Present (Declarations (Acc_Stm)) then
9403 Insert_Actions (N, Declarations (Acc_Stm));
9404 end if;
9405 end if;
9406
9407 Append_To (Accept_List,
9408 Make_Aggregate (Eloc, Expressions => New_List (Null_Body, Expr)));
9409
9410 Num_Accept := Num_Accept + 1;
9411 end Add_Accept;
9412
9413 ----------------------------
9414 -- Make_And_Declare_Label --
9415 ----------------------------
9416
9417 function Make_And_Declare_Label (Num : Int) return Node_Id is
9418 Lab_Id : Node_Id;
9419
9420 begin
9421 Lab_Id := Make_Identifier (Loc, New_External_Name ('L', Num));
9422 Lab :=
9423 Make_Label (Loc, Lab_Id);
9424
9425 Append_To (Decls,
9426 Make_Implicit_Label_Declaration (Loc,
9427 Defining_Identifier =>
9428 Make_Defining_Identifier (Loc, Chars (Lab_Id)),
9429 Label_Construct => Lab));
9430
9431 return Lab;
9432 end Make_And_Declare_Label;
9433
9434 ----------------------
9435 -- Make_Select_Call --
9436 ----------------------
9437
9438 function Make_Select_Call (Select_Mode : Entity_Id) return Node_Id is
9439 Params : constant List_Id := New_List;
9440
9441 begin
9442 Append (
9443 Make_Attribute_Reference (Loc,
9444 Prefix => New_Reference_To (Qnam, Loc),
9445 Attribute_Name => Name_Unchecked_Access),
9446 Params);
9447 Append (Select_Mode, Params);
9448 Append (New_Reference_To (Ann, Loc), Params);
9449 Append (New_Reference_To (Xnam, Loc), Params);
9450
9451 return
9452 Make_Procedure_Call_Statement (Loc,
9453 Name => New_Reference_To (RTE (RE_Selective_Wait), Loc),
9454 Parameter_Associations => Params);
9455 end Make_Select_Call;
9456
9457 --------------------------------
9458 -- Process_Accept_Alternative --
9459 --------------------------------
9460
9461 procedure Process_Accept_Alternative
9462 (Alt : Node_Id;
9463 Index : Int;
9464 Proc : Node_Id)
9465 is
9466 Choices : List_Id := No_List;
9467 Alt_Stats : List_Id;
9468
9469 begin
9470 Adjust_Condition (Condition (Alt));
9471 Alt_Stats := No_List;
9472
9473 if Present (Handled_Statement_Sequence (Accept_Statement (Alt))) then
9474 Choices := New_List (
9475 Make_Integer_Literal (Loc, Index));
9476
9477 Alt_Stats := New_List (
9478 Make_Procedure_Call_Statement (Sloc (Proc),
9479 Name => New_Reference_To (
9480 Defining_Unit_Name (Specification (Proc)), Sloc (Proc))));
9481 end if;
9482
9483 if Statements (Alt) /= Empty_List then
9484
9485 if No (Alt_Stats) then
9486
9487 -- Accept with no body, followed by trailing statements
9488
9489 Choices := New_List (
9490 Make_Integer_Literal (Loc, Index));
9491
9492 Alt_Stats := New_List;
9493 end if;
9494
9495 -- After the call, if any, branch to trailing statements. We
9496 -- create a label for each, as well as the corresponding label
9497 -- declaration.
9498
9499 Lab := Make_And_Declare_Label (Index);
9500 Append_To (Alt_Stats,
9501 Make_Goto_Statement (Loc,
9502 Name => New_Copy (Identifier (Lab))));
9503
9504 Append (Lab, Trailing_List);
9505 Append_List (Statements (Alt), Trailing_List);
9506 Append_To (Trailing_List,
9507 Make_Goto_Statement (Loc,
9508 Name => New_Copy (Identifier (End_Lab))));
9509 end if;
9510
9511 if Present (Alt_Stats) then
9512
9513 -- Procedure call. and/or trailing statements
9514
9515 Append_To (Alt_List,
9516 Make_Case_Statement_Alternative (Loc,
9517 Discrete_Choices => Choices,
9518 Statements => Alt_Stats));
9519 end if;
9520 end Process_Accept_Alternative;
9521
9522 -------------------------------
9523 -- Process_Delay_Alternative --
9524 -------------------------------
9525
9526 procedure Process_Delay_Alternative (Alt : Node_Id; Index : Int) is
9527 Choices : List_Id;
9528 Cond : Node_Id;
9529 Delay_Alt : List_Id;
9530
9531 begin
9532 -- Deal with C/Fortran boolean as delay condition
9533
9534 Adjust_Condition (Condition (Alt));
9535
9536 -- Determine the smallest specified delay
9537
9538 -- for each delay alternative generate:
9539
9540 -- if guard-expression then
9541 -- Delay_Val := delay-expression;
9542 -- Guard_Open := True;
9543 -- if Delay_Val < Delay_Min then
9544 -- Delay_Min := Delay_Val;
9545 -- Delay_Index := Index;
9546 -- end if;
9547 -- end if;
9548
9549 -- The enclosing if-statement is omitted if there is no guard
9550
9551 if Delay_Count = 1
9552 or else First_Delay
9553 then
9554 First_Delay := False;
9555
9556 Delay_Alt := New_List (
9557 Make_Assignment_Statement (Loc,
9558 Name => New_Reference_To (Delay_Min, Loc),
9559 Expression => Expression (Delay_Statement (Alt))));
9560
9561 if Delay_Count > 1 then
9562 Append_To (Delay_Alt,
9563 Make_Assignment_Statement (Loc,
9564 Name => New_Reference_To (Delay_Index, Loc),
9565 Expression => Make_Integer_Literal (Loc, Index)));
9566 end if;
9567
9568 else
9569 Delay_Alt := New_List (
9570 Make_Assignment_Statement (Loc,
9571 Name => New_Reference_To (Delay_Val, Loc),
9572 Expression => Expression (Delay_Statement (Alt))));
9573
9574 if Time_Type = Standard_Duration then
9575 Cond :=
9576 Make_Op_Lt (Loc,
9577 Left_Opnd => New_Reference_To (Delay_Val, Loc),
9578 Right_Opnd => New_Reference_To (Delay_Min, Loc));
9579
9580 else
9581 -- The scope of the time type must define a comparison
9582 -- operator. The scope itself may not be visible, so we
9583 -- construct a node with entity information to insure that
9584 -- semantic analysis can find the proper operator.
9585
9586 Cond :=
9587 Make_Function_Call (Loc,
9588 Name => Make_Selected_Component (Loc,
9589 Prefix => New_Reference_To (Scope (Time_Type), Loc),
9590 Selector_Name =>
9591 Make_Operator_Symbol (Loc,
9592 Chars => Name_Op_Lt,
9593 Strval => No_String)),
9594 Parameter_Associations =>
9595 New_List (
9596 New_Reference_To (Delay_Val, Loc),
9597 New_Reference_To (Delay_Min, Loc)));
9598
9599 Set_Entity (Prefix (Name (Cond)), Scope (Time_Type));
9600 end if;
9601
9602 Append_To (Delay_Alt,
9603 Make_Implicit_If_Statement (N,
9604 Condition => Cond,
9605 Then_Statements => New_List (
9606 Make_Assignment_Statement (Loc,
9607 Name => New_Reference_To (Delay_Min, Loc),
9608 Expression => New_Reference_To (Delay_Val, Loc)),
9609
9610 Make_Assignment_Statement (Loc,
9611 Name => New_Reference_To (Delay_Index, Loc),
9612 Expression => Make_Integer_Literal (Loc, Index)))));
9613 end if;
9614
9615 if Check_Guard then
9616 Append_To (Delay_Alt,
9617 Make_Assignment_Statement (Loc,
9618 Name => New_Reference_To (Guard_Open, Loc),
9619 Expression => New_Reference_To (Standard_True, Loc)));
9620 end if;
9621
9622 if Present (Condition (Alt)) then
9623 Delay_Alt := New_List (
9624 Make_Implicit_If_Statement (N,
9625 Condition => Condition (Alt),
9626 Then_Statements => Delay_Alt));
9627 end if;
9628
9629 Append_List (Delay_Alt, Delay_List);
9630
9631 -- If the delay alternative has a statement part, add choice to the
9632 -- case statements for delays.
9633
9634 if Present (Statements (Alt)) then
9635
9636 if Delay_Count = 1 then
9637 Append_List (Statements (Alt), Delay_Alt_List);
9638
9639 else
9640 Choices := New_List (
9641 Make_Integer_Literal (Loc, Index));
9642
9643 Append_To (Delay_Alt_List,
9644 Make_Case_Statement_Alternative (Loc,
9645 Discrete_Choices => Choices,
9646 Statements => Statements (Alt)));
9647 end if;
9648
9649 elsif Delay_Count = 1 then
9650
9651 -- If the single delay has no trailing statements, add a branch
9652 -- to the exit label to the selective wait.
9653
9654 Delay_Alt_List := New_List (
9655 Make_Goto_Statement (Loc,
9656 Name => New_Copy (Identifier (End_Lab))));
9657
9658 end if;
9659 end Process_Delay_Alternative;
9660
9661 -- Start of processing for Expand_N_Selective_Accept
9662
9663 begin
9664 -- First insert some declarations before the select. The first is:
9665
9666 -- Ann : Address
9667
9668 -- This variable holds the parameters passed to the accept body. This
9669 -- declaration has already been inserted by the time we get here by
9670 -- a call to Expand_Accept_Declarations made from the semantics when
9671 -- processing the first accept statement contained in the select. We
9672 -- can find this entity as Accept_Address (E), where E is any of the
9673 -- entries references by contained accept statements.
9674
9675 -- The first step is to scan the list of Selective_Accept_Statements
9676 -- to find this entity, and also count the number of accepts, and
9677 -- determine if terminated, delay or else is present:
9678
9679 Num_Alts := 0;
9680
9681 Alt := First (Alts);
9682 while Present (Alt) loop
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 (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 procedure Expand_N_Timed_Entry_Call (N : Node_Id) is
10988 Loc : constant Source_Ptr := Sloc (N);
10989
10990 E_Call : Node_Id :=
10991 Entry_Call_Statement (Entry_Call_Alternative (N));
10992 E_Stats : constant List_Id :=
10993 Statements (Entry_Call_Alternative (N));
10994 D_Stat : Node_Id :=
10995 Delay_Statement (Delay_Alternative (N));
10996 D_Stats : constant List_Id :=
10997 Statements (Delay_Alternative (N));
10998
10999 Actuals : List_Id;
11000 Blk_Typ : Entity_Id;
11001 Call : Node_Id;
11002 Call_Ent : Entity_Id;
11003 Conc_Typ_Stmts : List_Id;
11004 Concval : Node_Id;
11005 D_Conv : Node_Id;
11006 D_Disc : Node_Id;
11007 D_Type : Entity_Id;
11008 Decls : List_Id;
11009 Dummy : Node_Id;
11010 Ename : Node_Id;
11011 Formals : List_Id;
11012 Index : Node_Id;
11013 Is_Disp_Select : Boolean;
11014 Lim_Typ_Stmts : List_Id;
11015 N_Stats : List_Id;
11016 Obj : Entity_Id;
11017 Param : Node_Id;
11018 Params : List_Id;
11019 Stmt : Node_Id;
11020 Stmts : List_Id;
11021 Unpack : List_Id;
11022
11023 B : Entity_Id; -- Call status flag
11024 C : Entity_Id; -- Call kind
11025 D : Entity_Id; -- Delay
11026 K : Entity_Id; -- Tagged kind
11027 M : Entity_Id; -- Delay mode
11028 P : Entity_Id; -- Parameter block
11029 S : Entity_Id; -- Primitive operation slot
11030
11031 begin
11032 -- Under the Ravenscar profile, timed entry calls are excluded. An error
11033 -- was already reported on spec, so do not attempt to expand the call.
11034
11035 if Restriction_Active (No_Select_Statements) then
11036 return;
11037 end if;
11038
11039 -- The arguments in the call may require dynamic allocation, and the
11040 -- call statement may have been transformed into a block. The block
11041 -- may contain additional declarations for internal entities, and the
11042 -- original call is found by sequential search.
11043
11044 if Nkind (E_Call) = N_Block_Statement then
11045 E_Call := First (Statements (Handled_Statement_Sequence (E_Call)));
11046 while not Nkind_In (E_Call, N_Procedure_Call_Statement,
11047 N_Entry_Call_Statement)
11048 loop
11049 Next (E_Call);
11050 end loop;
11051 end if;
11052
11053 Is_Disp_Select :=
11054 Ada_Version >= Ada_2005
11055 and then Nkind (E_Call) = N_Procedure_Call_Statement;
11056
11057 if Is_Disp_Select then
11058 Extract_Dispatching_Call (E_Call, Call_Ent, Obj, Actuals, Formals);
11059
11060 Decls := New_List;
11061 Stmts := New_List;
11062
11063 -- Generate:
11064 -- B : Boolean := False;
11065
11066 B := Build_B (Loc, Decls);
11067
11068 -- Generate:
11069 -- C : Ada.Tags.Prim_Op_Kind;
11070
11071 C := Build_C (Loc, Decls);
11072
11073 -- Because the analysis of all statements was disabled, manually
11074 -- analyze the delay statement.
11075
11076 Analyze (D_Stat);
11077 D_Stat := Original_Node (D_Stat);
11078
11079 else
11080 -- Build an entry call using Simple_Entry_Call
11081
11082 Extract_Entry (E_Call, Concval, Ename, Index);
11083 Build_Simple_Entry_Call (E_Call, Concval, Ename, Index);
11084
11085 Decls := Declarations (E_Call);
11086 Stmts := Statements (Handled_Statement_Sequence (E_Call));
11087
11088 if No (Decls) then
11089 Decls := New_List;
11090 end if;
11091
11092 -- Generate:
11093 -- B : Boolean;
11094
11095 B := Make_Defining_Identifier (Loc, Name_uB);
11096
11097 Prepend_To (Decls,
11098 Make_Object_Declaration (Loc,
11099 Defining_Identifier =>
11100 B,
11101 Object_Definition =>
11102 New_Reference_To (Standard_Boolean, Loc)));
11103 end if;
11104
11105 -- Duration and mode processing
11106
11107 D_Type := Base_Type (Etype (Expression (D_Stat)));
11108
11109 -- Use the type of the delay expression (Calendar or Real_Time) to
11110 -- generate the appropriate conversion.
11111
11112 if Nkind (D_Stat) = N_Delay_Relative_Statement then
11113 D_Disc := Make_Integer_Literal (Loc, 0);
11114 D_Conv := Relocate_Node (Expression (D_Stat));
11115
11116 elsif Is_RTE (D_Type, RO_CA_Time) then
11117 D_Disc := Make_Integer_Literal (Loc, 1);
11118 D_Conv := Make_Function_Call (Loc,
11119 New_Reference_To (RTE (RO_CA_To_Duration), Loc),
11120 New_List (New_Copy (Expression (D_Stat))));
11121
11122 else pragma Assert (Is_RTE (D_Type, RO_RT_Time));
11123 D_Disc := Make_Integer_Literal (Loc, 2);
11124 D_Conv := Make_Function_Call (Loc,
11125 New_Reference_To (RTE (RO_RT_To_Duration), Loc),
11126 New_List (New_Copy (Expression (D_Stat))));
11127 end if;
11128
11129 D := Make_Temporary (Loc, 'D');
11130
11131 -- Generate:
11132 -- D : Duration;
11133
11134 Append_To (Decls,
11135 Make_Object_Declaration (Loc,
11136 Defining_Identifier =>
11137 D,
11138 Object_Definition =>
11139 New_Reference_To (Standard_Duration, Loc)));
11140
11141 M := Make_Temporary (Loc, 'M');
11142
11143 -- Generate:
11144 -- M : Integer := (0 | 1 | 2);
11145
11146 Append_To (Decls,
11147 Make_Object_Declaration (Loc,
11148 Defining_Identifier =>
11149 M,
11150 Object_Definition =>
11151 New_Reference_To (Standard_Integer, Loc),
11152 Expression =>
11153 D_Disc));
11154
11155 -- Do the assignment at this stage only because the evaluation of the
11156 -- expression must not occur before (see ACVC C97302A).
11157
11158 Append_To (Stmts,
11159 Make_Assignment_Statement (Loc,
11160 Name =>
11161 New_Reference_To (D, Loc),
11162 Expression =>
11163 D_Conv));
11164
11165 -- Parameter block processing
11166
11167 -- Manually create the parameter block for dispatching calls. In the
11168 -- case of entries, the block has already been created during the call
11169 -- to Build_Simple_Entry_Call.
11170
11171 if Is_Disp_Select then
11172
11173 -- Tagged kind processing, generate:
11174 -- K : Ada.Tags.Tagged_Kind :=
11175 -- Ada.Tags.Get_Tagged_Kind (Ada.Tags.Tag <object>));
11176
11177 K := Build_K (Loc, Decls, Obj);
11178
11179 Blk_Typ := Build_Parameter_Block (Loc, Actuals, Formals, Decls);
11180 P := Parameter_Block_Pack
11181 (Loc, Blk_Typ, Actuals, Formals, Decls, Stmts);
11182
11183 -- Dispatch table slot processing, generate:
11184 -- S : Integer;
11185
11186 S := Build_S (Loc, Decls);
11187
11188 -- Generate:
11189 -- S := Ada.Tags.Get_Offset_Index
11190 -- (Ada.Tags.Tag (<object>), DT_Position (Call_Ent));
11191
11192 Conc_Typ_Stmts :=
11193 New_List (Build_S_Assignment (Loc, S, Obj, Call_Ent));
11194
11195 -- Generate:
11196 -- _Disp_Timed_Select (<object>, S, P'Address, D, M, C, B);
11197
11198 -- where Obj is the controlling formal parameter, S is the dispatch
11199 -- table slot number of the dispatching operation, P is the wrapped
11200 -- parameter block, D is the duration, M is the duration mode, C is
11201 -- the call kind and B is the call status.
11202
11203 Params := New_List;
11204
11205 Append_To (Params, New_Copy_Tree (Obj));
11206 Append_To (Params, New_Reference_To (S, Loc));
11207 Append_To (Params, Make_Attribute_Reference (Loc,
11208 Prefix => New_Reference_To (P, Loc),
11209 Attribute_Name => Name_Address));
11210 Append_To (Params, New_Reference_To (D, Loc));
11211 Append_To (Params, New_Reference_To (M, Loc));
11212 Append_To (Params, New_Reference_To (C, Loc));
11213 Append_To (Params, New_Reference_To (B, Loc));
11214
11215 Append_To (Conc_Typ_Stmts,
11216 Make_Procedure_Call_Statement (Loc,
11217 Name =>
11218 New_Reference_To (
11219 Find_Prim_Op (Etype (Etype (Obj)),
11220 Name_uDisp_Timed_Select),
11221 Loc),
11222 Parameter_Associations =>
11223 Params));
11224
11225 -- Generate:
11226 -- if C = POK_Protected_Entry
11227 -- or else C = POK_Task_Entry
11228 -- then
11229 -- Param1 := P.Param1;
11230 -- ...
11231 -- ParamN := P.ParamN;
11232 -- end if;
11233
11234 Unpack := Parameter_Block_Unpack (Loc, P, Actuals, Formals);
11235
11236 -- Generate the if statement only when the packed parameters need
11237 -- explicit assignments to their corresponding actuals.
11238
11239 if Present (Unpack) then
11240 Append_To (Conc_Typ_Stmts,
11241 Make_If_Statement (Loc,
11242
11243 Condition =>
11244 Make_Or_Else (Loc,
11245 Left_Opnd =>
11246 Make_Op_Eq (Loc,
11247 Left_Opnd =>
11248 New_Reference_To (C, Loc),
11249 Right_Opnd =>
11250 New_Reference_To (RTE (
11251 RE_POK_Protected_Entry), Loc)),
11252 Right_Opnd =>
11253 Make_Op_Eq (Loc,
11254 Left_Opnd =>
11255 New_Reference_To (C, Loc),
11256 Right_Opnd =>
11257 New_Reference_To (RTE (RE_POK_Task_Entry), Loc))),
11258
11259 Then_Statements =>
11260 Unpack));
11261 end if;
11262
11263 -- Generate:
11264
11265 -- if B then
11266 -- if C = POK_Procedure
11267 -- or else C = POK_Protected_Procedure
11268 -- or else C = POK_Task_Procedure
11269 -- then
11270 -- <dispatching-call>
11271 -- end if;
11272 -- <triggering-statements>
11273 -- else
11274 -- <timed-statements>
11275 -- end if;
11276
11277 N_Stats := New_Copy_List_Tree (E_Stats);
11278
11279 Prepend_To (N_Stats,
11280 Make_If_Statement (Loc,
11281
11282 Condition =>
11283 Make_Or_Else (Loc,
11284 Left_Opnd =>
11285 Make_Op_Eq (Loc,
11286 Left_Opnd =>
11287 New_Reference_To (C, Loc),
11288 Right_Opnd =>
11289 New_Reference_To (RTE (RE_POK_Procedure), Loc)),
11290 Right_Opnd =>
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 (
11298 RE_POK_Protected_Procedure), Loc)),
11299 Right_Opnd =>
11300 Make_Op_Eq (Loc,
11301 Left_Opnd =>
11302 New_Reference_To (C, Loc),
11303 Right_Opnd =>
11304 New_Reference_To (RTE (
11305 RE_POK_Task_Procedure), Loc)))),
11306
11307 Then_Statements =>
11308 New_List (E_Call)));
11309
11310 Append_To (Conc_Typ_Stmts,
11311 Make_If_Statement (Loc,
11312 Condition => New_Reference_To (B, Loc),
11313 Then_Statements => N_Stats,
11314 Else_Statements => D_Stats));
11315
11316 -- Generate:
11317 -- <dispatching-call>;
11318 -- <triggering-statements>
11319
11320 Lim_Typ_Stmts := New_Copy_List_Tree (E_Stats);
11321 Prepend_To (Lim_Typ_Stmts, New_Copy_Tree (E_Call));
11322
11323 -- Generate:
11324 -- if K = Ada.Tags.TK_Limited_Tagged then
11325 -- Lim_Typ_Stmts
11326 -- else
11327 -- Conc_Typ_Stmts
11328 -- end if;
11329
11330 Append_To (Stmts,
11331 Make_If_Statement (Loc,
11332 Condition =>
11333 Make_Op_Eq (Loc,
11334 Left_Opnd =>
11335 New_Reference_To (K, Loc),
11336 Right_Opnd =>
11337 New_Reference_To (RTE (RE_TK_Limited_Tagged), Loc)),
11338
11339 Then_Statements =>
11340 Lim_Typ_Stmts,
11341
11342 Else_Statements =>
11343 Conc_Typ_Stmts));
11344
11345 else
11346 -- Skip assignments to temporaries created for in-out parameters.
11347 -- This makes unwarranted assumptions about the shape of the expanded
11348 -- tree for the call, and should be cleaned up ???
11349
11350 Stmt := First (Stmts);
11351 while Nkind (Stmt) /= N_Procedure_Call_Statement loop
11352 Next (Stmt);
11353 end loop;
11354
11355 -- Do the assignment at this stage only because the evaluation
11356 -- of the expression must not occur before (see ACVC C97302A).
11357
11358 Insert_Before (Stmt,
11359 Make_Assignment_Statement (Loc,
11360 Name => New_Reference_To (D, Loc),
11361 Expression => D_Conv));
11362
11363 Call := Stmt;
11364 Params := Parameter_Associations (Call);
11365
11366 -- For a protected type, we build a Timed_Protected_Entry_Call
11367
11368 if Is_Protected_Type (Etype (Concval)) then
11369
11370 -- Create a new call statement
11371
11372 Param := First (Params);
11373 while Present (Param)
11374 and then not Is_RTE (Etype (Param), RE_Call_Modes)
11375 loop
11376 Next (Param);
11377 end loop;
11378
11379 Dummy := Remove_Next (Next (Param));
11380
11381 -- Remove garbage is following the Cancel_Param if present
11382
11383 Dummy := Next (Param);
11384
11385 -- Remove the mode of the Protected_Entry_Call call, then remove
11386 -- the Communication_Block of the Protected_Entry_Call call, and
11387 -- finally add Duration and a Delay_Mode parameter
11388
11389 pragma Assert (Present (Param));
11390 Rewrite (Param, New_Reference_To (D, Loc));
11391
11392 Rewrite (Dummy, New_Reference_To (M, Loc));
11393
11394 -- Add a Boolean flag for successful entry call
11395
11396 Append_To (Params, New_Reference_To (B, Loc));
11397
11398 case Corresponding_Runtime_Package (Etype (Concval)) is
11399 when System_Tasking_Protected_Objects_Entries =>
11400 Rewrite (Call,
11401 Make_Procedure_Call_Statement (Loc,
11402 Name =>
11403 New_Reference_To
11404 (RTE (RE_Timed_Protected_Entry_Call), Loc),
11405 Parameter_Associations => Params));
11406
11407 when System_Tasking_Protected_Objects_Single_Entry =>
11408 Param := First (Params);
11409 while Present (Param)
11410 and then not
11411 Is_RTE (Etype (Param), RE_Protected_Entry_Index)
11412 loop
11413 Next (Param);
11414 end loop;
11415
11416 Remove (Param);
11417
11418 Rewrite (Call,
11419 Make_Procedure_Call_Statement (Loc,
11420 Name => New_Reference_To (
11421 RTE (RE_Timed_Protected_Single_Entry_Call), Loc),
11422 Parameter_Associations => Params));
11423
11424 when others =>
11425 raise Program_Error;
11426 end case;
11427
11428 -- For the task case, build a Timed_Task_Entry_Call
11429
11430 else
11431 -- Create a new call statement
11432
11433 Append_To (Params, New_Reference_To (D, Loc));
11434 Append_To (Params, New_Reference_To (M, Loc));
11435 Append_To (Params, New_Reference_To (B, Loc));
11436
11437 Rewrite (Call,
11438 Make_Procedure_Call_Statement (Loc,
11439 Name =>
11440 New_Reference_To (RTE (RE_Timed_Task_Entry_Call), Loc),
11441 Parameter_Associations => Params));
11442 end if;
11443
11444 Append_To (Stmts,
11445 Make_Implicit_If_Statement (N,
11446 Condition => New_Reference_To (B, Loc),
11447 Then_Statements => E_Stats,
11448 Else_Statements => D_Stats));
11449 end if;
11450
11451 Rewrite (N,
11452 Make_Block_Statement (Loc,
11453 Declarations => Decls,
11454 Handled_Statement_Sequence =>
11455 Make_Handled_Sequence_Of_Statements (Loc, Stmts)));
11456
11457 Analyze (N);
11458 end Expand_N_Timed_Entry_Call;
11459
11460 ----------------------------------------
11461 -- Expand_Protected_Body_Declarations --
11462 ----------------------------------------
11463
11464 procedure Expand_Protected_Body_Declarations
11465 (N : Node_Id;
11466 Spec_Id : Entity_Id)
11467 is
11468 begin
11469 if No_Run_Time_Mode then
11470 Error_Msg_CRT ("protected body", N);
11471 return;
11472
11473 elsif Expander_Active then
11474
11475 -- Associate discriminals with the first subprogram or entry body to
11476 -- be expanded.
11477
11478 if Present (First_Protected_Operation (Declarations (N))) then
11479 Set_Discriminals (Parent (Spec_Id));
11480 end if;
11481 end if;
11482 end Expand_Protected_Body_Declarations;
11483
11484 -------------------------
11485 -- External_Subprogram --
11486 -------------------------
11487
11488 function External_Subprogram (E : Entity_Id) return Entity_Id is
11489 Subp : constant Entity_Id := Protected_Body_Subprogram (E);
11490
11491 begin
11492 -- The internal and external subprograms follow each other on the entity
11493 -- chain. Note that previously private operations had no separate
11494 -- external subprogram. We now create one in all cases, because a
11495 -- private operation may actually appear in an external call, through
11496 -- a 'Access reference used for a callback.
11497
11498 -- If the operation is a function that returns an anonymous access type,
11499 -- the corresponding itype appears before the operation, and must be
11500 -- skipped.
11501
11502 -- This mechanism is fragile, there should be a real link between the
11503 -- two versions of the operation, but there is no place to put it ???
11504
11505 if Is_Access_Type (Next_Entity (Subp)) then
11506 return Next_Entity (Next_Entity (Subp));
11507 else
11508 return Next_Entity (Subp);
11509 end if;
11510 end External_Subprogram;
11511
11512 ------------------------------
11513 -- Extract_Dispatching_Call --
11514 ------------------------------
11515
11516 procedure Extract_Dispatching_Call
11517 (N : Node_Id;
11518 Call_Ent : out Entity_Id;
11519 Object : out Entity_Id;
11520 Actuals : out List_Id;
11521 Formals : out List_Id)
11522 is
11523 Call_Nam : Node_Id;
11524
11525 begin
11526 pragma Assert (Nkind (N) = N_Procedure_Call_Statement);
11527
11528 if Present (Original_Node (N)) then
11529 Call_Nam := Name (Original_Node (N));
11530 else
11531 Call_Nam := Name (N);
11532 end if;
11533
11534 -- Retrieve the name of the dispatching procedure. It contains the
11535 -- dispatch table slot number.
11536
11537 loop
11538 case Nkind (Call_Nam) is
11539 when N_Identifier =>
11540 exit;
11541
11542 when N_Selected_Component =>
11543 Call_Nam := Selector_Name (Call_Nam);
11544
11545 when others =>
11546 raise Program_Error;
11547
11548 end case;
11549 end loop;
11550
11551 Actuals := Parameter_Associations (N);
11552 Call_Ent := Entity (Call_Nam);
11553 Formals := Parameter_Specifications (Parent (Call_Ent));
11554 Object := First (Actuals);
11555
11556 if Present (Original_Node (Object)) then
11557 Object := Original_Node (Object);
11558 end if;
11559
11560 -- If the type of the dispatching object is an access type then return
11561 -- an explicit dereference.
11562
11563 if Is_Access_Type (Etype (Object)) then
11564 Object := Make_Explicit_Dereference (Sloc (N), Object);
11565 Analyze (Object);
11566 end if;
11567 end Extract_Dispatching_Call;
11568
11569 -------------------
11570 -- Extract_Entry --
11571 -------------------
11572
11573 procedure Extract_Entry
11574 (N : Node_Id;
11575 Concval : out Node_Id;
11576 Ename : out Node_Id;
11577 Index : out Node_Id)
11578 is
11579 Nam : constant Node_Id := Name (N);
11580
11581 begin
11582 -- For a simple entry, the name is a selected component, with the
11583 -- prefix being the task value, and the selector being the entry.
11584
11585 if Nkind (Nam) = N_Selected_Component then
11586 Concval := Prefix (Nam);
11587 Ename := Selector_Name (Nam);
11588 Index := Empty;
11589
11590 -- For a member of an entry family, the name is an indexed component
11591 -- where the prefix is a selected component, whose prefix in turn is
11592 -- the task value, and whose selector is the entry family. The single
11593 -- expression in the expressions list of the indexed component is the
11594 -- subscript for the family.
11595
11596 else pragma Assert (Nkind (Nam) = N_Indexed_Component);
11597 Concval := Prefix (Prefix (Nam));
11598 Ename := Selector_Name (Prefix (Nam));
11599 Index := First (Expressions (Nam));
11600 end if;
11601 end Extract_Entry;
11602
11603 -------------------
11604 -- Family_Offset --
11605 -------------------
11606
11607 function Family_Offset
11608 (Loc : Source_Ptr;
11609 Hi : Node_Id;
11610 Lo : Node_Id;
11611 Ttyp : Entity_Id;
11612 Cap : Boolean) return Node_Id
11613 is
11614 Ityp : Entity_Id;
11615 Real_Hi : Node_Id;
11616 Real_Lo : Node_Id;
11617
11618 function Convert_Discriminant_Ref (Bound : Node_Id) return Node_Id;
11619 -- If one of the bounds is a reference to a discriminant, replace with
11620 -- corresponding discriminal of type. Within the body of a task retrieve
11621 -- the renamed discriminant by simple visibility, using its generated
11622 -- name. Within a protected object, find the original discriminant and
11623 -- replace it with the discriminal of the current protected operation.
11624
11625 ------------------------------
11626 -- Convert_Discriminant_Ref --
11627 ------------------------------
11628
11629 function Convert_Discriminant_Ref (Bound : Node_Id) return Node_Id is
11630 Loc : constant Source_Ptr := Sloc (Bound);
11631 B : Node_Id;
11632 D : Entity_Id;
11633
11634 begin
11635 if Is_Entity_Name (Bound)
11636 and then Ekind (Entity (Bound)) = E_Discriminant
11637 then
11638 if Is_Task_Type (Ttyp)
11639 and then Has_Completion (Ttyp)
11640 then
11641 B := Make_Identifier (Loc, Chars (Entity (Bound)));
11642 Find_Direct_Name (B);
11643
11644 elsif Is_Protected_Type (Ttyp) then
11645 D := First_Discriminant (Ttyp);
11646 while Chars (D) /= Chars (Entity (Bound)) loop
11647 Next_Discriminant (D);
11648 end loop;
11649
11650 B := New_Reference_To (Discriminal (D), Loc);
11651
11652 else
11653 B := New_Reference_To (Discriminal (Entity (Bound)), Loc);
11654 end if;
11655
11656 elsif Nkind (Bound) = N_Attribute_Reference then
11657 return Bound;
11658
11659 else
11660 B := New_Copy_Tree (Bound);
11661 end if;
11662
11663 return
11664 Make_Attribute_Reference (Loc,
11665 Attribute_Name => Name_Pos,
11666 Prefix => New_Occurrence_Of (Etype (Bound), Loc),
11667 Expressions => New_List (B));
11668 end Convert_Discriminant_Ref;
11669
11670 -- Start of processing for Family_Offset
11671
11672 begin
11673 Real_Hi := Convert_Discriminant_Ref (Hi);
11674 Real_Lo := Convert_Discriminant_Ref (Lo);
11675
11676 if Cap then
11677 if Is_Task_Type (Ttyp) then
11678 Ityp := RTE (RE_Task_Entry_Index);
11679 else
11680 Ityp := RTE (RE_Protected_Entry_Index);
11681 end if;
11682
11683 Real_Hi :=
11684 Make_Attribute_Reference (Loc,
11685 Prefix => New_Reference_To (Ityp, Loc),
11686 Attribute_Name => Name_Min,
11687 Expressions => New_List (
11688 Real_Hi,
11689 Make_Integer_Literal (Loc, Entry_Family_Bound - 1)));
11690
11691 Real_Lo :=
11692 Make_Attribute_Reference (Loc,
11693 Prefix => New_Reference_To (Ityp, Loc),
11694 Attribute_Name => Name_Max,
11695 Expressions => New_List (
11696 Real_Lo,
11697 Make_Integer_Literal (Loc, -Entry_Family_Bound)));
11698 end if;
11699
11700 return Make_Op_Subtract (Loc, Real_Hi, Real_Lo);
11701 end Family_Offset;
11702
11703 -----------------
11704 -- Family_Size --
11705 -----------------
11706
11707 function Family_Size
11708 (Loc : Source_Ptr;
11709 Hi : Node_Id;
11710 Lo : Node_Id;
11711 Ttyp : Entity_Id;
11712 Cap : Boolean) return Node_Id
11713 is
11714 Ityp : Entity_Id;
11715
11716 begin
11717 if Is_Task_Type (Ttyp) then
11718 Ityp := RTE (RE_Task_Entry_Index);
11719 else
11720 Ityp := RTE (RE_Protected_Entry_Index);
11721 end if;
11722
11723 return
11724 Make_Attribute_Reference (Loc,
11725 Prefix => New_Reference_To (Ityp, Loc),
11726 Attribute_Name => Name_Max,
11727 Expressions => New_List (
11728 Make_Op_Add (Loc,
11729 Left_Opnd =>
11730 Family_Offset (Loc, Hi, Lo, Ttyp, Cap),
11731 Right_Opnd =>
11732 Make_Integer_Literal (Loc, 1)),
11733 Make_Integer_Literal (Loc, 0)));
11734 end Family_Size;
11735
11736 -----------------------
11737 -- Find_Master_Scope --
11738 -----------------------
11739
11740 function Find_Master_Scope (E : Entity_Id) return Entity_Id is
11741 S : Entity_Id;
11742
11743 begin
11744 -- In Ada2005, the master is the innermost enclosing scope that is not
11745 -- transient. If the enclosing block is the rewriting of a call or the
11746 -- scope is an extended return statement this is valid master. The
11747 -- master in an extended return is only used within the return, and is
11748 -- subsequently overwritten in Move_Activation_Chain, but it must exist
11749 -- now before that overwriting occurs.
11750
11751 S := Scope (E);
11752
11753 if Ada_Version >= Ada_2005 then
11754 while Is_Internal (S) loop
11755 if Nkind (Parent (S)) = N_Block_Statement
11756 and then
11757 Nkind (Original_Node (Parent (S))) = N_Procedure_Call_Statement
11758 then
11759 exit;
11760
11761 elsif Ekind (S) = E_Return_Statement then
11762 exit;
11763
11764 else
11765 S := Scope (S);
11766 end if;
11767 end loop;
11768 end if;
11769
11770 return S;
11771 end Find_Master_Scope;
11772
11773 -----------------------------------
11774 -- Find_Task_Or_Protected_Pragma --
11775 -----------------------------------
11776
11777 function Find_Task_Or_Protected_Pragma
11778 (T : Node_Id;
11779 P : Name_Id) return Node_Id
11780 is
11781 N : Node_Id;
11782
11783 begin
11784 N := First (Visible_Declarations (T));
11785 while Present (N) loop
11786 if Nkind (N) = N_Pragma then
11787 if Pragma_Name (N) = P then
11788 return N;
11789
11790 elsif P = Name_Priority
11791 and then Pragma_Name (N) = Name_Interrupt_Priority
11792 then
11793 return N;
11794
11795 else
11796 Next (N);
11797 end if;
11798
11799 else
11800 Next (N);
11801 end if;
11802 end loop;
11803
11804 N := First (Private_Declarations (T));
11805 while Present (N) loop
11806 if Nkind (N) = N_Pragma then
11807 if Pragma_Name (N) = P then
11808 return N;
11809
11810 elsif P = Name_Priority
11811 and then Pragma_Name (N) = Name_Interrupt_Priority
11812 then
11813 return N;
11814
11815 else
11816 Next (N);
11817 end if;
11818
11819 else
11820 Next (N);
11821 end if;
11822 end loop;
11823
11824 raise Program_Error;
11825 end Find_Task_Or_Protected_Pragma;
11826
11827 -------------------------------
11828 -- First_Protected_Operation --
11829 -------------------------------
11830
11831 function First_Protected_Operation (D : List_Id) return Node_Id is
11832 First_Op : Node_Id;
11833
11834 begin
11835 First_Op := First (D);
11836 while Present (First_Op)
11837 and then not Nkind_In (First_Op, N_Subprogram_Body, N_Entry_Body)
11838 loop
11839 Next (First_Op);
11840 end loop;
11841
11842 return First_Op;
11843 end First_Protected_Operation;
11844
11845 ---------------------------------------
11846 -- Install_Private_Data_Declarations --
11847 ---------------------------------------
11848
11849 procedure Install_Private_Data_Declarations
11850 (Loc : Source_Ptr;
11851 Spec_Id : Entity_Id;
11852 Conc_Typ : Entity_Id;
11853 Body_Nod : Node_Id;
11854 Decls : List_Id;
11855 Barrier : Boolean := False;
11856 Family : Boolean := False)
11857 is
11858 Is_Protected : constant Boolean := Is_Protected_Type (Conc_Typ);
11859 Decl : Node_Id;
11860 Def : Node_Id;
11861 Insert_Node : Node_Id := Empty;
11862 Obj_Ent : Entity_Id;
11863
11864 procedure Add (Decl : Node_Id);
11865 -- Add a single declaration after Insert_Node. If this is the first
11866 -- addition, Decl is added to the front of Decls and it becomes the
11867 -- insertion node.
11868
11869 function Replace_Bound (Bound : Node_Id) return Node_Id;
11870 -- The bounds of an entry index may depend on discriminants, create a
11871 -- reference to the corresponding prival. Otherwise return a duplicate
11872 -- of the original bound.
11873
11874 ---------
11875 -- Add --
11876 ---------
11877
11878 procedure Add (Decl : Node_Id) is
11879 begin
11880 if No (Insert_Node) then
11881 Prepend_To (Decls, Decl);
11882 else
11883 Insert_After (Insert_Node, Decl);
11884 end if;
11885
11886 Insert_Node := Decl;
11887 end Add;
11888
11889 --------------------------
11890 -- Replace_Discriminant --
11891 --------------------------
11892
11893 function Replace_Bound (Bound : Node_Id) return Node_Id is
11894 begin
11895 if Nkind (Bound) = N_Identifier
11896 and then Is_Discriminal (Entity (Bound))
11897 then
11898 return Make_Identifier (Loc, Chars (Entity (Bound)));
11899 else
11900 return Duplicate_Subexpr (Bound);
11901 end if;
11902 end Replace_Bound;
11903
11904 -- Start of processing for Install_Private_Data_Declarations
11905
11906 begin
11907 -- Step 1: Retrieve the concurrent object entity. Obj_Ent can denote
11908 -- formal parameter _O, _object or _task depending on the context.
11909
11910 Obj_Ent := Concurrent_Object (Spec_Id, Conc_Typ);
11911
11912 -- Special processing of _O for barrier functions, protected entries
11913 -- and families.
11914
11915 if Barrier
11916 or else
11917 (Is_Protected
11918 and then
11919 (Ekind (Spec_Id) = E_Entry
11920 or else Ekind (Spec_Id) = E_Entry_Family))
11921 then
11922 declare
11923 Conc_Rec : constant Entity_Id :=
11924 Corresponding_Record_Type (Conc_Typ);
11925 Typ_Id : constant Entity_Id :=
11926 Make_Defining_Identifier (Loc,
11927 New_External_Name (Chars (Conc_Rec), 'P'));
11928 begin
11929 -- Generate:
11930 -- type prot_typVP is access prot_typV;
11931
11932 Decl :=
11933 Make_Full_Type_Declaration (Loc,
11934 Defining_Identifier => Typ_Id,
11935 Type_Definition =>
11936 Make_Access_To_Object_Definition (Loc,
11937 Subtype_Indication =>
11938 New_Reference_To (Conc_Rec, Loc)));
11939 Add (Decl);
11940
11941 -- Generate:
11942 -- _object : prot_typVP := prot_typV (_O);
11943
11944 Decl :=
11945 Make_Object_Declaration (Loc,
11946 Defining_Identifier =>
11947 Make_Defining_Identifier (Loc, Name_uObject),
11948 Object_Definition => New_Reference_To (Typ_Id, Loc),
11949 Expression =>
11950 Unchecked_Convert_To (Typ_Id,
11951 New_Reference_To (Obj_Ent, Loc)));
11952 Add (Decl);
11953
11954 -- Set the reference to the concurrent object
11955
11956 Obj_Ent := Defining_Identifier (Decl);
11957 end;
11958 end if;
11959
11960 -- Step 2: Create the Protection object and build its declaration for
11961 -- any protected entry (family) of subprogram.
11962
11963 if Is_Protected then
11964 declare
11965 Prot_Ent : constant Entity_Id := Make_Temporary (Loc, 'R');
11966 Prot_Typ : RE_Id;
11967
11968 begin
11969 Set_Protection_Object (Spec_Id, Prot_Ent);
11970
11971 -- Determine the proper protection type
11972
11973 if Has_Attach_Handler (Conc_Typ)
11974 and then not Restricted_Profile
11975 then
11976 Prot_Typ := RE_Static_Interrupt_Protection;
11977
11978 elsif Has_Interrupt_Handler (Conc_Typ) then
11979 Prot_Typ := RE_Dynamic_Interrupt_Protection;
11980
11981 -- The type has explicit entries or generated primitive entry
11982 -- wrappers.
11983
11984 elsif Has_Entries (Conc_Typ)
11985 or else
11986 (Ada_Version >= Ada_2005
11987 and then Present (Interface_List (Parent (Conc_Typ))))
11988 then
11989 case Corresponding_Runtime_Package (Conc_Typ) is
11990 when System_Tasking_Protected_Objects_Entries =>
11991 Prot_Typ := RE_Protection_Entries;
11992
11993 when System_Tasking_Protected_Objects_Single_Entry =>
11994 Prot_Typ := RE_Protection_Entry;
11995
11996 when others =>
11997 raise Program_Error;
11998 end case;
11999
12000 else
12001 Prot_Typ := RE_Protection;
12002 end if;
12003
12004 -- Generate:
12005 -- conc_typR : protection_typ renames _object._object;
12006
12007 Decl :=
12008 Make_Object_Renaming_Declaration (Loc,
12009 Defining_Identifier => Prot_Ent,
12010 Subtype_Mark =>
12011 New_Reference_To (RTE (Prot_Typ), Loc),
12012 Name =>
12013 Make_Selected_Component (Loc,
12014 Prefix => New_Reference_To (Obj_Ent, Loc),
12015 Selector_Name => Make_Identifier (Loc, Name_uObject)));
12016 Add (Decl);
12017 end;
12018 end if;
12019
12020 -- Step 3: Add discriminant renamings (if any)
12021
12022 if Has_Discriminants (Conc_Typ) then
12023 declare
12024 D : Entity_Id;
12025
12026 begin
12027 D := First_Discriminant (Conc_Typ);
12028 while Present (D) loop
12029
12030 -- Adjust the source location
12031
12032 Set_Sloc (Discriminal (D), Loc);
12033
12034 -- Generate:
12035 -- discr_name : discr_typ renames _object.discr_name;
12036 -- or
12037 -- discr_name : discr_typ renames _task.discr_name;
12038
12039 Decl :=
12040 Make_Object_Renaming_Declaration (Loc,
12041 Defining_Identifier => Discriminal (D),
12042 Subtype_Mark => New_Reference_To (Etype (D), Loc),
12043 Name =>
12044 Make_Selected_Component (Loc,
12045 Prefix => New_Reference_To (Obj_Ent, Loc),
12046 Selector_Name => Make_Identifier (Loc, Chars (D))));
12047 Add (Decl);
12048
12049 Next_Discriminant (D);
12050 end loop;
12051 end;
12052 end if;
12053
12054 -- Step 4: Add private component renamings (if any)
12055
12056 if Is_Protected then
12057 Def := Protected_Definition (Parent (Conc_Typ));
12058
12059 if Present (Private_Declarations (Def)) then
12060 declare
12061 Comp : Node_Id;
12062 Comp_Id : Entity_Id;
12063 Decl_Id : Entity_Id;
12064
12065 begin
12066 Comp := First (Private_Declarations (Def));
12067 while Present (Comp) loop
12068 if Nkind (Comp) = N_Component_Declaration then
12069 Comp_Id := Defining_Identifier (Comp);
12070 Decl_Id :=
12071 Make_Defining_Identifier (Loc, Chars (Comp_Id));
12072
12073 -- Minimal decoration
12074
12075 if Ekind (Spec_Id) = E_Function then
12076 Set_Ekind (Decl_Id, E_Constant);
12077 else
12078 Set_Ekind (Decl_Id, E_Variable);
12079 end if;
12080
12081 Set_Prival (Comp_Id, Decl_Id);
12082 Set_Prival_Link (Decl_Id, Comp_Id);
12083 Set_Is_Aliased (Decl_Id, Is_Aliased (Comp_Id));
12084
12085 -- Generate:
12086 -- comp_name : comp_typ renames _object.comp_name;
12087
12088 Decl :=
12089 Make_Object_Renaming_Declaration (Loc,
12090 Defining_Identifier => Decl_Id,
12091 Subtype_Mark =>
12092 New_Reference_To (Etype (Comp_Id), Loc),
12093 Name =>
12094 Make_Selected_Component (Loc,
12095 Prefix =>
12096 New_Reference_To (Obj_Ent, Loc),
12097 Selector_Name =>
12098 Make_Identifier (Loc, Chars (Comp_Id))));
12099 Add (Decl);
12100 end if;
12101
12102 Next (Comp);
12103 end loop;
12104 end;
12105 end if;
12106 end if;
12107
12108 -- Step 5: Add the declaration of the entry index and the associated
12109 -- type for barrier functions and entry families.
12110
12111 if (Barrier and then Family)
12112 or else Ekind (Spec_Id) = E_Entry_Family
12113 then
12114 declare
12115 E : constant Entity_Id := Index_Object (Spec_Id);
12116 Index : constant Entity_Id :=
12117 Defining_Identifier (
12118 Entry_Index_Specification (
12119 Entry_Body_Formal_Part (Body_Nod)));
12120 Index_Con : constant Entity_Id :=
12121 Make_Defining_Identifier (Loc, Chars (Index));
12122 High : Node_Id;
12123 Index_Typ : Entity_Id;
12124 Low : Node_Id;
12125
12126 begin
12127 -- Minimal decoration
12128
12129 Set_Ekind (Index_Con, E_Constant);
12130 Set_Entry_Index_Constant (Index, Index_Con);
12131 Set_Discriminal_Link (Index_Con, Index);
12132
12133 -- Retrieve the bounds of the entry family
12134
12135 High := Type_High_Bound (Etype (Index));
12136 Low := Type_Low_Bound (Etype (Index));
12137
12138 -- In the simple case the entry family is given by a subtype
12139 -- mark and the index constant has the same type.
12140
12141 if Is_Entity_Name (Original_Node (
12142 Discrete_Subtype_Definition (Parent (Index))))
12143 then
12144 Index_Typ := Etype (Index);
12145
12146 -- Otherwise a new subtype declaration is required
12147
12148 else
12149 High := Replace_Bound (High);
12150 Low := Replace_Bound (Low);
12151
12152 Index_Typ := Make_Temporary (Loc, 'J');
12153
12154 -- Generate:
12155 -- subtype Jnn is <Etype of Index> range Low .. High;
12156
12157 Decl :=
12158 Make_Subtype_Declaration (Loc,
12159 Defining_Identifier => Index_Typ,
12160 Subtype_Indication =>
12161 Make_Subtype_Indication (Loc,
12162 Subtype_Mark =>
12163 New_Reference_To (Base_Type (Etype (Index)), Loc),
12164 Constraint =>
12165 Make_Range_Constraint (Loc,
12166 Range_Expression =>
12167 Make_Range (Loc, Low, High))));
12168 Add (Decl);
12169 end if;
12170
12171 Set_Etype (Index_Con, Index_Typ);
12172
12173 -- Create the object which designates the index:
12174 -- J : constant Jnn :=
12175 -- Jnn'Val (_E - <index expr> + Jnn'Pos (Jnn'First));
12176 --
12177 -- where Jnn is the subtype created above or the original type of
12178 -- the index, _E is a formal of the protected body subprogram and
12179 -- <index expr> is the index of the first family member.
12180
12181 Decl :=
12182 Make_Object_Declaration (Loc,
12183 Defining_Identifier => Index_Con,
12184 Constant_Present => True,
12185 Object_Definition =>
12186 New_Reference_To (Index_Typ, Loc),
12187
12188 Expression =>
12189 Make_Attribute_Reference (Loc,
12190 Prefix =>
12191 New_Reference_To (Index_Typ, Loc),
12192 Attribute_Name => Name_Val,
12193
12194 Expressions => New_List (
12195
12196 Make_Op_Add (Loc,
12197 Left_Opnd =>
12198 Make_Op_Subtract (Loc,
12199 Left_Opnd =>
12200 New_Reference_To (E, Loc),
12201 Right_Opnd =>
12202 Entry_Index_Expression (Loc,
12203 Defining_Identifier (Body_Nod),
12204 Empty, Conc_Typ)),
12205
12206 Right_Opnd =>
12207 Make_Attribute_Reference (Loc,
12208 Prefix =>
12209 New_Reference_To (Index_Typ, Loc),
12210 Attribute_Name => Name_Pos,
12211 Expressions => New_List (
12212 Make_Attribute_Reference (Loc,
12213 Prefix =>
12214 New_Reference_To (Index_Typ, Loc),
12215 Attribute_Name => Name_First)))))));
12216 Add (Decl);
12217 end;
12218 end if;
12219 end Install_Private_Data_Declarations;
12220
12221 ---------------------------------
12222 -- Is_Potentially_Large_Family --
12223 ---------------------------------
12224
12225 function Is_Potentially_Large_Family
12226 (Base_Index : Entity_Id;
12227 Conctyp : Entity_Id;
12228 Lo : Node_Id;
12229 Hi : Node_Id) return Boolean
12230 is
12231 begin
12232 return Scope (Base_Index) = Standard_Standard
12233 and then Base_Index = Base_Type (Standard_Integer)
12234 and then Has_Discriminants (Conctyp)
12235 and then Present
12236 (Discriminant_Default_Value (First_Discriminant (Conctyp)))
12237 and then
12238 (Denotes_Discriminant (Lo, True)
12239 or else Denotes_Discriminant (Hi, True));
12240 end Is_Potentially_Large_Family;
12241
12242 -------------------------------------
12243 -- Is_Private_Primitive_Subprogram --
12244 -------------------------------------
12245
12246 function Is_Private_Primitive_Subprogram (Id : Entity_Id) return Boolean is
12247 begin
12248 return
12249 (Ekind (Id) = E_Function or else Ekind (Id) = E_Procedure)
12250 and then Is_Private_Primitive (Id);
12251 end Is_Private_Primitive_Subprogram;
12252
12253 ------------------
12254 -- Index_Object --
12255 ------------------
12256
12257 function Index_Object (Spec_Id : Entity_Id) return Entity_Id is
12258 Bod_Subp : constant Entity_Id := Protected_Body_Subprogram (Spec_Id);
12259 Formal : Entity_Id;
12260
12261 begin
12262 Formal := First_Formal (Bod_Subp);
12263 while Present (Formal) loop
12264
12265 -- Look for formal parameter _E
12266
12267 if Chars (Formal) = Name_uE then
12268 return Formal;
12269 end if;
12270
12271 Next_Formal (Formal);
12272 end loop;
12273
12274 -- A protected body subprogram should always have the parameter in
12275 -- question.
12276
12277 raise Program_Error;
12278 end Index_Object;
12279
12280 --------------------------------
12281 -- Make_Initialize_Protection --
12282 --------------------------------
12283
12284 function Make_Initialize_Protection
12285 (Protect_Rec : Entity_Id) return List_Id
12286 is
12287 Loc : constant Source_Ptr := Sloc (Protect_Rec);
12288 P_Arr : Entity_Id;
12289 Pdef : Node_Id;
12290 Pdec : Node_Id;
12291 Ptyp : constant Node_Id :=
12292 Corresponding_Concurrent_Type (Protect_Rec);
12293 Args : List_Id;
12294 L : constant List_Id := New_List;
12295 Has_Entry : constant Boolean := Has_Entries (Ptyp);
12296 Restricted : constant Boolean := Restricted_Profile;
12297
12298 begin
12299 -- We may need two calls to properly initialize the object, one to
12300 -- Initialize_Protection, and possibly one to Install_Handlers if we
12301 -- have a pragma Attach_Handler.
12302
12303 -- Get protected declaration. In the case of a task type declaration,
12304 -- this is simply the parent of the protected type entity. In the single
12305 -- protected object declaration, this parent will be the implicit type,
12306 -- and we can find the corresponding single protected object declaration
12307 -- by searching forward in the declaration list in the tree.
12308
12309 -- Is the test for N_Single_Protected_Declaration needed here??? Nodes
12310 -- of this type should have been removed during semantic analysis.
12311
12312 Pdec := Parent (Ptyp);
12313 while not Nkind_In (Pdec, N_Protected_Type_Declaration,
12314 N_Single_Protected_Declaration)
12315 loop
12316 Next (Pdec);
12317 end loop;
12318
12319 -- Now we can find the object definition from this declaration
12320
12321 Pdef := Protected_Definition (Pdec);
12322
12323 -- Build the parameter list for the call. Note that _Init is the name
12324 -- of the formal for the object to be initialized, which is the task
12325 -- value record itself.
12326
12327 Args := New_List;
12328
12329 -- Object parameter. This is a pointer to the object of type
12330 -- Protection used by the GNARL to control the protected object.
12331
12332 Append_To (Args,
12333 Make_Attribute_Reference (Loc,
12334 Prefix =>
12335 Make_Selected_Component (Loc,
12336 Prefix => Make_Identifier (Loc, Name_uInit),
12337 Selector_Name => Make_Identifier (Loc, Name_uObject)),
12338 Attribute_Name => Name_Unchecked_Access));
12339
12340 -- Priority parameter. Set to Unspecified_Priority unless there is a
12341 -- priority pragma, in which case we take the value from the pragma,
12342 -- or there is an interrupt pragma and no priority pragma, and we
12343 -- set the ceiling to Interrupt_Priority'Last, an implementation-
12344 -- defined value, see D.3(10).
12345
12346 if Present (Pdef)
12347 and then Has_Pragma_Priority (Pdef)
12348 then
12349 declare
12350 Prio : constant Node_Id :=
12351 Expression
12352 (First
12353 (Pragma_Argument_Associations
12354 (Find_Task_Or_Protected_Pragma
12355 (Pdef, Name_Priority))));
12356 Temp : Entity_Id;
12357
12358 begin
12359 -- If priority is a static expression, then we can duplicate it
12360 -- with no problem and simply append it to the argument list.
12361
12362 if Is_Static_Expression (Prio) then
12363 Append_To (Args,
12364 Duplicate_Subexpr_No_Checks (Prio));
12365
12366 -- Otherwise, the priority may be a per-object expression, if it
12367 -- depends on a discriminant of the type. In this case, create
12368 -- local variable to capture the expression. Note that it is
12369 -- really necessary to create this variable explicitly. It might
12370 -- be thought that removing side effects would the appropriate
12371 -- approach, but that could generate declarations improperly
12372 -- placed in the enclosing scope.
12373
12374 -- Note: Use System.Any_Priority as the expected type for the
12375 -- non-static priority expression, in case the expression has not
12376 -- been analyzed yet (as occurs for example with pragma
12377 -- Interrupt_Priority).
12378
12379 else
12380 Temp := Make_Temporary (Loc, 'R', Prio);
12381 Append_To (L,
12382 Make_Object_Declaration (Loc,
12383 Defining_Identifier => Temp,
12384 Object_Definition =>
12385 New_Occurrence_Of (RTE (RE_Any_Priority), Loc),
12386 Expression => Relocate_Node (Prio)));
12387
12388 Append_To (Args, New_Occurrence_Of (Temp, Loc));
12389 end if;
12390 end;
12391
12392 -- When no priority is specified but an xx_Handler pragma is, we default
12393 -- to System.Interrupts.Default_Interrupt_Priority, see D.3(10).
12394
12395 elsif Has_Interrupt_Handler (Ptyp)
12396 or else Has_Attach_Handler (Ptyp)
12397 then
12398 Append_To (Args,
12399 New_Reference_To (RTE (RE_Default_Interrupt_Priority), Loc));
12400
12401 -- Normal case, no priority or xx_Handler specified, default priority
12402
12403 else
12404 Append_To (Args,
12405 New_Reference_To (RTE (RE_Unspecified_Priority), Loc));
12406 end if;
12407
12408 -- Test for Compiler_Info parameter. This parameter allows entry body
12409 -- procedures and barrier functions to be called from the runtime. It
12410 -- is a pointer to the record generated by the compiler to represent
12411 -- the protected object.
12412
12413 -- A protected type without entries that covers an interface and
12414 -- overrides the abstract routines with protected procedures is
12415 -- considered equivalent to a protected type with entries in the
12416 -- context of dispatching select statements.
12417
12418 if Has_Entry
12419 or else Has_Interrupt_Handler (Ptyp)
12420 or else Has_Attach_Handler (Ptyp)
12421 or else Has_Interfaces (Protect_Rec)
12422 then
12423 declare
12424 Pkg_Id : constant RTU_Id :=
12425 Corresponding_Runtime_Package (Ptyp);
12426 Called_Subp : RE_Id;
12427
12428 begin
12429 case Pkg_Id is
12430 when System_Tasking_Protected_Objects_Entries =>
12431 Called_Subp := RE_Initialize_Protection_Entries;
12432
12433 when System_Tasking_Protected_Objects =>
12434 Called_Subp := RE_Initialize_Protection;
12435
12436 when System_Tasking_Protected_Objects_Single_Entry =>
12437 Called_Subp := RE_Initialize_Protection_Entry;
12438
12439 when others =>
12440 raise Program_Error;
12441 end case;
12442
12443 if Has_Entry
12444 or else not Restricted
12445 or else Has_Interfaces (Protect_Rec)
12446 then
12447 Append_To (Args,
12448 Make_Attribute_Reference (Loc,
12449 Prefix => Make_Identifier (Loc, Name_uInit),
12450 Attribute_Name => Name_Address));
12451 end if;
12452
12453 -- Entry_Bodies parameter. This is a pointer to an array of
12454 -- pointers to the entry body procedures and barrier functions of
12455 -- the object. If the protected type has no entries this object
12456 -- will not exist, in this case, pass a null.
12457
12458 if Has_Entry then
12459 P_Arr := Entry_Bodies_Array (Ptyp);
12460
12461 Append_To (Args,
12462 Make_Attribute_Reference (Loc,
12463 Prefix => New_Reference_To (P_Arr, Loc),
12464 Attribute_Name => Name_Unrestricted_Access));
12465
12466 if Pkg_Id = System_Tasking_Protected_Objects_Entries then
12467
12468 -- Find index mapping function (clumsy but ok for now)
12469
12470 while Ekind (P_Arr) /= E_Function loop
12471 Next_Entity (P_Arr);
12472 end loop;
12473
12474 Append_To (Args,
12475 Make_Attribute_Reference (Loc,
12476 Prefix =>
12477 New_Reference_To (P_Arr, Loc),
12478 Attribute_Name => Name_Unrestricted_Access));
12479
12480 -- Build_Entry_Names generation flag. When set to true, the
12481 -- runtime will allocate an array to hold the string names
12482 -- of protected entries.
12483
12484 if not Restricted_Profile then
12485 if Entry_Names_OK then
12486 Append_To (Args,
12487 New_Reference_To (Standard_True, Loc));
12488 else
12489 Append_To (Args,
12490 New_Reference_To (Standard_False, Loc));
12491 end if;
12492 end if;
12493 end if;
12494
12495 elsif Pkg_Id = System_Tasking_Protected_Objects_Single_Entry then
12496 Append_To (Args, Make_Null (Loc));
12497
12498 elsif Pkg_Id = System_Tasking_Protected_Objects_Entries then
12499 Append_To (Args, Make_Null (Loc));
12500 Append_To (Args, Make_Null (Loc));
12501 Append_To (Args, New_Reference_To (Standard_False, Loc));
12502 end if;
12503
12504 Append_To (L,
12505 Make_Procedure_Call_Statement (Loc,
12506 Name => New_Reference_To (RTE (Called_Subp), Loc),
12507 Parameter_Associations => Args));
12508 end;
12509 else
12510 Append_To (L,
12511 Make_Procedure_Call_Statement (Loc,
12512 Name => New_Reference_To (RTE (RE_Initialize_Protection), Loc),
12513 Parameter_Associations => Args));
12514 end if;
12515
12516 if Has_Attach_Handler (Ptyp) then
12517
12518 -- We have a list of N Attach_Handler (ProcI, ExprI), and we have to
12519 -- make the following call:
12520
12521 -- Install_Handlers (_object,
12522 -- ((Expr1, Proc1'access), ...., (ExprN, ProcN'access));
12523
12524 -- or, in the case of Ravenscar:
12525
12526 -- Install_Restricted_Handlers
12527 -- ((Expr1, Proc1'access), ...., (ExprN, ProcN'access));
12528
12529 declare
12530 Args : constant List_Id := New_List;
12531 Table : constant List_Id := New_List;
12532 Ritem : Node_Id := First_Rep_Item (Ptyp);
12533
12534 begin
12535 -- Build the Attach_Handler table argument
12536
12537 while Present (Ritem) loop
12538 if Nkind (Ritem) = N_Pragma
12539 and then Pragma_Name (Ritem) = Name_Attach_Handler
12540 then
12541 declare
12542 Handler : constant Node_Id :=
12543 First (Pragma_Argument_Associations (Ritem));
12544
12545 Interrupt : constant Node_Id := Next (Handler);
12546 Expr : constant Node_Id := Expression (Interrupt);
12547
12548 begin
12549 Append_To (Table,
12550 Make_Aggregate (Loc, Expressions => New_List (
12551 Unchecked_Convert_To
12552 (RTE (RE_System_Interrupt_Id), Expr),
12553 Make_Attribute_Reference (Loc,
12554 Prefix => Make_Selected_Component (Loc,
12555 Make_Identifier (Loc, Name_uInit),
12556 Duplicate_Subexpr_No_Checks
12557 (Expression (Handler))),
12558 Attribute_Name => Name_Access))));
12559 end;
12560 end if;
12561
12562 Next_Rep_Item (Ritem);
12563 end loop;
12564
12565 -- Append the table argument we just built
12566
12567 Append_To (Args, Make_Aggregate (Loc, Table));
12568
12569 -- Append the Install_Handlers (or Install_Restricted_Handlers)
12570 -- call to the statements.
12571
12572 if Restricted then
12573 -- Call a simplified version of Install_Handlers to be used
12574 -- when the Ravenscar restrictions are in effect
12575 -- (Install_Restricted_Handlers).
12576
12577 Append_To (L,
12578 Make_Procedure_Call_Statement (Loc,
12579 Name =>
12580 New_Reference_To
12581 (RTE (RE_Install_Restricted_Handlers), Loc),
12582 Parameter_Associations => Args));
12583
12584 else
12585 -- First, prepends the _object argument
12586
12587 Prepend_To (Args,
12588 Make_Attribute_Reference (Loc,
12589 Prefix =>
12590 Make_Selected_Component (Loc,
12591 Prefix => Make_Identifier (Loc, Name_uInit),
12592 Selector_Name => Make_Identifier (Loc, Name_uObject)),
12593 Attribute_Name => Name_Unchecked_Access));
12594
12595 -- Then, insert call to Install_Handlers
12596
12597 Append_To (L,
12598 Make_Procedure_Call_Statement (Loc,
12599 Name => New_Reference_To (RTE (RE_Install_Handlers), Loc),
12600 Parameter_Associations => Args));
12601 end if;
12602 end;
12603 end if;
12604
12605 return L;
12606 end Make_Initialize_Protection;
12607
12608 ---------------------------
12609 -- Make_Task_Create_Call --
12610 ---------------------------
12611
12612 function Make_Task_Create_Call (Task_Rec : Entity_Id) return Node_Id is
12613 Loc : constant Source_Ptr := Sloc (Task_Rec);
12614 Args : List_Id;
12615 Ecount : Node_Id;
12616 Name : Node_Id;
12617 Tdec : Node_Id;
12618 Tdef : Node_Id;
12619 Tnam : Name_Id;
12620 Ttyp : Node_Id;
12621
12622 begin
12623 Ttyp := Corresponding_Concurrent_Type (Task_Rec);
12624 Tnam := Chars (Ttyp);
12625
12626 -- Get task declaration. In the case of a task type declaration, this is
12627 -- simply the parent of the task type entity. In the single task
12628 -- declaration, this parent will be the implicit type, and we can find
12629 -- the corresponding single task declaration by searching forward in the
12630 -- declaration list in the tree.
12631
12632 -- Is the test for N_Single_Task_Declaration needed here??? Nodes of
12633 -- this type should have been removed during semantic analysis.
12634
12635 Tdec := Parent (Ttyp);
12636 while not Nkind_In (Tdec, N_Task_Type_Declaration,
12637 N_Single_Task_Declaration)
12638 loop
12639 Next (Tdec);
12640 end loop;
12641
12642 -- Now we can find the task definition from this declaration
12643
12644 Tdef := Task_Definition (Tdec);
12645
12646 -- Build the parameter list for the call. Note that _Init is the name
12647 -- of the formal for the object to be initialized, which is the task
12648 -- value record itself.
12649
12650 Args := New_List;
12651
12652 -- Priority parameter. Set to Unspecified_Priority unless there is a
12653 -- priority pragma, in which case we take the value from the pragma.
12654
12655 if Present (Tdef) and then Has_Pragma_Priority (Tdef) then
12656 Append_To (Args,
12657 Make_Selected_Component (Loc,
12658 Prefix => Make_Identifier (Loc, Name_uInit),
12659 Selector_Name => Make_Identifier (Loc, Name_uPriority)));
12660 else
12661 Append_To (Args,
12662 New_Reference_To (RTE (RE_Unspecified_Priority), Loc));
12663 end if;
12664
12665 -- Optional Stack parameter
12666
12667 if Restricted_Profile then
12668
12669 -- If the stack has been preallocated by the expander then
12670 -- pass its address. Otherwise, pass a null address.
12671
12672 if Preallocated_Stacks_On_Target then
12673 Append_To (Args,
12674 Make_Attribute_Reference (Loc,
12675 Prefix =>
12676 Make_Selected_Component (Loc,
12677 Prefix => Make_Identifier (Loc, Name_uInit),
12678 Selector_Name => Make_Identifier (Loc, Name_uStack)),
12679 Attribute_Name => Name_Address));
12680
12681 else
12682 Append_To (Args,
12683 New_Reference_To (RTE (RE_Null_Address), Loc));
12684 end if;
12685 end if;
12686
12687 -- Size parameter. If no Storage_Size pragma is present, then
12688 -- the size is taken from the taskZ variable for the type, which
12689 -- is either Unspecified_Size, or has been reset by the use of
12690 -- a Storage_Size attribute definition clause. If a pragma is
12691 -- present, then the size is taken from the _Size field of the
12692 -- task value record, which was set from the pragma value.
12693
12694 if Present (Tdef)
12695 and then Has_Storage_Size_Pragma (Tdef)
12696 then
12697 Append_To (Args,
12698 Make_Selected_Component (Loc,
12699 Prefix => Make_Identifier (Loc, Name_uInit),
12700 Selector_Name => Make_Identifier (Loc, Name_uSize)));
12701
12702 else
12703 Append_To (Args,
12704 New_Reference_To (Storage_Size_Variable (Ttyp), Loc));
12705 end if;
12706
12707 -- Task_Info parameter. Set to Unspecified_Task_Info unless there is a
12708 -- Task_Info pragma, in which case we take the value from the pragma.
12709
12710 if Present (Tdef)
12711 and then Has_Task_Info_Pragma (Tdef)
12712 then
12713 Append_To (Args,
12714 Make_Selected_Component (Loc,
12715 Prefix => Make_Identifier (Loc, Name_uInit),
12716 Selector_Name => Make_Identifier (Loc, Name_uTask_Info)));
12717
12718 else
12719 Append_To (Args,
12720 New_Reference_To (RTE (RE_Unspecified_Task_Info), Loc));
12721 end if;
12722
12723 -- CPU parameter. Set to Unspecified_CPU unless there is a CPU pragma,
12724 -- in which case we take the value from the pragma. The parameter is
12725 -- passed as an Integer because in the case of unspecified CPU the
12726 -- value is not in the range of CPU_Range.
12727
12728 if Present (Tdef) and then Has_Pragma_CPU (Tdef) then
12729 Append_To (Args,
12730 Convert_To (Standard_Integer,
12731 Make_Selected_Component (Loc,
12732 Prefix => Make_Identifier (Loc, Name_uInit),
12733 Selector_Name => Make_Identifier (Loc, Name_uCPU))));
12734
12735 else
12736 Append_To (Args,
12737 New_Reference_To (RTE (RE_Unspecified_CPU), Loc));
12738 end if;
12739
12740 if not Restricted_Profile then
12741
12742 -- Deadline parameter. If no Relative_Deadline pragma is present,
12743 -- then the deadline is Time_Span_Zero. If a pragma is present, then
12744 -- the deadline is taken from the _Relative_Deadline field of the
12745 -- task value record, which was set from the pragma value. Note that
12746 -- this parameter must not be generated for the restricted profiles
12747 -- since Ravenscar does not allow deadlines.
12748
12749 -- Case where pragma Relative_Deadline applies: use given value
12750
12751 if Present (Tdef) and then Has_Relative_Deadline_Pragma (Tdef) then
12752 Append_To (Args,
12753 Make_Selected_Component (Loc,
12754 Prefix =>
12755 Make_Identifier (Loc, Name_uInit),
12756 Selector_Name =>
12757 Make_Identifier (Loc, Name_uRelative_Deadline)));
12758
12759 -- No pragma Relative_Deadline apply to the task
12760
12761 else
12762 Append_To (Args,
12763 New_Reference_To (RTE (RE_Time_Span_Zero), Loc));
12764 end if;
12765
12766 -- Number of entries. This is an expression of the form:
12767
12768 -- n + _Init.a'Length + _Init.a'B'Length + ...
12769
12770 -- where a,b... are the entry family names for the task definition
12771
12772 Ecount :=
12773 Build_Entry_Count_Expression
12774 (Ttyp,
12775 Component_Items
12776 (Component_List
12777 (Type_Definition
12778 (Parent (Corresponding_Record_Type (Ttyp))))),
12779 Loc);
12780 Append_To (Args, Ecount);
12781
12782 -- Master parameter. This is a reference to the _Master parameter of
12783 -- the initialization procedure, except in the case of the pragma
12784 -- Restrictions (No_Task_Hierarchy) where the value is fixed to
12785 -- System.Tasking.Library_Task_Level.
12786
12787 if Restriction_Active (No_Task_Hierarchy) = False then
12788 Append_To (Args, Make_Identifier (Loc, Name_uMaster));
12789 else
12790 Append_To (Args,
12791 New_Occurrence_Of (RTE (RE_Library_Task_Level), Loc));
12792 end if;
12793 end if;
12794
12795 -- State parameter. This is a pointer to the task body procedure. The
12796 -- required value is obtained by taking 'Unrestricted_Access of the task
12797 -- body procedure and converting it (with an unchecked conversion) to
12798 -- the type required by the task kernel. For further details, see the
12799 -- description of Expand_N_Task_Body. We use 'Unrestricted_Access rather
12800 -- than 'Address in order to avoid creating trampolines.
12801
12802 declare
12803 Body_Proc : constant Node_Id := Get_Task_Body_Procedure (Ttyp);
12804 Subp_Ptr_Typ : constant Node_Id :=
12805 Create_Itype (E_Access_Subprogram_Type, Tdec);
12806 Ref : constant Node_Id := Make_Itype_Reference (Loc);
12807
12808 begin
12809 Set_Directly_Designated_Type (Subp_Ptr_Typ, Body_Proc);
12810 Set_Etype (Subp_Ptr_Typ, Subp_Ptr_Typ);
12811
12812 -- Be sure to freeze a reference to the access-to-subprogram type,
12813 -- otherwise gigi will complain that it's in the wrong scope, because
12814 -- it's actually inside the init procedure for the record type that
12815 -- corresponds to the task type.
12816
12817 -- This processing is causing a crash in the .NET/JVM back ends that
12818 -- is not yet understood, so skip it in these cases ???
12819
12820 if VM_Target = No_VM then
12821 Set_Itype (Ref, Subp_Ptr_Typ);
12822 Append_Freeze_Action (Task_Rec, Ref);
12823
12824 Append_To (Args,
12825 Unchecked_Convert_To (RTE (RE_Task_Procedure_Access),
12826 Make_Qualified_Expression (Loc,
12827 Subtype_Mark => New_Reference_To (Subp_Ptr_Typ, Loc),
12828 Expression =>
12829 Make_Attribute_Reference (Loc,
12830 Prefix =>
12831 New_Occurrence_Of (Body_Proc, Loc),
12832 Attribute_Name => Name_Unrestricted_Access))));
12833
12834 -- For the .NET/JVM cases revert to the original code below ???
12835
12836 else
12837 Append_To (Args,
12838 Unchecked_Convert_To (RTE (RE_Task_Procedure_Access),
12839 Make_Attribute_Reference (Loc,
12840 Prefix =>
12841 New_Occurrence_Of (Body_Proc, Loc),
12842 Attribute_Name => Name_Address)));
12843 end if;
12844 end;
12845
12846 -- Discriminants parameter. This is just the address of the task
12847 -- value record itself (which contains the discriminant values
12848
12849 Append_To (Args,
12850 Make_Attribute_Reference (Loc,
12851 Prefix => Make_Identifier (Loc, Name_uInit),
12852 Attribute_Name => Name_Address));
12853
12854 -- Elaborated parameter. This is an access to the elaboration Boolean
12855
12856 Append_To (Args,
12857 Make_Attribute_Reference (Loc,
12858 Prefix => Make_Identifier (Loc, New_External_Name (Tnam, 'E')),
12859 Attribute_Name => Name_Unchecked_Access));
12860
12861 -- Chain parameter. This is a reference to the _Chain parameter of
12862 -- the initialization procedure.
12863
12864 Append_To (Args, Make_Identifier (Loc, Name_uChain));
12865
12866 -- Task name parameter. Take this from the _Task_Id parameter to the
12867 -- init call unless there is a Task_Name pragma, in which case we take
12868 -- the value from the pragma.
12869
12870 if Present (Tdef)
12871 and then Has_Task_Name_Pragma (Tdef)
12872 then
12873 -- Copy expression in full, because it may be dynamic and have
12874 -- side effects.
12875
12876 Append_To (Args,
12877 New_Copy_Tree
12878 (Expression (First
12879 (Pragma_Argument_Associations
12880 (Find_Task_Or_Protected_Pragma
12881 (Tdef, Name_Task_Name))))));
12882
12883 else
12884 Append_To (Args, Make_Identifier (Loc, Name_uTask_Name));
12885 end if;
12886
12887 -- Created_Task parameter. This is the _Task_Id field of the task
12888 -- record value
12889
12890 Append_To (Args,
12891 Make_Selected_Component (Loc,
12892 Prefix => Make_Identifier (Loc, Name_uInit),
12893 Selector_Name => Make_Identifier (Loc, Name_uTask_Id)));
12894
12895 -- Build_Entry_Names generation flag. When set to true, the runtime
12896 -- will allocate an array to hold the string names of task entries.
12897
12898 if not Restricted_Profile then
12899 if Has_Entries (Ttyp)
12900 and then Entry_Names_OK
12901 then
12902 Append_To (Args, New_Reference_To (Standard_True, Loc));
12903 else
12904 Append_To (Args, New_Reference_To (Standard_False, Loc));
12905 end if;
12906 end if;
12907
12908 if Restricted_Profile then
12909 Name := New_Reference_To (RTE (RE_Create_Restricted_Task), Loc);
12910 else
12911 Name := New_Reference_To (RTE (RE_Create_Task), Loc);
12912 end if;
12913
12914 return
12915 Make_Procedure_Call_Statement (Loc,
12916 Name => Name,
12917 Parameter_Associations => Args);
12918 end Make_Task_Create_Call;
12919
12920 ------------------------------
12921 -- Next_Protected_Operation --
12922 ------------------------------
12923
12924 function Next_Protected_Operation (N : Node_Id) return Node_Id is
12925 Next_Op : Node_Id;
12926
12927 begin
12928 Next_Op := Next (N);
12929 while Present (Next_Op)
12930 and then not Nkind_In (Next_Op, N_Subprogram_Body, N_Entry_Body)
12931 loop
12932 Next (Next_Op);
12933 end loop;
12934
12935 return Next_Op;
12936 end Next_Protected_Operation;
12937
12938 ---------------------
12939 -- Null_Statements --
12940 ---------------------
12941
12942 function Null_Statements (Stats : List_Id) return Boolean is
12943 Stmt : Node_Id;
12944
12945 begin
12946 Stmt := First (Stats);
12947 while Nkind (Stmt) /= N_Empty
12948 and then (Nkind_In (Stmt, N_Null_Statement, N_Label)
12949 or else
12950 (Nkind (Stmt) = N_Pragma
12951 and then (Pragma_Name (Stmt) = Name_Unreferenced
12952 or else
12953 Pragma_Name (Stmt) = Name_Unmodified
12954 or else
12955 Pragma_Name (Stmt) = Name_Warnings)))
12956 loop
12957 Next (Stmt);
12958 end loop;
12959
12960 return Nkind (Stmt) = N_Empty;
12961 end Null_Statements;
12962
12963 --------------------------
12964 -- Parameter_Block_Pack --
12965 --------------------------
12966
12967 function Parameter_Block_Pack
12968 (Loc : Source_Ptr;
12969 Blk_Typ : Entity_Id;
12970 Actuals : List_Id;
12971 Formals : List_Id;
12972 Decls : List_Id;
12973 Stmts : List_Id) return Node_Id
12974 is
12975 Actual : Entity_Id;
12976 Expr : Node_Id := Empty;
12977 Formal : Entity_Id;
12978 Has_Param : Boolean := False;
12979 P : Entity_Id;
12980 Params : List_Id;
12981 Temp_Asn : Node_Id;
12982 Temp_Nam : Node_Id;
12983
12984 begin
12985 Actual := First (Actuals);
12986 Formal := Defining_Identifier (First (Formals));
12987 Params := New_List;
12988
12989 while Present (Actual) loop
12990 if Is_By_Copy_Type (Etype (Actual)) then
12991 -- Generate:
12992 -- Jnn : aliased <formal-type>
12993
12994 Temp_Nam := Make_Temporary (Loc, 'J');
12995
12996 Append_To (Decls,
12997 Make_Object_Declaration (Loc,
12998 Aliased_Present =>
12999 True,
13000 Defining_Identifier =>
13001 Temp_Nam,
13002 Object_Definition =>
13003 New_Reference_To (Etype (Formal), Loc)));
13004
13005 if Ekind (Formal) /= E_Out_Parameter then
13006
13007 -- Generate:
13008 -- Jnn := <actual>
13009
13010 Temp_Asn :=
13011 New_Reference_To (Temp_Nam, Loc);
13012
13013 Set_Assignment_OK (Temp_Asn);
13014
13015 Append_To (Stmts,
13016 Make_Assignment_Statement (Loc,
13017 Name =>
13018 Temp_Asn,
13019 Expression =>
13020 New_Copy_Tree (Actual)));
13021 end if;
13022
13023 -- Generate:
13024 -- Jnn'unchecked_access
13025
13026 Append_To (Params,
13027 Make_Attribute_Reference (Loc,
13028 Attribute_Name =>
13029 Name_Unchecked_Access,
13030 Prefix =>
13031 New_Reference_To (Temp_Nam, Loc)));
13032
13033 Has_Param := True;
13034
13035 -- The controlling parameter is omitted
13036
13037 else
13038 if not Is_Controlling_Actual (Actual) then
13039 Append_To (Params,
13040 Make_Reference (Loc, New_Copy_Tree (Actual)));
13041
13042 Has_Param := True;
13043 end if;
13044 end if;
13045
13046 Next_Actual (Actual);
13047 Next_Formal_With_Extras (Formal);
13048 end loop;
13049
13050 if Has_Param then
13051 Expr := Make_Aggregate (Loc, Params);
13052 end if;
13053
13054 -- Generate:
13055 -- P : Ann := (
13056 -- J1'unchecked_access;
13057 -- <actual2>'reference;
13058 -- ...);
13059
13060 P := Make_Temporary (Loc, 'P');
13061
13062 Append_To (Decls,
13063 Make_Object_Declaration (Loc,
13064 Defining_Identifier =>
13065 P,
13066 Object_Definition =>
13067 New_Reference_To (Blk_Typ, Loc),
13068 Expression =>
13069 Expr));
13070
13071 return P;
13072 end Parameter_Block_Pack;
13073
13074 ----------------------------
13075 -- Parameter_Block_Unpack --
13076 ----------------------------
13077
13078 function Parameter_Block_Unpack
13079 (Loc : Source_Ptr;
13080 P : Entity_Id;
13081 Actuals : List_Id;
13082 Formals : List_Id) return List_Id
13083 is
13084 Actual : Entity_Id;
13085 Asnmt : Node_Id;
13086 Formal : Entity_Id;
13087 Has_Asnmt : Boolean := False;
13088 Result : constant List_Id := New_List;
13089
13090 begin
13091 Actual := First (Actuals);
13092 Formal := Defining_Identifier (First (Formals));
13093 while Present (Actual) loop
13094 if Is_By_Copy_Type (Etype (Actual))
13095 and then Ekind (Formal) /= E_In_Parameter
13096 then
13097 -- Generate:
13098 -- <actual> := P.<formal>;
13099
13100 Asnmt :=
13101 Make_Assignment_Statement (Loc,
13102 Name =>
13103 New_Copy (Actual),
13104 Expression =>
13105 Make_Explicit_Dereference (Loc,
13106 Make_Selected_Component (Loc,
13107 Prefix =>
13108 New_Reference_To (P, Loc),
13109 Selector_Name =>
13110 Make_Identifier (Loc, Chars (Formal)))));
13111
13112 Set_Assignment_OK (Name (Asnmt));
13113 Append_To (Result, Asnmt);
13114
13115 Has_Asnmt := True;
13116 end if;
13117
13118 Next_Actual (Actual);
13119 Next_Formal_With_Extras (Formal);
13120 end loop;
13121
13122 if Has_Asnmt then
13123 return Result;
13124 else
13125 return New_List (Make_Null_Statement (Loc));
13126 end if;
13127 end Parameter_Block_Unpack;
13128
13129 ----------------------
13130 -- Set_Discriminals --
13131 ----------------------
13132
13133 procedure Set_Discriminals (Dec : Node_Id) is
13134 D : Entity_Id;
13135 Pdef : Entity_Id;
13136 D_Minal : Entity_Id;
13137
13138 begin
13139 pragma Assert (Nkind (Dec) = N_Protected_Type_Declaration);
13140 Pdef := Defining_Identifier (Dec);
13141
13142 if Has_Discriminants (Pdef) then
13143 D := First_Discriminant (Pdef);
13144 while Present (D) loop
13145 D_Minal :=
13146 Make_Defining_Identifier (Sloc (D),
13147 Chars => New_External_Name (Chars (D), 'D'));
13148
13149 Set_Ekind (D_Minal, E_Constant);
13150 Set_Etype (D_Minal, Etype (D));
13151 Set_Scope (D_Minal, Pdef);
13152 Set_Discriminal (D, D_Minal);
13153 Set_Discriminal_Link (D_Minal, D);
13154
13155 Next_Discriminant (D);
13156 end loop;
13157 end if;
13158 end Set_Discriminals;
13159
13160 -----------------------
13161 -- Trivial_Accept_OK --
13162 -----------------------
13163
13164 function Trivial_Accept_OK return Boolean is
13165 begin
13166 case Opt.Task_Dispatching_Policy is
13167
13168 -- If we have the default task dispatching policy in effect, we can
13169 -- definitely do the optimization (one way of looking at this is to
13170 -- think of the formal definition of the default policy being allowed
13171 -- to run any task it likes after a rendezvous, so even if notionally
13172 -- a full rescheduling occurs, we can say that our dispatching policy
13173 -- (i.e. the default dispatching policy) reorders the queue to be the
13174 -- same as just before the call.
13175
13176 when ' ' =>
13177 return True;
13178
13179 -- FIFO_Within_Priorities certainly does not permit this
13180 -- optimization since the Rendezvous is a scheduling action that may
13181 -- require some other task to be run.
13182
13183 when 'F' =>
13184 return False;
13185
13186 -- For now, disallow the optimization for all other policies. This
13187 -- may be over-conservative, but it is certainly not incorrect.
13188
13189 when others =>
13190 return False;
13191
13192 end case;
13193 end Trivial_Accept_OK;
13194
13195 end Exp_Ch9;