[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)
7995 and then not Restriction_Active (No_Dynamic_Attachment)
7996 then
7997 Protection_Subtype :=
7998 Make_Subtype_Indication (
7999 Sloc => Loc,
8000 Subtype_Mark => New_Reference_To
8001 (RTE (RE_Dynamic_Interrupt_Protection), Loc),
8002 Constraint =>
8003 Make_Index_Or_Discriminant_Constraint (
8004 Sloc => Loc,
8005 Constraints => New_List (Entry_Count_Expr)));
8006
8007 -- Type has explicit entries or generated primitive entry wrappers
8008
8009 elsif Has_Entries (Prot_Typ)
8010 or else (Ada_Version >= Ada_2005
8011 and then Present (Interface_List (N)))
8012 then
8013 case Corresponding_Runtime_Package (Prot_Typ) is
8014 when System_Tasking_Protected_Objects_Entries =>
8015 Protection_Subtype :=
8016 Make_Subtype_Indication (Loc,
8017 Subtype_Mark =>
8018 New_Reference_To (RTE (RE_Protection_Entries), Loc),
8019 Constraint =>
8020 Make_Index_Or_Discriminant_Constraint (
8021 Sloc => Loc,
8022 Constraints => New_List (Entry_Count_Expr)));
8023
8024 when System_Tasking_Protected_Objects_Single_Entry =>
8025 Protection_Subtype :=
8026 New_Reference_To (RTE (RE_Protection_Entry), Loc);
8027
8028 when others =>
8029 raise Program_Error;
8030 end case;
8031
8032 else
8033 Protection_Subtype := New_Reference_To (RTE (RE_Protection), Loc);
8034 end if;
8035
8036 Object_Comp :=
8037 Make_Component_Declaration (Loc,
8038 Defining_Identifier =>
8039 Make_Defining_Identifier (Loc, Name_uObject),
8040 Component_Definition =>
8041 Make_Component_Definition (Loc,
8042 Aliased_Present => True,
8043 Subtype_Indication => Protection_Subtype));
8044 end;
8045
8046 pragma Assert (Present (Pdef));
8047
8048 -- Add private field components
8049
8050 if Present (Private_Declarations (Pdef)) then
8051 Priv := First (Private_Declarations (Pdef));
8052
8053 while Present (Priv) loop
8054
8055 if Nkind (Priv) = N_Component_Declaration then
8056 if not Static_Component_Size (Defining_Identifier (Priv)) then
8057
8058 -- When compiling for a restricted profile, the private
8059 -- components must have a static size. If not, this is an
8060 -- error for a single protected declaration, and rates a
8061 -- warning on a protected type declaration.
8062
8063 if not Comes_From_Source (Prot_Typ) then
8064 Check_Restriction (No_Implicit_Heap_Allocations, Priv);
8065
8066 elsif Restriction_Active (No_Implicit_Heap_Allocations) then
8067 Error_Msg_N ("component has non-static size?", Priv);
8068 Error_Msg_NE
8069 ("\creation of protected object of type& will violate"
8070 & " restriction No_Implicit_Heap_Allocations?",
8071 Priv, Prot_Typ);
8072 end if;
8073 end if;
8074
8075 -- The component definition consists of a subtype indication,
8076 -- or (in Ada 2005) an access definition. Make a copy of the
8077 -- proper definition.
8078
8079 declare
8080 Old_Comp : constant Node_Id := Component_Definition (Priv);
8081 Oent : constant Entity_Id := Defining_Identifier (Priv);
8082 New_Comp : Node_Id;
8083 Nent : constant Entity_Id :=
8084 Make_Defining_Identifier (Sloc (Oent),
8085 Chars => Chars (Oent));
8086
8087 begin
8088 if Present (Subtype_Indication (Old_Comp)) then
8089 New_Comp :=
8090 Make_Component_Definition (Sloc (Oent),
8091 Aliased_Present => False,
8092 Subtype_Indication =>
8093 New_Copy_Tree (Subtype_Indication (Old_Comp),
8094 Discr_Map));
8095 else
8096 New_Comp :=
8097 Make_Component_Definition (Sloc (Oent),
8098 Aliased_Present => False,
8099 Access_Definition =>
8100 New_Copy_Tree (Access_Definition (Old_Comp),
8101 Discr_Map));
8102 end if;
8103
8104 New_Priv :=
8105 Make_Component_Declaration (Loc,
8106 Defining_Identifier => Nent,
8107 Component_Definition => New_Comp,
8108 Expression => Expression (Priv));
8109
8110 Set_Has_Per_Object_Constraint (Nent,
8111 Has_Per_Object_Constraint (Oent));
8112
8113 Append_To (Cdecls, New_Priv);
8114 end;
8115
8116 elsif Nkind (Priv) = N_Subprogram_Declaration then
8117
8118 -- Make the unprotected version of the subprogram available
8119 -- for expansion of intra object calls. There is need for
8120 -- a protected version only if the subprogram is an interrupt
8121 -- handler, otherwise this operation can only be called from
8122 -- within the body.
8123
8124 Sub :=
8125 Make_Subprogram_Declaration (Loc,
8126 Specification =>
8127 Build_Protected_Sub_Specification
8128 (Priv, Prot_Typ, Unprotected_Mode));
8129
8130 Insert_After (Current_Node, Sub);
8131 Analyze (Sub);
8132
8133 Set_Protected_Body_Subprogram
8134 (Defining_Unit_Name (Specification (Priv)),
8135 Defining_Unit_Name (Specification (Sub)));
8136 Check_Inlining (Defining_Unit_Name (Specification (Priv)));
8137 Current_Node := Sub;
8138
8139 Sub :=
8140 Make_Subprogram_Declaration (Loc,
8141 Specification =>
8142 Build_Protected_Sub_Specification
8143 (Priv, Prot_Typ, Protected_Mode));
8144
8145 Insert_After (Current_Node, Sub);
8146 Analyze (Sub);
8147 Current_Node := Sub;
8148
8149 if Is_Interrupt_Handler
8150 (Defining_Unit_Name (Specification (Priv)))
8151 then
8152 if not Restricted_Profile then
8153 Register_Handler;
8154 end if;
8155 end if;
8156 end if;
8157
8158 Next (Priv);
8159 end loop;
8160 end if;
8161
8162 -- Put the _Object component after the private component so that it
8163 -- be finalized early as required by 9.4 (20)
8164
8165 Append_To (Cdecls, Object_Comp);
8166
8167 Insert_After (Current_Node, Rec_Decl);
8168 Current_Node := Rec_Decl;
8169
8170 -- Analyze the record declaration immediately after construction,
8171 -- because the initialization procedure is needed for single object
8172 -- declarations before the next entity is analyzed (the freeze call
8173 -- that generates this initialization procedure is found below).
8174
8175 Analyze (Rec_Decl, Suppress => All_Checks);
8176
8177 -- Ada 2005 (AI-345): Construct the primitive entry wrappers before
8178 -- the corresponding record is frozen. If any wrappers are generated,
8179 -- Current_Node is updated accordingly.
8180
8181 if Ada_Version >= Ada_2005 then
8182 Build_Wrapper_Specs (Loc, Prot_Typ, Current_Node);
8183 end if;
8184
8185 -- Collect pointers to entry bodies and their barriers, to be placed
8186 -- in the Entry_Bodies_Array for the type. For each entry/family we
8187 -- add an expression to the aggregate which is the initial value of
8188 -- this array. The array is declared after all protected subprograms.
8189
8190 if Has_Entries (Prot_Typ) then
8191 Entries_Aggr := Make_Aggregate (Loc, Expressions => New_List);
8192 else
8193 Entries_Aggr := Empty;
8194 end if;
8195
8196 -- Build two new procedure specifications for each protected subprogram;
8197 -- one to call from outside the object and one to call from inside.
8198 -- Build a barrier function and an entry body action procedure
8199 -- specification for each protected entry. Initialize the entry body
8200 -- array. If subprogram is flagged as eliminated, do not generate any
8201 -- internal operations.
8202
8203 E_Count := 0;
8204
8205 Comp := First (Visible_Declarations (Pdef));
8206
8207 while Present (Comp) loop
8208 if Nkind (Comp) = N_Subprogram_Declaration then
8209 Sub :=
8210 Make_Subprogram_Declaration (Loc,
8211 Specification =>
8212 Build_Protected_Sub_Specification
8213 (Comp, Prot_Typ, Unprotected_Mode));
8214
8215 Insert_After (Current_Node, Sub);
8216 Analyze (Sub);
8217
8218 Set_Protected_Body_Subprogram
8219 (Defining_Unit_Name (Specification (Comp)),
8220 Defining_Unit_Name (Specification (Sub)));
8221 Check_Inlining (Defining_Unit_Name (Specification (Comp)));
8222
8223 -- Make the protected version of the subprogram available for
8224 -- expansion of external calls.
8225
8226 Current_Node := Sub;
8227
8228 Sub :=
8229 Make_Subprogram_Declaration (Loc,
8230 Specification =>
8231 Build_Protected_Sub_Specification
8232 (Comp, Prot_Typ, Protected_Mode));
8233
8234 Insert_After (Current_Node, Sub);
8235 Analyze (Sub);
8236
8237 Current_Node := Sub;
8238
8239 -- Generate an overriding primitive operation specification for
8240 -- this subprogram if the protected type implements an interface.
8241
8242 if Ada_Version >= Ada_2005
8243 and then
8244 Present (Interfaces (Corresponding_Record_Type (Prot_Typ)))
8245 then
8246 Sub :=
8247 Make_Subprogram_Declaration (Loc,
8248 Specification =>
8249 Build_Protected_Sub_Specification
8250 (Comp, Prot_Typ, Dispatching_Mode));
8251
8252 Insert_After (Current_Node, Sub);
8253 Analyze (Sub);
8254
8255 Current_Node := Sub;
8256 end if;
8257
8258 -- If a pragma Interrupt_Handler applies, build and add a call to
8259 -- Register_Interrupt_Handler to the freezing actions of the
8260 -- protected version (Current_Node) of the subprogram:
8261
8262 -- system.interrupts.register_interrupt_handler
8263 -- (prot_procP'address);
8264
8265 if not Restricted_Profile
8266 and then Is_Interrupt_Handler
8267 (Defining_Unit_Name (Specification (Comp)))
8268 then
8269 Register_Handler;
8270 end if;
8271
8272 elsif Nkind (Comp) = N_Entry_Declaration then
8273 E_Count := E_Count + 1;
8274 Comp_Id := Defining_Identifier (Comp);
8275
8276 Edef :=
8277 Make_Defining_Identifier (Loc,
8278 Build_Selected_Name (Prot_Typ, Comp_Id, 'E'));
8279 Sub :=
8280 Make_Subprogram_Declaration (Loc,
8281 Specification =>
8282 Build_Protected_Entry_Specification (Loc, Edef, Comp_Id));
8283
8284 Insert_After (Current_Node, Sub);
8285 Analyze (Sub);
8286
8287 -- build wrapper procedure for pre/postconditions.
8288
8289 Build_PPC_Wrapper (Comp_Id, N);
8290
8291 Set_Protected_Body_Subprogram
8292 (Defining_Identifier (Comp),
8293 Defining_Unit_Name (Specification (Sub)));
8294
8295 Current_Node := Sub;
8296
8297 Bdef :=
8298 Make_Defining_Identifier (Loc,
8299 Chars => Build_Selected_Name (Prot_Typ, Comp_Id, 'B'));
8300 Sub :=
8301 Make_Subprogram_Declaration (Loc,
8302 Specification =>
8303 Build_Barrier_Function_Specification (Loc, Bdef));
8304
8305 Insert_After (Current_Node, Sub);
8306 Analyze (Sub);
8307 Set_Protected_Body_Subprogram (Bdef, Bdef);
8308 Set_Barrier_Function (Comp_Id, Bdef);
8309 Set_Scope (Bdef, Scope (Comp_Id));
8310 Current_Node := Sub;
8311
8312 -- Collect pointers to the protected subprogram and the barrier
8313 -- of the current entry, for insertion into Entry_Bodies_Array.
8314
8315 Append (
8316 Make_Aggregate (Loc,
8317 Expressions => New_List (
8318 Make_Attribute_Reference (Loc,
8319 Prefix => New_Reference_To (Bdef, Loc),
8320 Attribute_Name => Name_Unrestricted_Access),
8321 Make_Attribute_Reference (Loc,
8322 Prefix => New_Reference_To (Edef, Loc),
8323 Attribute_Name => Name_Unrestricted_Access))),
8324 Expressions (Entries_Aggr));
8325
8326 end if;
8327
8328 Next (Comp);
8329 end loop;
8330
8331 -- If there are some private entry declarations, expand it as if they
8332 -- were visible entries.
8333
8334 if Present (Private_Declarations (Pdef)) then
8335 Comp := First (Private_Declarations (Pdef));
8336 while Present (Comp) loop
8337 if Nkind (Comp) = N_Entry_Declaration then
8338 E_Count := E_Count + 1;
8339 Comp_Id := Defining_Identifier (Comp);
8340
8341 Edef :=
8342 Make_Defining_Identifier (Loc,
8343 Build_Selected_Name (Prot_Typ, Comp_Id, 'E'));
8344 Sub :=
8345 Make_Subprogram_Declaration (Loc,
8346 Specification =>
8347 Build_Protected_Entry_Specification (Loc, Edef, Comp_Id));
8348
8349 Insert_After (Current_Node, Sub);
8350 Analyze (Sub);
8351
8352 Set_Protected_Body_Subprogram
8353 (Defining_Identifier (Comp),
8354 Defining_Unit_Name (Specification (Sub)));
8355
8356 Current_Node := Sub;
8357
8358 Bdef :=
8359 Make_Defining_Identifier (Loc,
8360 Chars => Build_Selected_Name (Prot_Typ, Comp_Id, 'E'));
8361
8362 Sub :=
8363 Make_Subprogram_Declaration (Loc,
8364 Specification =>
8365 Build_Barrier_Function_Specification (Loc, Bdef));
8366
8367 Insert_After (Current_Node, Sub);
8368 Analyze (Sub);
8369 Set_Protected_Body_Subprogram (Bdef, Bdef);
8370 Set_Barrier_Function (Comp_Id, Bdef);
8371 Set_Scope (Bdef, Scope (Comp_Id));
8372 Current_Node := Sub;
8373
8374 -- Collect pointers to the protected subprogram and the barrier
8375 -- of the current entry, for insertion into Entry_Bodies_Array.
8376
8377 Append_To (Expressions (Entries_Aggr),
8378 Make_Aggregate (Loc,
8379 Expressions => New_List (
8380 Make_Attribute_Reference (Loc,
8381 Prefix => New_Reference_To (Bdef, Loc),
8382 Attribute_Name => Name_Unrestricted_Access),
8383 Make_Attribute_Reference (Loc,
8384 Prefix => New_Reference_To (Edef, Loc),
8385 Attribute_Name => Name_Unrestricted_Access))));
8386 end if;
8387
8388 Next (Comp);
8389 end loop;
8390 end if;
8391
8392 -- Emit declaration for Entry_Bodies_Array, now that the addresses of
8393 -- all protected subprograms have been collected.
8394
8395 if Has_Entries (Prot_Typ) then
8396 Body_Id :=
8397 Make_Defining_Identifier (Sloc (Prot_Typ),
8398 Chars => New_External_Name (Chars (Prot_Typ), 'A'));
8399
8400 case Corresponding_Runtime_Package (Prot_Typ) is
8401 when System_Tasking_Protected_Objects_Entries =>
8402 Body_Arr := Make_Object_Declaration (Loc,
8403 Defining_Identifier => Body_Id,
8404 Aliased_Present => True,
8405 Object_Definition =>
8406 Make_Subtype_Indication (Loc,
8407 Subtype_Mark => New_Reference_To (
8408 RTE (RE_Protected_Entry_Body_Array), Loc),
8409 Constraint =>
8410 Make_Index_Or_Discriminant_Constraint (Loc,
8411 Constraints => New_List (
8412 Make_Range (Loc,
8413 Make_Integer_Literal (Loc, 1),
8414 Make_Integer_Literal (Loc, E_Count))))),
8415 Expression => Entries_Aggr);
8416
8417 when System_Tasking_Protected_Objects_Single_Entry =>
8418 Body_Arr := Make_Object_Declaration (Loc,
8419 Defining_Identifier => Body_Id,
8420 Aliased_Present => True,
8421 Object_Definition => New_Reference_To
8422 (RTE (RE_Entry_Body), Loc),
8423 Expression =>
8424 Make_Aggregate (Loc,
8425 Expressions => New_List (
8426 Make_Attribute_Reference (Loc,
8427 Prefix => New_Reference_To (Bdef, Loc),
8428 Attribute_Name => Name_Unrestricted_Access),
8429 Make_Attribute_Reference (Loc,
8430 Prefix => New_Reference_To (Edef, Loc),
8431 Attribute_Name => Name_Unrestricted_Access))));
8432
8433 when others =>
8434 raise Program_Error;
8435 end case;
8436
8437 -- A pointer to this array will be placed in the corresponding record
8438 -- by its initialization procedure so this needs to be analyzed here.
8439
8440 Insert_After (Current_Node, Body_Arr);
8441 Current_Node := Body_Arr;
8442 Analyze (Body_Arr);
8443
8444 Set_Entry_Bodies_Array (Prot_Typ, Body_Id);
8445
8446 -- Finally, build the function that maps an entry index into the
8447 -- corresponding body. A pointer to this function is placed in each
8448 -- object of the type. Except for a ravenscar-like profile (no abort,
8449 -- no entry queue, 1 entry)
8450
8451 if Corresponding_Runtime_Package (Prot_Typ) =
8452 System_Tasking_Protected_Objects_Entries
8453 then
8454 Sub :=
8455 Make_Subprogram_Declaration (Loc,
8456 Specification => Build_Find_Body_Index_Spec (Prot_Typ));
8457 Insert_After (Current_Node, Sub);
8458 Analyze (Sub);
8459 end if;
8460 end if;
8461 end Expand_N_Protected_Type_Declaration;
8462
8463 --------------------------------
8464 -- Expand_N_Requeue_Statement --
8465 --------------------------------
8466
8467 -- A non-dispatching requeue statement is expanded into one of four GNARLI
8468 -- operations, depending on the source and destination (task or protected
8469 -- object). A dispatching requeue statement is expanded into a call to the
8470 -- predefined primitive _Disp_Requeue. In addition, code is generated to
8471 -- jump around the remainder of processing for the original entry and, if
8472 -- the destination is (different) protected object, to attempt to service
8473 -- it. The following illustrates the various cases:
8474
8475 -- procedure entE
8476 -- (O : System.Address;
8477 -- P : System.Address;
8478 -- E : Protected_Entry_Index)
8479 -- is
8480 -- <discriminant renamings>
8481 -- <private object renamings>
8482 -- type poVP is access poV;
8483 -- _object : ptVP := ptVP!(O);
8484
8485 -- begin
8486 -- begin
8487 -- <start of statement sequence for entry>
8488
8489 -- -- Requeue from one protected entry body to another protected
8490 -- -- entry.
8491
8492 -- Requeue_Protected_Entry (
8493 -- _object._object'Access,
8494 -- new._object'Access,
8495 -- E,
8496 -- Abort_Present);
8497 -- return;
8498
8499 -- <some more of the statement sequence for entry>
8500
8501 -- -- Requeue from an entry body to a task entry
8502
8503 -- Requeue_Protected_To_Task_Entry (
8504 -- New._task_id,
8505 -- E,
8506 -- Abort_Present);
8507 -- return;
8508
8509 -- <rest of statement sequence for entry>
8510 -- Complete_Entry_Body (_object._object);
8511
8512 -- exception
8513 -- when all others =>
8514 -- Exceptional_Complete_Entry_Body (
8515 -- _object._object, Get_GNAT_Exception);
8516 -- end;
8517 -- end entE;
8518
8519 -- Requeue of a task entry call to a task entry
8520
8521 -- Accept_Call (E, Ann);
8522 -- <start of statement sequence for accept statement>
8523 -- Requeue_Task_Entry (New._task_id, E, Abort_Present);
8524 -- goto Lnn;
8525 -- <rest of statement sequence for accept statement>
8526 -- <<Lnn>>
8527 -- Complete_Rendezvous;
8528
8529 -- exception
8530 -- when all others =>
8531 -- Exceptional_Complete_Rendezvous (Get_GNAT_Exception);
8532
8533 -- Requeue of a task entry call to a protected entry
8534
8535 -- Accept_Call (E, Ann);
8536 -- <start of statement sequence for accept statement>
8537 -- Requeue_Task_To_Protected_Entry (
8538 -- new._object'Access,
8539 -- E,
8540 -- Abort_Present);
8541 -- newS (new, Pnn);
8542 -- goto Lnn;
8543 -- <rest of statement sequence for accept statement>
8544 -- <<Lnn>>
8545 -- Complete_Rendezvous;
8546
8547 -- exception
8548 -- when all others =>
8549 -- Exceptional_Complete_Rendezvous (Get_GNAT_Exception);
8550
8551 -- Ada 2012 (AI05-0030): Dispatching requeue to an interface primitive
8552 -- marked by pragma Implemented (XXX, By_Entry).
8553
8554 -- The requeue is inside a protected entry:
8555
8556 -- procedure entE
8557 -- (O : System.Address;
8558 -- P : System.Address;
8559 -- E : Protected_Entry_Index)
8560 -- is
8561 -- <discriminant renamings>
8562 -- <private object renamings>
8563 -- type poVP is access poV;
8564 -- _object : ptVP := ptVP!(O);
8565
8566 -- begin
8567 -- begin
8568 -- <start of statement sequence for entry>
8569
8570 -- _Disp_Requeue
8571 -- (<interface class-wide object>,
8572 -- True,
8573 -- _object'Address,
8574 -- Ada.Tags.Get_Offset_Index
8575 -- (Tag (_object),
8576 -- <interface dispatch table index of target entry>),
8577 -- Abort_Present);
8578 -- return;
8579
8580 -- <rest of statement sequence for entry>
8581 -- Complete_Entry_Body (_object._object);
8582
8583 -- exception
8584 -- when all others =>
8585 -- Exceptional_Complete_Entry_Body (
8586 -- _object._object, Get_GNAT_Exception);
8587 -- end;
8588 -- end entE;
8589
8590 -- The requeue is inside a task entry:
8591
8592 -- Accept_Call (E, Ann);
8593 -- <start of statement sequence for accept statement>
8594 -- _Disp_Requeue
8595 -- (<interface class-wide object>,
8596 -- False,
8597 -- null,
8598 -- Ada.Tags.Get_Offset_Index
8599 -- (Tag (_object),
8600 -- <interface dispatch table index of target entrt>),
8601 -- Abort_Present);
8602 -- newS (new, Pnn);
8603 -- goto Lnn;
8604 -- <rest of statement sequence for accept statement>
8605 -- <<Lnn>>
8606 -- Complete_Rendezvous;
8607
8608 -- exception
8609 -- when all others =>
8610 -- Exceptional_Complete_Rendezvous (Get_GNAT_Exception);
8611
8612 -- Ada 2012 (AI05-0030): Dispatching requeue to an interface primitive
8613 -- marked by pragma Implemented (XXX, By_Protected_Procedure). The requeue
8614 -- statement is replaced by a dispatching call with actual parameters taken
8615 -- from the inner-most accept statement or entry body.
8616
8617 -- Target.Primitive (Param1, ..., ParamN);
8618
8619 -- Ada 2012 (AI05-0030): Dispatching requeue to an interface primitive
8620 -- marked by pragma Implemented (XXX, By_Any) or not marked at all.
8621
8622 -- declare
8623 -- S : constant Offset_Index :=
8624 -- Get_Offset_Index (Tag (Concval), DT_Position (Ename));
8625 -- C : constant Prim_Op_Kind := Get_Prim_Op_Kind (Tag (Concval), S);
8626
8627 -- begin
8628 -- if C = POK_Protected_Entry
8629 -- or else C = POK_Task_Entry
8630 -- then
8631 -- <statements for dispatching requeue>
8632
8633 -- elsif C = POK_Protected_Procedure then
8634 -- <dispatching call equivalent>
8635
8636 -- else
8637 -- raise Program_Error;
8638 -- end if;
8639 -- end;
8640
8641 procedure Expand_N_Requeue_Statement (N : Node_Id) is
8642 Loc : constant Source_Ptr := Sloc (N);
8643 Conc_Typ : Entity_Id;
8644 Concval : Node_Id;
8645 Ename : Node_Id;
8646 Index : Node_Id;
8647 Old_Typ : Entity_Id;
8648
8649 function Build_Dispatching_Call_Equivalent return Node_Id;
8650 -- Ada 2012 (AI05-0030): N denotes a dispatching requeue statement of
8651 -- the form Concval.Ename. It is statically known that Ename is allowed
8652 -- to be implemented by a protected procedure. Create a dispatching call
8653 -- equivalent of Concval.Ename taking the actual parameters from the
8654 -- inner-most accept statement or entry body.
8655
8656 function Build_Dispatching_Requeue return Node_Id;
8657 -- Ada 2012 (AI05-0030): N denotes a dispatching requeue statement of
8658 -- the form Concval.Ename. It is statically known that Ename is allowed
8659 -- to be implemented by a protected or a task entry. Create a call to
8660 -- primitive _Disp_Requeue which handles the low-level actions.
8661
8662 function Build_Dispatching_Requeue_To_Any return Node_Id;
8663 -- Ada 2012 (AI05-0030): N denotes a dispatching requeue statement of
8664 -- the form Concval.Ename. Ename is either marked by pragma Implemented
8665 -- (XXX, By_Any) or not marked at all. Create a block which determines
8666 -- at runtime whether Ename denotes an entry or a procedure and perform
8667 -- the appropriate kind of dispatching select.
8668
8669 function Build_Normal_Requeue return Node_Id;
8670 -- N denotes a non-dispatching requeue statement to either a task or a
8671 -- protected entry. Build the appropriate runtime call to perform the
8672 -- action.
8673
8674 function Build_Skip_Statement (Search : Node_Id) return Node_Id;
8675 -- For a protected entry, create a return statement to skip the rest of
8676 -- the entry body. Otherwise, create a goto statement to skip the rest
8677 -- of a task accept statement. The lookup for the enclosing entry body
8678 -- or accept statement starts from Search.
8679
8680 ---------------------------------------
8681 -- Build_Dispatching_Call_Equivalent --
8682 ---------------------------------------
8683
8684 function Build_Dispatching_Call_Equivalent return Node_Id is
8685 Call_Ent : constant Entity_Id := Entity (Ename);
8686 Obj : constant Node_Id := Original_Node (Concval);
8687 Acc_Ent : Node_Id;
8688 Actuals : List_Id;
8689 Formal : Node_Id;
8690 Formals : List_Id;
8691
8692 begin
8693 -- Climb the parent chain looking for the inner-most entry body or
8694 -- accept statement.
8695
8696 Acc_Ent := N;
8697 while Present (Acc_Ent)
8698 and then not Nkind_In (Acc_Ent, N_Accept_Statement,
8699 N_Entry_Body)
8700 loop
8701 Acc_Ent := Parent (Acc_Ent);
8702 end loop;
8703
8704 -- A requeue statement should be housed inside an entry body or an
8705 -- accept statement at some level. If this is not the case, then the
8706 -- tree is malformed.
8707
8708 pragma Assert (Present (Acc_Ent));
8709
8710 -- Recover the list of formal parameters
8711
8712 if Nkind (Acc_Ent) = N_Entry_Body then
8713 Acc_Ent := Entry_Body_Formal_Part (Acc_Ent);
8714 end if;
8715
8716 Formals := Parameter_Specifications (Acc_Ent);
8717
8718 -- Create the actual parameters for the dispatching call. These are
8719 -- simply copies of the entry body or accept statement formals in the
8720 -- same order as they appear.
8721
8722 Actuals := No_List;
8723
8724 if Present (Formals) then
8725 Actuals := New_List;
8726 Formal := First (Formals);
8727 while Present (Formal) loop
8728 Append_To (Actuals,
8729 Make_Identifier (Loc, Chars (Defining_Identifier (Formal))));
8730 Next (Formal);
8731 end loop;
8732 end if;
8733
8734 -- Generate:
8735 -- Obj.Call_Ent (Actuals);
8736
8737 return
8738 Make_Procedure_Call_Statement (Loc,
8739 Name =>
8740 Make_Selected_Component (Loc,
8741 Prefix => Make_Identifier (Loc, Chars (Obj)),
8742 Selector_Name => Make_Identifier (Loc, Chars (Call_Ent))),
8743
8744 Parameter_Associations => Actuals);
8745 end Build_Dispatching_Call_Equivalent;
8746
8747 -------------------------------
8748 -- Build_Dispatching_Requeue --
8749 -------------------------------
8750
8751 function Build_Dispatching_Requeue return Node_Id is
8752 Params : constant List_Id := New_List;
8753
8754 begin
8755 -- Process the "with abort" parameter
8756
8757 Prepend_To (Params,
8758 New_Reference_To (Boolean_Literals (Abort_Present (N)), Loc));
8759
8760 -- Process the entry wrapper's position in the primary dispatch
8761 -- table parameter. Generate:
8762
8763 -- Ada.Tags.Get_Offset_Index
8764 -- (Ada.Tags.Tag (Concval),
8765 -- <interface dispatch table position of Ename>)
8766
8767 if Tagged_Type_Expansion then
8768 Prepend_To (Params,
8769 Make_Function_Call (Loc,
8770 Name => New_Reference_To (RTE (RE_Get_Offset_Index), Loc),
8771 Parameter_Associations => New_List (
8772 Unchecked_Convert_To (RTE (RE_Tag), Concval),
8773 Make_Integer_Literal (Loc, DT_Position (Entity (Ename))))));
8774
8775 -- VM targets
8776
8777 else
8778 Prepend_To (Params,
8779 Make_Function_Call (Loc,
8780 Name => New_Reference_To (RTE (RE_Get_Offset_Index), Loc),
8781
8782 Parameter_Associations => New_List (
8783
8784 -- Obj_Typ
8785
8786 Make_Attribute_Reference (Loc,
8787 Prefix => Concval,
8788 Attribute_Name => Name_Tag),
8789
8790 -- Tag_Typ
8791
8792 Make_Attribute_Reference (Loc,
8793 Prefix => New_Reference_To (Etype (Concval), Loc),
8794 Attribute_Name => Name_Tag),
8795
8796 -- Position
8797
8798 Make_Integer_Literal (Loc, DT_Position (Entity (Ename))))));
8799 end if;
8800
8801 -- Specific actuals for protected to XXX requeue
8802
8803 if Is_Protected_Type (Old_Typ) then
8804 Prepend_To (Params,
8805 Make_Attribute_Reference (Loc, -- _object'Address
8806 Prefix =>
8807 Concurrent_Ref (New_Occurrence_Of (Old_Typ, Loc)),
8808 Attribute_Name => Name_Address));
8809
8810 Prepend_To (Params, -- True
8811 New_Reference_To (Standard_True, Loc));
8812
8813 -- Specific actuals for task to XXX requeue
8814
8815 else
8816 pragma Assert (Is_Task_Type (Old_Typ));
8817
8818 Prepend_To (Params, -- null
8819 New_Reference_To (RTE (RE_Null_Address), Loc));
8820
8821 Prepend_To (Params, -- False
8822 New_Reference_To (Standard_False, Loc));
8823 end if;
8824
8825 -- Add the object parameter
8826
8827 Prepend_To (Params, New_Copy_Tree (Concval));
8828
8829 -- Generate:
8830 -- _Disp_Requeue (<Params>);
8831
8832 return
8833 Make_Procedure_Call_Statement (Loc,
8834 Name => Make_Identifier (Loc, Name_uDisp_Requeue),
8835 Parameter_Associations => Params);
8836 end Build_Dispatching_Requeue;
8837
8838 --------------------------------------
8839 -- Build_Dispatching_Requeue_To_Any --
8840 --------------------------------------
8841
8842 function Build_Dispatching_Requeue_To_Any return Node_Id is
8843 Call_Ent : constant Entity_Id := Entity (Ename);
8844 Obj : constant Node_Id := Original_Node (Concval);
8845 Skip : constant Node_Id := Build_Skip_Statement (N);
8846 C : Entity_Id;
8847 Decls : List_Id;
8848 S : Entity_Id;
8849 Stmts : List_Id;
8850
8851 begin
8852 Decls := New_List;
8853 Stmts := New_List;
8854
8855 -- Dispatch table slot processing, generate:
8856 -- S : Integer;
8857
8858 S := Build_S (Loc, Decls);
8859
8860 -- Call kind processing, generate:
8861 -- C : Ada.Tags.Prim_Op_Kind;
8862
8863 C := Build_C (Loc, Decls);
8864
8865 -- Generate:
8866 -- S := Ada.Tags.Get_Offset_Index
8867 -- (Ada.Tags.Tag (Obj), DT_Position (Call_Ent));
8868
8869 Append_To (Stmts, Build_S_Assignment (Loc, S, Obj, Call_Ent));
8870
8871 -- Generate:
8872 -- _Disp_Get_Prim_Op_Kind (Obj, S, C);
8873
8874 Append_To (Stmts,
8875 Make_Procedure_Call_Statement (Loc,
8876 Name =>
8877 New_Reference_To (
8878 Find_Prim_Op (Etype (Etype (Obj)),
8879 Name_uDisp_Get_Prim_Op_Kind),
8880 Loc),
8881 Parameter_Associations => New_List (
8882 New_Copy_Tree (Obj),
8883 New_Reference_To (S, Loc),
8884 New_Reference_To (C, Loc))));
8885
8886 Append_To (Stmts,
8887
8888 -- if C = POK_Protected_Entry
8889 -- or else C = POK_Task_Entry
8890 -- then
8891
8892 Make_If_Statement (Loc,
8893 Condition =>
8894 Make_Op_Or (Loc,
8895 Left_Opnd =>
8896 Make_Op_Eq (Loc,
8897 Left_Opnd =>
8898 New_Reference_To (C, Loc),
8899 Right_Opnd =>
8900 New_Reference_To (RTE (RE_POK_Protected_Entry), Loc)),
8901
8902 Right_Opnd =>
8903 Make_Op_Eq (Loc,
8904 Left_Opnd =>
8905 New_Reference_To (C, Loc),
8906 Right_Opnd =>
8907 New_Reference_To (RTE (RE_POK_Task_Entry), Loc))),
8908
8909 -- Dispatching requeue equivalent
8910
8911 Then_Statements => New_List (
8912 Build_Dispatching_Requeue,
8913 Skip),
8914
8915 -- elsif C = POK_Protected_Procedure then
8916
8917 Elsif_Parts => New_List (
8918 Make_Elsif_Part (Loc,
8919 Condition =>
8920 Make_Op_Eq (Loc,
8921 Left_Opnd =>
8922 New_Reference_To (C, Loc),
8923 Right_Opnd =>
8924 New_Reference_To (
8925 RTE (RE_POK_Protected_Procedure), Loc)),
8926
8927 -- Dispatching call equivalent
8928
8929 Then_Statements => New_List (
8930 Build_Dispatching_Call_Equivalent))),
8931
8932 -- else
8933 -- raise Program_Error;
8934 -- end if;
8935
8936 Else_Statements => New_List (
8937 Make_Raise_Program_Error (Loc,
8938 Reason => PE_Explicit_Raise))));
8939
8940 -- Wrap everything into a block
8941
8942 return
8943 Make_Block_Statement (Loc,
8944 Declarations => Decls,
8945 Handled_Statement_Sequence =>
8946 Make_Handled_Sequence_Of_Statements (Loc,
8947 Statements => Stmts));
8948 end Build_Dispatching_Requeue_To_Any;
8949
8950 --------------------------
8951 -- Build_Normal_Requeue --
8952 --------------------------
8953
8954 function Build_Normal_Requeue return Node_Id is
8955 Params : constant List_Id := New_List;
8956 Param : Node_Id;
8957 RT_Call : Node_Id;
8958
8959 begin
8960 -- Process the "with abort" parameter
8961
8962 Prepend_To (Params,
8963 New_Reference_To (Boolean_Literals (Abort_Present (N)), Loc));
8964
8965 -- Add the index expression to the parameters. It is common among all
8966 -- four cases.
8967
8968 Prepend_To (Params,
8969 Entry_Index_Expression (Loc, Entity (Ename), Index, Conc_Typ));
8970
8971 if Is_Protected_Type (Old_Typ) then
8972 declare
8973 Self_Param : Node_Id;
8974
8975 begin
8976 Self_Param :=
8977 Make_Attribute_Reference (Loc,
8978 Prefix =>
8979 Concurrent_Ref (New_Occurrence_Of (Old_Typ, Loc)),
8980 Attribute_Name =>
8981 Name_Unchecked_Access);
8982
8983 -- Protected to protected requeue
8984
8985 if Is_Protected_Type (Conc_Typ) then
8986 RT_Call :=
8987 New_Reference_To (
8988 RTE (RE_Requeue_Protected_Entry), Loc);
8989
8990 Param :=
8991 Make_Attribute_Reference (Loc,
8992 Prefix =>
8993 Concurrent_Ref (Concval),
8994 Attribute_Name =>
8995 Name_Unchecked_Access);
8996
8997 -- Protected to task requeue
8998
8999 else pragma Assert (Is_Task_Type (Conc_Typ));
9000 RT_Call :=
9001 New_Reference_To (
9002 RTE (RE_Requeue_Protected_To_Task_Entry), Loc);
9003
9004 Param := Concurrent_Ref (Concval);
9005 end if;
9006
9007 Prepend_To (Params, Param);
9008 Prepend_To (Params, Self_Param);
9009 end;
9010
9011 else pragma Assert (Is_Task_Type (Old_Typ));
9012
9013 -- Task to protected requeue
9014
9015 if Is_Protected_Type (Conc_Typ) then
9016 RT_Call :=
9017 New_Reference_To (
9018 RTE (RE_Requeue_Task_To_Protected_Entry), Loc);
9019
9020 Param :=
9021 Make_Attribute_Reference (Loc,
9022 Prefix =>
9023 Concurrent_Ref (Concval),
9024 Attribute_Name =>
9025 Name_Unchecked_Access);
9026
9027 -- Task to task requeue
9028
9029 else pragma Assert (Is_Task_Type (Conc_Typ));
9030 RT_Call :=
9031 New_Reference_To (RTE (RE_Requeue_Task_Entry), Loc);
9032
9033 Param := Concurrent_Ref (Concval);
9034 end if;
9035
9036 Prepend_To (Params, Param);
9037 end if;
9038
9039 return
9040 Make_Procedure_Call_Statement (Loc,
9041 Name => RT_Call,
9042 Parameter_Associations => Params);
9043 end Build_Normal_Requeue;
9044
9045 --------------------------
9046 -- Build_Skip_Statement --
9047 --------------------------
9048
9049 function Build_Skip_Statement (Search : Node_Id) return Node_Id is
9050 Skip_Stmt : Node_Id;
9051
9052 begin
9053 -- Build a return statement to skip the rest of the entire body
9054
9055 if Is_Protected_Type (Old_Typ) then
9056 Skip_Stmt := Make_Simple_Return_Statement (Loc);
9057
9058 -- If the requeue is within a task, find the end label of the
9059 -- enclosing accept statement and create a goto statement to it.
9060
9061 else
9062 declare
9063 Acc : Node_Id;
9064 Label : Node_Id;
9065
9066 begin
9067 -- Climb the parent chain looking for the enclosing accept
9068 -- statement.
9069
9070 Acc := Parent (Search);
9071 while Present (Acc)
9072 and then Nkind (Acc) /= N_Accept_Statement
9073 loop
9074 Acc := Parent (Acc);
9075 end loop;
9076
9077 -- The last statement is the second label used for completing
9078 -- the rendezvous the usual way. The label we are looking for
9079 -- is right before it.
9080
9081 Label :=
9082 Prev (Last (Statements (Handled_Statement_Sequence (Acc))));
9083
9084 pragma Assert (Nkind (Label) = N_Label);
9085
9086 -- Generate a goto statement to skip the rest of the accept
9087
9088 Skip_Stmt :=
9089 Make_Goto_Statement (Loc,
9090 Name =>
9091 New_Occurrence_Of (Entity (Identifier (Label)), Loc));
9092 end;
9093 end if;
9094
9095 Set_Analyzed (Skip_Stmt);
9096
9097 return Skip_Stmt;
9098 end Build_Skip_Statement;
9099
9100 -- Start of processing for Expand_N_Requeue_Statement
9101
9102 begin
9103 -- Extract the components of the entry call
9104
9105 Extract_Entry (N, Concval, Ename, Index);
9106 Conc_Typ := Etype (Concval);
9107
9108 -- Examine the scope stack in order to find nearest enclosing protected
9109 -- or task type. This will constitute our invocation source.
9110
9111 Old_Typ := Current_Scope;
9112 while Present (Old_Typ)
9113 and then not Is_Protected_Type (Old_Typ)
9114 and then not Is_Task_Type (Old_Typ)
9115 loop
9116 Old_Typ := Scope (Old_Typ);
9117 end loop;
9118
9119 -- Ada 2012 (AI05-0030): We have a dispatching requeue of the form
9120 -- Concval.Ename where the type of Concval is class-wide concurrent
9121 -- interface.
9122
9123 if Ada_Version >= Ada_2012
9124 and then Present (Concval)
9125 and then Is_Class_Wide_Type (Conc_Typ)
9126 and then Is_Concurrent_Interface (Conc_Typ)
9127 then
9128 declare
9129 Has_Impl : Boolean := False;
9130 Impl_Kind : Name_Id := No_Name;
9131
9132 begin
9133 -- Check whether the Ename is flagged by pragma Implemented
9134
9135 if Has_Rep_Pragma (Entity (Ename), Name_Implemented) then
9136 Has_Impl := True;
9137 Impl_Kind := Implementation_Kind (Entity (Ename));
9138 end if;
9139
9140 -- The procedure_or_entry_NAME is guaranteed to be overridden by
9141 -- an entry. Create a call to predefined primitive _Disp_Requeue.
9142
9143 if Has_Impl
9144 and then Impl_Kind = Name_By_Entry
9145 then
9146 Rewrite (N, Build_Dispatching_Requeue);
9147 Analyze (N);
9148 Insert_After (N, Build_Skip_Statement (N));
9149
9150 -- The procedure_or_entry_NAME is guaranteed to be overridden by
9151 -- a protected procedure. In this case the requeue is transformed
9152 -- into a dispatching call.
9153
9154 elsif Has_Impl
9155 and then Impl_Kind = Name_By_Protected_Procedure
9156 then
9157 Rewrite (N, Build_Dispatching_Call_Equivalent);
9158 Analyze (N);
9159
9160 -- The procedure_or_entry_NAME's implementation kind is either
9161 -- By_Any or pragma Implemented was not applied at all. In this
9162 -- case a runtime test determines whether Ename denotes an entry
9163 -- or a protected procedure and performs the appropriate call.
9164
9165 else
9166 Rewrite (N, Build_Dispatching_Requeue_To_Any);
9167 Analyze (N);
9168 end if;
9169 end;
9170
9171 -- Processing for regular (non-dispatching) requeues
9172
9173 else
9174 Rewrite (N, Build_Normal_Requeue);
9175 Analyze (N);
9176 Insert_After (N, Build_Skip_Statement (N));
9177 end if;
9178 end Expand_N_Requeue_Statement;
9179
9180 -------------------------------
9181 -- Expand_N_Selective_Accept --
9182 -------------------------------
9183
9184 procedure Expand_N_Selective_Accept (N : Node_Id) is
9185 Loc : constant Source_Ptr := Sloc (N);
9186 Alts : constant List_Id := Select_Alternatives (N);
9187
9188 -- Note: in the below declarations a lot of new lists are allocated
9189 -- unconditionally which may well not end up being used. That's
9190 -- not a good idea since it wastes space gratuitously ???
9191
9192 Accept_Case : List_Id;
9193 Accept_List : constant List_Id := New_List;
9194
9195 Alt : Node_Id;
9196 Alt_List : constant List_Id := New_List;
9197 Alt_Stats : List_Id;
9198 Ann : Entity_Id := Empty;
9199
9200 Block : Node_Id;
9201 Check_Guard : Boolean := True;
9202
9203 Decls : constant List_Id := New_List;
9204 Stats : constant List_Id := New_List;
9205 Body_List : constant List_Id := New_List;
9206 Trailing_List : constant List_Id := New_List;
9207
9208 Choices : List_Id;
9209 Else_Present : Boolean := False;
9210 Terminate_Alt : Node_Id := Empty;
9211 Select_Mode : Node_Id;
9212
9213 Delay_Case : List_Id;
9214 Delay_Count : Integer := 0;
9215 Delay_Val : Entity_Id;
9216 Delay_Index : Entity_Id;
9217 Delay_Min : Entity_Id;
9218 Delay_Num : Int := 1;
9219 Delay_Alt_List : List_Id := New_List;
9220 Delay_List : constant List_Id := New_List;
9221 D : Entity_Id;
9222 M : Entity_Id;
9223
9224 First_Delay : Boolean := True;
9225 Guard_Open : Entity_Id;
9226
9227 End_Lab : Node_Id;
9228 Index : Int := 1;
9229 Lab : Node_Id;
9230 Num_Alts : Int;
9231 Num_Accept : Nat := 0;
9232 Proc : Node_Id;
9233 Q : Node_Id;
9234 Time_Type : Entity_Id;
9235 X : Node_Id;
9236 Select_Call : Node_Id;
9237
9238 Qnam : constant Entity_Id :=
9239 Make_Defining_Identifier (Loc, New_External_Name ('S', 0));
9240
9241 Xnam : constant Entity_Id :=
9242 Make_Defining_Identifier (Loc, New_External_Name ('J', 1));
9243
9244 -----------------------
9245 -- Local subprograms --
9246 -----------------------
9247
9248 function Accept_Or_Raise return List_Id;
9249 -- For the rare case where delay alternatives all have guards, and
9250 -- all of them are closed, it is still possible that there were open
9251 -- accept alternatives with no callers. We must reexamine the
9252 -- Accept_List, and execute a selective wait with no else if some
9253 -- accept is open. If none, we raise program_error.
9254
9255 procedure Add_Accept (Alt : Node_Id);
9256 -- Process a single accept statement in a select alternative. Build
9257 -- procedure for body of accept, and add entry to dispatch table with
9258 -- expression for guard, in preparation for call to run time select.
9259
9260 function Make_And_Declare_Label (Num : Int) return Node_Id;
9261 -- Manufacture a label using Num as a serial number and declare it.
9262 -- The declaration is appended to Decls. The label marks the trailing
9263 -- statements of an accept or delay alternative.
9264
9265 function Make_Select_Call (Select_Mode : Entity_Id) return Node_Id;
9266 -- Build call to Selective_Wait runtime routine
9267
9268 procedure Process_Delay_Alternative (Alt : Node_Id; Index : Int);
9269 -- Add code to compare value of delay with previous values, and
9270 -- generate case entry for trailing statements.
9271
9272 procedure Process_Accept_Alternative
9273 (Alt : Node_Id;
9274 Index : Int;
9275 Proc : Node_Id);
9276 -- Add code to call corresponding procedure, and branch to
9277 -- trailing statements, if any.
9278
9279 ---------------------
9280 -- Accept_Or_Raise --
9281 ---------------------
9282
9283 function Accept_Or_Raise return List_Id is
9284 Cond : Node_Id;
9285 Stats : List_Id;
9286 J : constant Entity_Id := Make_Temporary (Loc, 'J');
9287
9288 begin
9289 -- We generate the following:
9290
9291 -- for J in q'range loop
9292 -- if q(J).S /=null_task_entry then
9293 -- selective_wait (simple_mode,...);
9294 -- done := True;
9295 -- exit;
9296 -- end if;
9297 -- end loop;
9298 --
9299 -- if no rendez_vous then
9300 -- raise program_error;
9301 -- end if;
9302
9303 -- Note that the code needs to know that the selector name
9304 -- in an Accept_Alternative is named S.
9305
9306 Cond := Make_Op_Ne (Loc,
9307 Left_Opnd =>
9308 Make_Selected_Component (Loc,
9309 Prefix =>
9310 Make_Indexed_Component (Loc,
9311 Prefix => New_Reference_To (Qnam, Loc),
9312 Expressions => New_List (New_Reference_To (J, Loc))),
9313 Selector_Name => Make_Identifier (Loc, Name_S)),
9314 Right_Opnd =>
9315 New_Reference_To (RTE (RE_Null_Task_Entry), Loc));
9316
9317 Stats := New_List (
9318 Make_Implicit_Loop_Statement (N,
9319 Identifier => Empty,
9320 Iteration_Scheme =>
9321 Make_Iteration_Scheme (Loc,
9322 Loop_Parameter_Specification =>
9323 Make_Loop_Parameter_Specification (Loc,
9324 Defining_Identifier => J,
9325 Discrete_Subtype_Definition =>
9326 Make_Attribute_Reference (Loc,
9327 Prefix => New_Reference_To (Qnam, Loc),
9328 Attribute_Name => Name_Range,
9329 Expressions => New_List (
9330 Make_Integer_Literal (Loc, 1))))),
9331
9332 Statements => New_List (
9333 Make_Implicit_If_Statement (N,
9334 Condition => Cond,
9335 Then_Statements => New_List (
9336 Make_Select_Call (
9337 New_Reference_To (RTE (RE_Simple_Mode), Loc)),
9338 Make_Exit_Statement (Loc))))));
9339
9340 Append_To (Stats,
9341 Make_Raise_Program_Error (Loc,
9342 Condition => Make_Op_Eq (Loc,
9343 Left_Opnd => New_Reference_To (Xnam, Loc),
9344 Right_Opnd =>
9345 New_Reference_To (RTE (RE_No_Rendezvous), Loc)),
9346 Reason => PE_All_Guards_Closed));
9347
9348 return Stats;
9349 end Accept_Or_Raise;
9350
9351 ----------------
9352 -- Add_Accept --
9353 ----------------
9354
9355 procedure Add_Accept (Alt : Node_Id) is
9356 Acc_Stm : constant Node_Id := Accept_Statement (Alt);
9357 Ename : constant Node_Id := Entry_Direct_Name (Acc_Stm);
9358 Eloc : constant Source_Ptr := Sloc (Ename);
9359 Eent : constant Entity_Id := Entity (Ename);
9360 Index : constant Node_Id := Entry_Index (Acc_Stm);
9361 Null_Body : Node_Id;
9362 Proc_Body : Node_Id;
9363 PB_Ent : Entity_Id;
9364 Expr : Node_Id;
9365 Call : Node_Id;
9366
9367 begin
9368 if No (Ann) then
9369 Ann := Node (Last_Elmt (Accept_Address (Eent)));
9370 end if;
9371
9372 if Present (Condition (Alt)) then
9373 Expr :=
9374 Make_Conditional_Expression (Eloc, New_List (
9375 Condition (Alt),
9376 Entry_Index_Expression (Eloc, Eent, Index, Scope (Eent)),
9377 New_Reference_To (RTE (RE_Null_Task_Entry), Eloc)));
9378 else
9379 Expr :=
9380 Entry_Index_Expression
9381 (Eloc, Eent, Index, Scope (Eent));
9382 end if;
9383
9384 if Present (Handled_Statement_Sequence (Accept_Statement (Alt))) then
9385 Null_Body := New_Reference_To (Standard_False, Eloc);
9386
9387 if Abort_Allowed then
9388 Call := Make_Procedure_Call_Statement (Eloc,
9389 Name => New_Reference_To (RTE (RE_Abort_Undefer), Eloc));
9390 Insert_Before (First (Statements (Handled_Statement_Sequence (
9391 Accept_Statement (Alt)))), Call);
9392 Analyze (Call);
9393 end if;
9394
9395 PB_Ent :=
9396 Make_Defining_Identifier (Eloc,
9397 New_External_Name (Chars (Ename), 'A', Num_Accept));
9398
9399 if Comes_From_Source (Alt) then
9400 Set_Debug_Info_Needed (PB_Ent);
9401 end if;
9402
9403 Proc_Body :=
9404 Make_Subprogram_Body (Eloc,
9405 Specification =>
9406 Make_Procedure_Specification (Eloc,
9407 Defining_Unit_Name => PB_Ent),
9408 Declarations => Declarations (Acc_Stm),
9409 Handled_Statement_Sequence =>
9410 Build_Accept_Body (Accept_Statement (Alt)));
9411
9412 -- During the analysis of the body of the accept statement, any
9413 -- zero cost exception handler records were collected in the
9414 -- Accept_Handler_Records field of the N_Accept_Alternative node.
9415 -- This is where we move them to where they belong, namely the
9416 -- newly created procedure.
9417
9418 Set_Handler_Records (PB_Ent, Accept_Handler_Records (Alt));
9419 Append (Proc_Body, Body_List);
9420
9421 else
9422 Null_Body := New_Reference_To (Standard_True, Eloc);
9423
9424 -- if accept statement has declarations, insert above, given that
9425 -- we are not creating a body for the accept.
9426
9427 if Present (Declarations (Acc_Stm)) then
9428 Insert_Actions (N, Declarations (Acc_Stm));
9429 end if;
9430 end if;
9431
9432 Append_To (Accept_List,
9433 Make_Aggregate (Eloc, Expressions => New_List (Null_Body, Expr)));
9434
9435 Num_Accept := Num_Accept + 1;
9436 end Add_Accept;
9437
9438 ----------------------------
9439 -- Make_And_Declare_Label --
9440 ----------------------------
9441
9442 function Make_And_Declare_Label (Num : Int) return Node_Id is
9443 Lab_Id : Node_Id;
9444
9445 begin
9446 Lab_Id := Make_Identifier (Loc, New_External_Name ('L', Num));
9447 Lab :=
9448 Make_Label (Loc, Lab_Id);
9449
9450 Append_To (Decls,
9451 Make_Implicit_Label_Declaration (Loc,
9452 Defining_Identifier =>
9453 Make_Defining_Identifier (Loc, Chars (Lab_Id)),
9454 Label_Construct => Lab));
9455
9456 return Lab;
9457 end Make_And_Declare_Label;
9458
9459 ----------------------
9460 -- Make_Select_Call --
9461 ----------------------
9462
9463 function Make_Select_Call (Select_Mode : Entity_Id) return Node_Id is
9464 Params : constant List_Id := New_List;
9465
9466 begin
9467 Append (
9468 Make_Attribute_Reference (Loc,
9469 Prefix => New_Reference_To (Qnam, Loc),
9470 Attribute_Name => Name_Unchecked_Access),
9471 Params);
9472 Append (Select_Mode, Params);
9473 Append (New_Reference_To (Ann, Loc), Params);
9474 Append (New_Reference_To (Xnam, Loc), Params);
9475
9476 return
9477 Make_Procedure_Call_Statement (Loc,
9478 Name => New_Reference_To (RTE (RE_Selective_Wait), Loc),
9479 Parameter_Associations => Params);
9480 end Make_Select_Call;
9481
9482 --------------------------------
9483 -- Process_Accept_Alternative --
9484 --------------------------------
9485
9486 procedure Process_Accept_Alternative
9487 (Alt : Node_Id;
9488 Index : Int;
9489 Proc : Node_Id)
9490 is
9491 Choices : List_Id := No_List;
9492 Alt_Stats : List_Id;
9493
9494 begin
9495 Adjust_Condition (Condition (Alt));
9496 Alt_Stats := No_List;
9497
9498 if Present (Handled_Statement_Sequence (Accept_Statement (Alt))) then
9499 Choices := New_List (
9500 Make_Integer_Literal (Loc, Index));
9501
9502 Alt_Stats := New_List (
9503 Make_Procedure_Call_Statement (Sloc (Proc),
9504 Name => New_Reference_To (
9505 Defining_Unit_Name (Specification (Proc)), Sloc (Proc))));
9506 end if;
9507
9508 if Statements (Alt) /= Empty_List then
9509
9510 if No (Alt_Stats) then
9511
9512 -- Accept with no body, followed by trailing statements
9513
9514 Choices := New_List (
9515 Make_Integer_Literal (Loc, Index));
9516
9517 Alt_Stats := New_List;
9518 end if;
9519
9520 -- After the call, if any, branch to trailing statements. We
9521 -- create a label for each, as well as the corresponding label
9522 -- declaration.
9523
9524 Lab := Make_And_Declare_Label (Index);
9525 Append_To (Alt_Stats,
9526 Make_Goto_Statement (Loc,
9527 Name => New_Copy (Identifier (Lab))));
9528
9529 Append (Lab, Trailing_List);
9530 Append_List (Statements (Alt), Trailing_List);
9531 Append_To (Trailing_List,
9532 Make_Goto_Statement (Loc,
9533 Name => New_Copy (Identifier (End_Lab))));
9534 end if;
9535
9536 if Present (Alt_Stats) then
9537
9538 -- Procedure call. and/or trailing statements
9539
9540 Append_To (Alt_List,
9541 Make_Case_Statement_Alternative (Loc,
9542 Discrete_Choices => Choices,
9543 Statements => Alt_Stats));
9544 end if;
9545 end Process_Accept_Alternative;
9546
9547 -------------------------------
9548 -- Process_Delay_Alternative --
9549 -------------------------------
9550
9551 procedure Process_Delay_Alternative (Alt : Node_Id; Index : Int) is
9552 Choices : List_Id;
9553 Cond : Node_Id;
9554 Delay_Alt : List_Id;
9555
9556 begin
9557 -- Deal with C/Fortran boolean as delay condition
9558
9559 Adjust_Condition (Condition (Alt));
9560
9561 -- Determine the smallest specified delay
9562
9563 -- for each delay alternative generate:
9564
9565 -- if guard-expression then
9566 -- Delay_Val := delay-expression;
9567 -- Guard_Open := True;
9568 -- if Delay_Val < Delay_Min then
9569 -- Delay_Min := Delay_Val;
9570 -- Delay_Index := Index;
9571 -- end if;
9572 -- end if;
9573
9574 -- The enclosing if-statement is omitted if there is no guard
9575
9576 if Delay_Count = 1
9577 or else First_Delay
9578 then
9579 First_Delay := False;
9580
9581 Delay_Alt := New_List (
9582 Make_Assignment_Statement (Loc,
9583 Name => New_Reference_To (Delay_Min, Loc),
9584 Expression => Expression (Delay_Statement (Alt))));
9585
9586 if Delay_Count > 1 then
9587 Append_To (Delay_Alt,
9588 Make_Assignment_Statement (Loc,
9589 Name => New_Reference_To (Delay_Index, Loc),
9590 Expression => Make_Integer_Literal (Loc, Index)));
9591 end if;
9592
9593 else
9594 Delay_Alt := New_List (
9595 Make_Assignment_Statement (Loc,
9596 Name => New_Reference_To (Delay_Val, Loc),
9597 Expression => Expression (Delay_Statement (Alt))));
9598
9599 if Time_Type = Standard_Duration then
9600 Cond :=
9601 Make_Op_Lt (Loc,
9602 Left_Opnd => New_Reference_To (Delay_Val, Loc),
9603 Right_Opnd => New_Reference_To (Delay_Min, Loc));
9604
9605 else
9606 -- The scope of the time type must define a comparison
9607 -- operator. The scope itself may not be visible, so we
9608 -- construct a node with entity information to insure that
9609 -- semantic analysis can find the proper operator.
9610
9611 Cond :=
9612 Make_Function_Call (Loc,
9613 Name => Make_Selected_Component (Loc,
9614 Prefix => New_Reference_To (Scope (Time_Type), Loc),
9615 Selector_Name =>
9616 Make_Operator_Symbol (Loc,
9617 Chars => Name_Op_Lt,
9618 Strval => No_String)),
9619 Parameter_Associations =>
9620 New_List (
9621 New_Reference_To (Delay_Val, Loc),
9622 New_Reference_To (Delay_Min, Loc)));
9623
9624 Set_Entity (Prefix (Name (Cond)), Scope (Time_Type));
9625 end if;
9626
9627 Append_To (Delay_Alt,
9628 Make_Implicit_If_Statement (N,
9629 Condition => Cond,
9630 Then_Statements => New_List (
9631 Make_Assignment_Statement (Loc,
9632 Name => New_Reference_To (Delay_Min, Loc),
9633 Expression => New_Reference_To (Delay_Val, Loc)),
9634
9635 Make_Assignment_Statement (Loc,
9636 Name => New_Reference_To (Delay_Index, Loc),
9637 Expression => Make_Integer_Literal (Loc, Index)))));
9638 end if;
9639
9640 if Check_Guard then
9641 Append_To (Delay_Alt,
9642 Make_Assignment_Statement (Loc,
9643 Name => New_Reference_To (Guard_Open, Loc),
9644 Expression => New_Reference_To (Standard_True, Loc)));
9645 end if;
9646
9647 if Present (Condition (Alt)) then
9648 Delay_Alt := New_List (
9649 Make_Implicit_If_Statement (N,
9650 Condition => Condition (Alt),
9651 Then_Statements => Delay_Alt));
9652 end if;
9653
9654 Append_List (Delay_Alt, Delay_List);
9655
9656 -- If the delay alternative has a statement part, add choice to the
9657 -- case statements for delays.
9658
9659 if Present (Statements (Alt)) then
9660
9661 if Delay_Count = 1 then
9662 Append_List (Statements (Alt), Delay_Alt_List);
9663
9664 else
9665 Choices := New_List (
9666 Make_Integer_Literal (Loc, Index));
9667
9668 Append_To (Delay_Alt_List,
9669 Make_Case_Statement_Alternative (Loc,
9670 Discrete_Choices => Choices,
9671 Statements => Statements (Alt)));
9672 end if;
9673
9674 elsif Delay_Count = 1 then
9675
9676 -- If the single delay has no trailing statements, add a branch
9677 -- to the exit label to the selective wait.
9678
9679 Delay_Alt_List := New_List (
9680 Make_Goto_Statement (Loc,
9681 Name => New_Copy (Identifier (End_Lab))));
9682
9683 end if;
9684 end Process_Delay_Alternative;
9685
9686 -- Start of processing for Expand_N_Selective_Accept
9687
9688 begin
9689 Process_Statements_For_Controlled_Objects (N);
9690
9691 -- First insert some declarations before the select. The first is:
9692
9693 -- Ann : Address
9694
9695 -- This variable holds the parameters passed to the accept body. This
9696 -- declaration has already been inserted by the time we get here by
9697 -- a call to Expand_Accept_Declarations made from the semantics when
9698 -- processing the first accept statement contained in the select. We
9699 -- can find this entity as Accept_Address (E), where E is any of the
9700 -- entries references by contained accept statements.
9701
9702 -- The first step is to scan the list of Selective_Accept_Statements
9703 -- to find this entity, and also count the number of accepts, and
9704 -- determine if terminated, delay or else is present:
9705
9706 Num_Alts := 0;
9707
9708 Alt := First (Alts);
9709 while Present (Alt) loop
9710 Process_Statements_For_Controlled_Objects (Alt);
9711
9712 if Nkind (Alt) = N_Accept_Alternative then
9713 Add_Accept (Alt);
9714
9715 elsif Nkind (Alt) = N_Delay_Alternative then
9716 Delay_Count := Delay_Count + 1;
9717
9718 -- If the delays are relative delays, the delay expressions have
9719 -- type Standard_Duration. Otherwise they must have some time type
9720 -- recognized by GNAT.
9721
9722 if Nkind (Delay_Statement (Alt)) = N_Delay_Relative_Statement then
9723 Time_Type := Standard_Duration;
9724 else
9725 Time_Type := Etype (Expression (Delay_Statement (Alt)));
9726
9727 if Is_RTE (Base_Type (Etype (Time_Type)), RO_CA_Time)
9728 or else Is_RTE (Base_Type (Etype (Time_Type)), RO_RT_Time)
9729 then
9730 null;
9731 else
9732 Error_Msg_NE (
9733 "& is not a time type (RM 9.6(6))",
9734 Expression (Delay_Statement (Alt)), Time_Type);
9735 Time_Type := Standard_Duration;
9736 Set_Etype (Expression (Delay_Statement (Alt)), Any_Type);
9737 end if;
9738 end if;
9739
9740 if No (Condition (Alt)) then
9741
9742 -- This guard will always be open
9743
9744 Check_Guard := False;
9745 end if;
9746
9747 elsif Nkind (Alt) = N_Terminate_Alternative then
9748 Adjust_Condition (Condition (Alt));
9749 Terminate_Alt := Alt;
9750 end if;
9751
9752 Num_Alts := Num_Alts + 1;
9753 Next (Alt);
9754 end loop;
9755
9756 Else_Present := Present (Else_Statements (N));
9757
9758 -- At the same time (see procedure Add_Accept) we build the accept list:
9759
9760 -- Qnn : Accept_List (1 .. num-select) := (
9761 -- (null-body, entry-index),
9762 -- (null-body, entry-index),
9763 -- ..
9764 -- (null_body, entry-index));
9765
9766 -- In the above declaration, null-body is True if the corresponding
9767 -- accept has no body, and false otherwise. The entry is either the
9768 -- entry index expression if there is no guard, or if a guard is
9769 -- present, then a conditional expression of the form:
9770
9771 -- (if guard then entry-index else Null_Task_Entry)
9772
9773 -- If a guard is statically known to be false, the entry can simply
9774 -- be omitted from the accept list.
9775
9776 Q :=
9777 Make_Object_Declaration (Loc,
9778 Defining_Identifier => Qnam,
9779 Object_Definition =>
9780 New_Reference_To (RTE (RE_Accept_List), Loc),
9781 Aliased_Present => True,
9782
9783 Expression =>
9784 Make_Qualified_Expression (Loc,
9785 Subtype_Mark =>
9786 New_Reference_To (RTE (RE_Accept_List), Loc),
9787 Expression =>
9788 Make_Aggregate (Loc, Expressions => Accept_List)));
9789
9790 Append (Q, Decls);
9791
9792 -- Then we declare the variable that holds the index for the accept
9793 -- that will be selected for service:
9794
9795 -- Xnn : Select_Index;
9796
9797 X :=
9798 Make_Object_Declaration (Loc,
9799 Defining_Identifier => Xnam,
9800 Object_Definition =>
9801 New_Reference_To (RTE (RE_Select_Index), Loc),
9802 Expression =>
9803 New_Reference_To (RTE (RE_No_Rendezvous), Loc));
9804
9805 Append (X, Decls);
9806
9807 -- After this follow procedure declarations for each accept body
9808
9809 -- procedure Pnn is
9810 -- begin
9811 -- ...
9812 -- end;
9813
9814 -- where the ... are statements from the corresponding procedure body.
9815 -- No parameters are involved, since the parameters are passed via Ann
9816 -- and the parameter references have already been expanded to be direct
9817 -- references to Ann (see Exp_Ch2.Expand_Entry_Parameter). Furthermore,
9818 -- any embedded tasking statements (which would normally be illegal in
9819 -- procedures), have been converted to calls to the tasking runtime so
9820 -- there is no problem in putting them into procedures.
9821
9822 -- The original accept statement has been expanded into a block in
9823 -- the same fashion as for simple accepts (see Build_Accept_Body).
9824
9825 -- Note: we don't really need to build these procedures for the case
9826 -- where no delay statement is present, but it is just as easy to
9827 -- build them unconditionally, and not significantly inefficient,
9828 -- since if they are short they will be inlined anyway.
9829
9830 -- The procedure declarations have been assembled in Body_List
9831
9832 -- If delays are present, we must compute the required delay.
9833 -- We first generate the declarations:
9834
9835 -- Delay_Index : Boolean := 0;
9836 -- Delay_Min : Some_Time_Type.Time;
9837 -- Delay_Val : Some_Time_Type.Time;
9838
9839 -- Delay_Index will be set to the index of the minimum delay, i.e. the
9840 -- active delay that is actually chosen as the basis for the possible
9841 -- delay if an immediate rendez-vous is not possible.
9842
9843 -- In the most common case there is a single delay statement, and this
9844 -- is handled specially.
9845
9846 if Delay_Count > 0 then
9847
9848 -- Generate the required declarations
9849
9850 Delay_Val :=
9851 Make_Defining_Identifier (Loc, New_External_Name ('D', 1));
9852 Delay_Index :=
9853 Make_Defining_Identifier (Loc, New_External_Name ('D', 2));
9854 Delay_Min :=
9855 Make_Defining_Identifier (Loc, New_External_Name ('D', 3));
9856
9857 Append_To (Decls,
9858 Make_Object_Declaration (Loc,
9859 Defining_Identifier => Delay_Val,
9860 Object_Definition => New_Reference_To (Time_Type, Loc)));
9861
9862 Append_To (Decls,
9863 Make_Object_Declaration (Loc,
9864 Defining_Identifier => Delay_Index,
9865 Object_Definition => New_Reference_To (Standard_Integer, Loc),
9866 Expression => Make_Integer_Literal (Loc, 0)));
9867
9868 Append_To (Decls,
9869 Make_Object_Declaration (Loc,
9870 Defining_Identifier => Delay_Min,
9871 Object_Definition => New_Reference_To (Time_Type, Loc),
9872 Expression =>
9873 Unchecked_Convert_To (Time_Type,
9874 Make_Attribute_Reference (Loc,
9875 Prefix =>
9876 New_Occurrence_Of (Underlying_Type (Time_Type), Loc),
9877 Attribute_Name => Name_Last))));
9878
9879 -- Create Duration and Delay_Mode objects used for passing a delay
9880 -- value to RTS
9881
9882 D := Make_Temporary (Loc, 'D');
9883 M := Make_Temporary (Loc, 'M');
9884
9885 declare
9886 Discr : Entity_Id;
9887
9888 begin
9889 -- Note that these values are defined in s-osprim.ads and must
9890 -- be kept in sync:
9891 --
9892 -- Relative : constant := 0;
9893 -- Absolute_Calendar : constant := 1;
9894 -- Absolute_RT : constant := 2;
9895
9896 if Time_Type = Standard_Duration then
9897 Discr := Make_Integer_Literal (Loc, 0);
9898
9899 elsif Is_RTE (Base_Type (Etype (Time_Type)), RO_CA_Time) then
9900 Discr := Make_Integer_Literal (Loc, 1);
9901
9902 else
9903 pragma Assert
9904 (Is_RTE (Base_Type (Etype (Time_Type)), RO_RT_Time));
9905 Discr := Make_Integer_Literal (Loc, 2);
9906 end if;
9907
9908 Append_To (Decls,
9909 Make_Object_Declaration (Loc,
9910 Defining_Identifier => D,
9911 Object_Definition =>
9912 New_Reference_To (Standard_Duration, Loc)));
9913
9914 Append_To (Decls,
9915 Make_Object_Declaration (Loc,
9916 Defining_Identifier => M,
9917 Object_Definition =>
9918 New_Reference_To (Standard_Integer, Loc),
9919 Expression => Discr));
9920 end;
9921
9922 if Check_Guard then
9923 Guard_Open :=
9924 Make_Defining_Identifier (Loc, New_External_Name ('G', 1));
9925
9926 Append_To (Decls,
9927 Make_Object_Declaration (Loc,
9928 Defining_Identifier => Guard_Open,
9929 Object_Definition => New_Reference_To (Standard_Boolean, Loc),
9930 Expression => New_Reference_To (Standard_False, Loc)));
9931 end if;
9932
9933 -- Delay_Count is zero, don't need M and D set (suppress warning)
9934
9935 else
9936 M := Empty;
9937 D := Empty;
9938 end if;
9939
9940 if Present (Terminate_Alt) then
9941
9942 -- If the terminate alternative guard is False, use
9943 -- Simple_Mode; otherwise use Terminate_Mode.
9944
9945 if Present (Condition (Terminate_Alt)) then
9946 Select_Mode := Make_Conditional_Expression (Loc,
9947 New_List (Condition (Terminate_Alt),
9948 New_Reference_To (RTE (RE_Terminate_Mode), Loc),
9949 New_Reference_To (RTE (RE_Simple_Mode), Loc)));
9950 else
9951 Select_Mode := New_Reference_To (RTE (RE_Terminate_Mode), Loc);
9952 end if;
9953
9954 elsif Else_Present or Delay_Count > 0 then
9955 Select_Mode := New_Reference_To (RTE (RE_Else_Mode), Loc);
9956
9957 else
9958 Select_Mode := New_Reference_To (RTE (RE_Simple_Mode), Loc);
9959 end if;
9960
9961 Select_Call := Make_Select_Call (Select_Mode);
9962 Append (Select_Call, Stats);
9963
9964 -- Now generate code to act on the result. There is an entry
9965 -- in this case for each accept statement with a non-null body,
9966 -- followed by a branch to the statements that follow the Accept.
9967 -- In the absence of delay alternatives, we generate:
9968
9969 -- case X is
9970 -- when No_Rendezvous => -- omitted if simple mode
9971 -- goto Lab0;
9972
9973 -- when 1 =>
9974 -- P1n;
9975 -- goto Lab1;
9976
9977 -- when 2 =>
9978 -- P2n;
9979 -- goto Lab2;
9980
9981 -- when others =>
9982 -- goto Exit;
9983 -- end case;
9984 --
9985 -- Lab0: Else_Statements;
9986 -- goto exit;
9987
9988 -- Lab1: Trailing_Statements1;
9989 -- goto Exit;
9990 --
9991 -- Lab2: Trailing_Statements2;
9992 -- goto Exit;
9993 -- ...
9994 -- Exit:
9995
9996 -- Generate label for common exit
9997
9998 End_Lab := Make_And_Declare_Label (Num_Alts + 1);
9999
10000 -- First entry is the default case, when no rendezvous is possible
10001
10002 Choices := New_List (New_Reference_To (RTE (RE_No_Rendezvous), Loc));
10003
10004 if Else_Present then
10005
10006 -- If no rendezvous is possible, the else part is executed
10007
10008 Lab := Make_And_Declare_Label (0);
10009 Alt_Stats := New_List (
10010 Make_Goto_Statement (Loc,
10011 Name => New_Copy (Identifier (Lab))));
10012
10013 Append (Lab, Trailing_List);
10014 Append_List (Else_Statements (N), Trailing_List);
10015 Append_To (Trailing_List,
10016 Make_Goto_Statement (Loc,
10017 Name => New_Copy (Identifier (End_Lab))));
10018 else
10019 Alt_Stats := New_List (
10020 Make_Goto_Statement (Loc,
10021 Name => New_Copy (Identifier (End_Lab))));
10022 end if;
10023
10024 Append_To (Alt_List,
10025 Make_Case_Statement_Alternative (Loc,
10026 Discrete_Choices => Choices,
10027 Statements => Alt_Stats));
10028
10029 -- We make use of the fact that Accept_Index is an integer type, and
10030 -- generate successive literals for entries for each accept. Only those
10031 -- for which there is a body or trailing statements get a case entry.
10032
10033 Alt := First (Select_Alternatives (N));
10034 Proc := First (Body_List);
10035 while Present (Alt) loop
10036
10037 if Nkind (Alt) = N_Accept_Alternative then
10038 Process_Accept_Alternative (Alt, Index, Proc);
10039 Index := Index + 1;
10040
10041 if Present
10042 (Handled_Statement_Sequence (Accept_Statement (Alt)))
10043 then
10044 Next (Proc);
10045 end if;
10046
10047 elsif Nkind (Alt) = N_Delay_Alternative then
10048 Process_Delay_Alternative (Alt, Delay_Num);
10049 Delay_Num := Delay_Num + 1;
10050 end if;
10051
10052 Next (Alt);
10053 end loop;
10054
10055 -- An others choice is always added to the main case, as well
10056 -- as the delay case (to satisfy the compiler).
10057
10058 Append_To (Alt_List,
10059 Make_Case_Statement_Alternative (Loc,
10060 Discrete_Choices =>
10061 New_List (Make_Others_Choice (Loc)),
10062 Statements =>
10063 New_List (Make_Goto_Statement (Loc,
10064 Name => New_Copy (Identifier (End_Lab))))));
10065
10066 Accept_Case := New_List (
10067 Make_Case_Statement (Loc,
10068 Expression => New_Reference_To (Xnam, Loc),
10069 Alternatives => Alt_List));
10070
10071 Append_List (Trailing_List, Accept_Case);
10072 Append (End_Lab, Accept_Case);
10073 Append_List (Body_List, Decls);
10074
10075 -- Construct case statement for trailing statements of delay
10076 -- alternatives, if there are several of them.
10077
10078 if Delay_Count > 1 then
10079 Append_To (Delay_Alt_List,
10080 Make_Case_Statement_Alternative (Loc,
10081 Discrete_Choices =>
10082 New_List (Make_Others_Choice (Loc)),
10083 Statements =>
10084 New_List (Make_Null_Statement (Loc))));
10085
10086 Delay_Case := New_List (
10087 Make_Case_Statement (Loc,
10088 Expression => New_Reference_To (Delay_Index, Loc),
10089 Alternatives => Delay_Alt_List));
10090 else
10091 Delay_Case := Delay_Alt_List;
10092 end if;
10093
10094 -- If there are no delay alternatives, we append the case statement
10095 -- to the statement list.
10096
10097 if Delay_Count = 0 then
10098 Append_List (Accept_Case, Stats);
10099
10100 -- Delay alternatives present
10101
10102 else
10103 -- If delay alternatives are present we generate:
10104
10105 -- find minimum delay.
10106 -- DX := minimum delay;
10107 -- M := <delay mode>;
10108 -- Timed_Selective_Wait (Q'Unchecked_Access, Delay_Mode, P,
10109 -- DX, MX, X);
10110 --
10111 -- if X = No_Rendezvous then
10112 -- case statement for delay statements.
10113 -- else
10114 -- case statement for accept alternatives.
10115 -- end if;
10116
10117 declare
10118 Cases : Node_Id;
10119 Stmt : Node_Id;
10120 Parms : List_Id;
10121 Parm : Node_Id;
10122 Conv : Node_Id;
10123
10124 begin
10125 -- The type of the delay expression is known to be legal
10126
10127 if Time_Type = Standard_Duration then
10128 Conv := New_Reference_To (Delay_Min, Loc);
10129
10130 elsif Is_RTE (Base_Type (Etype (Time_Type)), RO_CA_Time) then
10131 Conv := Make_Function_Call (Loc,
10132 New_Reference_To (RTE (RO_CA_To_Duration), Loc),
10133 New_List (New_Reference_To (Delay_Min, Loc)));
10134
10135 else
10136 pragma Assert
10137 (Is_RTE (Base_Type (Etype (Time_Type)), RO_RT_Time));
10138
10139 Conv := Make_Function_Call (Loc,
10140 New_Reference_To (RTE (RO_RT_To_Duration), Loc),
10141 New_List (New_Reference_To (Delay_Min, Loc)));
10142 end if;
10143
10144 Stmt := Make_Assignment_Statement (Loc,
10145 Name => New_Reference_To (D, Loc),
10146 Expression => Conv);
10147
10148 -- Change the value for Accept_Modes. (Else_Mode -> Delay_Mode)
10149
10150 Parms := Parameter_Associations (Select_Call);
10151 Parm := First (Parms);
10152
10153 while Present (Parm)
10154 and then Parm /= Select_Mode
10155 loop
10156 Next (Parm);
10157 end loop;
10158
10159 pragma Assert (Present (Parm));
10160 Rewrite (Parm, New_Reference_To (RTE (RE_Delay_Mode), Loc));
10161 Analyze (Parm);
10162
10163 -- Prepare two new parameters of Duration and Delay_Mode type
10164 -- which represent the value and the mode of the minimum delay.
10165
10166 Next (Parm);
10167 Insert_After (Parm, New_Reference_To (M, Loc));
10168 Insert_After (Parm, New_Reference_To (D, Loc));
10169
10170 -- Create a call to RTS
10171
10172 Rewrite (Select_Call,
10173 Make_Procedure_Call_Statement (Loc,
10174 Name => New_Reference_To (RTE (RE_Timed_Selective_Wait), Loc),
10175 Parameter_Associations => Parms));
10176
10177 -- This new call should follow the calculation of the minimum
10178 -- delay.
10179
10180 Insert_List_Before (Select_Call, Delay_List);
10181
10182 if Check_Guard then
10183 Stmt :=
10184 Make_Implicit_If_Statement (N,
10185 Condition => New_Reference_To (Guard_Open, Loc),
10186 Then_Statements =>
10187 New_List (New_Copy_Tree (Stmt),
10188 New_Copy_Tree (Select_Call)),
10189 Else_Statements => Accept_Or_Raise);
10190 Rewrite (Select_Call, Stmt);
10191 else
10192 Insert_Before (Select_Call, Stmt);
10193 end if;
10194
10195 Cases :=
10196 Make_Implicit_If_Statement (N,
10197 Condition => Make_Op_Eq (Loc,
10198 Left_Opnd => New_Reference_To (Xnam, Loc),
10199 Right_Opnd =>
10200 New_Reference_To (RTE (RE_No_Rendezvous), Loc)),
10201
10202 Then_Statements => Delay_Case,
10203 Else_Statements => Accept_Case);
10204
10205 Append (Cases, Stats);
10206 end;
10207 end if;
10208
10209 -- Replace accept statement with appropriate block
10210
10211 Block :=
10212 Make_Block_Statement (Loc,
10213 Declarations => Decls,
10214 Handled_Statement_Sequence =>
10215 Make_Handled_Sequence_Of_Statements (Loc,
10216 Statements => Stats));
10217
10218 Rewrite (N, Block);
10219 Analyze (N);
10220
10221 -- Note: have to worry more about abort deferral in above code ???
10222
10223 -- Final step is to unstack the Accept_Address entries for all accept
10224 -- statements appearing in accept alternatives in the select statement
10225
10226 Alt := First (Alts);
10227 while Present (Alt) loop
10228 if Nkind (Alt) = N_Accept_Alternative then
10229 Remove_Last_Elmt (Accept_Address
10230 (Entity (Entry_Direct_Name (Accept_Statement (Alt)))));
10231 end if;
10232
10233 Next (Alt);
10234 end loop;
10235 end Expand_N_Selective_Accept;
10236
10237 --------------------------------------
10238 -- Expand_N_Single_Task_Declaration --
10239 --------------------------------------
10240
10241 -- Single task declarations should never be present after semantic
10242 -- analysis, since we expect them to be replaced by a declaration of an
10243 -- anonymous task type, followed by a declaration of the task object. We
10244 -- include this routine to make sure that is happening!
10245
10246 procedure Expand_N_Single_Task_Declaration (N : Node_Id) is
10247 begin
10248 raise Program_Error;
10249 end Expand_N_Single_Task_Declaration;
10250
10251 ------------------------
10252 -- Expand_N_Task_Body --
10253 ------------------------
10254
10255 -- Given a task body
10256
10257 -- task body tname is
10258 -- <declarations>
10259 -- begin
10260 -- <statements>
10261 -- end x;
10262
10263 -- This expansion routine converts it into a procedure and sets the
10264 -- elaboration flag for the procedure to true, to represent the fact
10265 -- that the task body is now elaborated:
10266
10267 -- procedure tnameB (_Task : access tnameV) is
10268 -- discriminal : dtype renames _Task.discriminant;
10269
10270 -- procedure _clean is
10271 -- begin
10272 -- Abort_Defer.all;
10273 -- Complete_Task;
10274 -- Abort_Undefer.all;
10275 -- return;
10276 -- end _clean;
10277
10278 -- begin
10279 -- Abort_Undefer.all;
10280 -- <declarations>
10281 -- System.Task_Stages.Complete_Activation;
10282 -- <statements>
10283 -- at end
10284 -- _clean;
10285 -- end tnameB;
10286
10287 -- tnameE := True;
10288
10289 -- In addition, if the task body is an activator, then a call to activate
10290 -- tasks is added at the start of the statements, before the call to
10291 -- Complete_Activation, and if in addition the task is a master then it
10292 -- must be established as a master. These calls are inserted and analyzed
10293 -- in Expand_Cleanup_Actions, when the Handled_Sequence_Of_Statements is
10294 -- expanded.
10295
10296 -- There is one discriminal declaration line generated for each
10297 -- discriminant that is present to provide an easy reference point for
10298 -- discriminant references inside the body (see Exp_Ch2.Expand_Name).
10299
10300 -- Note on relationship to GNARLI definition. In the GNARLI definition,
10301 -- task body procedures have a profile (Arg : System.Address). That is
10302 -- needed because GNARLI has to use the same access-to-subprogram type
10303 -- for all task types. We depend here on knowing that in GNAT, passing
10304 -- an address argument by value is identical to passing a record value
10305 -- by access (in either case a single pointer is passed), so even though
10306 -- this procedure has the wrong profile. In fact it's all OK, since the
10307 -- callings sequence is identical.
10308
10309 procedure Expand_N_Task_Body (N : Node_Id) is
10310 Loc : constant Source_Ptr := Sloc (N);
10311 Ttyp : constant Entity_Id := Corresponding_Spec (N);
10312 Call : Node_Id;
10313 New_N : Node_Id;
10314
10315 Insert_Nod : Node_Id;
10316 -- Used to determine the proper location of wrapper body insertions
10317
10318 begin
10319 -- Add renaming declarations for discriminals and a declaration for the
10320 -- entry family index (if applicable).
10321
10322 Install_Private_Data_Declarations
10323 (Loc, Task_Body_Procedure (Ttyp), Ttyp, N, Declarations (N));
10324
10325 -- Add a call to Abort_Undefer at the very beginning of the task
10326 -- body since this body is called with abort still deferred.
10327
10328 if Abort_Allowed then
10329 Call := Build_Runtime_Call (Loc, RE_Abort_Undefer);
10330 Insert_Before
10331 (First (Statements (Handled_Statement_Sequence (N))), Call);
10332 Analyze (Call);
10333 end if;
10334
10335 -- The statement part has already been protected with an at_end and
10336 -- cleanup actions. The call to Complete_Activation must be placed
10337 -- at the head of the sequence of statements of that block. The
10338 -- declarations have been merged in this sequence of statements but
10339 -- the first real statement is accessible from the First_Real_Statement
10340 -- field (which was set for exactly this purpose).
10341
10342 if Restricted_Profile then
10343 Call := Build_Runtime_Call (Loc, RE_Complete_Restricted_Activation);
10344 else
10345 Call := Build_Runtime_Call (Loc, RE_Complete_Activation);
10346 end if;
10347
10348 Insert_Before
10349 (First_Real_Statement (Handled_Statement_Sequence (N)), Call);
10350 Analyze (Call);
10351
10352 New_N :=
10353 Make_Subprogram_Body (Loc,
10354 Specification => Build_Task_Proc_Specification (Ttyp),
10355 Declarations => Declarations (N),
10356 Handled_Statement_Sequence => Handled_Statement_Sequence (N));
10357
10358 -- If the task contains generic instantiations, cleanup actions are
10359 -- delayed until after instantiation. Transfer the activation chain to
10360 -- the subprogram, to insure that the activation call is properly
10361 -- generated. It the task body contains inner tasks, indicate that the
10362 -- subprogram is a task master.
10363
10364 if Delay_Cleanups (Ttyp) then
10365 Set_Activation_Chain_Entity (New_N, Activation_Chain_Entity (N));
10366 Set_Is_Task_Master (New_N, Is_Task_Master (N));
10367 end if;
10368
10369 Rewrite (N, New_N);
10370 Analyze (N);
10371
10372 -- Set elaboration flag immediately after task body. If the body is a
10373 -- subunit, the flag is set in the declarative part containing the stub.
10374
10375 if Nkind (Parent (N)) /= N_Subunit then
10376 Insert_After (N,
10377 Make_Assignment_Statement (Loc,
10378 Name =>
10379 Make_Identifier (Loc, New_External_Name (Chars (Ttyp), 'E')),
10380 Expression => New_Reference_To (Standard_True, Loc)));
10381 end if;
10382
10383 -- Ada 2005 (AI-345): Construct the primitive entry wrapper bodies after
10384 -- the task body. At this point all wrapper specs have been created,
10385 -- frozen and included in the dispatch table for the task type.
10386
10387 if Ada_Version >= Ada_2005 then
10388 if Nkind (Parent (N)) = N_Subunit then
10389 Insert_Nod := Corresponding_Stub (Parent (N));
10390 else
10391 Insert_Nod := N;
10392 end if;
10393
10394 Build_Wrapper_Bodies (Loc, Ttyp, Insert_Nod);
10395 end if;
10396 end Expand_N_Task_Body;
10397
10398 ------------------------------------
10399 -- Expand_N_Task_Type_Declaration --
10400 ------------------------------------
10401
10402 -- We have several things to do. First we must create a Boolean flag used
10403 -- to mark if the body is elaborated yet. This variable gets set to True
10404 -- when the body of the task is elaborated (we can't rely on the normal
10405 -- ABE mechanism for the task body, since we need to pass an access to
10406 -- this elaboration boolean to the runtime routines).
10407
10408 -- taskE : aliased Boolean := False;
10409
10410 -- Next a variable is declared to hold the task stack size (either the
10411 -- default : Unspecified_Size, or a value that is set by a pragma
10412 -- Storage_Size). If the value of the pragma Storage_Size is static, then
10413 -- the variable is initialized with this value:
10414
10415 -- taskZ : Size_Type := Unspecified_Size;
10416 -- or
10417 -- taskZ : Size_Type := Size_Type (size_expression);
10418
10419 -- Note: No variable is needed to hold the task relative deadline since
10420 -- its value would never be static because the parameter is of a private
10421 -- type (Ada.Real_Time.Time_Span).
10422
10423 -- Next we create a corresponding record type declaration used to represent
10424 -- values of this task. The general form of this type declaration is
10425
10426 -- type taskV (discriminants) is record
10427 -- _Task_Id : Task_Id;
10428 -- entry_family : array (bounds) of Void;
10429 -- _Priority : Integer := priority_expression;
10430 -- _Size : Size_Type := size_expression;
10431 -- _Task_Info : Task_Info_Type := task_info_expression;
10432 -- _CPU : Integer := cpu_range_expression;
10433 -- _Relative_Deadline : Time_Span := time_span_expression;
10434 -- _Domain : Dispatching_Domain := dd_expression;
10435 -- end record;
10436
10437 -- The discriminants are present only if the corresponding task type has
10438 -- discriminants, and they exactly mirror the task type discriminants.
10439
10440 -- The Id field is always present. It contains the Task_Id value, as set by
10441 -- the call to Create_Task. Note that although the task is limited, the
10442 -- task value record type is not limited, so there is no problem in passing
10443 -- this field as an out parameter to Create_Task.
10444
10445 -- One entry_family component is present for each entry family in the task
10446 -- definition. The bounds correspond to the bounds of the entry family
10447 -- (which may depend on discriminants). The element type is void, since we
10448 -- only need the bounds information for determining the entry index. Note
10449 -- that the use of an anonymous array would normally be illegal in this
10450 -- context, but this is a parser check, and the semantics is quite prepared
10451 -- to handle such a case.
10452
10453 -- The _Size field is present only if a Storage_Size pragma appears in the
10454 -- task definition. The expression captures the argument that was present
10455 -- in the pragma, and is used to override the task stack size otherwise
10456 -- associated with the task type.
10457
10458 -- The _Priority field is present only if a Priority or Interrupt_Priority
10459 -- pragma appears in the task definition. The expression captures the
10460 -- argument that was present in the pragma, and is used to provide the Size
10461 -- parameter to the call to Create_Task.
10462
10463 -- The _Task_Info field is present only if a Task_Info pragma appears in
10464 -- the task definition. The expression captures the argument that was
10465 -- present in the pragma, and is used to provide the Task_Image parameter
10466 -- to the call to Create_Task.
10467
10468 -- The _CPU field is present only if a CPU pragma appears in the task
10469 -- definition. The expression captures the argument that was present in
10470 -- the pragma, and is used to provide the CPU parameter to the call to
10471 -- Create_Task.
10472
10473 -- The _Relative_Deadline field is present only if a Relative_Deadline
10474 -- pragma appears in the task definition. The expression captures the
10475 -- argument that was present in the pragma, and is used to provide the
10476 -- Relative_Deadline parameter to the call to Create_Task.
10477
10478 -- The _Domain field is present only if a Dispatching_Domain pragma or
10479 -- aspect appears in the task definition. The expression captures the
10480 -- argument that was present in the pragma or aspect, and is used to
10481 -- provide the Dispatching_Domain parameter to the call to Create_Task.
10482
10483 -- When a task is declared, an instance of the task value record is
10484 -- created. The elaboration of this declaration creates the correct bounds
10485 -- for the entry families, and also evaluates the size, priority, and
10486 -- task_Info expressions if needed. The initialization routine for the task
10487 -- type itself then calls Create_Task with appropriate parameters to
10488 -- initialize the value of the Task_Id field.
10489
10490 -- Note: the address of this record is passed as the "Discriminants"
10491 -- parameter for Create_Task. Since Create_Task merely passes this onto the
10492 -- body procedure, it does not matter that it does not quite match the
10493 -- GNARLI model of what is being passed (the record contains more than just
10494 -- the discriminants, but the discriminants can be found from the record
10495 -- value).
10496
10497 -- The Entity_Id for this created record type is placed in the
10498 -- Corresponding_Record_Type field of the associated task type entity.
10499
10500 -- Next we create a procedure specification for the task body procedure:
10501
10502 -- procedure taskB (_Task : access taskV);
10503
10504 -- Note that this must come after the record type declaration, since
10505 -- the spec refers to this type. It turns out that the initialization
10506 -- procedure for the value type references the task body spec, but that's
10507 -- fine, since it won't be generated till the freeze point for the type,
10508 -- which is certainly after the task body spec declaration.
10509
10510 -- Finally, we set the task index value field of the entry attribute in
10511 -- the case of a simple entry.
10512
10513 procedure Expand_N_Task_Type_Declaration (N : Node_Id) is
10514 Loc : constant Source_Ptr := Sloc (N);
10515 Tasktyp : constant Entity_Id := Etype (Defining_Identifier (N));
10516 Tasknm : constant Name_Id := Chars (Tasktyp);
10517 Taskdef : constant Node_Id := Task_Definition (N);
10518
10519 Proc_Spec : Node_Id;
10520 Rec_Decl : Node_Id;
10521 Rec_Ent : Entity_Id;
10522 Cdecls : List_Id;
10523 Elab_Decl : Node_Id;
10524 Size_Decl : Node_Id;
10525 Body_Decl : Node_Id;
10526 Task_Size : Node_Id;
10527 Ent_Stack : Entity_Id;
10528 Decl_Stack : Node_Id;
10529
10530 begin
10531 -- If already expanded, nothing to do
10532
10533 if Present (Corresponding_Record_Type (Tasktyp)) then
10534 return;
10535 end if;
10536
10537 -- Here we will do the expansion
10538
10539 Rec_Decl := Build_Corresponding_Record (N, Tasktyp, Loc);
10540
10541 Rec_Ent := Defining_Identifier (Rec_Decl);
10542 Cdecls := Component_Items (Component_List
10543 (Type_Definition (Rec_Decl)));
10544
10545 Qualify_Entity_Names (N);
10546
10547 -- First create the elaboration variable
10548
10549 Elab_Decl :=
10550 Make_Object_Declaration (Loc,
10551 Defining_Identifier =>
10552 Make_Defining_Identifier (Sloc (Tasktyp),
10553 Chars => New_External_Name (Tasknm, 'E')),
10554 Aliased_Present => True,
10555 Object_Definition => New_Reference_To (Standard_Boolean, Loc),
10556 Expression => New_Reference_To (Standard_False, Loc));
10557 Insert_After (N, Elab_Decl);
10558
10559 -- Next create the declaration of the size variable (tasknmZ)
10560
10561 Set_Storage_Size_Variable (Tasktyp,
10562 Make_Defining_Identifier (Sloc (Tasktyp),
10563 Chars => New_External_Name (Tasknm, 'Z')));
10564
10565 if Present (Taskdef) and then Has_Storage_Size_Pragma (Taskdef) and then
10566 Is_Static_Expression (Expression (First (
10567 Pragma_Argument_Associations (Find_Task_Or_Protected_Pragma (
10568 Taskdef, Name_Storage_Size)))))
10569 then
10570 Size_Decl :=
10571 Make_Object_Declaration (Loc,
10572 Defining_Identifier => Storage_Size_Variable (Tasktyp),
10573 Object_Definition => New_Reference_To (RTE (RE_Size_Type), Loc),
10574 Expression =>
10575 Convert_To (RTE (RE_Size_Type),
10576 Relocate_Node (
10577 Expression (First (
10578 Pragma_Argument_Associations (
10579 Find_Task_Or_Protected_Pragma
10580 (Taskdef, Name_Storage_Size)))))));
10581
10582 else
10583 Size_Decl :=
10584 Make_Object_Declaration (Loc,
10585 Defining_Identifier => Storage_Size_Variable (Tasktyp),
10586 Object_Definition => New_Reference_To (RTE (RE_Size_Type), Loc),
10587 Expression => New_Reference_To (RTE (RE_Unspecified_Size), Loc));
10588 end if;
10589
10590 Insert_After (Elab_Decl, Size_Decl);
10591
10592 -- Next build the rest of the corresponding record declaration. This is
10593 -- done last, since the corresponding record initialization procedure
10594 -- will reference the previously created entities.
10595
10596 -- Fill in the component declarations -- first the _Task_Id field
10597
10598 Append_To (Cdecls,
10599 Make_Component_Declaration (Loc,
10600 Defining_Identifier =>
10601 Make_Defining_Identifier (Loc, Name_uTask_Id),
10602 Component_Definition =>
10603 Make_Component_Definition (Loc,
10604 Aliased_Present => False,
10605 Subtype_Indication => New_Reference_To (RTE (RO_ST_Task_Id),
10606 Loc))));
10607
10608 -- Declare static ATCB (that is, created by the expander) if we are
10609 -- using the Restricted run time.
10610
10611 if Restricted_Profile then
10612 Append_To (Cdecls,
10613 Make_Component_Declaration (Loc,
10614 Defining_Identifier =>
10615 Make_Defining_Identifier (Loc, Name_uATCB),
10616
10617 Component_Definition =>
10618 Make_Component_Definition (Loc,
10619 Aliased_Present => True,
10620 Subtype_Indication => Make_Subtype_Indication (Loc,
10621 Subtype_Mark => New_Occurrence_Of
10622 (RTE (RE_Ada_Task_Control_Block), Loc),
10623
10624 Constraint =>
10625 Make_Index_Or_Discriminant_Constraint (Loc,
10626 Constraints =>
10627 New_List (Make_Integer_Literal (Loc, 0)))))));
10628
10629 end if;
10630
10631 -- Declare static stack (that is, created by the expander) if we are
10632 -- using the Restricted run time on a bare board configuration.
10633
10634 if Restricted_Profile
10635 and then Preallocated_Stacks_On_Target
10636 then
10637 -- First we need to extract the appropriate stack size
10638
10639 Ent_Stack := Make_Defining_Identifier (Loc, Name_uStack);
10640
10641 if Present (Taskdef) and then Has_Storage_Size_Pragma (Taskdef) then
10642 declare
10643 Expr_N : constant Node_Id :=
10644 Expression (First (
10645 Pragma_Argument_Associations (
10646 Find_Task_Or_Protected_Pragma
10647 (Taskdef, Name_Storage_Size))));
10648 Etyp : constant Entity_Id := Etype (Expr_N);
10649 P : constant Node_Id := Parent (Expr_N);
10650
10651 begin
10652 -- The stack is defined inside the corresponding record.
10653 -- Therefore if the size of the stack is set by means of
10654 -- a discriminant, we must reference the discriminant of the
10655 -- corresponding record type.
10656
10657 if Nkind (Expr_N) in N_Has_Entity
10658 and then Present (Discriminal_Link (Entity (Expr_N)))
10659 then
10660 Task_Size :=
10661 New_Reference_To
10662 (CR_Discriminant (Discriminal_Link (Entity (Expr_N))),
10663 Loc);
10664 Set_Parent (Task_Size, P);
10665 Set_Etype (Task_Size, Etyp);
10666 Set_Analyzed (Task_Size);
10667
10668 else
10669 Task_Size := Relocate_Node (Expr_N);
10670 end if;
10671 end;
10672
10673 else
10674 Task_Size :=
10675 New_Reference_To (RTE (RE_Default_Stack_Size), Loc);
10676 end if;
10677
10678 Decl_Stack := Make_Component_Declaration (Loc,
10679 Defining_Identifier => Ent_Stack,
10680
10681 Component_Definition =>
10682 Make_Component_Definition (Loc,
10683 Aliased_Present => True,
10684 Subtype_Indication => Make_Subtype_Indication (Loc,
10685 Subtype_Mark =>
10686 New_Occurrence_Of (RTE (RE_Storage_Array), Loc),
10687
10688 Constraint =>
10689 Make_Index_Or_Discriminant_Constraint (Loc,
10690 Constraints => New_List (Make_Range (Loc,
10691 Low_Bound => Make_Integer_Literal (Loc, 1),
10692 High_Bound => Convert_To (RTE (RE_Storage_Offset),
10693 Task_Size)))))));
10694
10695 Append_To (Cdecls, Decl_Stack);
10696
10697 -- The appropriate alignment for the stack is ensured by the run-time
10698 -- code in charge of task creation.
10699
10700 end if;
10701
10702 -- Add components for entry families
10703
10704 Collect_Entry_Families (Loc, Cdecls, Size_Decl, Tasktyp);
10705
10706 -- Add the _Priority component if a Priority pragma is present
10707
10708 if Present (Taskdef) and then Has_Pragma_Priority (Taskdef) then
10709 declare
10710 Prag : constant Node_Id :=
10711 Find_Task_Or_Protected_Pragma (Taskdef, Name_Priority);
10712 Expr : Node_Id;
10713
10714 begin
10715 Expr := First (Pragma_Argument_Associations (Prag));
10716
10717 if Nkind (Expr) = N_Pragma_Argument_Association then
10718 Expr := Expression (Expr);
10719 end if;
10720
10721 Expr := New_Copy_Tree (Expr);
10722
10723 -- Add conversion to proper type to do range check if required
10724 -- Note that for runtime units, we allow out of range interrupt
10725 -- priority values to be used in a priority pragma. This is for
10726 -- the benefit of some versions of System.Interrupts which use
10727 -- a special server task with maximum interrupt priority.
10728
10729 if Pragma_Name (Prag) = Name_Priority
10730 and then not GNAT_Mode
10731 then
10732 Rewrite (Expr, Convert_To (RTE (RE_Priority), Expr));
10733 else
10734 Rewrite (Expr, Convert_To (RTE (RE_Any_Priority), Expr));
10735 end if;
10736
10737 Append_To (Cdecls,
10738 Make_Component_Declaration (Loc,
10739 Defining_Identifier =>
10740 Make_Defining_Identifier (Loc, Name_uPriority),
10741 Component_Definition =>
10742 Make_Component_Definition (Loc,
10743 Aliased_Present => False,
10744 Subtype_Indication => New_Reference_To (Standard_Integer,
10745 Loc)),
10746 Expression => Expr));
10747 end;
10748 end if;
10749
10750 -- Add the _Task_Size component if a Storage_Size pragma is present
10751
10752 if Present (Taskdef)
10753 and then Has_Storage_Size_Pragma (Taskdef)
10754 then
10755 Append_To (Cdecls,
10756 Make_Component_Declaration (Loc,
10757 Defining_Identifier =>
10758 Make_Defining_Identifier (Loc, Name_uSize),
10759
10760 Component_Definition =>
10761 Make_Component_Definition (Loc,
10762 Aliased_Present => False,
10763 Subtype_Indication => New_Reference_To (RTE (RE_Size_Type),
10764 Loc)),
10765
10766 Expression =>
10767 Convert_To (RTE (RE_Size_Type),
10768 Relocate_Node (
10769 Expression (First (
10770 Pragma_Argument_Associations (
10771 Find_Task_Or_Protected_Pragma
10772 (Taskdef, Name_Storage_Size))))))));
10773 end if;
10774
10775 -- Add the _Task_Info component if a Task_Info pragma is present
10776
10777 if Present (Taskdef) and then Has_Task_Info_Pragma (Taskdef) then
10778 Append_To (Cdecls,
10779 Make_Component_Declaration (Loc,
10780 Defining_Identifier =>
10781 Make_Defining_Identifier (Loc, Name_uTask_Info),
10782
10783 Component_Definition =>
10784 Make_Component_Definition (Loc,
10785 Aliased_Present => False,
10786 Subtype_Indication =>
10787 New_Reference_To (RTE (RE_Task_Info_Type), Loc)),
10788
10789 Expression => New_Copy (
10790 Expression (First (
10791 Pragma_Argument_Associations (
10792 Find_Task_Or_Protected_Pragma
10793 (Taskdef, Name_Task_Info)))))));
10794 end if;
10795
10796 -- Add the _CPU component if a CPU pragma is present
10797
10798 if Present (Taskdef) and then Has_Pragma_CPU (Taskdef) then
10799 Append_To (Cdecls,
10800 Make_Component_Declaration (Loc,
10801 Defining_Identifier =>
10802 Make_Defining_Identifier (Loc, Name_uCPU),
10803
10804 Component_Definition =>
10805 Make_Component_Definition (Loc,
10806 Aliased_Present => False,
10807 Subtype_Indication =>
10808 New_Reference_To (RTE (RE_CPU_Range), Loc)),
10809
10810 Expression => New_Copy (
10811 Expression (First (
10812 Pragma_Argument_Associations (
10813 Find_Task_Or_Protected_Pragma
10814 (Taskdef, Name_CPU)))))));
10815 end if;
10816
10817 -- Add the _Relative_Deadline component if a Relative_Deadline pragma is
10818 -- present. If we are using a restricted run time this component will
10819 -- not be added (deadlines are not allowed by the Ravenscar profile).
10820
10821 if not Restricted_Profile
10822 and then Present (Taskdef)
10823 and then Has_Relative_Deadline_Pragma (Taskdef)
10824 then
10825 Append_To (Cdecls,
10826 Make_Component_Declaration (Loc,
10827 Defining_Identifier =>
10828 Make_Defining_Identifier (Loc, Name_uRelative_Deadline),
10829
10830 Component_Definition =>
10831 Make_Component_Definition (Loc,
10832 Aliased_Present => False,
10833 Subtype_Indication =>
10834 New_Reference_To (RTE (RE_Time_Span), Loc)),
10835
10836 Expression =>
10837 Convert_To (RTE (RE_Time_Span),
10838 Relocate_Node (
10839 Expression (First (
10840 Pragma_Argument_Associations (
10841 Find_Task_Or_Protected_Pragma
10842 (Taskdef, Name_Relative_Deadline))))))));
10843 end if;
10844
10845 -- Add the _Dispatching_Domain component if a Dispatching_Domain pragma
10846 -- or aspect is present. If we are using a restricted run time this
10847 -- component will not be added (dispatching domains are not allowed by
10848 -- the Ravenscar profile).
10849
10850 if not Restricted_Profile
10851 and then Present (Taskdef)
10852 and then Has_Pragma_Dispatching_Domain (Taskdef)
10853 then
10854 Append_To (Cdecls,
10855 Make_Component_Declaration (Loc,
10856 Defining_Identifier =>
10857 Make_Defining_Identifier (Loc, Name_uDispatching_Domain),
10858
10859 Component_Definition =>
10860 Make_Component_Definition (Loc,
10861 Aliased_Present => False,
10862 Subtype_Indication =>
10863 New_Reference_To
10864 (RTE (RE_Dispatching_Domain_Access), Loc)),
10865
10866 Expression =>
10867 Unchecked_Convert_To (RTE (RE_Dispatching_Domain_Access),
10868 Relocate_Node
10869 (Expression
10870 (First
10871 (Pragma_Argument_Associations
10872 (Find_Task_Or_Protected_Pragma
10873 (Taskdef, Name_Dispatching_Domain))))))));
10874 end if;
10875
10876 Insert_After (Size_Decl, Rec_Decl);
10877
10878 -- Analyze the record declaration immediately after construction,
10879 -- because the initialization procedure is needed for single task
10880 -- declarations before the next entity is analyzed.
10881
10882 Analyze (Rec_Decl);
10883
10884 -- Create the declaration of the task body procedure
10885
10886 Proc_Spec := Build_Task_Proc_Specification (Tasktyp);
10887 Body_Decl :=
10888 Make_Subprogram_Declaration (Loc,
10889 Specification => Proc_Spec);
10890
10891 Insert_After (Rec_Decl, Body_Decl);
10892
10893 -- The subprogram does not comes from source, so we have to indicate the
10894 -- need for debugging information explicitly.
10895
10896 if Comes_From_Source (Original_Node (N)) then
10897 Set_Debug_Info_Needed (Defining_Entity (Proc_Spec));
10898 end if;
10899
10900 -- Ada 2005 (AI-345): Construct the primitive entry wrapper specs before
10901 -- the corresponding record has been frozen.
10902
10903 if Ada_Version >= Ada_2005 then
10904 Build_Wrapper_Specs (Loc, Tasktyp, Rec_Decl);
10905 end if;
10906
10907 -- Ada 2005 (AI-345): We must defer freezing to allow further
10908 -- declaration of primitive subprograms covering task interfaces
10909
10910 if Ada_Version <= Ada_95 then
10911
10912 -- Now we can freeze the corresponding record. This needs manually
10913 -- freezing, since it is really part of the task type, and the task
10914 -- type is frozen at this stage. We of course need the initialization
10915 -- procedure for this corresponding record type and we won't get it
10916 -- in time if we don't freeze now.
10917
10918 declare
10919 L : constant List_Id := Freeze_Entity (Rec_Ent, N);
10920 begin
10921 if Is_Non_Empty_List (L) then
10922 Insert_List_After (Body_Decl, L);
10923 end if;
10924 end;
10925 end if;
10926
10927 -- Complete the expansion of access types to the current task type, if
10928 -- any were declared.
10929
10930 Expand_Previous_Access_Type (Tasktyp);
10931
10932 -- Create wrappers for entries that have pre/postconditions
10933
10934 declare
10935 Ent : Entity_Id;
10936
10937 begin
10938 Ent := First_Entity (Tasktyp);
10939 while Present (Ent) loop
10940 if Ekind_In (Ent, E_Entry, E_Entry_Family)
10941 and then Present (Spec_PPC_List (Contract (Ent)))
10942 then
10943 Build_PPC_Wrapper (Ent, N);
10944 end if;
10945
10946 Next_Entity (Ent);
10947 end loop;
10948 end;
10949 end Expand_N_Task_Type_Declaration;
10950
10951 -------------------------------
10952 -- Expand_N_Timed_Entry_Call --
10953 -------------------------------
10954
10955 -- A timed entry call in normal case is not implemented using ATC mechanism
10956 -- anymore for efficiency reason.
10957
10958 -- select
10959 -- T.E;
10960 -- S1;
10961 -- or
10962 -- Delay D;
10963 -- S2;
10964 -- end select;
10965
10966 -- is expanded as follow:
10967
10968 -- 1) When T.E is a task entry_call;
10969
10970 -- declare
10971 -- B : Boolean;
10972 -- X : Task_Entry_Index := <entry index>;
10973 -- DX : Duration := To_Duration (D);
10974 -- M : Delay_Mode := <discriminant>;
10975 -- P : parms := (parm, parm, parm);
10976
10977 -- begin
10978 -- Timed_Protected_Entry_Call
10979 -- (<acceptor-task>, X, P'Address, DX, M, B);
10980 -- if B then
10981 -- S1;
10982 -- else
10983 -- S2;
10984 -- end if;
10985 -- end;
10986
10987 -- 2) When T.E is a protected entry_call;
10988
10989 -- declare
10990 -- B : Boolean;
10991 -- X : Protected_Entry_Index := <entry index>;
10992 -- DX : Duration := To_Duration (D);
10993 -- M : Delay_Mode := <discriminant>;
10994 -- P : parms := (parm, parm, parm);
10995
10996 -- begin
10997 -- Timed_Protected_Entry_Call
10998 -- (<object>'unchecked_access, X, P'Address, DX, M, B);
10999 -- if B then
11000 -- S1;
11001 -- else
11002 -- S2;
11003 -- end if;
11004 -- end;
11005
11006 -- 3) Ada 2005 (AI-345): When T.E is a dispatching procedure call;
11007
11008 -- declare
11009 -- B : Boolean := False;
11010 -- C : Ada.Tags.Prim_Op_Kind;
11011 -- DX : Duration := To_Duration (D)
11012 -- K : Ada.Tags.Tagged_Kind :=
11013 -- Ada.Tags.Get_Tagged_Kind (Ada.Tags.Tag (<object>));
11014 -- M : Integer :=...;
11015 -- P : Parameters := (Param1 .. ParamN);
11016 -- S : Integer;
11017
11018 -- begin
11019 -- if K = Ada.Tags.TK_Limited_Tagged then
11020 -- <dispatching-call>;
11021 -- <triggering-statements>
11022
11023 -- else
11024 -- S :=
11025 -- Ada.Tags.Get_Offset_Index
11026 -- (Ada.Tags.Tag (<object>), DT_Position (<dispatching-call>));
11027
11028 -- _Disp_Timed_Select (<object>, S, P'Address, DX, M, C, B);
11029
11030 -- if C = POK_Protected_Entry
11031 -- or else C = POK_Task_Entry
11032 -- then
11033 -- Param1 := P.Param1;
11034 -- ...
11035 -- ParamN := P.ParamN;
11036 -- end if;
11037
11038 -- if B then
11039 -- if C = POK_Procedure
11040 -- or else C = POK_Protected_Procedure
11041 -- or else C = POK_Task_Procedure
11042 -- then
11043 -- <dispatching-call>;
11044 -- end if;
11045
11046 -- <triggering-statements>
11047 -- else
11048 -- <timed-statements>
11049 -- end if;
11050 -- end if;
11051 -- end;
11052
11053 -- The triggering statement and the sequence of timed statements have not
11054 -- been analyzed yet (see Analyzed_Timed_Entry_Call). They may contain
11055 -- local declarations, and therefore the copies that are made during
11056 -- expansion must be disjoint, as for any other inlining.
11057
11058 procedure Expand_N_Timed_Entry_Call (N : Node_Id) is
11059 Loc : constant Source_Ptr := Sloc (N);
11060
11061 E_Call : Node_Id :=
11062 Entry_Call_Statement (Entry_Call_Alternative (N));
11063 E_Stats : constant List_Id :=
11064 Statements (Entry_Call_Alternative (N));
11065 D_Stat : Node_Id :=
11066 Delay_Statement (Delay_Alternative (N));
11067 D_Stats : constant List_Id :=
11068 Statements (Delay_Alternative (N));
11069
11070 Actuals : List_Id;
11071 Blk_Typ : Entity_Id;
11072 Call : Node_Id;
11073 Call_Ent : Entity_Id;
11074 Conc_Typ_Stmts : List_Id;
11075 Concval : Node_Id;
11076 D_Conv : Node_Id;
11077 D_Disc : Node_Id;
11078 D_Type : Entity_Id;
11079 Decls : List_Id;
11080 Dummy : Node_Id;
11081 Ename : Node_Id;
11082 Formals : List_Id;
11083 Index : Node_Id;
11084 Is_Disp_Select : Boolean;
11085 Lim_Typ_Stmts : List_Id;
11086 N_Stats : List_Id;
11087 Obj : Entity_Id;
11088 Param : Node_Id;
11089 Params : List_Id;
11090 Stmt : Node_Id;
11091 Stmts : List_Id;
11092 Unpack : List_Id;
11093
11094 B : Entity_Id; -- Call status flag
11095 C : Entity_Id; -- Call kind
11096 D : Entity_Id; -- Delay
11097 K : Entity_Id; -- Tagged kind
11098 M : Entity_Id; -- Delay mode
11099 P : Entity_Id; -- Parameter block
11100 S : Entity_Id; -- Primitive operation slot
11101
11102 begin
11103 -- Under the Ravenscar profile, timed entry calls are excluded. An error
11104 -- was already reported on spec, so do not attempt to expand the call.
11105
11106 if Restriction_Active (No_Select_Statements) then
11107 return;
11108 end if;
11109
11110 Process_Statements_For_Controlled_Objects (Entry_Call_Alternative (N));
11111 Process_Statements_For_Controlled_Objects (Delay_Alternative (N));
11112
11113 -- The arguments in the call may require dynamic allocation, and the
11114 -- call statement may have been transformed into a block. The block
11115 -- may contain additional declarations for internal entities, and the
11116 -- original call is found by sequential search.
11117
11118 if Nkind (E_Call) = N_Block_Statement then
11119 E_Call := First (Statements (Handled_Statement_Sequence (E_Call)));
11120 while not Nkind_In (E_Call, N_Procedure_Call_Statement,
11121 N_Entry_Call_Statement)
11122 loop
11123 Next (E_Call);
11124 end loop;
11125 end if;
11126
11127 Is_Disp_Select :=
11128 Ada_Version >= Ada_2005
11129 and then Nkind (E_Call) = N_Procedure_Call_Statement;
11130
11131 if Is_Disp_Select then
11132 Extract_Dispatching_Call (E_Call, Call_Ent, Obj, Actuals, Formals);
11133
11134 Decls := New_List;
11135 Stmts := New_List;
11136
11137 -- Generate:
11138 -- B : Boolean := False;
11139
11140 B := Build_B (Loc, Decls);
11141
11142 -- Generate:
11143 -- C : Ada.Tags.Prim_Op_Kind;
11144
11145 C := Build_C (Loc, Decls);
11146
11147 -- Because the analysis of all statements was disabled, manually
11148 -- analyze the delay statement.
11149
11150 Analyze (D_Stat);
11151 D_Stat := Original_Node (D_Stat);
11152
11153 else
11154 -- Build an entry call using Simple_Entry_Call
11155
11156 Extract_Entry (E_Call, Concval, Ename, Index);
11157 Build_Simple_Entry_Call (E_Call, Concval, Ename, Index);
11158
11159 Decls := Declarations (E_Call);
11160 Stmts := Statements (Handled_Statement_Sequence (E_Call));
11161
11162 if No (Decls) then
11163 Decls := New_List;
11164 end if;
11165
11166 -- Generate:
11167 -- B : Boolean;
11168
11169 B := Make_Defining_Identifier (Loc, Name_uB);
11170
11171 Prepend_To (Decls,
11172 Make_Object_Declaration (Loc,
11173 Defining_Identifier => B,
11174 Object_Definition => New_Reference_To (Standard_Boolean, Loc)));
11175 end if;
11176
11177 -- Duration and mode processing
11178
11179 D_Type := Base_Type (Etype (Expression (D_Stat)));
11180
11181 -- Use the type of the delay expression (Calendar or Real_Time) to
11182 -- generate the appropriate conversion.
11183
11184 if Nkind (D_Stat) = N_Delay_Relative_Statement then
11185 D_Disc := Make_Integer_Literal (Loc, 0);
11186 D_Conv := Relocate_Node (Expression (D_Stat));
11187
11188 elsif Is_RTE (D_Type, RO_CA_Time) then
11189 D_Disc := Make_Integer_Literal (Loc, 1);
11190 D_Conv :=
11191 Make_Function_Call (Loc,
11192 Name => New_Reference_To (RTE (RO_CA_To_Duration), Loc),
11193 Parameter_Associations =>
11194 New_List (New_Copy (Expression (D_Stat))));
11195
11196 else pragma Assert (Is_RTE (D_Type, RO_RT_Time));
11197 D_Disc := Make_Integer_Literal (Loc, 2);
11198 D_Conv :=
11199 Make_Function_Call (Loc,
11200 Name => New_Reference_To (RTE (RO_RT_To_Duration), Loc),
11201 Parameter_Associations =>
11202 New_List (New_Copy (Expression (D_Stat))));
11203 end if;
11204
11205 D := Make_Temporary (Loc, 'D');
11206
11207 -- Generate:
11208 -- D : Duration;
11209
11210 Append_To (Decls,
11211 Make_Object_Declaration (Loc,
11212 Defining_Identifier => D,
11213 Object_Definition => New_Reference_To (Standard_Duration, Loc)));
11214
11215 M := Make_Temporary (Loc, 'M');
11216
11217 -- Generate:
11218 -- M : Integer := (0 | 1 | 2);
11219
11220 Append_To (Decls,
11221 Make_Object_Declaration (Loc,
11222 Defining_Identifier => M,
11223 Object_Definition => New_Reference_To (Standard_Integer, Loc),
11224 Expression => D_Disc));
11225
11226 -- Do the assignment at this stage only because the evaluation of the
11227 -- expression must not occur before (see ACVC C97302A).
11228
11229 Append_To (Stmts,
11230 Make_Assignment_Statement (Loc,
11231 Name => New_Reference_To (D, Loc),
11232 Expression => D_Conv));
11233
11234 -- Parameter block processing
11235
11236 -- Manually create the parameter block for dispatching calls. In the
11237 -- case of entries, the block has already been created during the call
11238 -- to Build_Simple_Entry_Call.
11239
11240 if Is_Disp_Select then
11241
11242 -- Tagged kind processing, generate:
11243 -- K : Ada.Tags.Tagged_Kind :=
11244 -- Ada.Tags.Get_Tagged_Kind (Ada.Tags.Tag <object>));
11245
11246 K := Build_K (Loc, Decls, Obj);
11247
11248 Blk_Typ := Build_Parameter_Block (Loc, Actuals, Formals, Decls);
11249 P :=
11250 Parameter_Block_Pack (Loc, Blk_Typ, Actuals, Formals, Decls, Stmts);
11251
11252 -- Dispatch table slot processing, generate:
11253 -- S : Integer;
11254
11255 S := Build_S (Loc, Decls);
11256
11257 -- Generate:
11258 -- S := Ada.Tags.Get_Offset_Index
11259 -- (Ada.Tags.Tag (<object>), DT_Position (Call_Ent));
11260
11261 Conc_Typ_Stmts :=
11262 New_List (Build_S_Assignment (Loc, S, Obj, Call_Ent));
11263
11264 -- Generate:
11265 -- _Disp_Timed_Select (<object>, S, P'Address, D, M, C, B);
11266
11267 -- where Obj is the controlling formal parameter, S is the dispatch
11268 -- table slot number of the dispatching operation, P is the wrapped
11269 -- parameter block, D is the duration, M is the duration mode, C is
11270 -- the call kind and B is the call status.
11271
11272 Params := New_List;
11273
11274 Append_To (Params, New_Copy_Tree (Obj));
11275 Append_To (Params, New_Reference_To (S, Loc));
11276 Append_To (Params,
11277 Make_Attribute_Reference (Loc,
11278 Prefix => New_Reference_To (P, Loc),
11279 Attribute_Name => Name_Address));
11280 Append_To (Params, New_Reference_To (D, Loc));
11281 Append_To (Params, New_Reference_To (M, Loc));
11282 Append_To (Params, New_Reference_To (C, Loc));
11283 Append_To (Params, New_Reference_To (B, Loc));
11284
11285 Append_To (Conc_Typ_Stmts,
11286 Make_Procedure_Call_Statement (Loc,
11287 Name =>
11288 New_Reference_To
11289 (Find_Prim_Op
11290 (Etype (Etype (Obj)), Name_uDisp_Timed_Select), Loc),
11291 Parameter_Associations => Params));
11292
11293 -- Generate:
11294 -- if C = POK_Protected_Entry
11295 -- or else C = POK_Task_Entry
11296 -- then
11297 -- Param1 := P.Param1;
11298 -- ...
11299 -- ParamN := P.ParamN;
11300 -- end if;
11301
11302 Unpack := Parameter_Block_Unpack (Loc, P, Actuals, Formals);
11303
11304 -- Generate the if statement only when the packed parameters need
11305 -- explicit assignments to their corresponding actuals.
11306
11307 if Present (Unpack) then
11308 Append_To (Conc_Typ_Stmts,
11309 Make_If_Statement (Loc,
11310
11311 Condition =>
11312 Make_Or_Else (Loc,
11313 Left_Opnd =>
11314 Make_Op_Eq (Loc,
11315 Left_Opnd => New_Reference_To (C, Loc),
11316 Right_Opnd =>
11317 New_Reference_To
11318 (RTE (RE_POK_Protected_Entry), Loc)),
11319
11320 Right_Opnd =>
11321 Make_Op_Eq (Loc,
11322 Left_Opnd => New_Reference_To (C, Loc),
11323 Right_Opnd =>
11324 New_Reference_To (RTE (RE_POK_Task_Entry), Loc))),
11325
11326 Then_Statements => Unpack));
11327 end if;
11328
11329 -- Generate:
11330
11331 -- if B then
11332 -- if C = POK_Procedure
11333 -- or else C = POK_Protected_Procedure
11334 -- or else C = POK_Task_Procedure
11335 -- then
11336 -- <dispatching-call>
11337 -- end if;
11338 -- <triggering-statements>
11339 -- else
11340 -- <timed-statements>
11341 -- end if;
11342
11343 N_Stats := Copy_Separate_List (E_Stats);
11344
11345 Prepend_To (N_Stats,
11346 Make_If_Statement (Loc,
11347
11348 Condition =>
11349 Make_Or_Else (Loc,
11350 Left_Opnd =>
11351 Make_Op_Eq (Loc,
11352 Left_Opnd => New_Reference_To (C, Loc),
11353 Right_Opnd =>
11354 New_Reference_To (RTE (RE_POK_Procedure), Loc)),
11355
11356 Right_Opnd =>
11357 Make_Or_Else (Loc,
11358 Left_Opnd =>
11359 Make_Op_Eq (Loc,
11360 Left_Opnd => New_Reference_To (C, Loc),
11361 Right_Opnd =>
11362 New_Reference_To (RTE (
11363 RE_POK_Protected_Procedure), Loc)),
11364 Right_Opnd =>
11365 Make_Op_Eq (Loc,
11366 Left_Opnd => New_Reference_To (C, Loc),
11367 Right_Opnd =>
11368 New_Reference_To
11369 (RTE (RE_POK_Task_Procedure), Loc)))),
11370
11371 Then_Statements => New_List (E_Call)));
11372
11373 Append_To (Conc_Typ_Stmts,
11374 Make_If_Statement (Loc,
11375 Condition => New_Reference_To (B, Loc),
11376 Then_Statements => N_Stats,
11377 Else_Statements => D_Stats));
11378
11379 -- Generate:
11380 -- <dispatching-call>;
11381 -- <triggering-statements>
11382
11383 Lim_Typ_Stmts := Copy_Separate_List (E_Stats);
11384 Prepend_To (Lim_Typ_Stmts, New_Copy_Tree (E_Call));
11385
11386 -- Generate:
11387 -- if K = Ada.Tags.TK_Limited_Tagged then
11388 -- Lim_Typ_Stmts
11389 -- else
11390 -- Conc_Typ_Stmts
11391 -- end if;
11392
11393 Append_To (Stmts,
11394 Make_If_Statement (Loc,
11395 Condition =>
11396 Make_Op_Eq (Loc,
11397 Left_Opnd => New_Reference_To (K, Loc),
11398 Right_Opnd =>
11399 New_Reference_To (RTE (RE_TK_Limited_Tagged), Loc)),
11400 Then_Statements => Lim_Typ_Stmts,
11401 Else_Statements => Conc_Typ_Stmts));
11402
11403 else
11404 -- Skip assignments to temporaries created for in-out parameters.
11405 -- This makes unwarranted assumptions about the shape of the expanded
11406 -- tree for the call, and should be cleaned up ???
11407
11408 Stmt := First (Stmts);
11409 while Nkind (Stmt) /= N_Procedure_Call_Statement loop
11410 Next (Stmt);
11411 end loop;
11412
11413 -- Do the assignment at this stage only because the evaluation
11414 -- of the expression must not occur before (see ACVC C97302A).
11415
11416 Insert_Before (Stmt,
11417 Make_Assignment_Statement (Loc,
11418 Name => New_Reference_To (D, Loc),
11419 Expression => D_Conv));
11420
11421 Call := Stmt;
11422 Params := Parameter_Associations (Call);
11423
11424 -- For a protected type, we build a Timed_Protected_Entry_Call
11425
11426 if Is_Protected_Type (Etype (Concval)) then
11427
11428 -- Create a new call statement
11429
11430 Param := First (Params);
11431 while Present (Param)
11432 and then not Is_RTE (Etype (Param), RE_Call_Modes)
11433 loop
11434 Next (Param);
11435 end loop;
11436
11437 Dummy := Remove_Next (Next (Param));
11438
11439 -- Remove garbage is following the Cancel_Param if present
11440
11441 Dummy := Next (Param);
11442
11443 -- Remove the mode of the Protected_Entry_Call call, then remove
11444 -- the Communication_Block of the Protected_Entry_Call call, and
11445 -- finally add Duration and a Delay_Mode parameter
11446
11447 pragma Assert (Present (Param));
11448 Rewrite (Param, New_Reference_To (D, Loc));
11449
11450 Rewrite (Dummy, New_Reference_To (M, Loc));
11451
11452 -- Add a Boolean flag for successful entry call
11453
11454 Append_To (Params, New_Reference_To (B, Loc));
11455
11456 case Corresponding_Runtime_Package (Etype (Concval)) is
11457 when System_Tasking_Protected_Objects_Entries =>
11458 Rewrite (Call,
11459 Make_Procedure_Call_Statement (Loc,
11460 Name =>
11461 New_Reference_To
11462 (RTE (RE_Timed_Protected_Entry_Call), Loc),
11463 Parameter_Associations => Params));
11464
11465 when System_Tasking_Protected_Objects_Single_Entry =>
11466 Param := First (Params);
11467 while Present (Param)
11468 and then not
11469 Is_RTE (Etype (Param), RE_Protected_Entry_Index)
11470 loop
11471 Next (Param);
11472 end loop;
11473
11474 Remove (Param);
11475
11476 Rewrite (Call,
11477 Make_Procedure_Call_Statement (Loc,
11478 Name =>
11479 New_Reference_To
11480 (RTE (RE_Timed_Protected_Single_Entry_Call), Loc),
11481 Parameter_Associations => Params));
11482
11483 when others =>
11484 raise Program_Error;
11485 end case;
11486
11487 -- For the task case, build a Timed_Task_Entry_Call
11488
11489 else
11490 -- Create a new call statement
11491
11492 Append_To (Params, New_Reference_To (D, Loc));
11493 Append_To (Params, New_Reference_To (M, Loc));
11494 Append_To (Params, New_Reference_To (B, Loc));
11495
11496 Rewrite (Call,
11497 Make_Procedure_Call_Statement (Loc,
11498 Name =>
11499 New_Reference_To (RTE (RE_Timed_Task_Entry_Call), Loc),
11500 Parameter_Associations => Params));
11501 end if;
11502
11503 Append_To (Stmts,
11504 Make_Implicit_If_Statement (N,
11505 Condition => New_Reference_To (B, Loc),
11506 Then_Statements => E_Stats,
11507 Else_Statements => D_Stats));
11508 end if;
11509
11510 Rewrite (N,
11511 Make_Block_Statement (Loc,
11512 Declarations => Decls,
11513 Handled_Statement_Sequence =>
11514 Make_Handled_Sequence_Of_Statements (Loc, Stmts)));
11515
11516 Analyze (N);
11517 end Expand_N_Timed_Entry_Call;
11518
11519 ----------------------------------------
11520 -- Expand_Protected_Body_Declarations --
11521 ----------------------------------------
11522
11523 procedure Expand_Protected_Body_Declarations
11524 (N : Node_Id;
11525 Spec_Id : Entity_Id)
11526 is
11527 begin
11528 if No_Run_Time_Mode then
11529 Error_Msg_CRT ("protected body", N);
11530 return;
11531
11532 elsif Full_Expander_Active then
11533
11534 -- Associate discriminals with the first subprogram or entry body to
11535 -- be expanded.
11536
11537 if Present (First_Protected_Operation (Declarations (N))) then
11538 Set_Discriminals (Parent (Spec_Id));
11539 end if;
11540 end if;
11541 end Expand_Protected_Body_Declarations;
11542
11543 -------------------------
11544 -- External_Subprogram --
11545 -------------------------
11546
11547 function External_Subprogram (E : Entity_Id) return Entity_Id is
11548 Subp : constant Entity_Id := Protected_Body_Subprogram (E);
11549
11550 begin
11551 -- The internal and external subprograms follow each other on the entity
11552 -- chain. Note that previously private operations had no separate
11553 -- external subprogram. We now create one in all cases, because a
11554 -- private operation may actually appear in an external call, through
11555 -- a 'Access reference used for a callback.
11556
11557 -- If the operation is a function that returns an anonymous access type,
11558 -- the corresponding itype appears before the operation, and must be
11559 -- skipped.
11560
11561 -- This mechanism is fragile, there should be a real link between the
11562 -- two versions of the operation, but there is no place to put it ???
11563
11564 if Is_Access_Type (Next_Entity (Subp)) then
11565 return Next_Entity (Next_Entity (Subp));
11566 else
11567 return Next_Entity (Subp);
11568 end if;
11569 end External_Subprogram;
11570
11571 ------------------------------
11572 -- Extract_Dispatching_Call --
11573 ------------------------------
11574
11575 procedure Extract_Dispatching_Call
11576 (N : Node_Id;
11577 Call_Ent : out Entity_Id;
11578 Object : out Entity_Id;
11579 Actuals : out List_Id;
11580 Formals : out List_Id)
11581 is
11582 Call_Nam : Node_Id;
11583
11584 begin
11585 pragma Assert (Nkind (N) = N_Procedure_Call_Statement);
11586
11587 if Present (Original_Node (N)) then
11588 Call_Nam := Name (Original_Node (N));
11589 else
11590 Call_Nam := Name (N);
11591 end if;
11592
11593 -- Retrieve the name of the dispatching procedure. It contains the
11594 -- dispatch table slot number.
11595
11596 loop
11597 case Nkind (Call_Nam) is
11598 when N_Identifier =>
11599 exit;
11600
11601 when N_Selected_Component =>
11602 Call_Nam := Selector_Name (Call_Nam);
11603
11604 when others =>
11605 raise Program_Error;
11606
11607 end case;
11608 end loop;
11609
11610 Actuals := Parameter_Associations (N);
11611 Call_Ent := Entity (Call_Nam);
11612 Formals := Parameter_Specifications (Parent (Call_Ent));
11613 Object := First (Actuals);
11614
11615 if Present (Original_Node (Object)) then
11616 Object := Original_Node (Object);
11617 end if;
11618
11619 -- If the type of the dispatching object is an access type then return
11620 -- an explicit dereference.
11621
11622 if Is_Access_Type (Etype (Object)) then
11623 Object := Make_Explicit_Dereference (Sloc (N), Object);
11624 Analyze (Object);
11625 end if;
11626 end Extract_Dispatching_Call;
11627
11628 -------------------
11629 -- Extract_Entry --
11630 -------------------
11631
11632 procedure Extract_Entry
11633 (N : Node_Id;
11634 Concval : out Node_Id;
11635 Ename : out Node_Id;
11636 Index : out Node_Id)
11637 is
11638 Nam : constant Node_Id := Name (N);
11639
11640 begin
11641 -- For a simple entry, the name is a selected component, with the
11642 -- prefix being the task value, and the selector being the entry.
11643
11644 if Nkind (Nam) = N_Selected_Component then
11645 Concval := Prefix (Nam);
11646 Ename := Selector_Name (Nam);
11647 Index := Empty;
11648
11649 -- For a member of an entry family, the name is an indexed component
11650 -- where the prefix is a selected component, whose prefix in turn is
11651 -- the task value, and whose selector is the entry family. The single
11652 -- expression in the expressions list of the indexed component is the
11653 -- subscript for the family.
11654
11655 else pragma Assert (Nkind (Nam) = N_Indexed_Component);
11656 Concval := Prefix (Prefix (Nam));
11657 Ename := Selector_Name (Prefix (Nam));
11658 Index := First (Expressions (Nam));
11659 end if;
11660 end Extract_Entry;
11661
11662 -------------------
11663 -- Family_Offset --
11664 -------------------
11665
11666 function Family_Offset
11667 (Loc : Source_Ptr;
11668 Hi : Node_Id;
11669 Lo : Node_Id;
11670 Ttyp : Entity_Id;
11671 Cap : Boolean) return Node_Id
11672 is
11673 Ityp : Entity_Id;
11674 Real_Hi : Node_Id;
11675 Real_Lo : Node_Id;
11676
11677 function Convert_Discriminant_Ref (Bound : Node_Id) return Node_Id;
11678 -- If one of the bounds is a reference to a discriminant, replace with
11679 -- corresponding discriminal of type. Within the body of a task retrieve
11680 -- the renamed discriminant by simple visibility, using its generated
11681 -- name. Within a protected object, find the original discriminant and
11682 -- replace it with the discriminal of the current protected operation.
11683
11684 ------------------------------
11685 -- Convert_Discriminant_Ref --
11686 ------------------------------
11687
11688 function Convert_Discriminant_Ref (Bound : Node_Id) return Node_Id is
11689 Loc : constant Source_Ptr := Sloc (Bound);
11690 B : Node_Id;
11691 D : Entity_Id;
11692
11693 begin
11694 if Is_Entity_Name (Bound)
11695 and then Ekind (Entity (Bound)) = E_Discriminant
11696 then
11697 if Is_Task_Type (Ttyp)
11698 and then Has_Completion (Ttyp)
11699 then
11700 B := Make_Identifier (Loc, Chars (Entity (Bound)));
11701 Find_Direct_Name (B);
11702
11703 elsif Is_Protected_Type (Ttyp) then
11704 D := First_Discriminant (Ttyp);
11705 while Chars (D) /= Chars (Entity (Bound)) loop
11706 Next_Discriminant (D);
11707 end loop;
11708
11709 B := New_Reference_To (Discriminal (D), Loc);
11710
11711 else
11712 B := New_Reference_To (Discriminal (Entity (Bound)), Loc);
11713 end if;
11714
11715 elsif Nkind (Bound) = N_Attribute_Reference then
11716 return Bound;
11717
11718 else
11719 B := New_Copy_Tree (Bound);
11720 end if;
11721
11722 return
11723 Make_Attribute_Reference (Loc,
11724 Attribute_Name => Name_Pos,
11725 Prefix => New_Occurrence_Of (Etype (Bound), Loc),
11726 Expressions => New_List (B));
11727 end Convert_Discriminant_Ref;
11728
11729 -- Start of processing for Family_Offset
11730
11731 begin
11732 Real_Hi := Convert_Discriminant_Ref (Hi);
11733 Real_Lo := Convert_Discriminant_Ref (Lo);
11734
11735 if Cap then
11736 if Is_Task_Type (Ttyp) then
11737 Ityp := RTE (RE_Task_Entry_Index);
11738 else
11739 Ityp := RTE (RE_Protected_Entry_Index);
11740 end if;
11741
11742 Real_Hi :=
11743 Make_Attribute_Reference (Loc,
11744 Prefix => New_Reference_To (Ityp, Loc),
11745 Attribute_Name => Name_Min,
11746 Expressions => New_List (
11747 Real_Hi,
11748 Make_Integer_Literal (Loc, Entry_Family_Bound - 1)));
11749
11750 Real_Lo :=
11751 Make_Attribute_Reference (Loc,
11752 Prefix => New_Reference_To (Ityp, Loc),
11753 Attribute_Name => Name_Max,
11754 Expressions => New_List (
11755 Real_Lo,
11756 Make_Integer_Literal (Loc, -Entry_Family_Bound)));
11757 end if;
11758
11759 return Make_Op_Subtract (Loc, Real_Hi, Real_Lo);
11760 end Family_Offset;
11761
11762 -----------------
11763 -- Family_Size --
11764 -----------------
11765
11766 function Family_Size
11767 (Loc : Source_Ptr;
11768 Hi : Node_Id;
11769 Lo : Node_Id;
11770 Ttyp : Entity_Id;
11771 Cap : Boolean) return Node_Id
11772 is
11773 Ityp : Entity_Id;
11774
11775 begin
11776 if Is_Task_Type (Ttyp) then
11777 Ityp := RTE (RE_Task_Entry_Index);
11778 else
11779 Ityp := RTE (RE_Protected_Entry_Index);
11780 end if;
11781
11782 return
11783 Make_Attribute_Reference (Loc,
11784 Prefix => New_Reference_To (Ityp, Loc),
11785 Attribute_Name => Name_Max,
11786 Expressions => New_List (
11787 Make_Op_Add (Loc,
11788 Left_Opnd =>
11789 Family_Offset (Loc, Hi, Lo, Ttyp, Cap),
11790 Right_Opnd =>
11791 Make_Integer_Literal (Loc, 1)),
11792 Make_Integer_Literal (Loc, 0)));
11793 end Family_Size;
11794
11795 -----------------------
11796 -- Find_Master_Scope --
11797 -----------------------
11798
11799 function Find_Master_Scope (E : Entity_Id) return Entity_Id is
11800 S : Entity_Id;
11801
11802 begin
11803 -- In Ada2005, the master is the innermost enclosing scope that is not
11804 -- transient. If the enclosing block is the rewriting of a call or the
11805 -- scope is an extended return statement this is valid master. The
11806 -- master in an extended return is only used within the return, and is
11807 -- subsequently overwritten in Move_Activation_Chain, but it must exist
11808 -- now before that overwriting occurs.
11809
11810 S := Scope (E);
11811
11812 if Ada_Version >= Ada_2005 then
11813 while Is_Internal (S) loop
11814 if Nkind (Parent (S)) = N_Block_Statement
11815 and then
11816 Nkind (Original_Node (Parent (S))) = N_Procedure_Call_Statement
11817 then
11818 exit;
11819
11820 elsif Ekind (S) = E_Return_Statement then
11821 exit;
11822
11823 else
11824 S := Scope (S);
11825 end if;
11826 end loop;
11827 end if;
11828
11829 return S;
11830 end Find_Master_Scope;
11831
11832 -----------------------------------
11833 -- Find_Task_Or_Protected_Pragma --
11834 -----------------------------------
11835
11836 function Find_Task_Or_Protected_Pragma
11837 (T : Node_Id;
11838 P : Name_Id) return Node_Id
11839 is
11840 N : Node_Id;
11841
11842 begin
11843 N := First (Visible_Declarations (T));
11844 while Present (N) loop
11845 if Nkind (N) = N_Pragma then
11846 if Pragma_Name (N) = P then
11847 return N;
11848
11849 elsif P = Name_Priority
11850 and then Pragma_Name (N) = Name_Interrupt_Priority
11851 then
11852 return N;
11853
11854 else
11855 Next (N);
11856 end if;
11857
11858 else
11859 Next (N);
11860 end if;
11861 end loop;
11862
11863 N := First (Private_Declarations (T));
11864 while Present (N) loop
11865 if Nkind (N) = N_Pragma then
11866 if Pragma_Name (N) = P then
11867 return N;
11868
11869 elsif P = Name_Priority
11870 and then Pragma_Name (N) = Name_Interrupt_Priority
11871 then
11872 return N;
11873
11874 else
11875 Next (N);
11876 end if;
11877
11878 else
11879 Next (N);
11880 end if;
11881 end loop;
11882
11883 raise Program_Error;
11884 end Find_Task_Or_Protected_Pragma;
11885
11886 -------------------------------
11887 -- First_Protected_Operation --
11888 -------------------------------
11889
11890 function First_Protected_Operation (D : List_Id) return Node_Id is
11891 First_Op : Node_Id;
11892
11893 begin
11894 First_Op := First (D);
11895 while Present (First_Op)
11896 and then not Nkind_In (First_Op, N_Subprogram_Body, N_Entry_Body)
11897 loop
11898 Next (First_Op);
11899 end loop;
11900
11901 return First_Op;
11902 end First_Protected_Operation;
11903
11904 ---------------------------------------
11905 -- Install_Private_Data_Declarations --
11906 ---------------------------------------
11907
11908 procedure Install_Private_Data_Declarations
11909 (Loc : Source_Ptr;
11910 Spec_Id : Entity_Id;
11911 Conc_Typ : Entity_Id;
11912 Body_Nod : Node_Id;
11913 Decls : List_Id;
11914 Barrier : Boolean := False;
11915 Family : Boolean := False)
11916 is
11917 Is_Protected : constant Boolean := Is_Protected_Type (Conc_Typ);
11918 Decl : Node_Id;
11919 Def : Node_Id;
11920 Insert_Node : Node_Id := Empty;
11921 Obj_Ent : Entity_Id;
11922
11923 procedure Add (Decl : Node_Id);
11924 -- Add a single declaration after Insert_Node. If this is the first
11925 -- addition, Decl is added to the front of Decls and it becomes the
11926 -- insertion node.
11927
11928 function Replace_Bound (Bound : Node_Id) return Node_Id;
11929 -- The bounds of an entry index may depend on discriminants, create a
11930 -- reference to the corresponding prival. Otherwise return a duplicate
11931 -- of the original bound.
11932
11933 ---------
11934 -- Add --
11935 ---------
11936
11937 procedure Add (Decl : Node_Id) is
11938 begin
11939 if No (Insert_Node) then
11940 Prepend_To (Decls, Decl);
11941 else
11942 Insert_After (Insert_Node, Decl);
11943 end if;
11944
11945 Insert_Node := Decl;
11946 end Add;
11947
11948 --------------------------
11949 -- Replace_Discriminant --
11950 --------------------------
11951
11952 function Replace_Bound (Bound : Node_Id) return Node_Id is
11953 begin
11954 if Nkind (Bound) = N_Identifier
11955 and then Is_Discriminal (Entity (Bound))
11956 then
11957 return Make_Identifier (Loc, Chars (Entity (Bound)));
11958 else
11959 return Duplicate_Subexpr (Bound);
11960 end if;
11961 end Replace_Bound;
11962
11963 -- Start of processing for Install_Private_Data_Declarations
11964
11965 begin
11966 -- Step 1: Retrieve the concurrent object entity. Obj_Ent can denote
11967 -- formal parameter _O, _object or _task depending on the context.
11968
11969 Obj_Ent := Concurrent_Object (Spec_Id, Conc_Typ);
11970
11971 -- Special processing of _O for barrier functions, protected entries
11972 -- and families.
11973
11974 if Barrier
11975 or else
11976 (Is_Protected
11977 and then
11978 (Ekind (Spec_Id) = E_Entry
11979 or else Ekind (Spec_Id) = E_Entry_Family))
11980 then
11981 declare
11982 Conc_Rec : constant Entity_Id :=
11983 Corresponding_Record_Type (Conc_Typ);
11984 Typ_Id : constant Entity_Id :=
11985 Make_Defining_Identifier (Loc,
11986 New_External_Name (Chars (Conc_Rec), 'P'));
11987 begin
11988 -- Generate:
11989 -- type prot_typVP is access prot_typV;
11990
11991 Decl :=
11992 Make_Full_Type_Declaration (Loc,
11993 Defining_Identifier => Typ_Id,
11994 Type_Definition =>
11995 Make_Access_To_Object_Definition (Loc,
11996 Subtype_Indication =>
11997 New_Reference_To (Conc_Rec, Loc)));
11998 Add (Decl);
11999
12000 -- Generate:
12001 -- _object : prot_typVP := prot_typV (_O);
12002
12003 Decl :=
12004 Make_Object_Declaration (Loc,
12005 Defining_Identifier =>
12006 Make_Defining_Identifier (Loc, Name_uObject),
12007 Object_Definition => New_Reference_To (Typ_Id, Loc),
12008 Expression =>
12009 Unchecked_Convert_To (Typ_Id,
12010 New_Reference_To (Obj_Ent, Loc)));
12011 Add (Decl);
12012
12013 -- Set the reference to the concurrent object
12014
12015 Obj_Ent := Defining_Identifier (Decl);
12016 end;
12017 end if;
12018
12019 -- Step 2: Create the Protection object and build its declaration for
12020 -- any protected entry (family) of subprogram.
12021
12022 if Is_Protected then
12023 declare
12024 Prot_Ent : constant Entity_Id := Make_Temporary (Loc, 'R');
12025 Prot_Typ : RE_Id;
12026
12027 begin
12028 Set_Protection_Object (Spec_Id, Prot_Ent);
12029
12030 -- Determine the proper protection type
12031
12032 if Has_Attach_Handler (Conc_Typ)
12033 and then not Restricted_Profile
12034 then
12035 Prot_Typ := RE_Static_Interrupt_Protection;
12036
12037 elsif Has_Interrupt_Handler (Conc_Typ) then
12038 Prot_Typ := RE_Dynamic_Interrupt_Protection;
12039
12040 -- The type has explicit entries or generated primitive entry
12041 -- wrappers.
12042
12043 elsif Has_Entries (Conc_Typ)
12044 or else
12045 (Ada_Version >= Ada_2005
12046 and then Present (Interface_List (Parent (Conc_Typ))))
12047 then
12048 case Corresponding_Runtime_Package (Conc_Typ) is
12049 when System_Tasking_Protected_Objects_Entries =>
12050 Prot_Typ := RE_Protection_Entries;
12051
12052 when System_Tasking_Protected_Objects_Single_Entry =>
12053 Prot_Typ := RE_Protection_Entry;
12054
12055 when others =>
12056 raise Program_Error;
12057 end case;
12058
12059 else
12060 Prot_Typ := RE_Protection;
12061 end if;
12062
12063 -- Generate:
12064 -- conc_typR : protection_typ renames _object._object;
12065
12066 Decl :=
12067 Make_Object_Renaming_Declaration (Loc,
12068 Defining_Identifier => Prot_Ent,
12069 Subtype_Mark =>
12070 New_Reference_To (RTE (Prot_Typ), Loc),
12071 Name =>
12072 Make_Selected_Component (Loc,
12073 Prefix => New_Reference_To (Obj_Ent, Loc),
12074 Selector_Name => Make_Identifier (Loc, Name_uObject)));
12075 Add (Decl);
12076 end;
12077 end if;
12078
12079 -- Step 3: Add discriminant renamings (if any)
12080
12081 if Has_Discriminants (Conc_Typ) then
12082 declare
12083 D : Entity_Id;
12084
12085 begin
12086 D := First_Discriminant (Conc_Typ);
12087 while Present (D) loop
12088
12089 -- Adjust the source location
12090
12091 Set_Sloc (Discriminal (D), Loc);
12092
12093 -- Generate:
12094 -- discr_name : discr_typ renames _object.discr_name;
12095 -- or
12096 -- discr_name : discr_typ renames _task.discr_name;
12097
12098 Decl :=
12099 Make_Object_Renaming_Declaration (Loc,
12100 Defining_Identifier => Discriminal (D),
12101 Subtype_Mark => New_Reference_To (Etype (D), Loc),
12102 Name =>
12103 Make_Selected_Component (Loc,
12104 Prefix => New_Reference_To (Obj_Ent, Loc),
12105 Selector_Name => Make_Identifier (Loc, Chars (D))));
12106 Add (Decl);
12107
12108 Next_Discriminant (D);
12109 end loop;
12110 end;
12111 end if;
12112
12113 -- Step 4: Add private component renamings (if any)
12114
12115 if Is_Protected then
12116 Def := Protected_Definition (Parent (Conc_Typ));
12117
12118 if Present (Private_Declarations (Def)) then
12119 declare
12120 Comp : Node_Id;
12121 Comp_Id : Entity_Id;
12122 Decl_Id : Entity_Id;
12123
12124 begin
12125 Comp := First (Private_Declarations (Def));
12126 while Present (Comp) loop
12127 if Nkind (Comp) = N_Component_Declaration then
12128 Comp_Id := Defining_Identifier (Comp);
12129 Decl_Id :=
12130 Make_Defining_Identifier (Loc, Chars (Comp_Id));
12131
12132 -- Minimal decoration
12133
12134 if Ekind (Spec_Id) = E_Function then
12135 Set_Ekind (Decl_Id, E_Constant);
12136 else
12137 Set_Ekind (Decl_Id, E_Variable);
12138 end if;
12139
12140 Set_Prival (Comp_Id, Decl_Id);
12141 Set_Prival_Link (Decl_Id, Comp_Id);
12142 Set_Is_Aliased (Decl_Id, Is_Aliased (Comp_Id));
12143
12144 -- Generate:
12145 -- comp_name : comp_typ renames _object.comp_name;
12146
12147 Decl :=
12148 Make_Object_Renaming_Declaration (Loc,
12149 Defining_Identifier => Decl_Id,
12150 Subtype_Mark =>
12151 New_Reference_To (Etype (Comp_Id), Loc),
12152 Name =>
12153 Make_Selected_Component (Loc,
12154 Prefix =>
12155 New_Reference_To (Obj_Ent, Loc),
12156 Selector_Name =>
12157 Make_Identifier (Loc, Chars (Comp_Id))));
12158 Add (Decl);
12159 end if;
12160
12161 Next (Comp);
12162 end loop;
12163 end;
12164 end if;
12165 end if;
12166
12167 -- Step 5: Add the declaration of the entry index and the associated
12168 -- type for barrier functions and entry families.
12169
12170 if (Barrier and then Family)
12171 or else Ekind (Spec_Id) = E_Entry_Family
12172 then
12173 declare
12174 E : constant Entity_Id := Index_Object (Spec_Id);
12175 Index : constant Entity_Id :=
12176 Defining_Identifier (
12177 Entry_Index_Specification (
12178 Entry_Body_Formal_Part (Body_Nod)));
12179 Index_Con : constant Entity_Id :=
12180 Make_Defining_Identifier (Loc, Chars (Index));
12181 High : Node_Id;
12182 Index_Typ : Entity_Id;
12183 Low : Node_Id;
12184
12185 begin
12186 -- Minimal decoration
12187
12188 Set_Ekind (Index_Con, E_Constant);
12189 Set_Entry_Index_Constant (Index, Index_Con);
12190 Set_Discriminal_Link (Index_Con, Index);
12191
12192 -- Retrieve the bounds of the entry family
12193
12194 High := Type_High_Bound (Etype (Index));
12195 Low := Type_Low_Bound (Etype (Index));
12196
12197 -- In the simple case the entry family is given by a subtype
12198 -- mark and the index constant has the same type.
12199
12200 if Is_Entity_Name (Original_Node (
12201 Discrete_Subtype_Definition (Parent (Index))))
12202 then
12203 Index_Typ := Etype (Index);
12204
12205 -- Otherwise a new subtype declaration is required
12206
12207 else
12208 High := Replace_Bound (High);
12209 Low := Replace_Bound (Low);
12210
12211 Index_Typ := Make_Temporary (Loc, 'J');
12212
12213 -- Generate:
12214 -- subtype Jnn is <Etype of Index> range Low .. High;
12215
12216 Decl :=
12217 Make_Subtype_Declaration (Loc,
12218 Defining_Identifier => Index_Typ,
12219 Subtype_Indication =>
12220 Make_Subtype_Indication (Loc,
12221 Subtype_Mark =>
12222 New_Reference_To (Base_Type (Etype (Index)), Loc),
12223 Constraint =>
12224 Make_Range_Constraint (Loc,
12225 Range_Expression =>
12226 Make_Range (Loc, Low, High))));
12227 Add (Decl);
12228 end if;
12229
12230 Set_Etype (Index_Con, Index_Typ);
12231
12232 -- Create the object which designates the index:
12233 -- J : constant Jnn :=
12234 -- Jnn'Val (_E - <index expr> + Jnn'Pos (Jnn'First));
12235 --
12236 -- where Jnn is the subtype created above or the original type of
12237 -- the index, _E is a formal of the protected body subprogram and
12238 -- <index expr> is the index of the first family member.
12239
12240 Decl :=
12241 Make_Object_Declaration (Loc,
12242 Defining_Identifier => Index_Con,
12243 Constant_Present => True,
12244 Object_Definition =>
12245 New_Reference_To (Index_Typ, Loc),
12246
12247 Expression =>
12248 Make_Attribute_Reference (Loc,
12249 Prefix =>
12250 New_Reference_To (Index_Typ, Loc),
12251 Attribute_Name => Name_Val,
12252
12253 Expressions => New_List (
12254
12255 Make_Op_Add (Loc,
12256 Left_Opnd =>
12257 Make_Op_Subtract (Loc,
12258 Left_Opnd =>
12259 New_Reference_To (E, Loc),
12260 Right_Opnd =>
12261 Entry_Index_Expression (Loc,
12262 Defining_Identifier (Body_Nod),
12263 Empty, Conc_Typ)),
12264
12265 Right_Opnd =>
12266 Make_Attribute_Reference (Loc,
12267 Prefix =>
12268 New_Reference_To (Index_Typ, Loc),
12269 Attribute_Name => Name_Pos,
12270 Expressions => New_List (
12271 Make_Attribute_Reference (Loc,
12272 Prefix =>
12273 New_Reference_To (Index_Typ, Loc),
12274 Attribute_Name => Name_First)))))));
12275 Add (Decl);
12276 end;
12277 end if;
12278 end Install_Private_Data_Declarations;
12279
12280 ---------------------------------
12281 -- Is_Potentially_Large_Family --
12282 ---------------------------------
12283
12284 function Is_Potentially_Large_Family
12285 (Base_Index : Entity_Id;
12286 Conctyp : Entity_Id;
12287 Lo : Node_Id;
12288 Hi : Node_Id) return Boolean
12289 is
12290 begin
12291 return Scope (Base_Index) = Standard_Standard
12292 and then Base_Index = Base_Type (Standard_Integer)
12293 and then Has_Discriminants (Conctyp)
12294 and then Present
12295 (Discriminant_Default_Value (First_Discriminant (Conctyp)))
12296 and then
12297 (Denotes_Discriminant (Lo, True)
12298 or else Denotes_Discriminant (Hi, True));
12299 end Is_Potentially_Large_Family;
12300
12301 -------------------------------------
12302 -- Is_Private_Primitive_Subprogram --
12303 -------------------------------------
12304
12305 function Is_Private_Primitive_Subprogram (Id : Entity_Id) return Boolean is
12306 begin
12307 return
12308 (Ekind (Id) = E_Function or else Ekind (Id) = E_Procedure)
12309 and then Is_Private_Primitive (Id);
12310 end Is_Private_Primitive_Subprogram;
12311
12312 ------------------
12313 -- Index_Object --
12314 ------------------
12315
12316 function Index_Object (Spec_Id : Entity_Id) return Entity_Id is
12317 Bod_Subp : constant Entity_Id := Protected_Body_Subprogram (Spec_Id);
12318 Formal : Entity_Id;
12319
12320 begin
12321 Formal := First_Formal (Bod_Subp);
12322 while Present (Formal) loop
12323
12324 -- Look for formal parameter _E
12325
12326 if Chars (Formal) = Name_uE then
12327 return Formal;
12328 end if;
12329
12330 Next_Formal (Formal);
12331 end loop;
12332
12333 -- A protected body subprogram should always have the parameter in
12334 -- question.
12335
12336 raise Program_Error;
12337 end Index_Object;
12338
12339 --------------------------------
12340 -- Make_Initialize_Protection --
12341 --------------------------------
12342
12343 function Make_Initialize_Protection
12344 (Protect_Rec : Entity_Id) return List_Id
12345 is
12346 Loc : constant Source_Ptr := Sloc (Protect_Rec);
12347 P_Arr : Entity_Id;
12348 Pdef : Node_Id;
12349 Pdec : Node_Id;
12350 Ptyp : constant Node_Id :=
12351 Corresponding_Concurrent_Type (Protect_Rec);
12352 Args : List_Id;
12353 L : constant List_Id := New_List;
12354 Has_Entry : constant Boolean := Has_Entries (Ptyp);
12355 Restricted : constant Boolean := Restricted_Profile;
12356
12357 begin
12358 -- We may need two calls to properly initialize the object, one to
12359 -- Initialize_Protection, and possibly one to Install_Handlers if we
12360 -- have a pragma Attach_Handler.
12361
12362 -- Get protected declaration. In the case of a task type declaration,
12363 -- this is simply the parent of the protected type entity. In the single
12364 -- protected object declaration, this parent will be the implicit type,
12365 -- and we can find the corresponding single protected object declaration
12366 -- by searching forward in the declaration list in the tree.
12367
12368 -- Is the test for N_Single_Protected_Declaration needed here??? Nodes
12369 -- of this type should have been removed during semantic analysis.
12370
12371 Pdec := Parent (Ptyp);
12372 while not Nkind_In (Pdec, N_Protected_Type_Declaration,
12373 N_Single_Protected_Declaration)
12374 loop
12375 Next (Pdec);
12376 end loop;
12377
12378 -- Now we can find the object definition from this declaration
12379
12380 Pdef := Protected_Definition (Pdec);
12381
12382 -- Build the parameter list for the call. Note that _Init is the name
12383 -- of the formal for the object to be initialized, which is the task
12384 -- value record itself.
12385
12386 Args := New_List;
12387
12388 -- Object parameter. This is a pointer to the object of type
12389 -- Protection used by the GNARL to control the protected object.
12390
12391 Append_To (Args,
12392 Make_Attribute_Reference (Loc,
12393 Prefix =>
12394 Make_Selected_Component (Loc,
12395 Prefix => Make_Identifier (Loc, Name_uInit),
12396 Selector_Name => Make_Identifier (Loc, Name_uObject)),
12397 Attribute_Name => Name_Unchecked_Access));
12398
12399 -- Priority parameter. Set to Unspecified_Priority unless there is a
12400 -- priority pragma, in which case we take the value from the pragma,
12401 -- or there is an interrupt pragma and no priority pragma, and we
12402 -- set the ceiling to Interrupt_Priority'Last, an implementation-
12403 -- defined value, see D.3(10).
12404
12405 if Present (Pdef)
12406 and then Has_Pragma_Priority (Pdef)
12407 then
12408 declare
12409 Prio : constant Node_Id :=
12410 Expression
12411 (First
12412 (Pragma_Argument_Associations
12413 (Find_Task_Or_Protected_Pragma
12414 (Pdef, Name_Priority))));
12415 Temp : Entity_Id;
12416
12417 begin
12418 -- If priority is a static expression, then we can duplicate it
12419 -- with no problem and simply append it to the argument list.
12420
12421 if Is_Static_Expression (Prio) then
12422 Append_To (Args,
12423 Duplicate_Subexpr_No_Checks (Prio));
12424
12425 -- Otherwise, the priority may be a per-object expression, if it
12426 -- depends on a discriminant of the type. In this case, create
12427 -- local variable to capture the expression. Note that it is
12428 -- really necessary to create this variable explicitly. It might
12429 -- be thought that removing side effects would the appropriate
12430 -- approach, but that could generate declarations improperly
12431 -- placed in the enclosing scope.
12432
12433 -- Note: Use System.Any_Priority as the expected type for the
12434 -- non-static priority expression, in case the expression has not
12435 -- been analyzed yet (as occurs for example with pragma
12436 -- Interrupt_Priority).
12437
12438 else
12439 Temp := Make_Temporary (Loc, 'R', Prio);
12440 Append_To (L,
12441 Make_Object_Declaration (Loc,
12442 Defining_Identifier => Temp,
12443 Object_Definition =>
12444 New_Occurrence_Of (RTE (RE_Any_Priority), Loc),
12445 Expression => Relocate_Node (Prio)));
12446
12447 Append_To (Args, New_Occurrence_Of (Temp, Loc));
12448 end if;
12449 end;
12450
12451 -- When no priority is specified but an xx_Handler pragma is, we default
12452 -- to System.Interrupts.Default_Interrupt_Priority, see D.3(10).
12453
12454 elsif Has_Interrupt_Handler (Ptyp)
12455 or else Has_Attach_Handler (Ptyp)
12456 then
12457 Append_To (Args,
12458 New_Reference_To (RTE (RE_Default_Interrupt_Priority), Loc));
12459
12460 -- Normal case, no priority or xx_Handler specified, default priority
12461
12462 else
12463 Append_To (Args,
12464 New_Reference_To (RTE (RE_Unspecified_Priority), Loc));
12465 end if;
12466
12467 -- Test for Compiler_Info parameter. This parameter allows entry body
12468 -- procedures and barrier functions to be called from the runtime. It
12469 -- is a pointer to the record generated by the compiler to represent
12470 -- the protected object.
12471
12472 -- A protected type without entries that covers an interface and
12473 -- overrides the abstract routines with protected procedures is
12474 -- considered equivalent to a protected type with entries in the
12475 -- context of dispatching select statements.
12476
12477 if Has_Entry
12478 or else Has_Interrupt_Handler (Ptyp)
12479 or else Has_Attach_Handler (Ptyp)
12480 or else Has_Interfaces (Protect_Rec)
12481 then
12482 declare
12483 Pkg_Id : constant RTU_Id :=
12484 Corresponding_Runtime_Package (Ptyp);
12485 Called_Subp : RE_Id;
12486
12487 begin
12488 case Pkg_Id is
12489 when System_Tasking_Protected_Objects_Entries =>
12490 Called_Subp := RE_Initialize_Protection_Entries;
12491
12492 when System_Tasking_Protected_Objects =>
12493 Called_Subp := RE_Initialize_Protection;
12494
12495 when System_Tasking_Protected_Objects_Single_Entry =>
12496 Called_Subp := RE_Initialize_Protection_Entry;
12497
12498 when others =>
12499 raise Program_Error;
12500 end case;
12501
12502 if Has_Entry
12503 or else not Restricted
12504 or else Has_Interfaces (Protect_Rec)
12505 then
12506 Append_To (Args,
12507 Make_Attribute_Reference (Loc,
12508 Prefix => Make_Identifier (Loc, Name_uInit),
12509 Attribute_Name => Name_Address));
12510 end if;
12511
12512 -- Entry_Bodies parameter. This is a pointer to an array of
12513 -- pointers to the entry body procedures and barrier functions of
12514 -- the object. If the protected type has no entries this object
12515 -- will not exist, in this case, pass a null.
12516
12517 if Has_Entry then
12518 P_Arr := Entry_Bodies_Array (Ptyp);
12519
12520 Append_To (Args,
12521 Make_Attribute_Reference (Loc,
12522 Prefix => New_Reference_To (P_Arr, Loc),
12523 Attribute_Name => Name_Unrestricted_Access));
12524
12525 if Pkg_Id = System_Tasking_Protected_Objects_Entries then
12526
12527 -- Find index mapping function (clumsy but ok for now)
12528
12529 while Ekind (P_Arr) /= E_Function loop
12530 Next_Entity (P_Arr);
12531 end loop;
12532
12533 Append_To (Args,
12534 Make_Attribute_Reference (Loc,
12535 Prefix =>
12536 New_Reference_To (P_Arr, Loc),
12537 Attribute_Name => Name_Unrestricted_Access));
12538
12539 -- Build_Entry_Names generation flag. When set to true, the
12540 -- runtime will allocate an array to hold the string names
12541 -- of protected entries.
12542
12543 if not Restricted_Profile then
12544 if Entry_Names_OK then
12545 Append_To (Args,
12546 New_Reference_To (Standard_True, Loc));
12547 else
12548 Append_To (Args,
12549 New_Reference_To (Standard_False, Loc));
12550 end if;
12551 end if;
12552 end if;
12553
12554 elsif Pkg_Id = System_Tasking_Protected_Objects_Single_Entry then
12555 Append_To (Args, Make_Null (Loc));
12556
12557 elsif Pkg_Id = System_Tasking_Protected_Objects_Entries then
12558 Append_To (Args, Make_Null (Loc));
12559 Append_To (Args, Make_Null (Loc));
12560 Append_To (Args, New_Reference_To (Standard_False, Loc));
12561 end if;
12562
12563 Append_To (L,
12564 Make_Procedure_Call_Statement (Loc,
12565 Name => New_Reference_To (RTE (Called_Subp), Loc),
12566 Parameter_Associations => Args));
12567 end;
12568 else
12569 Append_To (L,
12570 Make_Procedure_Call_Statement (Loc,
12571 Name => New_Reference_To (RTE (RE_Initialize_Protection), Loc),
12572 Parameter_Associations => Args));
12573 end if;
12574
12575 if Has_Attach_Handler (Ptyp) then
12576
12577 -- We have a list of N Attach_Handler (ProcI, ExprI), and we have to
12578 -- make the following call:
12579
12580 -- Install_Handlers (_object,
12581 -- ((Expr1, Proc1'access), ...., (ExprN, ProcN'access));
12582
12583 -- or, in the case of Ravenscar:
12584
12585 -- Install_Restricted_Handlers
12586 -- ((Expr1, Proc1'access), ...., (ExprN, ProcN'access));
12587
12588 declare
12589 Args : constant List_Id := New_List;
12590 Table : constant List_Id := New_List;
12591 Ritem : Node_Id := First_Rep_Item (Ptyp);
12592
12593 begin
12594 -- Build the Attach_Handler table argument
12595
12596 while Present (Ritem) loop
12597 if Nkind (Ritem) = N_Pragma
12598 and then Pragma_Name (Ritem) = Name_Attach_Handler
12599 then
12600 declare
12601 Handler : constant Node_Id :=
12602 First (Pragma_Argument_Associations (Ritem));
12603
12604 Interrupt : constant Node_Id := Next (Handler);
12605 Expr : constant Node_Id := Expression (Interrupt);
12606
12607 begin
12608 Append_To (Table,
12609 Make_Aggregate (Loc, Expressions => New_List (
12610 Unchecked_Convert_To
12611 (RTE (RE_System_Interrupt_Id), Expr),
12612 Make_Attribute_Reference (Loc,
12613 Prefix => Make_Selected_Component (Loc,
12614 Make_Identifier (Loc, Name_uInit),
12615 Duplicate_Subexpr_No_Checks
12616 (Expression (Handler))),
12617 Attribute_Name => Name_Access))));
12618 end;
12619 end if;
12620
12621 Next_Rep_Item (Ritem);
12622 end loop;
12623
12624 -- Append the table argument we just built
12625
12626 Append_To (Args, Make_Aggregate (Loc, Table));
12627
12628 -- Append the Install_Handlers (or Install_Restricted_Handlers)
12629 -- call to the statements.
12630
12631 if Restricted then
12632 -- Call a simplified version of Install_Handlers to be used
12633 -- when the Ravenscar restrictions are in effect
12634 -- (Install_Restricted_Handlers).
12635
12636 Append_To (L,
12637 Make_Procedure_Call_Statement (Loc,
12638 Name =>
12639 New_Reference_To
12640 (RTE (RE_Install_Restricted_Handlers), Loc),
12641 Parameter_Associations => Args));
12642
12643 else
12644 -- First, prepends the _object argument
12645
12646 Prepend_To (Args,
12647 Make_Attribute_Reference (Loc,
12648 Prefix =>
12649 Make_Selected_Component (Loc,
12650 Prefix => Make_Identifier (Loc, Name_uInit),
12651 Selector_Name => Make_Identifier (Loc, Name_uObject)),
12652 Attribute_Name => Name_Unchecked_Access));
12653
12654 -- Then, insert call to Install_Handlers
12655
12656 Append_To (L,
12657 Make_Procedure_Call_Statement (Loc,
12658 Name => New_Reference_To (RTE (RE_Install_Handlers), Loc),
12659 Parameter_Associations => Args));
12660 end if;
12661 end;
12662 end if;
12663
12664 return L;
12665 end Make_Initialize_Protection;
12666
12667 ---------------------------
12668 -- Make_Task_Create_Call --
12669 ---------------------------
12670
12671 function Make_Task_Create_Call (Task_Rec : Entity_Id) return Node_Id is
12672 Loc : constant Source_Ptr := Sloc (Task_Rec);
12673 Args : List_Id;
12674 Ecount : Node_Id;
12675 Name : Node_Id;
12676 Tdec : Node_Id;
12677 Tdef : Node_Id;
12678 Tnam : Name_Id;
12679 Ttyp : Node_Id;
12680
12681 begin
12682 Ttyp := Corresponding_Concurrent_Type (Task_Rec);
12683 Tnam := Chars (Ttyp);
12684
12685 -- Get task declaration. In the case of a task type declaration, this is
12686 -- simply the parent of the task type entity. In the single task
12687 -- declaration, this parent will be the implicit type, and we can find
12688 -- the corresponding single task declaration by searching forward in the
12689 -- declaration list in the tree.
12690
12691 -- Is the test for N_Single_Task_Declaration needed here??? Nodes of
12692 -- this type should have been removed during semantic analysis.
12693
12694 Tdec := Parent (Ttyp);
12695 while not Nkind_In (Tdec, N_Task_Type_Declaration,
12696 N_Single_Task_Declaration)
12697 loop
12698 Next (Tdec);
12699 end loop;
12700
12701 -- Now we can find the task definition from this declaration
12702
12703 Tdef := Task_Definition (Tdec);
12704
12705 -- Build the parameter list for the call. Note that _Init is the name
12706 -- of the formal for the object to be initialized, which is the task
12707 -- value record itself.
12708
12709 Args := New_List;
12710
12711 -- Priority parameter. Set to Unspecified_Priority unless there is a
12712 -- priority pragma, in which case we take the value from the pragma.
12713
12714 if Present (Tdef) and then Has_Pragma_Priority (Tdef) then
12715 Append_To (Args,
12716 Make_Selected_Component (Loc,
12717 Prefix => Make_Identifier (Loc, Name_uInit),
12718 Selector_Name => Make_Identifier (Loc, Name_uPriority)));
12719 else
12720 Append_To (Args,
12721 New_Reference_To (RTE (RE_Unspecified_Priority), Loc));
12722 end if;
12723
12724 -- Optional Stack parameter
12725
12726 if Restricted_Profile then
12727
12728 -- If the stack has been preallocated by the expander then
12729 -- pass its address. Otherwise, pass a null address.
12730
12731 if Preallocated_Stacks_On_Target then
12732 Append_To (Args,
12733 Make_Attribute_Reference (Loc,
12734 Prefix =>
12735 Make_Selected_Component (Loc,
12736 Prefix => Make_Identifier (Loc, Name_uInit),
12737 Selector_Name => Make_Identifier (Loc, Name_uStack)),
12738 Attribute_Name => Name_Address));
12739
12740 else
12741 Append_To (Args,
12742 New_Reference_To (RTE (RE_Null_Address), Loc));
12743 end if;
12744 end if;
12745
12746 -- Size parameter. If no Storage_Size pragma is present, then
12747 -- the size is taken from the taskZ variable for the type, which
12748 -- is either Unspecified_Size, or has been reset by the use of
12749 -- a Storage_Size attribute definition clause. If a pragma is
12750 -- present, then the size is taken from the _Size field of the
12751 -- task value record, which was set from the pragma value.
12752
12753 if Present (Tdef)
12754 and then Has_Storage_Size_Pragma (Tdef)
12755 then
12756 Append_To (Args,
12757 Make_Selected_Component (Loc,
12758 Prefix => Make_Identifier (Loc, Name_uInit),
12759 Selector_Name => Make_Identifier (Loc, Name_uSize)));
12760
12761 else
12762 Append_To (Args,
12763 New_Reference_To (Storage_Size_Variable (Ttyp), Loc));
12764 end if;
12765
12766 -- Task_Info parameter. Set to Unspecified_Task_Info unless there is a
12767 -- Task_Info pragma, in which case we take the value from the pragma.
12768
12769 if Present (Tdef)
12770 and then Has_Task_Info_Pragma (Tdef)
12771 then
12772 Append_To (Args,
12773 Make_Selected_Component (Loc,
12774 Prefix => Make_Identifier (Loc, Name_uInit),
12775 Selector_Name => Make_Identifier (Loc, Name_uTask_Info)));
12776
12777 else
12778 Append_To (Args,
12779 New_Reference_To (RTE (RE_Unspecified_Task_Info), Loc));
12780 end if;
12781
12782 -- CPU parameter. Set to Unspecified_CPU unless there is a CPU pragma,
12783 -- in which case we take the value from the pragma. The parameter is
12784 -- passed as an Integer because in the case of unspecified CPU the
12785 -- value is not in the range of CPU_Range.
12786
12787 if Present (Tdef) and then Has_Pragma_CPU (Tdef) then
12788 Append_To (Args,
12789 Convert_To (Standard_Integer,
12790 Make_Selected_Component (Loc,
12791 Prefix => Make_Identifier (Loc, Name_uInit),
12792 Selector_Name => Make_Identifier (Loc, Name_uCPU))));
12793
12794 else
12795 Append_To (Args,
12796 New_Reference_To (RTE (RE_Unspecified_CPU), Loc));
12797 end if;
12798
12799 if not Restricted_Profile then
12800
12801 -- Deadline parameter. If no Relative_Deadline pragma is present,
12802 -- then the deadline is Time_Span_Zero. If a pragma is present, then
12803 -- the deadline is taken from the _Relative_Deadline field of the
12804 -- task value record, which was set from the pragma value. Note that
12805 -- this parameter must not be generated for the restricted profiles
12806 -- since Ravenscar does not allow deadlines.
12807
12808 -- Case where pragma Relative_Deadline applies: use given value
12809
12810 if Present (Tdef) and then Has_Relative_Deadline_Pragma (Tdef) then
12811 Append_To (Args,
12812 Make_Selected_Component (Loc,
12813 Prefix =>
12814 Make_Identifier (Loc, Name_uInit),
12815 Selector_Name =>
12816 Make_Identifier (Loc, Name_uRelative_Deadline)));
12817
12818 -- No pragma Relative_Deadline apply to the task
12819
12820 else
12821 Append_To (Args,
12822 New_Reference_To (RTE (RE_Time_Span_Zero), Loc));
12823 end if;
12824
12825 -- Dispatching_Domain parameter. If no Dispatching_Domain pragma or
12826 -- aspect is present, then the dispatching domain is null. If a
12827 -- pragma or aspect is present, then the dispatching domain is taken
12828 -- from the _Dispatching_Domain field of the task value record,
12829 -- which was set from the pragma value. Note that this parameter
12830 -- must not be generated for the restricted profiles since Ravenscar
12831 -- does not allow dispatching domains.
12832
12833 -- Case where pragma or aspect Dispatching_Domain applies: use given
12834 -- value.
12835
12836 if Present (Tdef) and then Has_Pragma_Dispatching_Domain (Tdef) then
12837 Append_To (Args,
12838 Make_Selected_Component (Loc,
12839 Prefix =>
12840 Make_Identifier (Loc, Name_uInit),
12841 Selector_Name =>
12842 Make_Identifier (Loc, Name_uDispatching_Domain)));
12843
12844 -- No pragma or aspect Dispatching_Domain apply to the task
12845
12846 else
12847 Append_To (Args, Make_Null (Loc));
12848 end if;
12849
12850 -- Number of entries. This is an expression of the form:
12851
12852 -- n + _Init.a'Length + _Init.a'B'Length + ...
12853
12854 -- where a,b... are the entry family names for the task definition
12855
12856 Ecount :=
12857 Build_Entry_Count_Expression
12858 (Ttyp,
12859 Component_Items
12860 (Component_List
12861 (Type_Definition
12862 (Parent (Corresponding_Record_Type (Ttyp))))),
12863 Loc);
12864 Append_To (Args, Ecount);
12865
12866 -- Master parameter. This is a reference to the _Master parameter of
12867 -- the initialization procedure, except in the case of the pragma
12868 -- Restrictions (No_Task_Hierarchy) where the value is fixed to
12869 -- System.Tasking.Library_Task_Level.
12870
12871 if Restriction_Active (No_Task_Hierarchy) = False then
12872 Append_To (Args, Make_Identifier (Loc, Name_uMaster));
12873 else
12874 Append_To (Args,
12875 New_Occurrence_Of (RTE (RE_Library_Task_Level), Loc));
12876 end if;
12877 end if;
12878
12879 -- State parameter. This is a pointer to the task body procedure. The
12880 -- required value is obtained by taking 'Unrestricted_Access of the task
12881 -- body procedure and converting it (with an unchecked conversion) to
12882 -- the type required by the task kernel. For further details, see the
12883 -- description of Expand_N_Task_Body. We use 'Unrestricted_Access rather
12884 -- than 'Address in order to avoid creating trampolines.
12885
12886 declare
12887 Body_Proc : constant Node_Id := Get_Task_Body_Procedure (Ttyp);
12888 Subp_Ptr_Typ : constant Node_Id :=
12889 Create_Itype (E_Access_Subprogram_Type, Tdec);
12890 Ref : constant Node_Id := Make_Itype_Reference (Loc);
12891
12892 begin
12893 Set_Directly_Designated_Type (Subp_Ptr_Typ, Body_Proc);
12894 Set_Etype (Subp_Ptr_Typ, Subp_Ptr_Typ);
12895
12896 -- Be sure to freeze a reference to the access-to-subprogram type,
12897 -- otherwise gigi will complain that it's in the wrong scope, because
12898 -- it's actually inside the init procedure for the record type that
12899 -- corresponds to the task type.
12900
12901 -- This processing is causing a crash in the .NET/JVM back ends that
12902 -- is not yet understood, so skip it in these cases ???
12903
12904 if VM_Target = No_VM then
12905 Set_Itype (Ref, Subp_Ptr_Typ);
12906 Append_Freeze_Action (Task_Rec, Ref);
12907
12908 Append_To (Args,
12909 Unchecked_Convert_To (RTE (RE_Task_Procedure_Access),
12910 Make_Qualified_Expression (Loc,
12911 Subtype_Mark => New_Reference_To (Subp_Ptr_Typ, Loc),
12912 Expression =>
12913 Make_Attribute_Reference (Loc,
12914 Prefix =>
12915 New_Occurrence_Of (Body_Proc, Loc),
12916 Attribute_Name => Name_Unrestricted_Access))));
12917
12918 -- For the .NET/JVM cases revert to the original code below ???
12919
12920 else
12921 Append_To (Args,
12922 Unchecked_Convert_To (RTE (RE_Task_Procedure_Access),
12923 Make_Attribute_Reference (Loc,
12924 Prefix =>
12925 New_Occurrence_Of (Body_Proc, Loc),
12926 Attribute_Name => Name_Address)));
12927 end if;
12928 end;
12929
12930 -- Discriminants parameter. This is just the address of the task
12931 -- value record itself (which contains the discriminant values
12932
12933 Append_To (Args,
12934 Make_Attribute_Reference (Loc,
12935 Prefix => Make_Identifier (Loc, Name_uInit),
12936 Attribute_Name => Name_Address));
12937
12938 -- Elaborated parameter. This is an access to the elaboration Boolean
12939
12940 Append_To (Args,
12941 Make_Attribute_Reference (Loc,
12942 Prefix => Make_Identifier (Loc, New_External_Name (Tnam, 'E')),
12943 Attribute_Name => Name_Unchecked_Access));
12944
12945 -- Chain parameter. This is a reference to the _Chain parameter of
12946 -- the initialization procedure.
12947
12948 Append_To (Args, Make_Identifier (Loc, Name_uChain));
12949
12950 -- Task name parameter. Take this from the _Task_Id parameter to the
12951 -- init call unless there is a Task_Name pragma, in which case we take
12952 -- the value from the pragma.
12953
12954 if Present (Tdef)
12955 and then Has_Task_Name_Pragma (Tdef)
12956 then
12957 -- Copy expression in full, because it may be dynamic and have
12958 -- side effects.
12959
12960 Append_To (Args,
12961 New_Copy_Tree
12962 (Expression (First
12963 (Pragma_Argument_Associations
12964 (Find_Task_Or_Protected_Pragma
12965 (Tdef, Name_Task_Name))))));
12966
12967 else
12968 Append_To (Args, Make_Identifier (Loc, Name_uTask_Name));
12969 end if;
12970
12971 -- Created_Task parameter. This is the _Task_Id field of the task
12972 -- record value
12973
12974 Append_To (Args,
12975 Make_Selected_Component (Loc,
12976 Prefix => Make_Identifier (Loc, Name_uInit),
12977 Selector_Name => Make_Identifier (Loc, Name_uTask_Id)));
12978
12979 -- Build_Entry_Names generation flag. When set to true, the runtime
12980 -- will allocate an array to hold the string names of task entries.
12981
12982 if not Restricted_Profile then
12983 if Has_Entries (Ttyp)
12984 and then Entry_Names_OK
12985 then
12986 Append_To (Args, New_Reference_To (Standard_True, Loc));
12987 else
12988 Append_To (Args, New_Reference_To (Standard_False, Loc));
12989 end if;
12990 end if;
12991
12992 if Restricted_Profile then
12993 Name := New_Reference_To (RTE (RE_Create_Restricted_Task), Loc);
12994 else
12995 Name := New_Reference_To (RTE (RE_Create_Task), Loc);
12996 end if;
12997
12998 return
12999 Make_Procedure_Call_Statement (Loc,
13000 Name => Name,
13001 Parameter_Associations => Args);
13002 end Make_Task_Create_Call;
13003
13004 ------------------------------
13005 -- Next_Protected_Operation --
13006 ------------------------------
13007
13008 function Next_Protected_Operation (N : Node_Id) return Node_Id is
13009 Next_Op : Node_Id;
13010
13011 begin
13012 Next_Op := Next (N);
13013 while Present (Next_Op)
13014 and then not Nkind_In (Next_Op, N_Subprogram_Body, N_Entry_Body)
13015 loop
13016 Next (Next_Op);
13017 end loop;
13018
13019 return Next_Op;
13020 end Next_Protected_Operation;
13021
13022 ---------------------
13023 -- Null_Statements --
13024 ---------------------
13025
13026 function Null_Statements (Stats : List_Id) return Boolean is
13027 Stmt : Node_Id;
13028
13029 begin
13030 Stmt := First (Stats);
13031 while Nkind (Stmt) /= N_Empty
13032 and then (Nkind_In (Stmt, N_Null_Statement, N_Label)
13033 or else
13034 (Nkind (Stmt) = N_Pragma
13035 and then (Pragma_Name (Stmt) = Name_Unreferenced
13036 or else
13037 Pragma_Name (Stmt) = Name_Unmodified
13038 or else
13039 Pragma_Name (Stmt) = Name_Warnings)))
13040 loop
13041 Next (Stmt);
13042 end loop;
13043
13044 return Nkind (Stmt) = N_Empty;
13045 end Null_Statements;
13046
13047 --------------------------
13048 -- Parameter_Block_Pack --
13049 --------------------------
13050
13051 function Parameter_Block_Pack
13052 (Loc : Source_Ptr;
13053 Blk_Typ : Entity_Id;
13054 Actuals : List_Id;
13055 Formals : List_Id;
13056 Decls : List_Id;
13057 Stmts : List_Id) return Node_Id
13058 is
13059 Actual : Entity_Id;
13060 Expr : Node_Id := Empty;
13061 Formal : Entity_Id;
13062 Has_Param : Boolean := False;
13063 P : Entity_Id;
13064 Params : List_Id;
13065 Temp_Asn : Node_Id;
13066 Temp_Nam : Node_Id;
13067
13068 begin
13069 Actual := First (Actuals);
13070 Formal := Defining_Identifier (First (Formals));
13071 Params := New_List;
13072
13073 while Present (Actual) loop
13074 if Is_By_Copy_Type (Etype (Actual)) then
13075 -- Generate:
13076 -- Jnn : aliased <formal-type>
13077
13078 Temp_Nam := Make_Temporary (Loc, 'J');
13079
13080 Append_To (Decls,
13081 Make_Object_Declaration (Loc,
13082 Aliased_Present =>
13083 True,
13084 Defining_Identifier =>
13085 Temp_Nam,
13086 Object_Definition =>
13087 New_Reference_To (Etype (Formal), Loc)));
13088
13089 if Ekind (Formal) /= E_Out_Parameter then
13090
13091 -- Generate:
13092 -- Jnn := <actual>
13093
13094 Temp_Asn :=
13095 New_Reference_To (Temp_Nam, Loc);
13096
13097 Set_Assignment_OK (Temp_Asn);
13098
13099 Append_To (Stmts,
13100 Make_Assignment_Statement (Loc,
13101 Name =>
13102 Temp_Asn,
13103 Expression =>
13104 New_Copy_Tree (Actual)));
13105 end if;
13106
13107 -- Generate:
13108 -- Jnn'unchecked_access
13109
13110 Append_To (Params,
13111 Make_Attribute_Reference (Loc,
13112 Attribute_Name =>
13113 Name_Unchecked_Access,
13114 Prefix =>
13115 New_Reference_To (Temp_Nam, Loc)));
13116
13117 Has_Param := True;
13118
13119 -- The controlling parameter is omitted
13120
13121 else
13122 if not Is_Controlling_Actual (Actual) then
13123 Append_To (Params,
13124 Make_Reference (Loc, New_Copy_Tree (Actual)));
13125
13126 Has_Param := True;
13127 end if;
13128 end if;
13129
13130 Next_Actual (Actual);
13131 Next_Formal_With_Extras (Formal);
13132 end loop;
13133
13134 if Has_Param then
13135 Expr := Make_Aggregate (Loc, Params);
13136 end if;
13137
13138 -- Generate:
13139 -- P : Ann := (
13140 -- J1'unchecked_access;
13141 -- <actual2>'reference;
13142 -- ...);
13143
13144 P := Make_Temporary (Loc, 'P');
13145
13146 Append_To (Decls,
13147 Make_Object_Declaration (Loc,
13148 Defining_Identifier =>
13149 P,
13150 Object_Definition =>
13151 New_Reference_To (Blk_Typ, Loc),
13152 Expression =>
13153 Expr));
13154
13155 return P;
13156 end Parameter_Block_Pack;
13157
13158 ----------------------------
13159 -- Parameter_Block_Unpack --
13160 ----------------------------
13161
13162 function Parameter_Block_Unpack
13163 (Loc : Source_Ptr;
13164 P : Entity_Id;
13165 Actuals : List_Id;
13166 Formals : List_Id) return List_Id
13167 is
13168 Actual : Entity_Id;
13169 Asnmt : Node_Id;
13170 Formal : Entity_Id;
13171 Has_Asnmt : Boolean := False;
13172 Result : constant List_Id := New_List;
13173
13174 begin
13175 Actual := First (Actuals);
13176 Formal := Defining_Identifier (First (Formals));
13177 while Present (Actual) loop
13178 if Is_By_Copy_Type (Etype (Actual))
13179 and then Ekind (Formal) /= E_In_Parameter
13180 then
13181 -- Generate:
13182 -- <actual> := P.<formal>;
13183
13184 Asnmt :=
13185 Make_Assignment_Statement (Loc,
13186 Name =>
13187 New_Copy (Actual),
13188 Expression =>
13189 Make_Explicit_Dereference (Loc,
13190 Make_Selected_Component (Loc,
13191 Prefix =>
13192 New_Reference_To (P, Loc),
13193 Selector_Name =>
13194 Make_Identifier (Loc, Chars (Formal)))));
13195
13196 Set_Assignment_OK (Name (Asnmt));
13197 Append_To (Result, Asnmt);
13198
13199 Has_Asnmt := True;
13200 end if;
13201
13202 Next_Actual (Actual);
13203 Next_Formal_With_Extras (Formal);
13204 end loop;
13205
13206 if Has_Asnmt then
13207 return Result;
13208 else
13209 return New_List (Make_Null_Statement (Loc));
13210 end if;
13211 end Parameter_Block_Unpack;
13212
13213 ----------------------
13214 -- Set_Discriminals --
13215 ----------------------
13216
13217 procedure Set_Discriminals (Dec : Node_Id) is
13218 D : Entity_Id;
13219 Pdef : Entity_Id;
13220 D_Minal : Entity_Id;
13221
13222 begin
13223 pragma Assert (Nkind (Dec) = N_Protected_Type_Declaration);
13224 Pdef := Defining_Identifier (Dec);
13225
13226 if Has_Discriminants (Pdef) then
13227 D := First_Discriminant (Pdef);
13228 while Present (D) loop
13229 D_Minal :=
13230 Make_Defining_Identifier (Sloc (D),
13231 Chars => New_External_Name (Chars (D), 'D'));
13232
13233 Set_Ekind (D_Minal, E_Constant);
13234 Set_Etype (D_Minal, Etype (D));
13235 Set_Scope (D_Minal, Pdef);
13236 Set_Discriminal (D, D_Minal);
13237 Set_Discriminal_Link (D_Minal, D);
13238
13239 Next_Discriminant (D);
13240 end loop;
13241 end if;
13242 end Set_Discriminals;
13243
13244 -----------------------
13245 -- Trivial_Accept_OK --
13246 -----------------------
13247
13248 function Trivial_Accept_OK return Boolean is
13249 begin
13250 case Opt.Task_Dispatching_Policy is
13251
13252 -- If we have the default task dispatching policy in effect, we can
13253 -- definitely do the optimization (one way of looking at this is to
13254 -- think of the formal definition of the default policy being allowed
13255 -- to run any task it likes after a rendezvous, so even if notionally
13256 -- a full rescheduling occurs, we can say that our dispatching policy
13257 -- (i.e. the default dispatching policy) reorders the queue to be the
13258 -- same as just before the call.
13259
13260 when ' ' =>
13261 return True;
13262
13263 -- FIFO_Within_Priorities certainly does not permit this
13264 -- optimization since the Rendezvous is a scheduling action that may
13265 -- require some other task to be run.
13266
13267 when 'F' =>
13268 return False;
13269
13270 -- For now, disallow the optimization for all other policies. This
13271 -- may be over-conservative, but it is certainly not incorrect.
13272
13273 when others =>
13274 return False;
13275
13276 end case;
13277 end Trivial_Accept_OK;
13278
13279 end Exp_Ch9;