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