1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2014, Free Software Foundation, Inc. --
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. --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 ------------------------------------------------------------------------------
26 with Atree
; use Atree
;
27 with Einfo
; use Einfo
;
28 with Elists
; use Elists
;
29 with Exp_Atag
; use Exp_Atag
;
30 with Exp_Disp
; use Exp_Disp
;
31 with Exp_Strm
; use Exp_Strm
;
32 with Exp_Tss
; use Exp_Tss
;
33 with Exp_Util
; use Exp_Util
;
35 with Nlists
; use Nlists
;
36 with Nmake
; use Nmake
;
38 with Rtsfind
; use Rtsfind
;
40 with Sem_Aux
; use Sem_Aux
;
41 with Sem_Cat
; use Sem_Cat
;
42 with Sem_Ch3
; use Sem_Ch3
;
43 with Sem_Ch8
; use Sem_Ch8
;
44 with Sem_Ch12
; use Sem_Ch12
;
45 with Sem_Dist
; use Sem_Dist
;
46 with Sem_Eval
; use Sem_Eval
;
47 with Sem_Util
; use Sem_Util
;
48 with Sinfo
; use Sinfo
;
49 with Stand
; use Stand
;
50 with Stringt
; use Stringt
;
51 with Tbuild
; use Tbuild
;
52 with Ttypes
; use Ttypes
;
53 with Uintp
; use Uintp
;
55 with GNAT
.HTable
; use GNAT
.HTable
;
57 package body Exp_Dist
is
59 -- The following model has been used to implement distributed objects:
60 -- given a designated type D and a RACW type R, then a record of the form:
62 -- type Stub is tagged record
63 -- [...declaration similar to s-parint.ads RACW_Stub_Type...]
66 -- is built. This type has two properties:
68 -- 1) Since it has the same structure as RACW_Stub_Type, it can
69 -- be converted to and from this type to make it suitable for
70 -- System.Partition_Interface.Get_Unique_Remote_Pointer in order
71 -- to avoid memory leaks when the same remote object arrives on the
72 -- same partition through several paths;
74 -- 2) It also has the same dispatching table as the designated type D,
75 -- and thus can be used as an object designated by a value of type
76 -- R on any partition other than the one on which the object has
77 -- been created, since only dispatching calls will be performed and
78 -- the fields themselves will not be used. We call Derive_Subprograms
79 -- to fake half a derivation to ensure that the subprograms do have
80 -- the same dispatching table.
82 First_RCI_Subprogram_Id
: constant := 2;
83 -- RCI subprograms are numbered starting at 2. The RCI receiver for
84 -- an RCI package can thus identify calls received through remote
85 -- access-to-subprogram dereferences by the fact that they have a
86 -- (primitive) subprogram id of 0, and 1 is used for the internal RAS
87 -- information lookup operation. (This is for the Garlic code generation,
88 -- where subprograms are identified by numbers; in the PolyORB version,
89 -- they are identified by name, with a numeric suffix for homonyms.)
91 type Hash_Index
is range 0 .. 50;
93 -----------------------
94 -- Local subprograms --
95 -----------------------
97 function Hash
(F
: Entity_Id
) return Hash_Index
;
98 -- DSA expansion associates stubs to distributed object types using a hash
99 -- table on entity ids.
101 function Hash
(F
: Name_Id
) return Hash_Index
;
102 -- The generation of subprogram identifiers requires an overload counter
103 -- to be associated with each remote subprogram name. These counters are
104 -- maintained in a hash table on name ids.
106 type Subprogram_Identifiers
is record
107 Str_Identifier
: String_Id
;
108 Int_Identifier
: Int
;
111 package Subprogram_Identifier_Table
is
112 new Simple_HTable
(Header_Num
=> Hash_Index
,
113 Element
=> Subprogram_Identifiers
,
114 No_Element
=> (No_String
, 0),
118 -- Mapping between a remote subprogram and the corresponding subprogram
121 package Overload_Counter_Table
is
122 new Simple_HTable
(Header_Num
=> Hash_Index
,
128 -- Mapping between a subprogram name and an integer that counts the number
129 -- of defining subprogram names with that Name_Id encountered so far in a
130 -- given context (an interface).
132 function Get_Subprogram_Ids
(Def
: Entity_Id
) return Subprogram_Identifiers
;
133 function Get_Subprogram_Id
(Def
: Entity_Id
) return String_Id
;
134 function Get_Subprogram_Id
(Def
: Entity_Id
) return Int
;
135 -- Given a subprogram defined in a RCI package, get its distribution
136 -- subprogram identifiers (the distribution identifiers are a unique
137 -- subprogram number, and the non-qualified subprogram name, in the
138 -- casing used for the subprogram declaration; if the name is overloaded,
139 -- a double underscore and a serial number are appended.
141 -- The integer identifier is used to perform remote calls with GARLIC;
142 -- the string identifier is used in the case of PolyORB.
144 -- Although the PolyORB DSA receiving stubs will make a caseless comparison
145 -- when receiving a call, the calling stubs will create requests with the
146 -- exact casing of the defining unit name of the called subprogram, so as
147 -- to allow calls to subprograms on distributed nodes that do distinguish
150 -- NOTE: Another design would be to allow a representation clause on
151 -- subprogram specs: for Subp'Distribution_Identifier use "fooBar";
153 pragma Warnings
(Off
, Get_Subprogram_Id
);
154 -- One homonym only is unreferenced (specific to the GARLIC version)
156 procedure Add_RAS_Dereference_TSS
(N
: Node_Id
);
157 -- Add a subprogram body for RAS Dereference TSS
159 procedure Add_RAS_Proxy_And_Analyze
162 All_Calls_Remote_E
: Entity_Id
;
163 Proxy_Object_Addr
: out Entity_Id
);
164 -- Add the proxy type required, on the receiving (server) side, to handle
165 -- calls to the subprogram declared by Vis_Decl through a remote access
166 -- to subprogram type. All_Calls_Remote_E must be Standard_True if a pragma
167 -- All_Calls_Remote applies, Standard_False otherwise. The new proxy type
168 -- is appended to Decls. Proxy_Object_Addr is a constant of type
169 -- System.Address that designates an instance of the proxy object.
171 function Build_Remote_Subprogram_Proxy_Type
173 ACR_Expression
: Node_Id
) return Node_Id
;
174 -- Build and return a tagged record type definition for an RCI subprogram
175 -- proxy type. ACR_Expression is used as the initialization value for the
176 -- All_Calls_Remote component.
178 function Build_Get_Unique_RP_Call
181 Stub_Type
: Entity_Id
) return List_Id
;
182 -- Build a call to Get_Unique_Remote_Pointer (Pointer), followed by a
183 -- tag fixup (Get_Unique_Remote_Pointer may have changed Pointer'Tag to
184 -- RACW_Stub_Type'Tag, while the desired tag is that of Stub_Type).
186 function Build_Stub_Tag
188 RACW_Type
: Entity_Id
) return Node_Id
;
189 -- Return an expression denoting the tag of the stub type associated with
192 function Build_Subprogram_Calling_Stubs
195 Asynchronous
: Boolean;
196 Dynamically_Asynchronous
: Boolean := False;
197 Stub_Type
: Entity_Id
:= Empty
;
198 RACW_Type
: Entity_Id
:= Empty
;
199 Locator
: Entity_Id
:= Empty
;
200 New_Name
: Name_Id
:= No_Name
) return Node_Id
;
201 -- Build the calling stub for a given subprogram with the subprogram ID
202 -- being Subp_Id. If Stub_Type is given, then the "addr" field of
203 -- parameters of this type will be marshalled instead of the object itself.
204 -- It will then be converted into Stub_Type before performing the real
205 -- call. If Dynamically_Asynchronous is True, then it will be computed at
206 -- run time whether the call is asynchronous or not. Otherwise, the value
207 -- of the formal Asynchronous will be used. If Locator is not Empty, it
208 -- will be used instead of RCI_Cache. If New_Name is given, then it will
209 -- be used instead of the original name.
211 function Build_RPC_Receiver_Specification
212 (RPC_Receiver
: Entity_Id
;
213 Request_Parameter
: Entity_Id
) return Node_Id
;
214 -- Make a subprogram specification for an RPC receiver, with the given
215 -- defining unit name and formal parameter.
217 function Build_Ordered_Parameters_List
(Spec
: Node_Id
) return List_Id
;
218 -- Return an ordered parameter list: unconstrained parameters are put
219 -- at the beginning of the list and constrained ones are put after. If
220 -- there are no parameters, an empty list is returned. Special case:
221 -- the controlling formal of the equivalent RACW operation for a RAS
222 -- type is always left in first position.
224 function Transmit_As_Unconstrained
(Typ
: Entity_Id
) return Boolean;
225 -- True when Typ is an unconstrained type, or a null-excluding access type.
226 -- In either case, this means stubs cannot contain a default-initialized
227 -- object declaration of such type.
229 procedure Add_Calling_Stubs_To_Declarations
(Pkg_Spec
: Node_Id
);
230 -- Add calling stubs to the declarative part
232 function Could_Be_Asynchronous
(Spec
: Node_Id
) return Boolean;
233 -- Return True if nothing prevents the program whose specification is
234 -- given to be asynchronous (i.e. no [IN] OUT parameters).
236 function Pack_Entity_Into_Stream_Access
240 Etyp
: Entity_Id
:= Empty
) return Node_Id
;
241 -- Pack Object (of type Etyp) into Stream. If Etyp is not given,
242 -- then Etype (Object) will be used if present. If the type is
243 -- constrained, then 'Write will be used to output the object,
244 -- If the type is unconstrained, 'Output will be used.
246 function Pack_Node_Into_Stream
250 Etyp
: Entity_Id
) return Node_Id
;
251 -- Similar to above, with an arbitrary node instead of an entity
253 function Pack_Node_Into_Stream_Access
257 Etyp
: Entity_Id
) return Node_Id
;
258 -- Similar to above, with Stream instead of Stream'Access
260 function Make_Selected_Component
263 Selector_Name
: Name_Id
) return Node_Id
;
264 -- Return a selected_component whose prefix denotes the given entity, and
265 -- with the given Selector_Name.
267 function Scope_Of_Spec
(Spec
: Node_Id
) return Entity_Id
;
268 -- Return the scope represented by a given spec
270 procedure Set_Renaming_TSS
273 TSS_Nam
: TSS_Name_Type
);
274 -- Create a renaming declaration of subprogram Nam, and register it as a
275 -- TSS for Typ with name TSS_Nam.
277 function Need_Extra_Constrained
(Parameter
: Node_Id
) return Boolean;
278 -- Return True if the current parameter needs an extra formal to reflect
279 -- its constrained status.
281 function Is_RACW_Controlling_Formal
282 (Parameter
: Node_Id
;
283 Stub_Type
: Entity_Id
) return Boolean;
284 -- Return True if the current parameter is a controlling formal argument
285 -- of type Stub_Type or access to Stub_Type.
287 procedure Declare_Create_NVList
292 -- Append the declaration of NVList to Decls, and its
293 -- initialization to Stmts.
295 function Add_Parameter_To_NVList
298 Parameter
: Entity_Id
;
299 Constrained
: Boolean;
300 RACW_Ctrl
: Boolean := False;
301 Any
: Entity_Id
) return Node_Id
;
302 -- Return a call to Add_Item to add the Any corresponding to the designated
303 -- formal Parameter (with the indicated Constrained status) to NVList.
304 -- RACW_Ctrl must be set to True for controlling formals of distributed
305 -- object primitive operations.
311 -- This record describes various tree fragments associated with the
312 -- generation of RACW calling stubs. One such record exists for every
313 -- distributed object type, i.e. each tagged type that is the designated
314 -- type of one or more RACW type.
316 type Stub_Structure
is record
317 Stub_Type
: Entity_Id
;
318 -- Stub type: this type has the same primitive operations as the
319 -- designated types, but the provided bodies for these operations
320 -- a remote call to an actual target object potentially located on
321 -- another partition; each value of the stub type encapsulates a
322 -- reference to a remote object.
324 Stub_Type_Access
: Entity_Id
;
325 -- A local access type designating the stub type (this is not an RACW
328 RPC_Receiver_Decl
: Node_Id
;
329 -- Declaration for the RPC receiver entity associated with the
330 -- designated type. As an exception, in the case of GARLIC, for an RACW
331 -- that implements a RAS, no object RPC receiver is generated. Instead,
332 -- RPC_Receiver_Decl is the declaration after which the RPC receiver
333 -- would have been inserted.
335 Body_Decls
: List_Id
;
336 -- List of subprogram bodies to be included in generated code: bodies
337 -- for the RACW's stream attributes, and for the primitive operations
340 RACW_Type
: Entity_Id
;
341 -- One of the RACW types designating this distributed object type
342 -- (they are all interchangeable; we use any one of them in order to
343 -- avoid having to create various anonymous access types).
347 Empty_Stub_Structure
: constant Stub_Structure
:=
348 (Empty
, Empty
, Empty
, No_List
, Empty
);
350 package Stubs_Table
is
351 new Simple_HTable
(Header_Num
=> Hash_Index
,
352 Element
=> Stub_Structure
,
353 No_Element
=> Empty_Stub_Structure
,
357 -- Mapping between a RACW designated type and its stub type
359 package Asynchronous_Flags_Table
is
360 new Simple_HTable
(Header_Num
=> Hash_Index
,
361 Element
=> Entity_Id
,
366 -- Mapping between a RACW type and a constant having the value True
367 -- if the RACW is asynchronous and False otherwise.
369 package RCI_Locator_Table
is
370 new Simple_HTable
(Header_Num
=> Hash_Index
,
371 Element
=> Entity_Id
,
376 -- Mapping between a RCI package on which All_Calls_Remote applies and
377 -- the generic instantiation of RCI_Locator for this package.
379 package RCI_Calling_Stubs_Table
is
380 new Simple_HTable
(Header_Num
=> Hash_Index
,
381 Element
=> Entity_Id
,
386 -- Mapping between a RCI subprogram and the corresponding calling stubs
388 function Get_Stub_Elements
(RACW_Type
: Entity_Id
) return Stub_Structure
;
389 -- Return the stub information associated with the given RACW type
391 procedure Add_Stub_Type
392 (Designated_Type
: Entity_Id
;
393 RACW_Type
: Entity_Id
;
395 Stub_Type
: out Entity_Id
;
396 Stub_Type_Access
: out Entity_Id
;
397 RPC_Receiver_Decl
: out Node_Id
;
398 Body_Decls
: out List_Id
;
399 Existing
: out Boolean);
400 -- Add the declaration of the stub type, the access to stub type and the
401 -- object RPC receiver at the end of Decls. If these already exist,
402 -- then nothing is added in the tree but the right values are returned
403 -- anyhow and Existing is set to True.
405 function Get_And_Reset_RACW_Bodies
(RACW_Type
: Entity_Id
) return List_Id
;
406 -- Retrieve the Body_Decls list associated to RACW_Type in the stub
407 -- structure table, reset it to No_List, and return the previous value.
409 procedure Add_RACW_Asynchronous_Flag
410 (Declarations
: List_Id
;
411 RACW_Type
: Entity_Id
);
412 -- Declare a boolean constant associated with RACW_Type whose value
413 -- indicates at run time whether a pragma Asynchronous applies to it.
415 procedure Assign_Subprogram_Identifier
419 -- Determine the distribution subprogram identifier to
420 -- be used for remote subprogram Def, return it in Id and
421 -- store it in a hash table for later retrieval by
422 -- Get_Subprogram_Id. Spn is the subprogram number.
424 function RCI_Package_Locator
426 Package_Spec
: Node_Id
) return Node_Id
;
427 -- Instantiate the generic package RCI_Locator in order to locate the
428 -- RCI package whose spec is given as argument.
430 function Make_Tag_Check
(Loc
: Source_Ptr
; N
: Node_Id
) return Node_Id
;
431 -- Surround a node N by a tag check, as in:
435 -- when E : Ada.Tags.Tag_Error =>
436 -- Raise_Exception (Program_Error'Identity,
437 -- Exception_Message (E));
440 function Input_With_Tag_Check
442 Var_Type
: Entity_Id
;
443 Stream
: Node_Id
) return Node_Id
;
444 -- Return a function with the following form:
445 -- function R return Var_Type is
447 -- return Var_Type'Input (S);
449 -- when E : Ada.Tags.Tag_Error =>
450 -- Raise_Exception (Program_Error'Identity,
451 -- Exception_Message (E));
454 procedure Build_Actual_Object_Declaration
460 -- Build the declaration of an object with the given defining identifier,
461 -- initialized with Expr if provided, to serve as actual parameter in a
462 -- server stub. If Variable is true, the declared object will be a variable
463 -- (case of an out or in out formal), else it will be a constant. Object's
464 -- Ekind is set accordingly. The declaration, as well as any other
465 -- declarations it requires, are appended to Decls.
467 --------------------------------------------
468 -- Hooks for PCS-specific code generation --
469 --------------------------------------------
471 -- Part of the code generation circuitry for distribution needs to be
472 -- tailored for each implementation of the PCS. For each routine that
473 -- needs to be specialized, a Specific_<routine> wrapper is created,
474 -- which calls the corresponding <routine> in package
475 -- <pcs_implementation>_Support.
477 procedure Specific_Add_RACW_Features
478 (RACW_Type
: Entity_Id
;
480 Stub_Type
: Entity_Id
;
481 Stub_Type_Access
: Entity_Id
;
482 RPC_Receiver_Decl
: Node_Id
;
483 Body_Decls
: List_Id
);
484 -- Add declaration for TSSs for a given RACW type. The declarations are
485 -- added just after the declaration of the RACW type itself. If the RACW
486 -- appears in the main unit, Body_Decls is a list of declarations to which
487 -- the bodies are appended. Else Body_Decls is No_List.
488 -- PCS-specific ancillary subprogram for Add_RACW_Features.
490 procedure Specific_Add_RAST_Features
492 RAS_Type
: Entity_Id
);
493 -- Add declaration for TSSs for a given RAS type. PCS-specific ancillary
494 -- subprogram for Add_RAST_Features.
496 -- An RPC_Target record is used during construction of calling stubs
497 -- to pass PCS-specific tree fragments corresponding to the information
498 -- necessary to locate the target of a remote subprogram call.
500 type RPC_Target
(PCS_Kind
: PCS_Names
) is record
502 when Name_PolyORB_DSA
=>
504 -- An expression whose value is a PolyORB reference to the target
508 Partition
: Entity_Id
;
509 -- A variable containing the Partition_ID of the target partition
511 RPC_Receiver
: Node_Id
;
512 -- An expression whose value is the address of the target RPC
517 procedure Specific_Build_General_Calling_Stubs
519 Statements
: List_Id
;
521 Subprogram_Id
: Node_Id
;
522 Asynchronous
: Node_Id
:= Empty
;
523 Is_Known_Asynchronous
: Boolean := False;
524 Is_Known_Non_Asynchronous
: Boolean := False;
525 Is_Function
: Boolean;
527 Stub_Type
: Entity_Id
:= Empty
;
528 RACW_Type
: Entity_Id
:= Empty
;
530 -- Build calling stubs for general purpose. The parameters are:
531 -- Decls : A place to put declarations
532 -- Statements : A place to put statements
533 -- Target : PCS-specific target information (see details in
534 -- RPC_Target declaration).
535 -- Subprogram_Id : A node containing the subprogram ID
536 -- Asynchronous : True if an APC must be made instead of an RPC.
537 -- The value needs not be supplied if one of the
538 -- Is_Known_... is True.
539 -- Is_Known_Async... : True if we know that this is asynchronous
540 -- Is_Known_Non_A... : True if we know that this is not asynchronous
541 -- Spec : Node with a Parameter_Specifications and a
542 -- Result_Definition if applicable
543 -- Stub_Type : For case of RACW stubs, parameters of type access
544 -- to Stub_Type will be marshalled using the address
545 -- address of the object (the addr field) rather
546 -- than using the 'Write on the stub itself
547 -- Nod : Used to provide sloc for generated code
549 function Specific_Build_Stub_Target
552 RCI_Locator
: Entity_Id
;
553 Controlling_Parameter
: Entity_Id
) return RPC_Target
;
554 -- Build call target information nodes for use within calling stubs. In the
555 -- RCI case, RCI_Locator is the entity for the instance of RCI_Locator. If
556 -- for an RACW, Controlling_Parameter is the entity for the controlling
557 -- formal parameter used to determine the location of the target of the
558 -- call. Decls provides a location where variable declarations can be
559 -- appended to construct the necessary values.
561 function Specific_RPC_Receiver_Decl
562 (RACW_Type
: Entity_Id
) return Node_Id
;
563 -- Build the RPC receiver, for RACW, if applicable, else return Empty
565 procedure Specific_Build_RPC_Receiver_Body
566 (RPC_Receiver
: Entity_Id
;
567 Request
: out Entity_Id
;
568 Subp_Id
: out Entity_Id
;
569 Subp_Index
: out Entity_Id
;
572 -- Make a subprogram body for an RPC receiver, with the given
573 -- defining unit name. On return:
574 -- - Subp_Id is the subprogram identifier from the PCS.
575 -- - Subp_Index is the index in the list of subprograms
576 -- used for dispatching (a variable of type Subprogram_Id).
577 -- - Stmts is the place where the request dispatching
578 -- statements can occur,
579 -- - Decl is the subprogram body declaration.
581 function Specific_Build_Subprogram_Receiving_Stubs
583 Asynchronous
: Boolean;
584 Dynamically_Asynchronous
: Boolean := False;
585 Stub_Type
: Entity_Id
:= Empty
;
586 RACW_Type
: Entity_Id
:= Empty
;
587 Parent_Primitive
: Entity_Id
:= Empty
) return Node_Id
;
588 -- Build the receiving stub for a given subprogram. The subprogram
589 -- declaration is also built by this procedure, and the value returned
590 -- is a N_Subprogram_Body. If a parameter of type access to Stub_Type is
591 -- found in the specification, then its address is read from the stream
592 -- instead of the object itself and converted into an access to
593 -- class-wide type before doing the real call using any of the RACW type
594 -- pointing on the designated type.
596 procedure Specific_Add_Obj_RPC_Receiver_Completion
599 RPC_Receiver
: Entity_Id
;
600 Stub_Elements
: Stub_Structure
);
601 -- Add the necessary code to Decls after the completion of generation
602 -- of the RACW RPC receiver described by Stub_Elements.
604 procedure Specific_Add_Receiving_Stubs_To_Declarations
608 -- Add receiving stubs to the declarative part of an RCI unit
614 package GARLIC_Support
is
616 -- Support for generating DSA code that uses the GARLIC PCS
618 -- The subprograms below provide the GARLIC versions of the
619 -- corresponding Specific_<subprogram> routine declared above.
621 procedure Add_RACW_Features
622 (RACW_Type
: Entity_Id
;
623 Stub_Type
: Entity_Id
;
624 Stub_Type_Access
: Entity_Id
;
625 RPC_Receiver_Decl
: Node_Id
;
626 Body_Decls
: List_Id
);
628 procedure Add_RAST_Features
630 RAS_Type
: Entity_Id
);
632 procedure Build_General_Calling_Stubs
634 Statements
: List_Id
;
635 Target_Partition
: Entity_Id
; -- From RPC_Target
636 Target_RPC_Receiver
: Node_Id
; -- From RPC_Target
637 Subprogram_Id
: Node_Id
;
638 Asynchronous
: Node_Id
:= Empty
;
639 Is_Known_Asynchronous
: Boolean := False;
640 Is_Known_Non_Asynchronous
: Boolean := False;
641 Is_Function
: Boolean;
643 Stub_Type
: Entity_Id
:= Empty
;
644 RACW_Type
: Entity_Id
:= Empty
;
647 function Build_Stub_Target
650 RCI_Locator
: Entity_Id
;
651 Controlling_Parameter
: Entity_Id
) return RPC_Target
;
653 function RPC_Receiver_Decl
(RACW_Type
: Entity_Id
) return Node_Id
;
655 function Build_Subprogram_Receiving_Stubs
657 Asynchronous
: Boolean;
658 Dynamically_Asynchronous
: Boolean := False;
659 Stub_Type
: Entity_Id
:= Empty
;
660 RACW_Type
: Entity_Id
:= Empty
;
661 Parent_Primitive
: Entity_Id
:= Empty
) return Node_Id
;
663 procedure Add_Obj_RPC_Receiver_Completion
666 RPC_Receiver
: Entity_Id
;
667 Stub_Elements
: Stub_Structure
);
669 procedure Add_Receiving_Stubs_To_Declarations
674 procedure Build_RPC_Receiver_Body
675 (RPC_Receiver
: Entity_Id
;
676 Request
: out Entity_Id
;
677 Subp_Id
: out Entity_Id
;
678 Subp_Index
: out Entity_Id
;
684 ---------------------
685 -- PolyORB_Support --
686 ---------------------
688 package PolyORB_Support
is
690 -- Support for generating DSA code that uses the PolyORB PCS
692 -- The subprograms below provide the PolyORB versions of the
693 -- corresponding Specific_<subprogram> routine declared above.
695 procedure Add_RACW_Features
696 (RACW_Type
: Entity_Id
;
698 Stub_Type
: Entity_Id
;
699 Stub_Type_Access
: Entity_Id
;
700 RPC_Receiver_Decl
: Node_Id
;
701 Body_Decls
: List_Id
);
703 procedure Add_RAST_Features
705 RAS_Type
: Entity_Id
);
707 procedure Build_General_Calling_Stubs
709 Statements
: List_Id
;
710 Target_Object
: Node_Id
; -- From RPC_Target
711 Subprogram_Id
: Node_Id
;
712 Asynchronous
: Node_Id
:= Empty
;
713 Is_Known_Asynchronous
: Boolean := False;
714 Is_Known_Non_Asynchronous
: Boolean := False;
715 Is_Function
: Boolean;
717 Stub_Type
: Entity_Id
:= Empty
;
718 RACW_Type
: Entity_Id
:= Empty
;
721 function Build_Stub_Target
724 RCI_Locator
: Entity_Id
;
725 Controlling_Parameter
: Entity_Id
) return RPC_Target
;
727 function RPC_Receiver_Decl
(RACW_Type
: Entity_Id
) return Node_Id
;
729 function Build_Subprogram_Receiving_Stubs
731 Asynchronous
: Boolean;
732 Dynamically_Asynchronous
: Boolean := False;
733 Stub_Type
: Entity_Id
:= Empty
;
734 RACW_Type
: Entity_Id
:= Empty
;
735 Parent_Primitive
: Entity_Id
:= Empty
) return Node_Id
;
737 procedure Add_Obj_RPC_Receiver_Completion
740 RPC_Receiver
: Entity_Id
;
741 Stub_Elements
: Stub_Structure
);
743 procedure Add_Receiving_Stubs_To_Declarations
748 procedure Build_RPC_Receiver_Body
749 (RPC_Receiver
: Entity_Id
;
750 Request
: out Entity_Id
;
751 Subp_Id
: out Entity_Id
;
752 Subp_Index
: out Entity_Id
;
756 procedure Reserve_NamingContext_Methods
;
757 -- Mark the method names for interface NamingContext as already used in
758 -- the overload table, so no clashes occur with user code (with the
759 -- PolyORB PCS, RCIs Implement The NamingContext interface to allow
760 -- their methods to be accessed as objects, for the implementation of
761 -- remote access-to-subprogram types).
769 -- Routines to build distribution helper subprograms for user-defined
770 -- types. For implementation of the Distributed systems annex (DSA)
771 -- over the PolyORB generic middleware components, it is necessary to
772 -- generate several supporting subprograms for each application data
773 -- type used in inter-partition communication. These subprograms are:
775 -- A Typecode function returning a high-level description of the
778 -- Two conversion functions allowing conversion of values of the
779 -- type from and to the generic data containers used by PolyORB.
780 -- These generic containers are called 'Any' type values after the
781 -- CORBA terminology, and hence the conversion subprograms are
782 -- named To_Any and From_Any.
784 function Build_From_Any_Call
787 Decls
: List_Id
) return Node_Id
;
788 -- Build call to From_Any attribute function of type Typ with
789 -- expression N as actual parameter. Decls is the declarations list
790 -- for an appropriate enclosing scope of the point where the call
791 -- will be inserted; if the From_Any attribute for Typ needs to be
792 -- generated at this point, its declaration is appended to Decls.
794 procedure Build_From_Any_Function
798 Fnam
: out Entity_Id
);
799 -- Build From_Any attribute function for Typ. Loc is the reference
800 -- location for generated nodes, Typ is the type for which the
801 -- conversion function is generated. On return, Decl and Fnam contain
802 -- the declaration and entity for the newly-created function.
804 function Build_To_Any_Call
808 Constrained
: Boolean := False) return Node_Id
;
809 -- Build call to To_Any attribute function with expression as actual
810 -- parameter. Loc is the reference location of generated nodes,
811 -- Decls is the declarations list for an appropriate enclosing scope
812 -- of the point where the call will be inserted; if the To_Any
813 -- attribute for the type of N needs to be generated at this point,
814 -- its declaration is appended to Decls. For the case of a limited
815 -- type, there is an additional parameter Constrained indicating
816 -- whether 'Write (when True) or 'Output (when False) is used.
818 procedure Build_To_Any_Function
822 Fnam
: out Entity_Id
);
823 -- Build To_Any attribute function for Typ. Loc is the reference
824 -- location for generated nodes, Typ is the type for which the
825 -- conversion function is generated. On return, Decl and Fnam contain
826 -- the declaration and entity for the newly-created function.
828 function Build_TypeCode_Call
831 Decls
: List_Id
) return Node_Id
;
832 -- Build call to TypeCode attribute function for Typ. Decls is the
833 -- declarations list for an appropriate enclosing scope of the point
834 -- where the call will be inserted; if the To_Any attribute for Typ
835 -- needs to be generated at this point, its declaration is appended
838 procedure Build_TypeCode_Function
842 Fnam
: out Entity_Id
);
843 -- Build TypeCode attribute function for Typ. Loc is the reference
844 -- location for generated nodes, Typ is the type for which the
845 -- typecode function is generated. On return, Decl and Fnam contain
846 -- the declaration and entity for the newly-created function.
848 procedure Build_Name_And_Repository_Id
850 Name_Str
: out String_Id
;
851 Repo_Id_Str
: out String_Id
);
852 -- In the PolyORB distribution model, each distributed object type
853 -- and each distributed operation has a globally unique identifier,
854 -- its Repository Id. This subprogram builds and returns two strings
855 -- for entity E (a distributed object type or operation): one
856 -- containing the name of E, the second containing its repository id.
858 procedure Assign_Opaque_From_Any
864 Constrained
: Boolean := False);
865 -- For a Target object of type Typ, which has opaque representation
866 -- as a sequence of octets determined by stream attributes (which
867 -- includes all limited types), append code to Stmts performing the
869 -- Target := Typ'From_Any (N)
871 -- or, if Target is Empty:
872 -- return Typ'From_Any (N)
874 -- Constrained determines whether 'Input (when False) or 'Read
875 -- (when True) is used.
881 -- The following PolyORB-specific subprograms are made visible to Exp_Attr:
883 function Build_From_Any_Call
886 Decls
: List_Id
) return Node_Id
887 renames PolyORB_Support
.Helpers
.Build_From_Any_Call
;
889 function Build_To_Any_Call
893 Constrained
: Boolean := False) return Node_Id
894 renames PolyORB_Support
.Helpers
.Build_To_Any_Call
;
896 function Build_TypeCode_Call
899 Decls
: List_Id
) return Node_Id
900 renames PolyORB_Support
.Helpers
.Build_TypeCode_Call
;
902 ------------------------------------
903 -- Local variables and structures --
904 ------------------------------------
907 -- Needs comments ???
909 Output_From_Constrained
: constant array (Boolean) of Name_Id
:=
910 (False => Name_Output
,
912 -- The attribute to choose depending on the fact that the parameter
913 -- is constrained or not. There is no such thing as Input_From_Constrained
914 -- since this require separate mechanisms ('Input is a function while
915 -- 'Read is a procedure).
918 with procedure Process_Subprogram_Declaration
(Decl
: Node_Id
);
919 -- Generate calling or receiving stub for this subprogram declaration
921 procedure Build_Package_Stubs
(Pkg_Spec
: Node_Id
);
922 -- Recursively visit the given RCI Package_Specification, calling
923 -- Process_Subprogram_Declaration for each remote subprogram.
925 -------------------------
926 -- Build_Package_Stubs --
927 -------------------------
929 procedure Build_Package_Stubs
(Pkg_Spec
: Node_Id
) is
930 Decls
: constant List_Id
:= Visible_Declarations
(Pkg_Spec
);
933 procedure Visit_Nested_Pkg
(Nested_Pkg_Decl
: Node_Id
);
934 -- Recurse for the given nested package declaration
936 -----------------------
937 -- Visit_Nested_Spec --
938 -----------------------
940 procedure Visit_Nested_Pkg
(Nested_Pkg_Decl
: Node_Id
) is
941 Nested_Pkg_Spec
: constant Node_Id
:= Specification
(Nested_Pkg_Decl
);
943 Push_Scope
(Scope_Of_Spec
(Nested_Pkg_Spec
));
944 Build_Package_Stubs
(Nested_Pkg_Spec
);
946 end Visit_Nested_Pkg
;
948 -- Start of processing for Build_Package_Stubs
951 Decl
:= First
(Decls
);
952 while Present
(Decl
) loop
954 when N_Subprogram_Declaration
=>
956 -- Note: we test Comes_From_Source on Spec, not Decl, because
957 -- in the case of a subprogram instance, only the specification
958 -- (not the declaration) is marked as coming from source.
960 if Comes_From_Source
(Specification
(Decl
)) then
961 Process_Subprogram_Declaration
(Decl
);
964 when N_Package_Declaration
=>
966 -- Case of a nested package or package instantiation coming
967 -- from source. Note that the anonymous wrapper package for
968 -- subprogram instances is not flagged Is_Generic_Instance at
969 -- this point, so there is a distinct circuit to handle them
970 -- (see case N_Subprogram_Instantiation below).
973 Pkg_Ent
: constant Entity_Id
:=
974 Defining_Unit_Name
(Specification
(Decl
));
976 if Comes_From_Source
(Decl
)
978 (Is_Generic_Instance
(Pkg_Ent
)
979 and then Comes_From_Source
980 (Get_Package_Instantiation_Node
(Pkg_Ent
)))
982 Visit_Nested_Pkg
(Decl
);
986 when N_Subprogram_Instantiation
=>
988 -- The subprogram declaration for an instance of a generic
989 -- subprogram is wrapped in a package that does not come from
990 -- source, so we need to explicitly traverse it here.
992 if Comes_From_Source
(Decl
) then
993 Visit_Nested_Pkg
(Instance_Spec
(Decl
));
1001 end Build_Package_Stubs
;
1003 ---------------------------------------
1004 -- Add_Calling_Stubs_To_Declarations --
1005 ---------------------------------------
1007 procedure Add_Calling_Stubs_To_Declarations
(Pkg_Spec
: Node_Id
) is
1008 Loc
: constant Source_Ptr
:= Sloc
(Pkg_Spec
);
1010 Current_Subprogram_Number
: Int
:= First_RCI_Subprogram_Id
;
1011 -- Subprogram id 0 is reserved for calls received from
1012 -- remote access-to-subprogram dereferences.
1014 RCI_Instantiation
: Node_Id
;
1016 procedure Visit_Subprogram
(Decl
: Node_Id
);
1017 -- Generate calling stub for one remote subprogram
1019 ----------------------
1020 -- Visit_Subprogram --
1021 ----------------------
1023 procedure Visit_Subprogram
(Decl
: Node_Id
) is
1024 Loc
: constant Source_Ptr
:= Sloc
(Decl
);
1025 Spec
: constant Node_Id
:= Specification
(Decl
);
1026 Subp_Stubs
: Node_Id
;
1028 Subp_Str
: String_Id
;
1029 pragma Warnings
(Off
, Subp_Str
);
1032 -- Disable expansion of stubs if serious errors have been diagnosed,
1033 -- because otherwise some illegal remote subprogram declarations
1034 -- could cause cascaded errors in stubs.
1036 if Serious_Errors_Detected
/= 0 then
1040 Assign_Subprogram_Identifier
1041 (Defining_Unit_Name
(Spec
), Current_Subprogram_Number
, Subp_Str
);
1044 Build_Subprogram_Calling_Stubs
1047 Build_Subprogram_Id
(Loc
, Defining_Unit_Name
(Spec
)),
1049 Nkind
(Spec
) = N_Procedure_Specification
1050 and then Is_Asynchronous
(Defining_Unit_Name
(Spec
)));
1052 Append_To
(List_Containing
(Decl
), Subp_Stubs
);
1053 Analyze
(Subp_Stubs
);
1055 Current_Subprogram_Number
:= Current_Subprogram_Number
+ 1;
1056 end Visit_Subprogram
;
1058 procedure Visit_Spec
is new Build_Package_Stubs
(Visit_Subprogram
);
1060 -- Start of processing for Add_Calling_Stubs_To_Declarations
1063 Push_Scope
(Scope_Of_Spec
(Pkg_Spec
));
1065 -- The first thing added is an instantiation of the generic package
1066 -- System.Partition_Interface.RCI_Locator with the name of this remote
1067 -- package. This will act as an interface with the name server to
1068 -- determine the Partition_ID and the RPC_Receiver for the receiver
1071 RCI_Instantiation
:= RCI_Package_Locator
(Loc
, Pkg_Spec
);
1072 RCI_Cache
:= Defining_Unit_Name
(RCI_Instantiation
);
1074 Append_To
(Visible_Declarations
(Pkg_Spec
), RCI_Instantiation
);
1075 Analyze
(RCI_Instantiation
);
1077 -- For each subprogram declaration visible in the spec, we do build a
1078 -- body. We also increment a counter to assign a different Subprogram_Id
1079 -- to each subprogram. The receiving stubs processing uses the same
1080 -- mechanism and will thus assign the same Id and do the correct
1083 Overload_Counter_Table
.Reset
;
1084 PolyORB_Support
.Reserve_NamingContext_Methods
;
1086 Visit_Spec
(Pkg_Spec
);
1089 end Add_Calling_Stubs_To_Declarations
;
1091 -----------------------------
1092 -- Add_Parameter_To_NVList --
1093 -----------------------------
1095 function Add_Parameter_To_NVList
1098 Parameter
: Entity_Id
;
1099 Constrained
: Boolean;
1100 RACW_Ctrl
: Boolean := False;
1101 Any
: Entity_Id
) return Node_Id
1103 Parameter_Name_String
: String_Id
;
1104 Parameter_Mode
: Node_Id
;
1106 function Parameter_Passing_Mode
1108 Parameter
: Entity_Id
;
1109 Constrained
: Boolean) return Node_Id
;
1110 -- Return an expression that denotes the parameter passing mode to be
1111 -- used for Parameter in distribution stubs, where Constrained is
1112 -- Parameter's constrained status.
1114 ----------------------------
1115 -- Parameter_Passing_Mode --
1116 ----------------------------
1118 function Parameter_Passing_Mode
1120 Parameter
: Entity_Id
;
1121 Constrained
: Boolean) return Node_Id
1126 if Out_Present
(Parameter
) then
1127 if In_Present
(Parameter
)
1128 or else not Constrained
1130 -- Unconstrained formals must be translated
1131 -- to 'in' or 'inout', not 'out', because
1132 -- they need to be constrained by the actual.
1134 Lib_RE
:= RE_Mode_Inout
;
1136 Lib_RE
:= RE_Mode_Out
;
1140 Lib_RE
:= RE_Mode_In
;
1143 return New_Occurrence_Of
(RTE
(Lib_RE
), Loc
);
1144 end Parameter_Passing_Mode
;
1146 -- Start of processing for Add_Parameter_To_NVList
1149 if Nkind
(Parameter
) = N_Defining_Identifier
then
1150 Get_Name_String
(Chars
(Parameter
));
1152 Get_Name_String
(Chars
(Defining_Identifier
(Parameter
)));
1155 Parameter_Name_String
:= String_From_Name_Buffer
;
1157 if RACW_Ctrl
or else Nkind
(Parameter
) = N_Defining_Identifier
then
1159 -- When the parameter passed to Add_Parameter_To_NVList is an
1160 -- Extra_Constrained parameter, Parameter is an N_Defining_
1161 -- Identifier, instead of a complete N_Parameter_Specification.
1162 -- Thus, we explicitly set 'in' mode in this case.
1164 Parameter_Mode
:= New_Occurrence_Of
(RTE
(RE_Mode_In
), Loc
);
1168 Parameter_Passing_Mode
(Loc
, Parameter
, Constrained
);
1172 Make_Procedure_Call_Statement
(Loc
,
1174 New_Occurrence_Of
(RTE
(RE_NVList_Add_Item
), Loc
),
1175 Parameter_Associations
=> New_List
(
1176 New_Occurrence_Of
(NVList
, Loc
),
1177 Make_Function_Call
(Loc
,
1179 New_Occurrence_Of
(RTE
(RE_To_PolyORB_String
), Loc
),
1180 Parameter_Associations
=> New_List
(
1181 Make_String_Literal
(Loc
, Strval
=> Parameter_Name_String
))),
1182 New_Occurrence_Of
(Any
, Loc
),
1184 end Add_Parameter_To_NVList
;
1186 --------------------------------
1187 -- Add_RACW_Asynchronous_Flag --
1188 --------------------------------
1190 procedure Add_RACW_Asynchronous_Flag
1191 (Declarations
: List_Id
;
1192 RACW_Type
: Entity_Id
)
1194 Loc
: constant Source_Ptr
:= Sloc
(RACW_Type
);
1196 Asynchronous_Flag
: constant Entity_Id
:=
1197 Make_Defining_Identifier
(Loc
,
1198 New_External_Name
(Chars
(RACW_Type
), 'A'));
1201 -- Declare the asynchronous flag. This flag will be changed to True
1202 -- whenever it is known that the RACW type is asynchronous.
1204 Append_To
(Declarations
,
1205 Make_Object_Declaration
(Loc
,
1206 Defining_Identifier
=> Asynchronous_Flag
,
1207 Constant_Present
=> True,
1208 Object_Definition
=> New_Occurrence_Of
(Standard_Boolean
, Loc
),
1209 Expression
=> New_Occurrence_Of
(Standard_False
, Loc
)));
1211 Asynchronous_Flags_Table
.Set
(RACW_Type
, Asynchronous_Flag
);
1212 end Add_RACW_Asynchronous_Flag
;
1214 -----------------------
1215 -- Add_RACW_Features --
1216 -----------------------
1218 procedure Add_RACW_Features
(RACW_Type
: Entity_Id
) is
1219 Desig
: constant Entity_Id
:= Etype
(Designated_Type
(RACW_Type
));
1220 Same_Scope
: constant Boolean := Scope
(Desig
) = Scope
(RACW_Type
);
1224 Body_Decls
: List_Id
;
1226 Stub_Type
: Entity_Id
;
1227 Stub_Type_Access
: Entity_Id
;
1228 RPC_Receiver_Decl
: Node_Id
;
1231 -- True when appropriate stubs have already been generated (this is the
1232 -- case when another RACW with the same designated type has already been
1233 -- encountered), in which case we reuse the previous stubs rather than
1234 -- generating new ones.
1237 if not Expander_Active
then
1241 -- Mark the current package declaration as containing an RACW, so that
1242 -- the bodies for the calling stubs and the RACW stream subprograms
1243 -- are attached to the tree when the corresponding body is encountered.
1245 Set_Has_RACW
(Current_Scope
);
1247 -- Look for place to declare the RACW stub type and RACW operations
1253 -- Case of declaring the RACW in the same package as its designated
1254 -- type: we know that the designated type is a private type, so we
1255 -- use the private declarations list.
1257 Pkg_Spec
:= Package_Specification_Of_Scope
(Current_Scope
);
1259 if Present
(Private_Declarations
(Pkg_Spec
)) then
1260 Decls
:= Private_Declarations
(Pkg_Spec
);
1262 Decls
:= Visible_Declarations
(Pkg_Spec
);
1266 -- Case of declaring the RACW in another package than its designated
1267 -- type: use the private declarations list if present; otherwise
1268 -- use the visible declarations.
1270 Decls
:= List_Containing
(Declaration_Node
(RACW_Type
));
1274 -- If we were unable to find the declarations, that means that the
1275 -- completion of the type was missing. We can safely return and let the
1276 -- error be caught by the semantic analysis.
1283 (Designated_Type
=> Desig
,
1284 RACW_Type
=> RACW_Type
,
1286 Stub_Type
=> Stub_Type
,
1287 Stub_Type_Access
=> Stub_Type_Access
,
1288 RPC_Receiver_Decl
=> RPC_Receiver_Decl
,
1289 Body_Decls
=> Body_Decls
,
1290 Existing
=> Existing
);
1292 -- If this RACW is not in the main unit, do not generate primitive or
1295 if not Entity_Is_In_Main_Unit
(RACW_Type
) then
1296 Body_Decls
:= No_List
;
1299 Add_RACW_Asynchronous_Flag
1300 (Declarations
=> Decls
,
1301 RACW_Type
=> RACW_Type
);
1303 Specific_Add_RACW_Features
1304 (RACW_Type
=> RACW_Type
,
1306 Stub_Type
=> Stub_Type
,
1307 Stub_Type_Access
=> Stub_Type_Access
,
1308 RPC_Receiver_Decl
=> RPC_Receiver_Decl
,
1309 Body_Decls
=> Body_Decls
);
1311 -- If we already have stubs for this designated type, nothing to do
1317 if Is_Frozen
(Desig
) then
1318 Validate_RACW_Primitives
(RACW_Type
);
1319 Add_RACW_Primitive_Declarations_And_Bodies
1320 (Designated_Type
=> Desig
,
1321 Insertion_Node
=> RPC_Receiver_Decl
,
1322 Body_Decls
=> Body_Decls
);
1325 -- Validate_RACW_Primitives requires the list of all primitives of
1326 -- the designated type, so defer processing until Desig is frozen.
1327 -- See Exp_Ch3.Freeze_Type.
1329 Add_Access_Type_To_Process
(E
=> Desig
, A
=> RACW_Type
);
1331 end Add_RACW_Features
;
1333 ------------------------------------------------
1334 -- Add_RACW_Primitive_Declarations_And_Bodies --
1335 ------------------------------------------------
1337 procedure Add_RACW_Primitive_Declarations_And_Bodies
1338 (Designated_Type
: Entity_Id
;
1339 Insertion_Node
: Node_Id
;
1340 Body_Decls
: List_Id
)
1342 Loc
: constant Source_Ptr
:= Sloc
(Insertion_Node
);
1343 -- Set Sloc of generated declaration copy of insertion node Sloc, so
1344 -- the declarations are recognized as belonging to the current package.
1346 Stub_Elements
: constant Stub_Structure
:=
1347 Stubs_Table
.Get
(Designated_Type
);
1349 pragma Assert
(Stub_Elements
/= Empty_Stub_Structure
);
1351 Is_RAS
: constant Boolean :=
1352 not Comes_From_Source
(Stub_Elements
.RACW_Type
);
1353 -- Case of the RACW generated to implement a remote access-to-
1356 Build_Bodies
: constant Boolean :=
1357 In_Extended_Main_Code_Unit
(Stub_Elements
.Stub_Type
);
1358 -- True when bodies must be prepared in Body_Decls. Bodies are generated
1359 -- only when the main unit is the unit that contains the stub type.
1361 Current_Insertion_Node
: Node_Id
:= Insertion_Node
;
1363 RPC_Receiver
: Entity_Id
;
1364 RPC_Receiver_Statements
: List_Id
;
1365 RPC_Receiver_Case_Alternatives
: constant List_Id
:= New_List
;
1366 RPC_Receiver_Elsif_Parts
: List_Id
;
1367 RPC_Receiver_Request
: Entity_Id
;
1368 RPC_Receiver_Subp_Id
: Entity_Id
;
1369 RPC_Receiver_Subp_Index
: Entity_Id
;
1371 Subp_Str
: String_Id
;
1373 Current_Primitive_Elmt
: Elmt_Id
;
1374 Current_Primitive
: Entity_Id
;
1375 Current_Primitive_Body
: Node_Id
;
1376 Current_Primitive_Spec
: Node_Id
;
1377 Current_Primitive_Decl
: Node_Id
;
1378 Current_Primitive_Number
: Int
:= 0;
1379 Current_Primitive_Alias
: Node_Id
;
1380 Current_Receiver
: Entity_Id
;
1381 Current_Receiver_Body
: Node_Id
;
1382 RPC_Receiver_Decl
: Node_Id
;
1383 Possibly_Asynchronous
: Boolean;
1386 if not Expander_Active
then
1391 RPC_Receiver
:= Make_Temporary
(Loc
, 'P');
1393 Specific_Build_RPC_Receiver_Body
1394 (RPC_Receiver
=> RPC_Receiver
,
1395 Request
=> RPC_Receiver_Request
,
1396 Subp_Id
=> RPC_Receiver_Subp_Id
,
1397 Subp_Index
=> RPC_Receiver_Subp_Index
,
1398 Stmts
=> RPC_Receiver_Statements
,
1399 Decl
=> RPC_Receiver_Decl
);
1401 if Get_PCS_Name
= Name_PolyORB_DSA
then
1403 -- For the case of PolyORB, we need to map a textual operation
1404 -- name into a primitive index. Currently we do so using a simple
1405 -- sequence of string comparisons.
1407 RPC_Receiver_Elsif_Parts
:= New_List
;
1411 -- Build callers, receivers for every primitive operations and a RPC
1412 -- receiver for this type. Note that we use Direct_Primitive_Operations,
1413 -- not Primitive_Operations, because we really want just the primitives
1414 -- of the tagged type itself, and in the case of a tagged synchronized
1415 -- type we do not want to get the primitives of the corresponding
1418 if Present
(Direct_Primitive_Operations
(Designated_Type
)) then
1419 Overload_Counter_Table
.Reset
;
1421 Current_Primitive_Elmt
:=
1422 First_Elmt
(Direct_Primitive_Operations
(Designated_Type
));
1423 while Current_Primitive_Elmt
/= No_Elmt
loop
1424 Current_Primitive
:= Node
(Current_Primitive_Elmt
);
1426 -- Copy the primitive of all the parents, except predefined ones
1427 -- that are not remotely dispatching. Also omit hidden primitives
1428 -- (occurs in the case of primitives of interface progenitors
1429 -- other than immediate ancestors of the Designated_Type).
1431 if Chars
(Current_Primitive
) /= Name_uSize
1432 and then Chars
(Current_Primitive
) /= Name_uAlignment
1434 (Is_TSS
(Current_Primitive
, TSS_Deep_Finalize
) or else
1435 Is_TSS
(Current_Primitive
, TSS_Stream_Input
) or else
1436 Is_TSS
(Current_Primitive
, TSS_Stream_Output
) or else
1437 Is_TSS
(Current_Primitive
, TSS_Stream_Read
) or else
1438 Is_TSS
(Current_Primitive
, TSS_Stream_Write
)
1440 Is_Predefined_Interface_Primitive
(Current_Primitive
))
1441 and then not Is_Hidden
(Current_Primitive
)
1443 -- The first thing to do is build an up-to-date copy of the
1444 -- spec with all the formals referencing Controlling_Type
1445 -- transformed into formals referencing Stub_Type. Since this
1446 -- primitive may have been inherited, go back the alias chain
1447 -- until the real primitive has been found.
1449 Current_Primitive_Alias
:= Ultimate_Alias
(Current_Primitive
);
1451 -- Copy the spec from the original declaration for the purpose
1452 -- of declaring an overriding subprogram: we need to replace
1453 -- the type of each controlling formal with Stub_Type. The
1454 -- primitive may have been declared for Controlling_Type or
1455 -- inherited from some ancestor type for which we do not have
1456 -- an easily determined Entity_Id. We have no systematic way
1457 -- of knowing which type to substitute Stub_Type for. Instead,
1458 -- Copy_Specification relies on the flag Is_Controlling_Formal
1459 -- to determine which formals to change.
1461 Current_Primitive_Spec
:=
1462 Copy_Specification
(Loc
,
1463 Spec
=> Parent
(Current_Primitive_Alias
),
1464 Ctrl_Type
=> Stub_Elements
.Stub_Type
);
1466 Current_Primitive_Decl
:=
1467 Make_Subprogram_Declaration
(Loc
,
1468 Specification
=> Current_Primitive_Spec
);
1470 Insert_After_And_Analyze
(Current_Insertion_Node
,
1471 Current_Primitive_Decl
);
1472 Current_Insertion_Node
:= Current_Primitive_Decl
;
1474 Possibly_Asynchronous
:=
1475 Nkind
(Current_Primitive_Spec
) = N_Procedure_Specification
1476 and then Could_Be_Asynchronous
(Current_Primitive_Spec
);
1478 Assign_Subprogram_Identifier
(
1479 Defining_Unit_Name
(Current_Primitive_Spec
),
1480 Current_Primitive_Number
,
1483 if Build_Bodies
then
1484 Current_Primitive_Body
:=
1485 Build_Subprogram_Calling_Stubs
1486 (Vis_Decl
=> Current_Primitive_Decl
,
1488 Build_Subprogram_Id
(Loc
,
1489 Defining_Unit_Name
(Current_Primitive_Spec
)),
1490 Asynchronous
=> Possibly_Asynchronous
,
1491 Dynamically_Asynchronous
=> Possibly_Asynchronous
,
1492 Stub_Type
=> Stub_Elements
.Stub_Type
,
1493 RACW_Type
=> Stub_Elements
.RACW_Type
);
1494 Append_To
(Body_Decls
, Current_Primitive_Body
);
1496 -- Analyzing the body here would cause the Stub type to
1497 -- be frozen, thus preventing subsequent primitive
1498 -- declarations. For this reason, it will be analyzed
1499 -- later in the regular flow (and in the context of the
1500 -- appropriate unit body, see Append_RACW_Bodies).
1504 -- Build the receiver stubs
1506 if Build_Bodies
and then not Is_RAS
then
1507 Current_Receiver_Body
:=
1508 Specific_Build_Subprogram_Receiving_Stubs
1509 (Vis_Decl
=> Current_Primitive_Decl
,
1510 Asynchronous
=> Possibly_Asynchronous
,
1511 Dynamically_Asynchronous
=> Possibly_Asynchronous
,
1512 Stub_Type
=> Stub_Elements
.Stub_Type
,
1513 RACW_Type
=> Stub_Elements
.RACW_Type
,
1514 Parent_Primitive
=> Current_Primitive
);
1517 Defining_Unit_Name
(Specification
(Current_Receiver_Body
));
1519 Append_To
(Body_Decls
, Current_Receiver_Body
);
1521 -- Add a case alternative to the receiver
1523 if Get_PCS_Name
= Name_PolyORB_DSA
then
1524 Append_To
(RPC_Receiver_Elsif_Parts
,
1525 Make_Elsif_Part
(Loc
,
1527 Make_Function_Call
(Loc
,
1530 RTE
(RE_Caseless_String_Eq
), Loc
),
1531 Parameter_Associations
=> New_List
(
1532 New_Occurrence_Of
(RPC_Receiver_Subp_Id
, Loc
),
1533 Make_String_Literal
(Loc
, Subp_Str
))),
1535 Then_Statements
=> New_List
(
1536 Make_Assignment_Statement
(Loc
,
1537 Name
=> New_Occurrence_Of
(
1538 RPC_Receiver_Subp_Index
, Loc
),
1540 Make_Integer_Literal
(Loc
,
1541 Intval
=> Current_Primitive_Number
)))));
1544 Append_To
(RPC_Receiver_Case_Alternatives
,
1545 Make_Case_Statement_Alternative
(Loc
,
1546 Discrete_Choices
=> New_List
(
1547 Make_Integer_Literal
(Loc
, Current_Primitive_Number
)),
1549 Statements
=> New_List
(
1550 Make_Procedure_Call_Statement
(Loc
,
1552 New_Occurrence_Of
(Current_Receiver
, Loc
),
1553 Parameter_Associations
=> New_List
(
1554 New_Occurrence_Of
(RPC_Receiver_Request
, Loc
))))));
1557 -- Increment the index of current primitive
1559 Current_Primitive_Number
:= Current_Primitive_Number
+ 1;
1562 Next_Elmt
(Current_Primitive_Elmt
);
1566 -- Build the case statement and the heart of the subprogram
1568 if Build_Bodies
and then not Is_RAS
then
1569 if Get_PCS_Name
= Name_PolyORB_DSA
1570 and then Present
(First
(RPC_Receiver_Elsif_Parts
))
1572 Append_To
(RPC_Receiver_Statements
,
1573 Make_Implicit_If_Statement
(Designated_Type
,
1574 Condition
=> New_Occurrence_Of
(Standard_False
, Loc
),
1575 Then_Statements
=> New_List
,
1576 Elsif_Parts
=> RPC_Receiver_Elsif_Parts
));
1579 Append_To
(RPC_Receiver_Case_Alternatives
,
1580 Make_Case_Statement_Alternative
(Loc
,
1581 Discrete_Choices
=> New_List
(Make_Others_Choice
(Loc
)),
1582 Statements
=> New_List
(Make_Null_Statement
(Loc
))));
1584 Append_To
(RPC_Receiver_Statements
,
1585 Make_Case_Statement
(Loc
,
1587 New_Occurrence_Of
(RPC_Receiver_Subp_Index
, Loc
),
1588 Alternatives
=> RPC_Receiver_Case_Alternatives
));
1590 Append_To
(Body_Decls
, RPC_Receiver_Decl
);
1591 Specific_Add_Obj_RPC_Receiver_Completion
(Loc
,
1592 Body_Decls
, RPC_Receiver
, Stub_Elements
);
1594 -- Do not analyze RPC receiver body at this stage since it references
1595 -- subprograms that have not been analyzed yet. It will be analyzed in
1596 -- the regular flow (see Append_RACW_Bodies).
1599 end Add_RACW_Primitive_Declarations_And_Bodies
;
1601 -----------------------------
1602 -- Add_RAS_Dereference_TSS --
1603 -----------------------------
1605 procedure Add_RAS_Dereference_TSS
(N
: Node_Id
) is
1606 Loc
: constant Source_Ptr
:= Sloc
(N
);
1608 Type_Def
: constant Node_Id
:= Type_Definition
(N
);
1609 RAS_Type
: constant Entity_Id
:= Defining_Identifier
(N
);
1610 Fat_Type
: constant Entity_Id
:= Equivalent_Type
(RAS_Type
);
1611 RACW_Type
: constant Entity_Id
:= Underlying_RACW_Type
(RAS_Type
);
1613 RACW_Primitive_Name
: Node_Id
;
1615 Proc
: constant Entity_Id
:=
1616 Make_Defining_Identifier
(Loc
,
1617 Chars
=> Make_TSS_Name
(RAS_Type
, TSS_RAS_Dereference
));
1619 Proc_Spec
: Node_Id
;
1620 Param_Specs
: List_Id
;
1621 Param_Assoc
: constant List_Id
:= New_List
;
1622 Stmts
: constant List_Id
:= New_List
;
1624 RAS_Parameter
: constant Entity_Id
:= Make_Temporary
(Loc
, 'P');
1626 Is_Function
: constant Boolean :=
1627 Nkind
(Type_Def
) = N_Access_Function_Definition
;
1629 Is_Degenerate
: Boolean;
1630 -- Set to True if the subprogram_specification for this RAS has an
1631 -- anonymous access parameter (see Process_Remote_AST_Declaration).
1633 Spec
: constant Node_Id
:= Type_Def
;
1635 Current_Parameter
: Node_Id
;
1637 -- Start of processing for Add_RAS_Dereference_TSS
1640 -- The Dereference TSS for a remote access-to-subprogram type has the
1643 -- [function|procedure] ras_typeRD (RAS_Value, <RAS_Parameters>)
1646 -- This is called whenever a value of a RAS type is dereferenced
1648 -- First construct a list of parameter specifications:
1650 -- The first formal is the RAS values
1652 Param_Specs
:= New_List
(
1653 Make_Parameter_Specification
(Loc
,
1654 Defining_Identifier
=> RAS_Parameter
,
1657 New_Occurrence_Of
(Fat_Type
, Loc
)));
1659 -- The following formals are copied from the type declaration
1661 Is_Degenerate
:= False;
1662 Current_Parameter
:= First
(Parameter_Specifications
(Type_Def
));
1663 Parameters
: while Present
(Current_Parameter
) loop
1664 if Nkind
(Parameter_Type
(Current_Parameter
)) =
1667 Is_Degenerate
:= True;
1670 Append_To
(Param_Specs
,
1671 Make_Parameter_Specification
(Loc
,
1672 Defining_Identifier
=>
1673 Make_Defining_Identifier
(Loc
,
1674 Chars
=> Chars
(Defining_Identifier
(Current_Parameter
))),
1675 In_Present
=> In_Present
(Current_Parameter
),
1676 Out_Present
=> Out_Present
(Current_Parameter
),
1678 New_Copy_Tree
(Parameter_Type
(Current_Parameter
)),
1680 New_Copy_Tree
(Expression
(Current_Parameter
))));
1682 Append_To
(Param_Assoc
,
1683 Make_Identifier
(Loc
,
1684 Chars
=> Chars
(Defining_Identifier
(Current_Parameter
))));
1686 Next
(Current_Parameter
);
1687 end loop Parameters
;
1689 if Is_Degenerate
then
1690 Prepend_To
(Param_Assoc
, New_Occurrence_Of
(RAS_Parameter
, Loc
));
1692 -- Generate a dummy body. This code will never actually be executed,
1693 -- because null is the only legal value for a degenerate RAS type.
1694 -- For legality's sake (in order to avoid generating a function that
1695 -- does not contain a return statement), we include a dummy recursive
1696 -- call on the TSS itself.
1699 Make_Raise_Program_Error
(Loc
, Reason
=> PE_Explicit_Raise
));
1700 RACW_Primitive_Name
:= New_Occurrence_Of
(Proc
, Loc
);
1703 -- For a normal RAS type, we cast the RAS formal to the corresponding
1704 -- tagged type, and perform a dispatching call to its Call primitive
1707 Prepend_To
(Param_Assoc
,
1708 Unchecked_Convert_To
(RACW_Type
,
1709 New_Occurrence_Of
(RAS_Parameter
, Loc
)));
1711 RACW_Primitive_Name
:=
1712 Make_Selected_Component
(Loc
,
1713 Prefix
=> Scope
(RACW_Type
),
1714 Selector_Name
=> Name_uCall
);
1719 Make_Simple_Return_Statement
(Loc
,
1721 Make_Function_Call
(Loc
,
1722 Name
=> RACW_Primitive_Name
,
1723 Parameter_Associations
=> Param_Assoc
)));
1727 Make_Procedure_Call_Statement
(Loc
,
1728 Name
=> RACW_Primitive_Name
,
1729 Parameter_Associations
=> Param_Assoc
));
1732 -- Build the complete subprogram
1736 Make_Function_Specification
(Loc
,
1737 Defining_Unit_Name
=> Proc
,
1738 Parameter_Specifications
=> Param_Specs
,
1739 Result_Definition
=>
1741 Entity
(Result_Definition
(Spec
)), Loc
));
1743 Set_Ekind
(Proc
, E_Function
);
1745 New_Occurrence_Of
(Entity
(Result_Definition
(Spec
)), Loc
));
1749 Make_Procedure_Specification
(Loc
,
1750 Defining_Unit_Name
=> Proc
,
1751 Parameter_Specifications
=> Param_Specs
);
1753 Set_Ekind
(Proc
, E_Procedure
);
1754 Set_Etype
(Proc
, Standard_Void_Type
);
1758 Make_Subprogram_Body
(Loc
,
1759 Specification
=> Proc_Spec
,
1760 Declarations
=> New_List
,
1761 Handled_Statement_Sequence
=>
1762 Make_Handled_Sequence_Of_Statements
(Loc
,
1763 Statements
=> Stmts
)));
1765 Set_TSS
(Fat_Type
, Proc
);
1766 end Add_RAS_Dereference_TSS
;
1768 -------------------------------
1769 -- Add_RAS_Proxy_And_Analyze --
1770 -------------------------------
1772 procedure Add_RAS_Proxy_And_Analyze
1775 All_Calls_Remote_E
: Entity_Id
;
1776 Proxy_Object_Addr
: out Entity_Id
)
1778 Loc
: constant Source_Ptr
:= Sloc
(Vis_Decl
);
1780 Subp_Name
: constant Entity_Id
:=
1781 Defining_Unit_Name
(Specification
(Vis_Decl
));
1783 Pkg_Name
: constant Entity_Id
:=
1784 Make_Defining_Identifier
(Loc
,
1785 Chars
=> New_External_Name
(Chars
(Subp_Name
), 'P', -1));
1787 Proxy_Type
: constant Entity_Id
:=
1788 Make_Defining_Identifier
(Loc
,
1791 (Related_Id
=> Chars
(Subp_Name
),
1794 Proxy_Type_Full_View
: constant Entity_Id
:=
1795 Make_Defining_Identifier
(Loc
,
1796 Chars
(Proxy_Type
));
1798 Subp_Decl_Spec
: constant Node_Id
:=
1799 Build_RAS_Primitive_Specification
1800 (Subp_Spec
=> Specification
(Vis_Decl
),
1801 Remote_Object_Type
=> Proxy_Type
);
1803 Subp_Body_Spec
: constant Node_Id
:=
1804 Build_RAS_Primitive_Specification
1805 (Subp_Spec
=> Specification
(Vis_Decl
),
1806 Remote_Object_Type
=> Proxy_Type
);
1808 Vis_Decls
: constant List_Id
:= New_List
;
1809 Pvt_Decls
: constant List_Id
:= New_List
;
1810 Actuals
: constant List_Id
:= New_List
;
1812 Perform_Call
: Node_Id
;
1815 -- type subpP is tagged limited private;
1817 Append_To
(Vis_Decls
,
1818 Make_Private_Type_Declaration
(Loc
,
1819 Defining_Identifier
=> Proxy_Type
,
1820 Tagged_Present
=> True,
1821 Limited_Present
=> True));
1823 -- [subprogram] Call
1824 -- (Self : access subpP;
1825 -- ...other-formals...)
1828 Append_To
(Vis_Decls
,
1829 Make_Subprogram_Declaration
(Loc
,
1830 Specification
=> Subp_Decl_Spec
));
1832 -- A : constant System.Address;
1834 Proxy_Object_Addr
:= Make_Defining_Identifier
(Loc
, Name_uA
);
1836 Append_To
(Vis_Decls
,
1837 Make_Object_Declaration
(Loc
,
1838 Defining_Identifier
=> Proxy_Object_Addr
,
1839 Constant_Present
=> True,
1840 Object_Definition
=> New_Occurrence_Of
(RTE
(RE_Address
), Loc
)));
1844 -- type subpP is tagged limited record
1845 -- All_Calls_Remote : Boolean := [All_Calls_Remote?];
1849 Append_To
(Pvt_Decls
,
1850 Make_Full_Type_Declaration
(Loc
,
1851 Defining_Identifier
=> Proxy_Type_Full_View
,
1853 Build_Remote_Subprogram_Proxy_Type
(Loc
,
1854 New_Occurrence_Of
(All_Calls_Remote_E
, Loc
))));
1856 -- Trick semantic analysis into swapping the public and full view when
1857 -- freezing the public view.
1859 Set_Comes_From_Source
(Proxy_Type_Full_View
, True);
1862 -- (Self : access O;
1863 -- ...other-formals...) is
1865 -- P (...other-formals...);
1869 -- (Self : access O;
1870 -- ...other-formals...)
1873 -- return F (...other-formals...);
1876 if Nkind
(Subp_Decl_Spec
) = N_Procedure_Specification
then
1878 Make_Procedure_Call_Statement
(Loc
,
1879 Name
=> New_Occurrence_Of
(Subp_Name
, Loc
),
1880 Parameter_Associations
=> Actuals
);
1883 Make_Simple_Return_Statement
(Loc
,
1885 Make_Function_Call
(Loc
,
1886 Name
=> New_Occurrence_Of
(Subp_Name
, Loc
),
1887 Parameter_Associations
=> Actuals
));
1890 Formal
:= First
(Parameter_Specifications
(Subp_Decl_Spec
));
1891 pragma Assert
(Present
(Formal
));
1894 exit when No
(Formal
);
1896 New_Occurrence_Of
(Defining_Identifier
(Formal
), Loc
));
1899 -- O : aliased subpP;
1901 Append_To
(Pvt_Decls
,
1902 Make_Object_Declaration
(Loc
,
1903 Defining_Identifier
=> Make_Defining_Identifier
(Loc
, Name_uO
),
1904 Aliased_Present
=> True,
1905 Object_Definition
=> New_Occurrence_Of
(Proxy_Type
, Loc
)));
1907 -- A : constant System.Address := O'Address;
1909 Append_To
(Pvt_Decls
,
1910 Make_Object_Declaration
(Loc
,
1911 Defining_Identifier
=>
1912 Make_Defining_Identifier
(Loc
, Chars
(Proxy_Object_Addr
)),
1913 Constant_Present
=> True,
1914 Object_Definition
=> New_Occurrence_Of
(RTE
(RE_Address
), Loc
),
1916 Make_Attribute_Reference
(Loc
,
1917 Prefix
=> New_Occurrence_Of
(
1918 Defining_Identifier
(Last
(Pvt_Decls
)), Loc
),
1919 Attribute_Name
=> Name_Address
)));
1922 Make_Package_Declaration
(Loc
,
1923 Specification
=> Make_Package_Specification
(Loc
,
1924 Defining_Unit_Name
=> Pkg_Name
,
1925 Visible_Declarations
=> Vis_Decls
,
1926 Private_Declarations
=> Pvt_Decls
,
1927 End_Label
=> Empty
)));
1928 Analyze
(Last
(Decls
));
1931 Make_Package_Body
(Loc
,
1932 Defining_Unit_Name
=>
1933 Make_Defining_Identifier
(Loc
, Chars
(Pkg_Name
)),
1934 Declarations
=> New_List
(
1935 Make_Subprogram_Body
(Loc
,
1936 Specification
=> Subp_Body_Spec
,
1937 Declarations
=> New_List
,
1938 Handled_Statement_Sequence
=>
1939 Make_Handled_Sequence_Of_Statements
(Loc
,
1940 Statements
=> New_List
(Perform_Call
))))));
1941 Analyze
(Last
(Decls
));
1942 end Add_RAS_Proxy_And_Analyze
;
1944 -----------------------
1945 -- Add_RAST_Features --
1946 -----------------------
1948 procedure Add_RAST_Features
(Vis_Decl
: Node_Id
) is
1949 RAS_Type
: constant Entity_Id
:=
1950 Equivalent_Type
(Defining_Identifier
(Vis_Decl
));
1952 pragma Assert
(No
(TSS
(RAS_Type
, TSS_RAS_Access
)));
1953 Add_RAS_Dereference_TSS
(Vis_Decl
);
1954 Specific_Add_RAST_Features
(Vis_Decl
, RAS_Type
);
1955 end Add_RAST_Features
;
1961 procedure Add_Stub_Type
1962 (Designated_Type
: Entity_Id
;
1963 RACW_Type
: Entity_Id
;
1965 Stub_Type
: out Entity_Id
;
1966 Stub_Type_Access
: out Entity_Id
;
1967 RPC_Receiver_Decl
: out Node_Id
;
1968 Body_Decls
: out List_Id
;
1969 Existing
: out Boolean)
1971 Loc
: constant Source_Ptr
:= Sloc
(RACW_Type
);
1973 Stub_Elements
: constant Stub_Structure
:=
1974 Stubs_Table
.Get
(Designated_Type
);
1975 Stub_Type_Decl
: Node_Id
;
1976 Stub_Type_Access_Decl
: Node_Id
;
1979 if Stub_Elements
/= Empty_Stub_Structure
then
1980 Stub_Type
:= Stub_Elements
.Stub_Type
;
1981 Stub_Type_Access
:= Stub_Elements
.Stub_Type_Access
;
1982 RPC_Receiver_Decl
:= Stub_Elements
.RPC_Receiver_Decl
;
1983 Body_Decls
:= Stub_Elements
.Body_Decls
;
1989 Stub_Type
:= Make_Temporary
(Loc
, 'S');
1990 Set_Ekind
(Stub_Type
, E_Record_Type
);
1991 Set_Is_RACW_Stub_Type
(Stub_Type
);
1993 Make_Defining_Identifier
(Loc
,
1994 Chars
=> New_External_Name
1995 (Related_Id
=> Chars
(Stub_Type
), Suffix
=> 'A'));
1997 RPC_Receiver_Decl
:= Specific_RPC_Receiver_Decl
(RACW_Type
);
1999 -- Create new stub type, copying components from generic RACW_Stub_Type
2002 Make_Full_Type_Declaration
(Loc
,
2003 Defining_Identifier
=> Stub_Type
,
2005 Make_Record_Definition
(Loc
,
2006 Tagged_Present
=> True,
2007 Limited_Present
=> True,
2009 Make_Component_List
(Loc
,
2011 Copy_Component_List
(RTE
(RE_RACW_Stub_Type
), Loc
))));
2013 -- Does the stub type need to explicitly implement interfaces from the
2014 -- designated type???
2016 -- In particular are there issues in the case where the designated type
2017 -- is a synchronized interface???
2019 Stub_Type_Access_Decl
:=
2020 Make_Full_Type_Declaration
(Loc
,
2021 Defining_Identifier
=> Stub_Type_Access
,
2023 Make_Access_To_Object_Definition
(Loc
,
2024 All_Present
=> True,
2025 Subtype_Indication
=> New_Occurrence_Of
(Stub_Type
, Loc
)));
2027 Append_To
(Decls
, Stub_Type_Decl
);
2028 Analyze
(Last
(Decls
));
2029 Append_To
(Decls
, Stub_Type_Access_Decl
);
2030 Analyze
(Last
(Decls
));
2032 -- We can't directly derive the stub type from the designated type,
2033 -- because we don't want any components or discriminants from the real
2034 -- type, so instead we manually fake a derivation to get an appropriate
2037 Derive_Subprograms
(Parent_Type
=> Designated_Type
,
2038 Derived_Type
=> Stub_Type
);
2040 if Present
(RPC_Receiver_Decl
) then
2041 Append_To
(Decls
, RPC_Receiver_Decl
);
2044 -- Case of RACW implementing a RAS with the GARLIC PCS: there is
2045 -- no RPC receiver in that case, this is just an indication of
2046 -- where to insert code in the tree (see comment in declaration of
2047 -- type Stub_Structure).
2049 RPC_Receiver_Decl
:= Last
(Decls
);
2052 Body_Decls
:= New_List
;
2054 Stubs_Table
.Set
(Designated_Type
,
2055 (Stub_Type
=> Stub_Type
,
2056 Stub_Type_Access
=> Stub_Type_Access
,
2057 RPC_Receiver_Decl
=> RPC_Receiver_Decl
,
2058 Body_Decls
=> Body_Decls
,
2059 RACW_Type
=> RACW_Type
));
2062 ------------------------
2063 -- Append_RACW_Bodies --
2064 ------------------------
2066 procedure Append_RACW_Bodies
(Decls
: List_Id
; Spec_Id
: Entity_Id
) is
2070 E
:= First_Entity
(Spec_Id
);
2071 while Present
(E
) loop
2072 if Is_Remote_Access_To_Class_Wide_Type
(E
) then
2073 Append_List_To
(Decls
, Get_And_Reset_RACW_Bodies
(E
));
2078 end Append_RACW_Bodies
;
2080 ----------------------------------
2081 -- Assign_Subprogram_Identifier --
2082 ----------------------------------
2084 procedure Assign_Subprogram_Identifier
2089 N
: constant Name_Id
:= Chars
(Def
);
2091 Overload_Order
: constant Int
:= Overload_Counter_Table
.Get
(N
) + 1;
2094 Overload_Counter_Table
.Set
(N
, Overload_Order
);
2096 Get_Name_String
(N
);
2098 -- Homonym handling: as in Exp_Dbug, but much simpler, because the only
2099 -- entities for which we have to generate names here need only to be
2100 -- disambiguated within their own scope.
2102 if Overload_Order
> 1 then
2103 Name_Buffer
(Name_Len
+ 1 .. Name_Len
+ 2) := "__";
2104 Name_Len
:= Name_Len
+ 2;
2105 Add_Nat_To_Name_Buffer
(Overload_Order
);
2108 Id
:= String_From_Name_Buffer
;
2109 Subprogram_Identifier_Table
.Set
2111 Subprogram_Identifiers
'(Str_Identifier => Id, Int_Identifier => Spn));
2112 end Assign_Subprogram_Identifier;
2114 -------------------------------------
2115 -- Build_Actual_Object_Declaration --
2116 -------------------------------------
2118 procedure Build_Actual_Object_Declaration
2119 (Object : Entity_Id;
2125 Loc : constant Source_Ptr := Sloc (Object);
2128 -- Declare a temporary object for the actual, possibly initialized with
2129 -- a 'Input
/From_Any call
.
2131 -- Complication arises in the case of limited types, for which such a
2132 -- declaration is illegal in Ada 95. In that case, we first generate a
2133 -- renaming declaration of the 'Input call, and then if needed we
2134 -- generate an overlaid non-constant view.
2136 if Ada_Version
<= Ada_95
2137 and then Is_Limited_Type
(Etyp
)
2138 and then Present
(Expr
)
2141 -- Object : Etyp renames <func-call>
2144 Make_Object_Renaming_Declaration
(Loc
,
2145 Defining_Identifier
=> Object
,
2146 Subtype_Mark
=> New_Occurrence_Of
(Etyp
, Loc
),
2151 -- The name defined by the renaming declaration denotes a
2152 -- constant view; create a non-constant object at the same address
2153 -- to be used as the actual.
2156 Constant_Object
: constant Entity_Id
:=
2157 Make_Temporary
(Loc
, 'P');
2160 Set_Defining_Identifier
2161 (Last
(Decls
), Constant_Object
);
2163 -- We have an unconstrained Etyp: build the actual constrained
2164 -- subtype for the value we just read from the stream.
2166 -- subtype S is <actual subtype of Constant_Object>;
2169 Build_Actual_Subtype
(Etyp
,
2170 New_Occurrence_Of
(Constant_Object
, Loc
)));
2175 Make_Object_Declaration
(Loc
,
2176 Defining_Identifier
=> Object
,
2177 Object_Definition
=>
2179 (Defining_Identifier
(Last
(Decls
)), Loc
)));
2180 Set_Ekind
(Object
, E_Variable
);
2182 -- Suppress default initialization:
2183 -- pragma Import (Ada, Object);
2187 Chars
=> Name_Import
,
2188 Pragma_Argument_Associations
=> New_List
(
2189 Make_Pragma_Argument_Association
(Loc
,
2190 Chars
=> Name_Convention
,
2191 Expression
=> Make_Identifier
(Loc
, Name_Ada
)),
2192 Make_Pragma_Argument_Association
(Loc
,
2193 Chars
=> Name_Entity
,
2194 Expression
=> New_Occurrence_Of
(Object
, Loc
)))));
2196 -- for Object'Address use Constant_Object'Address;
2199 Make_Attribute_Definition_Clause
(Loc
,
2200 Name
=> New_Occurrence_Of
(Object
, Loc
),
2201 Chars
=> Name_Address
,
2203 Make_Attribute_Reference
(Loc
,
2204 Prefix
=> New_Occurrence_Of
(Constant_Object
, Loc
),
2205 Attribute_Name
=> Name_Address
)));
2210 -- General case of a regular object declaration. Object is flagged
2211 -- constant unless it has mode out or in out, to allow the backend
2212 -- to optimize where possible.
2214 -- Object : [constant] Etyp [:= <expr>];
2217 Make_Object_Declaration
(Loc
,
2218 Defining_Identifier
=> Object
,
2219 Constant_Present
=> Present
(Expr
) and then not Variable
,
2220 Object_Definition
=> New_Occurrence_Of
(Etyp
, Loc
),
2221 Expression
=> Expr
));
2223 if Constant_Present
(Last
(Decls
)) then
2224 Set_Ekind
(Object
, E_Constant
);
2226 Set_Ekind
(Object
, E_Variable
);
2229 end Build_Actual_Object_Declaration
;
2231 ------------------------------
2232 -- Build_Get_Unique_RP_Call --
2233 ------------------------------
2235 function Build_Get_Unique_RP_Call
2237 Pointer
: Entity_Id
;
2238 Stub_Type
: Entity_Id
) return List_Id
2242 Make_Procedure_Call_Statement
(Loc
,
2244 New_Occurrence_Of
(RTE
(RE_Get_Unique_Remote_Pointer
), Loc
),
2245 Parameter_Associations
=> New_List
(
2246 Unchecked_Convert_To
(RTE
(RE_RACW_Stub_Type_Access
),
2247 New_Occurrence_Of
(Pointer
, Loc
)))),
2249 Make_Assignment_Statement
(Loc
,
2251 Make_Selected_Component
(Loc
,
2252 Prefix
=> New_Occurrence_Of
(Pointer
, Loc
),
2254 New_Occurrence_Of
(First_Tag_Component
2255 (Designated_Type
(Etype
(Pointer
))), Loc
)),
2257 Make_Attribute_Reference
(Loc
,
2258 Prefix
=> New_Occurrence_Of
(Stub_Type
, Loc
),
2259 Attribute_Name
=> Name_Tag
)));
2261 -- Note: The assignment to Pointer._Tag is safe here because
2262 -- we carefully ensured that Stub_Type has exactly the same layout
2263 -- as System.Partition_Interface.RACW_Stub_Type.
2265 end Build_Get_Unique_RP_Call
;
2267 -----------------------------------
2268 -- Build_Ordered_Parameters_List --
2269 -----------------------------------
2271 function Build_Ordered_Parameters_List
(Spec
: Node_Id
) return List_Id
is
2272 Constrained_List
: List_Id
;
2273 Unconstrained_List
: List_Id
;
2274 Current_Parameter
: Node_Id
;
2277 First_Parameter
: Node_Id
;
2278 For_RAS
: Boolean := False;
2281 if No
(Parameter_Specifications
(Spec
)) then
2285 Constrained_List
:= New_List
;
2286 Unconstrained_List
:= New_List
;
2287 First_Parameter
:= First
(Parameter_Specifications
(Spec
));
2289 if Nkind
(Parameter_Type
(First_Parameter
)) = N_Access_Definition
2290 and then Chars
(Defining_Identifier
(First_Parameter
)) = Name_uS
2295 -- Loop through the parameters and add them to the right list. Note that
2296 -- we treat a parameter of a null-excluding access type as unconstrained
2297 -- because we can't declare an object of such a type with default
2300 Current_Parameter
:= First_Parameter
;
2301 while Present
(Current_Parameter
) loop
2302 Ptyp
:= Parameter_Type
(Current_Parameter
);
2304 if (Nkind
(Ptyp
) = N_Access_Definition
2305 or else not Transmit_As_Unconstrained
(Etype
(Ptyp
)))
2306 and then not (For_RAS
and then Current_Parameter
= First_Parameter
)
2308 Append_To
(Constrained_List
, New_Copy
(Current_Parameter
));
2310 Append_To
(Unconstrained_List
, New_Copy
(Current_Parameter
));
2313 Next
(Current_Parameter
);
2316 -- Unconstrained parameters are returned first
2318 Append_List_To
(Unconstrained_List
, Constrained_List
);
2320 return Unconstrained_List
;
2321 end Build_Ordered_Parameters_List
;
2323 ----------------------------------
2324 -- Build_Passive_Partition_Stub --
2325 ----------------------------------
2327 procedure Build_Passive_Partition_Stub
(U
: Node_Id
) is
2329 Pkg_Ent
: Entity_Id
;
2332 Loc
: constant Source_Ptr
:= Sloc
(U
);
2335 -- Verify that the implementation supports distribution, by accessing
2336 -- a type defined in the proper version of system.rpc
2339 Dist_OK
: Entity_Id
;
2340 pragma Warnings
(Off
, Dist_OK
);
2342 Dist_OK
:= RTE
(RE_Params_Stream_Type
);
2345 -- Use body if present, spec otherwise
2347 if Nkind
(U
) = N_Package_Declaration
then
2348 Pkg_Spec
:= Specification
(U
);
2349 L
:= Visible_Declarations
(Pkg_Spec
);
2351 Pkg_Spec
:= Parent
(Corresponding_Spec
(U
));
2352 L
:= Declarations
(U
);
2354 Pkg_Ent
:= Defining_Entity
(Pkg_Spec
);
2357 Make_Procedure_Call_Statement
(Loc
,
2359 New_Occurrence_Of
(RTE
(RE_Register_Passive_Package
), Loc
),
2360 Parameter_Associations
=> New_List
(
2361 Make_String_Literal
(Loc
,
2362 Fully_Qualified_Name_String
(Pkg_Ent
, Append_NUL
=> False)),
2363 Make_Attribute_Reference
(Loc
,
2364 Prefix
=> New_Occurrence_Of
(Pkg_Ent
, Loc
),
2365 Attribute_Name
=> Name_Version
)));
2368 end Build_Passive_Partition_Stub
;
2370 --------------------------------------
2371 -- Build_RPC_Receiver_Specification --
2372 --------------------------------------
2374 function Build_RPC_Receiver_Specification
2375 (RPC_Receiver
: Entity_Id
;
2376 Request_Parameter
: Entity_Id
) return Node_Id
2378 Loc
: constant Source_Ptr
:= Sloc
(RPC_Receiver
);
2381 Make_Procedure_Specification
(Loc
,
2382 Defining_Unit_Name
=> RPC_Receiver
,
2383 Parameter_Specifications
=> New_List
(
2384 Make_Parameter_Specification
(Loc
,
2385 Defining_Identifier
=> Request_Parameter
,
2387 New_Occurrence_Of
(RTE
(RE_Request_Access
), Loc
))));
2388 end Build_RPC_Receiver_Specification
;
2390 ----------------------------------------
2391 -- Build_Remote_Subprogram_Proxy_Type --
2392 ----------------------------------------
2394 function Build_Remote_Subprogram_Proxy_Type
2396 ACR_Expression
: Node_Id
) return Node_Id
2400 Make_Record_Definition
(Loc
,
2401 Tagged_Present
=> True,
2402 Limited_Present
=> True,
2404 Make_Component_List
(Loc
,
2405 Component_Items
=> New_List
(
2406 Make_Component_Declaration
(Loc
,
2407 Defining_Identifier
=>
2408 Make_Defining_Identifier
(Loc
,
2409 Name_All_Calls_Remote
),
2410 Component_Definition
=>
2411 Make_Component_Definition
(Loc
,
2412 Subtype_Indication
=>
2413 New_Occurrence_Of
(Standard_Boolean
, Loc
)),
2417 Make_Component_Declaration
(Loc
,
2418 Defining_Identifier
=>
2419 Make_Defining_Identifier
(Loc
,
2421 Component_Definition
=>
2422 Make_Component_Definition
(Loc
,
2423 Subtype_Indication
=>
2424 New_Occurrence_Of
(RTE
(RE_Address
), Loc
)),
2426 New_Occurrence_Of
(RTE
(RE_Null_Address
), Loc
)),
2428 Make_Component_Declaration
(Loc
,
2429 Defining_Identifier
=>
2430 Make_Defining_Identifier
(Loc
,
2432 Component_Definition
=>
2433 Make_Component_Definition
(Loc
,
2434 Subtype_Indication
=>
2435 New_Occurrence_Of
(RTE
(RE_Subprogram_Id
), Loc
))))));
2436 end Build_Remote_Subprogram_Proxy_Type
;
2438 --------------------
2439 -- Build_Stub_Tag --
2440 --------------------
2442 function Build_Stub_Tag
2444 RACW_Type
: Entity_Id
) return Node_Id
2446 Stub_Type
: constant Entity_Id
:= Corresponding_Stub_Type
(RACW_Type
);
2449 Make_Attribute_Reference
(Loc
,
2450 Prefix
=> New_Occurrence_Of
(Stub_Type
, Loc
),
2451 Attribute_Name
=> Name_Tag
);
2454 ------------------------------------
2455 -- Build_Subprogram_Calling_Stubs --
2456 ------------------------------------
2458 function Build_Subprogram_Calling_Stubs
2459 (Vis_Decl
: Node_Id
;
2461 Asynchronous
: Boolean;
2462 Dynamically_Asynchronous
: Boolean := False;
2463 Stub_Type
: Entity_Id
:= Empty
;
2464 RACW_Type
: Entity_Id
:= Empty
;
2465 Locator
: Entity_Id
:= Empty
;
2466 New_Name
: Name_Id
:= No_Name
) return Node_Id
2468 Loc
: constant Source_Ptr
:= Sloc
(Vis_Decl
);
2470 Decls
: constant List_Id
:= New_List
;
2471 Statements
: constant List_Id
:= New_List
;
2473 Subp_Spec
: Node_Id
;
2474 -- The specification of the body
2476 Controlling_Parameter
: Entity_Id
:= Empty
;
2478 Asynchronous_Expr
: Node_Id
:= Empty
;
2480 RCI_Locator
: Entity_Id
;
2482 Spec_To_Use
: Node_Id
;
2484 procedure Insert_Partition_Check
(Parameter
: Node_Id
);
2485 -- Check that the parameter has been elaborated on the same partition
2486 -- than the controlling parameter (E.4(19)).
2488 ----------------------------
2489 -- Insert_Partition_Check --
2490 ----------------------------
2492 procedure Insert_Partition_Check
(Parameter
: Node_Id
) is
2493 Parameter_Entity
: constant Entity_Id
:=
2494 Defining_Identifier
(Parameter
);
2496 -- The expression that will be built is of the form:
2498 -- if not Same_Partition (Parameter, Controlling_Parameter) then
2499 -- raise Constraint_Error;
2502 -- We do not check that Parameter is in Stub_Type since such a check
2503 -- has been inserted at the point of call already (a tag check since
2504 -- we have multiple controlling operands).
2507 Make_Raise_Constraint_Error
(Loc
,
2511 Make_Function_Call
(Loc
,
2513 New_Occurrence_Of
(RTE
(RE_Same_Partition
), Loc
),
2514 Parameter_Associations
=>
2516 Unchecked_Convert_To
(RTE
(RE_RACW_Stub_Type_Access
),
2517 New_Occurrence_Of
(Parameter_Entity
, Loc
)),
2518 Unchecked_Convert_To
(RTE
(RE_RACW_Stub_Type_Access
),
2519 New_Occurrence_Of
(Controlling_Parameter
, Loc
))))),
2520 Reason
=> CE_Partition_Check_Failed
));
2521 end Insert_Partition_Check
;
2523 -- Start of processing for Build_Subprogram_Calling_Stubs
2527 Copy_Specification
(Loc
,
2528 Spec
=> Specification
(Vis_Decl
),
2529 New_Name
=> New_Name
);
2531 if Locator
= Empty
then
2532 RCI_Locator
:= RCI_Cache
;
2533 Spec_To_Use
:= Specification
(Vis_Decl
);
2535 RCI_Locator
:= Locator
;
2536 Spec_To_Use
:= Subp_Spec
;
2539 -- Find a controlling argument if we have a stub type. Also check
2540 -- if this subprogram can be made asynchronous.
2542 if Present
(Stub_Type
)
2543 and then Present
(Parameter_Specifications
(Spec_To_Use
))
2546 Current_Parameter
: Node_Id
:=
2547 First
(Parameter_Specifications
2550 while Present
(Current_Parameter
) loop
2552 Is_RACW_Controlling_Formal
(Current_Parameter
, Stub_Type
)
2554 if Controlling_Parameter
= Empty
then
2555 Controlling_Parameter
:=
2556 Defining_Identifier
(Current_Parameter
);
2558 Insert_Partition_Check
(Current_Parameter
);
2562 Next
(Current_Parameter
);
2567 pragma Assert
(No
(Stub_Type
) or else Present
(Controlling_Parameter
));
2569 if Dynamically_Asynchronous
then
2570 Asynchronous_Expr
:= Make_Selected_Component
(Loc
,
2571 Prefix
=> Controlling_Parameter
,
2572 Selector_Name
=> Name_Asynchronous
);
2575 Specific_Build_General_Calling_Stubs
2577 Statements
=> Statements
,
2578 Target
=> Specific_Build_Stub_Target
(Loc
,
2579 Decls
, RCI_Locator
, Controlling_Parameter
),
2580 Subprogram_Id
=> Subp_Id
,
2581 Asynchronous
=> Asynchronous_Expr
,
2582 Is_Known_Asynchronous
=> Asynchronous
2583 and then not Dynamically_Asynchronous
,
2584 Is_Known_Non_Asynchronous
2586 and then not Dynamically_Asynchronous
,
2587 Is_Function
=> Nkind
(Spec_To_Use
) =
2588 N_Function_Specification
,
2589 Spec
=> Spec_To_Use
,
2590 Stub_Type
=> Stub_Type
,
2591 RACW_Type
=> RACW_Type
,
2594 RCI_Calling_Stubs_Table
.Set
2595 (Defining_Unit_Name
(Specification
(Vis_Decl
)),
2596 Defining_Unit_Name
(Spec_To_Use
));
2599 Make_Subprogram_Body
(Loc
,
2600 Specification
=> Subp_Spec
,
2601 Declarations
=> Decls
,
2602 Handled_Statement_Sequence
=>
2603 Make_Handled_Sequence_Of_Statements
(Loc
, Statements
));
2604 end Build_Subprogram_Calling_Stubs
;
2606 -------------------------
2607 -- Build_Subprogram_Id --
2608 -------------------------
2610 function Build_Subprogram_Id
2612 E
: Entity_Id
) return Node_Id
2615 if Get_Subprogram_Ids
(E
).Str_Identifier
= No_String
then
2617 Current_Declaration
: Node_Id
;
2618 Current_Subp
: Entity_Id
;
2619 Current_Subp_Str
: String_Id
;
2620 Current_Subp_Number
: Int
:= First_RCI_Subprogram_Id
;
2622 pragma Warnings
(Off
, Current_Subp_Str
);
2625 -- Build_Subprogram_Id is called outside of the context of
2626 -- generating calling or receiving stubs. Hence we are processing
2627 -- an 'Access attribute_reference for an RCI subprogram, for the
2628 -- purpose of obtaining a RAS value.
2631 (Is_Remote_Call_Interface
(Scope
(E
))
2633 (Nkind
(Parent
(E
)) = N_Procedure_Specification
2635 Nkind
(Parent
(E
)) = N_Function_Specification
));
2637 Current_Declaration
:=
2638 First
(Visible_Declarations
2639 (Package_Specification_Of_Scope
(Scope
(E
))));
2640 while Present
(Current_Declaration
) loop
2641 if Nkind
(Current_Declaration
) = N_Subprogram_Declaration
2642 and then Comes_From_Source
(Current_Declaration
)
2644 Current_Subp
:= Defining_Unit_Name
(Specification
(
2645 Current_Declaration
));
2647 Assign_Subprogram_Identifier
2648 (Current_Subp
, Current_Subp_Number
, Current_Subp_Str
);
2650 Current_Subp_Number
:= Current_Subp_Number
+ 1;
2653 Next
(Current_Declaration
);
2658 case Get_PCS_Name
is
2659 when Name_PolyORB_DSA
=>
2660 return Make_String_Literal
(Loc
, Get_Subprogram_Id
(E
));
2662 return Make_Integer_Literal
(Loc
, Get_Subprogram_Id
(E
));
2664 end Build_Subprogram_Id
;
2666 ------------------------
2667 -- Copy_Specification --
2668 ------------------------
2670 function Copy_Specification
2673 Ctrl_Type
: Entity_Id
:= Empty
;
2674 New_Name
: Name_Id
:= No_Name
) return Node_Id
2676 Parameters
: List_Id
:= No_List
;
2678 Current_Parameter
: Node_Id
;
2679 Current_Identifier
: Entity_Id
;
2680 Current_Type
: Node_Id
;
2682 Name_For_New_Spec
: Name_Id
;
2684 New_Identifier
: Entity_Id
;
2686 -- Comments needed in body below ???
2689 if New_Name
= No_Name
then
2690 pragma Assert
(Nkind
(Spec
) = N_Function_Specification
2691 or else Nkind
(Spec
) = N_Procedure_Specification
);
2693 Name_For_New_Spec
:= Chars
(Defining_Unit_Name
(Spec
));
2695 Name_For_New_Spec
:= New_Name
;
2698 if Present
(Parameter_Specifications
(Spec
)) then
2699 Parameters
:= New_List
;
2700 Current_Parameter
:= First
(Parameter_Specifications
(Spec
));
2701 while Present
(Current_Parameter
) loop
2702 Current_Identifier
:= Defining_Identifier
(Current_Parameter
);
2703 Current_Type
:= Parameter_Type
(Current_Parameter
);
2705 if Nkind
(Current_Type
) = N_Access_Definition
then
2706 if Present
(Ctrl_Type
) then
2707 pragma Assert
(Is_Controlling_Formal
(Current_Identifier
));
2709 Make_Access_Definition
(Loc
,
2710 Subtype_Mark
=> New_Occurrence_Of
(Ctrl_Type
, Loc
),
2711 Null_Exclusion_Present
=>
2712 Null_Exclusion_Present
(Current_Type
));
2716 Make_Access_Definition
(Loc
,
2718 New_Copy_Tree
(Subtype_Mark
(Current_Type
)),
2719 Null_Exclusion_Present
=>
2720 Null_Exclusion_Present
(Current_Type
));
2724 if Present
(Ctrl_Type
)
2725 and then Is_Controlling_Formal
(Current_Identifier
)
2727 Current_Type
:= New_Occurrence_Of
(Ctrl_Type
, Loc
);
2729 Current_Type
:= New_Copy_Tree
(Current_Type
);
2733 New_Identifier
:= Make_Defining_Identifier
(Loc
,
2734 Chars
(Current_Identifier
));
2736 Append_To
(Parameters
,
2737 Make_Parameter_Specification
(Loc
,
2738 Defining_Identifier
=> New_Identifier
,
2739 Parameter_Type
=> Current_Type
,
2740 In_Present
=> In_Present
(Current_Parameter
),
2741 Out_Present
=> Out_Present
(Current_Parameter
),
2743 New_Copy_Tree
(Expression
(Current_Parameter
))));
2745 -- For a regular formal parameter (that needs to be marshalled
2746 -- in the context of remote calls), set the Etype now, because
2747 -- marshalling processing might need it.
2749 if Is_Entity_Name
(Current_Type
) then
2750 Set_Etype
(New_Identifier
, Entity
(Current_Type
));
2752 -- Current_Type is an access definition, special processing
2753 -- (not requiring etype) will occur for marshalling.
2759 Next
(Current_Parameter
);
2763 case Nkind
(Spec
) is
2765 when N_Function_Specification | N_Access_Function_Definition
=>
2767 Make_Function_Specification
(Loc
,
2768 Defining_Unit_Name
=>
2769 Make_Defining_Identifier
(Loc
,
2770 Chars
=> Name_For_New_Spec
),
2771 Parameter_Specifications
=> Parameters
,
2772 Result_Definition
=>
2773 New_Occurrence_Of
(Entity
(Result_Definition
(Spec
)), Loc
));
2775 when N_Procedure_Specification | N_Access_Procedure_Definition
=>
2777 Make_Procedure_Specification
(Loc
,
2778 Defining_Unit_Name
=>
2779 Make_Defining_Identifier
(Loc
,
2780 Chars
=> Name_For_New_Spec
),
2781 Parameter_Specifications
=> Parameters
);
2784 raise Program_Error
;
2786 end Copy_Specification
;
2788 -----------------------------
2789 -- Corresponding_Stub_Type --
2790 -----------------------------
2792 function Corresponding_Stub_Type
(RACW_Type
: Entity_Id
) return Entity_Id
is
2793 Desig
: constant Entity_Id
:=
2794 Etype
(Designated_Type
(RACW_Type
));
2795 Stub_Elements
: constant Stub_Structure
:= Stubs_Table
.Get
(Desig
);
2797 return Stub_Elements
.Stub_Type
;
2798 end Corresponding_Stub_Type
;
2800 ---------------------------
2801 -- Could_Be_Asynchronous --
2802 ---------------------------
2804 function Could_Be_Asynchronous
(Spec
: Node_Id
) return Boolean is
2805 Current_Parameter
: Node_Id
;
2808 if Present
(Parameter_Specifications
(Spec
)) then
2809 Current_Parameter
:= First
(Parameter_Specifications
(Spec
));
2810 while Present
(Current_Parameter
) loop
2811 if Out_Present
(Current_Parameter
) then
2815 Next
(Current_Parameter
);
2820 end Could_Be_Asynchronous
;
2822 ---------------------------
2823 -- Declare_Create_NVList --
2824 ---------------------------
2826 procedure Declare_Create_NVList
2834 Make_Object_Declaration
(Loc
,
2835 Defining_Identifier
=> NVList
,
2836 Aliased_Present
=> False,
2837 Object_Definition
=>
2838 New_Occurrence_Of
(RTE
(RE_NVList_Ref
), Loc
)));
2841 Make_Procedure_Call_Statement
(Loc
,
2842 Name
=> New_Occurrence_Of
(RTE
(RE_NVList_Create
), Loc
),
2843 Parameter_Associations
=> New_List
(
2844 New_Occurrence_Of
(NVList
, Loc
))));
2845 end Declare_Create_NVList
;
2847 ---------------------------------------------
2848 -- Expand_All_Calls_Remote_Subprogram_Call --
2849 ---------------------------------------------
2851 procedure Expand_All_Calls_Remote_Subprogram_Call
(N
: Node_Id
) is
2852 Loc
: constant Source_Ptr
:= Sloc
(N
);
2853 Called_Subprogram
: constant Entity_Id
:= Entity
(Name
(N
));
2854 RCI_Package
: constant Entity_Id
:= Scope
(Called_Subprogram
);
2855 RCI_Locator_Decl
: Node_Id
;
2856 RCI_Locator
: Entity_Id
;
2857 Calling_Stubs
: Node_Id
;
2858 E_Calling_Stubs
: Entity_Id
;
2861 E_Calling_Stubs
:= RCI_Calling_Stubs_Table
.Get
(Called_Subprogram
);
2863 if E_Calling_Stubs
= Empty
then
2864 RCI_Locator
:= RCI_Locator_Table
.Get
(RCI_Package
);
2866 -- The RCI_Locator package and calling stub are is inserted at the
2867 -- top level in the current unit, and must appear in the proper scope
2868 -- so that it is not prematurely removed by the GCC back end.
2871 Scop
: constant Entity_Id
:= Cunit_Entity
(Current_Sem_Unit
);
2873 if Ekind
(Scop
) = E_Package_Body
then
2874 Push_Scope
(Spec_Entity
(Scop
));
2875 elsif Ekind
(Scop
) = E_Subprogram_Body
then
2877 (Corresponding_Spec
(Unit_Declaration_Node
(Scop
)));
2883 if RCI_Locator
= Empty
then
2885 RCI_Package_Locator
(Loc
, Package_Specification
(RCI_Package
));
2886 Prepend_To
(Current_Sem_Unit_Declarations
, RCI_Locator_Decl
);
2887 Analyze
(RCI_Locator_Decl
);
2888 RCI_Locator
:= Defining_Unit_Name
(RCI_Locator_Decl
);
2891 RCI_Locator_Decl
:= Parent
(RCI_Locator
);
2894 Calling_Stubs
:= Build_Subprogram_Calling_Stubs
2895 (Vis_Decl
=> Parent
(Parent
(Called_Subprogram
)),
2897 Build_Subprogram_Id
(Loc
, Called_Subprogram
),
2898 Asynchronous
=> Nkind
(N
) = N_Procedure_Call_Statement
2900 Is_Asynchronous
(Called_Subprogram
),
2901 Locator
=> RCI_Locator
,
2902 New_Name
=> New_Internal_Name
('S'));
2903 Insert_After
(RCI_Locator_Decl
, Calling_Stubs
);
2904 Analyze
(Calling_Stubs
);
2907 E_Calling_Stubs
:= Defining_Unit_Name
(Specification
(Calling_Stubs
));
2910 Rewrite
(Name
(N
), New_Occurrence_Of
(E_Calling_Stubs
, Loc
));
2911 end Expand_All_Calls_Remote_Subprogram_Call
;
2913 ---------------------------------
2914 -- Expand_Calling_Stubs_Bodies --
2915 ---------------------------------
2917 procedure Expand_Calling_Stubs_Bodies
(Unit_Node
: Node_Id
) is
2918 Spec
: constant Node_Id
:= Specification
(Unit_Node
);
2920 Add_Calling_Stubs_To_Declarations
(Spec
);
2921 end Expand_Calling_Stubs_Bodies
;
2923 -----------------------------------
2924 -- Expand_Receiving_Stubs_Bodies --
2925 -----------------------------------
2927 procedure Expand_Receiving_Stubs_Bodies
(Unit_Node
: Node_Id
) is
2930 Stubs_Decls
: List_Id
;
2931 Stubs_Stmts
: List_Id
;
2934 if Nkind
(Unit_Node
) = N_Package_Declaration
then
2935 Spec
:= Specification
(Unit_Node
);
2936 Decls
:= Private_Declarations
(Spec
);
2939 Decls
:= Visible_Declarations
(Spec
);
2942 Push_Scope
(Scope_Of_Spec
(Spec
));
2943 Specific_Add_Receiving_Stubs_To_Declarations
(Spec
, Decls
, Decls
);
2947 Package_Specification_Of_Scope
(Corresponding_Spec
(Unit_Node
));
2948 Decls
:= Declarations
(Unit_Node
);
2950 Push_Scope
(Scope_Of_Spec
(Unit_Node
));
2951 Stubs_Decls
:= New_List
;
2952 Stubs_Stmts
:= New_List
;
2953 Specific_Add_Receiving_Stubs_To_Declarations
2954 (Spec
, Stubs_Decls
, Stubs_Stmts
);
2956 Insert_List_Before
(First
(Decls
), Stubs_Decls
);
2959 HSS_Stmts
: constant List_Id
:=
2960 Statements
(Handled_Statement_Sequence
(Unit_Node
));
2962 First_HSS_Stmt
: constant Node_Id
:= First
(HSS_Stmts
);
2965 if No
(First_HSS_Stmt
) then
2966 Append_List_To
(HSS_Stmts
, Stubs_Stmts
);
2968 Insert_List_Before
(First_HSS_Stmt
, Stubs_Stmts
);
2974 end Expand_Receiving_Stubs_Bodies
;
2976 --------------------
2977 -- GARLIC_Support --
2978 --------------------
2980 package body GARLIC_Support
is
2982 -- Local subprograms
2984 procedure Add_RACW_Read_Attribute
2985 (RACW_Type
: Entity_Id
;
2986 Stub_Type
: Entity_Id
;
2987 Stub_Type_Access
: Entity_Id
;
2988 Body_Decls
: List_Id
);
2989 -- Add Read attribute for the RACW type. The declaration and attribute
2990 -- definition clauses are inserted right after the declaration of
2991 -- RACW_Type. If Body_Decls is not No_List, the subprogram body is
2992 -- appended to it (case where the RACW declaration is in the main unit).
2994 procedure Add_RACW_Write_Attribute
2995 (RACW_Type
: Entity_Id
;
2996 Stub_Type
: Entity_Id
;
2997 Stub_Type_Access
: Entity_Id
;
2998 RPC_Receiver
: Node_Id
;
2999 Body_Decls
: List_Id
);
3000 -- Same as above for the Write attribute
3002 function Stream_Parameter
return Node_Id
;
3003 function Result
return Node_Id
;
3004 function Object
return Node_Id
renames Result
;
3005 -- Functions to create occurrences of the formal parameter names of the
3006 -- 'Read and 'Write attributes.
3009 -- Shared source location used by Add_{Read,Write}_Read_Attribute and
3010 -- their ancillary subroutines (set on entry by Add_RACW_Features).
3012 procedure Add_RAS_Access_TSS
(N
: Node_Id
);
3013 -- Add a subprogram body for RAS Access TSS
3015 -------------------------------------
3016 -- Add_Obj_RPC_Receiver_Completion --
3017 -------------------------------------
3019 procedure Add_Obj_RPC_Receiver_Completion
3022 RPC_Receiver
: Entity_Id
;
3023 Stub_Elements
: Stub_Structure
)
3026 -- The RPC receiver body should not be the completion of the
3027 -- declaration recorded in the stub structure, because then the
3028 -- occurrences of the formal parameters within the body should refer
3029 -- to the entities from the declaration, not from the completion, to
3030 -- which we do not have easy access. Instead, the RPC receiver body
3031 -- acts as its own declaration, and the RPC receiver declaration is
3032 -- completed by a renaming-as-body.
3035 Make_Subprogram_Renaming_Declaration
(Loc
,
3037 Copy_Specification
(Loc
,
3038 Specification
(Stub_Elements
.RPC_Receiver_Decl
)),
3039 Name
=> New_Occurrence_Of
(RPC_Receiver
, Loc
)));
3040 end Add_Obj_RPC_Receiver_Completion
;
3042 -----------------------
3043 -- Add_RACW_Features --
3044 -----------------------
3046 procedure Add_RACW_Features
3047 (RACW_Type
: Entity_Id
;
3048 Stub_Type
: Entity_Id
;
3049 Stub_Type_Access
: Entity_Id
;
3050 RPC_Receiver_Decl
: Node_Id
;
3051 Body_Decls
: List_Id
)
3053 RPC_Receiver
: Node_Id
;
3054 Is_RAS
: constant Boolean := not Comes_From_Source
(RACW_Type
);
3057 Loc
:= Sloc
(RACW_Type
);
3061 -- For a RAS, the RPC receiver is that of the RCI unit, not that
3062 -- of the corresponding distributed object type. We retrieve its
3063 -- address from the local proxy object.
3065 RPC_Receiver
:= Make_Selected_Component
(Loc
,
3067 Unchecked_Convert_To
(RTE
(RE_RAS_Proxy_Type_Access
), Object
),
3068 Selector_Name
=> Make_Identifier
(Loc
, Name_Receiver
));
3071 RPC_Receiver
:= Make_Attribute_Reference
(Loc
,
3072 Prefix
=> New_Occurrence_Of
(
3073 Defining_Unit_Name
(Specification
(RPC_Receiver_Decl
)), Loc
),
3074 Attribute_Name
=> Name_Address
);
3077 Add_RACW_Write_Attribute
3084 Add_RACW_Read_Attribute
3089 end Add_RACW_Features
;
3091 -----------------------------
3092 -- Add_RACW_Read_Attribute --
3093 -----------------------------
3095 procedure Add_RACW_Read_Attribute
3096 (RACW_Type
: Entity_Id
;
3097 Stub_Type
: Entity_Id
;
3098 Stub_Type_Access
: Entity_Id
;
3099 Body_Decls
: List_Id
)
3101 Proc_Decl
: Node_Id
;
3102 Attr_Decl
: Node_Id
;
3104 Body_Node
: Node_Id
;
3106 Statements
: constant List_Id
:= New_List
;
3108 Local_Statements
: List_Id
;
3109 Remote_Statements
: List_Id
;
3110 -- Various parts of the procedure
3112 Pnam
: constant Entity_Id
:= Make_Temporary
(Loc
, 'R');
3113 Asynchronous_Flag
: constant Entity_Id
:=
3114 Asynchronous_Flags_Table
.Get
(RACW_Type
);
3115 pragma Assert
(Present
(Asynchronous_Flag
));
3117 -- Prepare local identifiers
3119 Source_Partition
: Entity_Id
;
3120 Source_Receiver
: Entity_Id
;
3121 Source_Address
: Entity_Id
;
3122 Local_Stub
: Entity_Id
;
3123 Stubbed_Result
: Entity_Id
;
3125 -- Start of processing for Add_RACW_Read_Attribute
3128 Build_Stream_Procedure
(Loc
,
3129 RACW_Type
, Body_Node
, Pnam
, Statements
, Outp
=> True);
3130 Proc_Decl
:= Make_Subprogram_Declaration
(Loc
,
3131 Copy_Specification
(Loc
, Specification
(Body_Node
)));
3134 Make_Attribute_Definition_Clause
(Loc
,
3135 Name
=> New_Occurrence_Of
(RACW_Type
, Loc
),
3139 Defining_Unit_Name
(Specification
(Proc_Decl
)), Loc
));
3141 Insert_After
(Declaration_Node
(RACW_Type
), Proc_Decl
);
3142 Insert_After
(Proc_Decl
, Attr_Decl
);
3144 if No
(Body_Decls
) then
3146 -- Case of processing an RACW type from another unit than the
3147 -- main one: do not generate a body.
3152 -- Prepare local identifiers
3154 Source_Partition
:= Make_Temporary
(Loc
, 'P');
3155 Source_Receiver
:= Make_Temporary
(Loc
, 'S');
3156 Source_Address
:= Make_Temporary
(Loc
, 'P');
3157 Local_Stub
:= Make_Temporary
(Loc
, 'L');
3158 Stubbed_Result
:= Make_Temporary
(Loc
, 'S');
3160 -- Generate object declarations
3163 Make_Object_Declaration
(Loc
,
3164 Defining_Identifier
=> Source_Partition
,
3165 Object_Definition
=>
3166 New_Occurrence_Of
(RTE
(RE_Partition_ID
), Loc
)),
3168 Make_Object_Declaration
(Loc
,
3169 Defining_Identifier
=> Source_Receiver
,
3170 Object_Definition
=>
3171 New_Occurrence_Of
(RTE
(RE_Unsigned_64
), Loc
)),
3173 Make_Object_Declaration
(Loc
,
3174 Defining_Identifier
=> Source_Address
,
3175 Object_Definition
=>
3176 New_Occurrence_Of
(RTE
(RE_Unsigned_64
), Loc
)),
3178 Make_Object_Declaration
(Loc
,
3179 Defining_Identifier
=> Local_Stub
,
3180 Aliased_Present
=> True,
3181 Object_Definition
=> New_Occurrence_Of
(Stub_Type
, Loc
)),
3183 Make_Object_Declaration
(Loc
,
3184 Defining_Identifier
=> Stubbed_Result
,
3185 Object_Definition
=>
3186 New_Occurrence_Of
(Stub_Type_Access
, Loc
),
3188 Make_Attribute_Reference
(Loc
,
3190 New_Occurrence_Of
(Local_Stub
, Loc
),
3192 Name_Unchecked_Access
)));
3194 -- Read the source Partition_ID and RPC_Receiver from incoming stream
3196 Append_List_To
(Statements
, New_List
(
3197 Make_Attribute_Reference
(Loc
,
3199 New_Occurrence_Of
(RTE
(RE_Partition_ID
), Loc
),
3200 Attribute_Name
=> Name_Read
,
3201 Expressions
=> New_List
(
3203 New_Occurrence_Of
(Source_Partition
, Loc
))),
3205 Make_Attribute_Reference
(Loc
,
3207 New_Occurrence_Of
(RTE
(RE_Unsigned_64
), Loc
),
3210 Expressions
=> New_List
(
3212 New_Occurrence_Of
(Source_Receiver
, Loc
))),
3214 Make_Attribute_Reference
(Loc
,
3216 New_Occurrence_Of
(RTE
(RE_Unsigned_64
), Loc
),
3219 Expressions
=> New_List
(
3221 New_Occurrence_Of
(Source_Address
, Loc
)))));
3223 -- Build_Get_Unique_RP_Call needs the type of Stubbed_Result
3225 Set_Etype
(Stubbed_Result
, Stub_Type_Access
);
3227 -- If the Address is Null_Address, then return a null object, unless
3228 -- RACW_Type is null-excluding, in which case unconditionally raise
3229 -- CONSTRAINT_ERROR instead.
3232 Zero_Statements
: List_Id
;
3233 -- Statements executed when a zero value is received
3236 if Can_Never_Be_Null
(RACW_Type
) then
3237 Zero_Statements
:= New_List
(
3238 Make_Raise_Constraint_Error
(Loc
,
3239 Reason
=> CE_Null_Not_Allowed
));
3241 Zero_Statements
:= New_List
(
3242 Make_Assignment_Statement
(Loc
,
3244 Expression
=> Make_Null
(Loc
)),
3245 Make_Simple_Return_Statement
(Loc
));
3248 Append_To
(Statements
,
3249 Make_Implicit_If_Statement
(RACW_Type
,
3252 Left_Opnd
=> New_Occurrence_Of
(Source_Address
, Loc
),
3253 Right_Opnd
=> Make_Integer_Literal
(Loc
, Uint_0
)),
3254 Then_Statements
=> Zero_Statements
));
3257 -- If the RACW denotes an object created on the current partition,
3258 -- Local_Statements will be executed. The real object will be used.
3260 Local_Statements
:= New_List
(
3261 Make_Assignment_Statement
(Loc
,
3264 Unchecked_Convert_To
(RACW_Type
,
3265 OK_Convert_To
(RTE
(RE_Address
),
3266 New_Occurrence_Of
(Source_Address
, Loc
)))));
3268 -- If the object is located on another partition, then a stub object
3269 -- will be created with all the information needed to rebuild the
3270 -- real object at the other end.
3272 Remote_Statements
:= New_List
(
3274 Make_Assignment_Statement
(Loc
,
3275 Name
=> Make_Selected_Component
(Loc
,
3276 Prefix
=> Stubbed_Result
,
3277 Selector_Name
=> Name_Origin
),
3279 New_Occurrence_Of
(Source_Partition
, Loc
)),
3281 Make_Assignment_Statement
(Loc
,
3282 Name
=> Make_Selected_Component
(Loc
,
3283 Prefix
=> Stubbed_Result
,
3284 Selector_Name
=> Name_Receiver
),
3286 New_Occurrence_Of
(Source_Receiver
, Loc
)),
3288 Make_Assignment_Statement
(Loc
,
3289 Name
=> Make_Selected_Component
(Loc
,
3290 Prefix
=> Stubbed_Result
,
3291 Selector_Name
=> Name_Addr
),
3293 New_Occurrence_Of
(Source_Address
, Loc
)));
3295 Append_To
(Remote_Statements
,
3296 Make_Assignment_Statement
(Loc
,
3297 Name
=> Make_Selected_Component
(Loc
,
3298 Prefix
=> Stubbed_Result
,
3299 Selector_Name
=> Name_Asynchronous
),
3301 New_Occurrence_Of
(Asynchronous_Flag
, Loc
)));
3303 Append_List_To
(Remote_Statements
,
3304 Build_Get_Unique_RP_Call
(Loc
, Stubbed_Result
, Stub_Type
));
3305 -- ??? Issue with asynchronous calls here: the Asynchronous flag is
3306 -- set on the stub type if, and only if, the RACW type has a pragma
3307 -- Asynchronous. This is incorrect for RACWs that implement RAS
3308 -- types, because in that case the /designated subprogram/ (not the
3309 -- type) might be asynchronous, and that causes the stub to need to
3310 -- be asynchronous too. A solution is to transport a RAS as a struct
3311 -- containing a RACW and an asynchronous flag, and to properly alter
3312 -- the Asynchronous component in the stub type in the RAS's Input
3315 Append_To
(Remote_Statements
,
3316 Make_Assignment_Statement
(Loc
,
3318 Expression
=> Unchecked_Convert_To
(RACW_Type
,
3319 New_Occurrence_Of
(Stubbed_Result
, Loc
))));
3321 -- Distinguish between the local and remote cases, and execute the
3322 -- appropriate piece of code.
3324 Append_To
(Statements
,
3325 Make_Implicit_If_Statement
(RACW_Type
,
3329 Make_Function_Call
(Loc
,
3330 Name
=> New_Occurrence_Of
(
3331 RTE
(RE_Get_Local_Partition_Id
), Loc
)),
3332 Right_Opnd
=> New_Occurrence_Of
(Source_Partition
, Loc
)),
3333 Then_Statements
=> Local_Statements
,
3334 Else_Statements
=> Remote_Statements
));
3336 Set_Declarations
(Body_Node
, Decls
);
3337 Append_To
(Body_Decls
, Body_Node
);
3338 end Add_RACW_Read_Attribute
;
3340 ------------------------------
3341 -- Add_RACW_Write_Attribute --
3342 ------------------------------
3344 procedure Add_RACW_Write_Attribute
3345 (RACW_Type
: Entity_Id
;
3346 Stub_Type
: Entity_Id
;
3347 Stub_Type_Access
: Entity_Id
;
3348 RPC_Receiver
: Node_Id
;
3349 Body_Decls
: List_Id
)
3351 Body_Node
: Node_Id
;
3352 Proc_Decl
: Node_Id
;
3353 Attr_Decl
: Node_Id
;
3355 Statements
: constant List_Id
:= New_List
;
3356 Local_Statements
: List_Id
;
3357 Remote_Statements
: List_Id
;
3358 Null_Statements
: List_Id
;
3360 Pnam
: constant Entity_Id
:= Make_Temporary
(Loc
, 'R');
3363 Build_Stream_Procedure
3364 (Loc
, RACW_Type
, Body_Node
, Pnam
, Statements
, Outp
=> False);
3366 Proc_Decl
:= Make_Subprogram_Declaration
(Loc
,
3367 Copy_Specification
(Loc
, Specification
(Body_Node
)));
3370 Make_Attribute_Definition_Clause
(Loc
,
3371 Name
=> New_Occurrence_Of
(RACW_Type
, Loc
),
3372 Chars
=> Name_Write
,
3375 Defining_Unit_Name
(Specification
(Proc_Decl
)), Loc
));
3377 Insert_After
(Declaration_Node
(RACW_Type
), Proc_Decl
);
3378 Insert_After
(Proc_Decl
, Attr_Decl
);
3380 if No
(Body_Decls
) then
3384 -- Build the code fragment corresponding to the marshalling of a
3387 Local_Statements
:= New_List
(
3389 Pack_Entity_Into_Stream_Access
(Loc
,
3390 Stream
=> Stream_Parameter
,
3391 Object
=> RTE
(RE_Get_Local_Partition_Id
)),
3393 Pack_Node_Into_Stream_Access
(Loc
,
3394 Stream
=> Stream_Parameter
,
3395 Object
=> OK_Convert_To
(RTE
(RE_Unsigned_64
), RPC_Receiver
),
3396 Etyp
=> RTE
(RE_Unsigned_64
)),
3398 Pack_Node_Into_Stream_Access
(Loc
,
3399 Stream
=> Stream_Parameter
,
3400 Object
=> OK_Convert_To
(RTE
(RE_Unsigned_64
),
3401 Make_Attribute_Reference
(Loc
,
3403 Make_Explicit_Dereference
(Loc
,
3405 Attribute_Name
=> Name_Address
)),
3406 Etyp
=> RTE
(RE_Unsigned_64
)));
3408 -- Build the code fragment corresponding to the marshalling of
3411 Remote_Statements
:= New_List
(
3412 Pack_Node_Into_Stream_Access
(Loc
,
3413 Stream
=> Stream_Parameter
,
3415 Make_Selected_Component
(Loc
,
3417 Unchecked_Convert_To
(Stub_Type_Access
, Object
),
3418 Selector_Name
=> Make_Identifier
(Loc
, Name_Origin
)),
3419 Etyp
=> RTE
(RE_Partition_ID
)),
3421 Pack_Node_Into_Stream_Access
(Loc
,
3422 Stream
=> Stream_Parameter
,
3424 Make_Selected_Component
(Loc
,
3426 Unchecked_Convert_To
(Stub_Type_Access
, Object
),
3427 Selector_Name
=> Make_Identifier
(Loc
, Name_Receiver
)),
3428 Etyp
=> RTE
(RE_Unsigned_64
)),
3430 Pack_Node_Into_Stream_Access
(Loc
,
3431 Stream
=> Stream_Parameter
,
3433 Make_Selected_Component
(Loc
,
3435 Unchecked_Convert_To
(Stub_Type_Access
, Object
),
3436 Selector_Name
=> Make_Identifier
(Loc
, Name_Addr
)),
3437 Etyp
=> RTE
(RE_Unsigned_64
)));
3439 -- Build code fragment corresponding to marshalling of a null object
3441 Null_Statements
:= New_List
(
3443 Pack_Entity_Into_Stream_Access
(Loc
,
3444 Stream
=> Stream_Parameter
,
3445 Object
=> RTE
(RE_Get_Local_Partition_Id
)),
3447 Pack_Node_Into_Stream_Access
(Loc
,
3448 Stream
=> Stream_Parameter
,
3449 Object
=> OK_Convert_To
(RTE
(RE_Unsigned_64
), RPC_Receiver
),
3450 Etyp
=> RTE
(RE_Unsigned_64
)),
3452 Pack_Node_Into_Stream_Access
(Loc
,
3453 Stream
=> Stream_Parameter
,
3454 Object
=> Make_Integer_Literal
(Loc
, Uint_0
),
3455 Etyp
=> RTE
(RE_Unsigned_64
)));
3457 Append_To
(Statements
,
3458 Make_Implicit_If_Statement
(RACW_Type
,
3461 Left_Opnd
=> Object
,
3462 Right_Opnd
=> Make_Null
(Loc
)),
3464 Then_Statements
=> Null_Statements
,
3466 Elsif_Parts
=> New_List
(
3467 Make_Elsif_Part
(Loc
,
3471 Make_Attribute_Reference
(Loc
,
3473 Attribute_Name
=> Name_Tag
),
3476 Make_Attribute_Reference
(Loc
,
3477 Prefix
=> New_Occurrence_Of
(Stub_Type
, Loc
),
3478 Attribute_Name
=> Name_Tag
)),
3479 Then_Statements
=> Remote_Statements
)),
3480 Else_Statements
=> Local_Statements
));
3482 Append_To
(Body_Decls
, Body_Node
);
3483 end Add_RACW_Write_Attribute
;
3485 ------------------------
3486 -- Add_RAS_Access_TSS --
3487 ------------------------
3489 procedure Add_RAS_Access_TSS
(N
: Node_Id
) is
3490 Loc
: constant Source_Ptr
:= Sloc
(N
);
3492 Ras_Type
: constant Entity_Id
:= Defining_Identifier
(N
);
3493 Fat_Type
: constant Entity_Id
:= Equivalent_Type
(Ras_Type
);
3494 -- Ras_Type is the access to subprogram type while Fat_Type is the
3495 -- corresponding record type.
3497 RACW_Type
: constant Entity_Id
:=
3498 Underlying_RACW_Type
(Ras_Type
);
3499 Desig
: constant Entity_Id
:=
3500 Etype
(Designated_Type
(RACW_Type
));
3502 Stub_Elements
: constant Stub_Structure
:=
3503 Stubs_Table
.Get
(Desig
);
3504 pragma Assert
(Stub_Elements
/= Empty_Stub_Structure
);
3506 Proc
: constant Entity_Id
:=
3507 Make_Defining_Identifier
(Loc
,
3508 Chars
=> Make_TSS_Name
(Ras_Type
, TSS_RAS_Access
));
3510 Proc_Spec
: Node_Id
;
3512 -- Formal parameters
3514 Package_Name
: constant Entity_Id
:=
3515 Make_Defining_Identifier
(Loc
,
3519 Subp_Id
: constant Entity_Id
:=
3520 Make_Defining_Identifier
(Loc
,
3522 -- Target subprogram
3524 Asynch_P
: constant Entity_Id
:=
3525 Make_Defining_Identifier
(Loc
,
3526 Chars
=> Name_Asynchronous
);
3527 -- Is the procedure to which the 'Access applies asynchronous?
3529 All_Calls_Remote
: constant Entity_Id
:=
3530 Make_Defining_Identifier
(Loc
,
3531 Chars
=> Name_All_Calls_Remote
);
3532 -- True if an All_Calls_Remote pragma applies to the RCI unit
3533 -- that contains the subprogram.
3535 -- Common local variables
3537 Proc_Decls
: List_Id
;
3538 Proc_Statements
: List_Id
;
3540 Origin
: constant Entity_Id
:= Make_Temporary
(Loc
, 'P');
3542 -- Additional local variables for the local case
3544 Proxy_Addr
: constant Entity_Id
:= Make_Temporary
(Loc
, 'P');
3546 -- Additional local variables for the remote case
3548 Local_Stub
: constant Entity_Id
:= Make_Temporary
(Loc
, 'L');
3549 Stub_Ptr
: constant Entity_Id
:= Make_Temporary
(Loc
, 'S');
3552 (Field_Name
: Name_Id
;
3553 Value
: Node_Id
) return Node_Id
;
3554 -- Construct an assignment that sets the named component in the
3562 (Field_Name
: Name_Id
;
3563 Value
: Node_Id
) return Node_Id
3567 Make_Assignment_Statement
(Loc
,
3569 Make_Selected_Component
(Loc
,
3571 Selector_Name
=> Field_Name
),
3572 Expression
=> Value
);
3575 -- Start of processing for Add_RAS_Access_TSS
3578 Proc_Decls
:= New_List
(
3580 -- Common declarations
3582 Make_Object_Declaration
(Loc
,
3583 Defining_Identifier
=> Origin
,
3584 Constant_Present
=> True,
3585 Object_Definition
=>
3586 New_Occurrence_Of
(RTE
(RE_Partition_ID
), Loc
),
3588 Make_Function_Call
(Loc
,
3590 New_Occurrence_Of
(RTE
(RE_Get_Active_Partition_Id
), Loc
),
3591 Parameter_Associations
=> New_List
(
3592 New_Occurrence_Of
(Package_Name
, Loc
)))),
3594 -- Declaration use only in the local case: proxy address
3596 Make_Object_Declaration
(Loc
,
3597 Defining_Identifier
=> Proxy_Addr
,
3598 Object_Definition
=>
3599 New_Occurrence_Of
(RTE
(RE_Unsigned_64
), Loc
)),
3601 -- Declarations used only in the remote case: stub object and
3604 Make_Object_Declaration
(Loc
,
3605 Defining_Identifier
=> Local_Stub
,
3606 Aliased_Present
=> True,
3607 Object_Definition
=>
3608 New_Occurrence_Of
(Stub_Elements
.Stub_Type
, Loc
)),
3610 Make_Object_Declaration
(Loc
,
3611 Defining_Identifier
=>
3613 Object_Definition
=>
3614 New_Occurrence_Of
(Stub_Elements
.Stub_Type_Access
, Loc
),
3616 Make_Attribute_Reference
(Loc
,
3617 Prefix
=> New_Occurrence_Of
(Local_Stub
, Loc
),
3618 Attribute_Name
=> Name_Unchecked_Access
)));
3620 Set_Etype
(Stub_Ptr
, Stub_Elements
.Stub_Type_Access
);
3622 -- Build_Get_Unique_RP_Call needs above information
3624 -- Note: Here we assume that the Fat_Type is a record
3625 -- containing just a pointer to a proxy or stub object.
3627 Proc_Statements
:= New_List
(
3631 -- Get_RAS_Info (Pkg, Subp, PA);
3632 -- if Origin = Local_Partition_Id
3633 -- and then not All_Calls_Remote
3635 -- return Fat_Type!(PA);
3638 Make_Procedure_Call_Statement
(Loc
,
3639 Name
=> New_Occurrence_Of
(RTE
(RE_Get_RAS_Info
), Loc
),
3640 Parameter_Associations
=> New_List
(
3641 New_Occurrence_Of
(Package_Name
, Loc
),
3642 New_Occurrence_Of
(Subp_Id
, Loc
),
3643 New_Occurrence_Of
(Proxy_Addr
, Loc
))),
3645 Make_Implicit_If_Statement
(N
,
3651 New_Occurrence_Of
(Origin
, Loc
),
3653 Make_Function_Call
(Loc
,
3655 RTE
(RE_Get_Local_Partition_Id
), Loc
))),
3659 New_Occurrence_Of
(All_Calls_Remote
, Loc
))),
3661 Then_Statements
=> New_List
(
3662 Make_Simple_Return_Statement
(Loc
,
3663 Unchecked_Convert_To
(Fat_Type
,
3664 OK_Convert_To
(RTE
(RE_Address
),
3665 New_Occurrence_Of
(Proxy_Addr
, Loc
)))))),
3667 Set_Field
(Name_Origin
,
3668 New_Occurrence_Of
(Origin
, Loc
)),
3670 Set_Field
(Name_Receiver
,
3671 Make_Function_Call
(Loc
,
3673 New_Occurrence_Of
(RTE
(RE_Get_RCI_Package_Receiver
), Loc
),
3674 Parameter_Associations
=> New_List
(
3675 New_Occurrence_Of
(Package_Name
, Loc
)))),
3677 Set_Field
(Name_Addr
, New_Occurrence_Of
(Proxy_Addr
, Loc
)),
3679 -- E.4.1(9) A remote call is asynchronous if it is a call to
3680 -- a procedure or a call through a value of an access-to-procedure
3681 -- type to which a pragma Asynchronous applies.
3683 -- Asynch_P is true when the procedure is asynchronous;
3684 -- Asynch_T is true when the type is asynchronous.
3686 Set_Field
(Name_Asynchronous
,
3688 New_Occurrence_Of
(Asynch_P
, Loc
),
3689 New_Occurrence_Of
(Boolean_Literals
(
3690 Is_Asynchronous
(Ras_Type
)), Loc
))));
3692 Append_List_To
(Proc_Statements
,
3693 Build_Get_Unique_RP_Call
3694 (Loc
, Stub_Ptr
, Stub_Elements
.Stub_Type
));
3696 -- Return the newly created value
3698 Append_To
(Proc_Statements
,
3699 Make_Simple_Return_Statement
(Loc
,
3701 Unchecked_Convert_To
(Fat_Type
,
3702 New_Occurrence_Of
(Stub_Ptr
, Loc
))));
3705 Make_Function_Specification
(Loc
,
3706 Defining_Unit_Name
=> Proc
,
3707 Parameter_Specifications
=> New_List
(
3708 Make_Parameter_Specification
(Loc
,
3709 Defining_Identifier
=> Package_Name
,
3711 New_Occurrence_Of
(Standard_String
, Loc
)),
3713 Make_Parameter_Specification
(Loc
,
3714 Defining_Identifier
=> Subp_Id
,
3716 New_Occurrence_Of
(RTE
(RE_Subprogram_Id
), Loc
)),
3718 Make_Parameter_Specification
(Loc
,
3719 Defining_Identifier
=> Asynch_P
,
3721 New_Occurrence_Of
(Standard_Boolean
, Loc
)),
3723 Make_Parameter_Specification
(Loc
,
3724 Defining_Identifier
=> All_Calls_Remote
,
3726 New_Occurrence_Of
(Standard_Boolean
, Loc
))),
3728 Result_Definition
=>
3729 New_Occurrence_Of
(Fat_Type
, Loc
));
3731 -- Set the kind and return type of the function to prevent
3732 -- ambiguities between Ras_Type and Fat_Type in subsequent analysis.
3734 Set_Ekind
(Proc
, E_Function
);
3735 Set_Etype
(Proc
, Fat_Type
);
3738 Make_Subprogram_Body
(Loc
,
3739 Specification
=> Proc_Spec
,
3740 Declarations
=> Proc_Decls
,
3741 Handled_Statement_Sequence
=>
3742 Make_Handled_Sequence_Of_Statements
(Loc
,
3743 Statements
=> Proc_Statements
)));
3745 Set_TSS
(Fat_Type
, Proc
);
3746 end Add_RAS_Access_TSS
;
3748 -----------------------
3749 -- Add_RAST_Features --
3750 -----------------------
3752 procedure Add_RAST_Features
3753 (Vis_Decl
: Node_Id
;
3754 RAS_Type
: Entity_Id
)
3756 pragma Unreferenced
(RAS_Type
);
3758 Add_RAS_Access_TSS
(Vis_Decl
);
3759 end Add_RAST_Features
;
3761 -----------------------------------------
3762 -- Add_Receiving_Stubs_To_Declarations --
3763 -----------------------------------------
3765 procedure Add_Receiving_Stubs_To_Declarations
3766 (Pkg_Spec
: Node_Id
;
3770 Loc
: constant Source_Ptr
:= Sloc
(Pkg_Spec
);
3772 Request_Parameter
: Node_Id
;
3774 Pkg_RPC_Receiver
: constant Entity_Id
:=
3775 Make_Temporary
(Loc
, 'H');
3776 Pkg_RPC_Receiver_Statements
: List_Id
;
3777 Pkg_RPC_Receiver_Cases
: constant List_Id
:= New_List
;
3778 Pkg_RPC_Receiver_Body
: Node_Id
;
3779 -- A Pkg_RPC_Receiver is built to decode the request
3781 Lookup_RAS
: Node_Id
;
3782 Lookup_RAS_Info
: constant Entity_Id
:= Make_Temporary
(Loc
, 'R');
3783 -- A remote subprogram is created to allow peers to look up RAS
3784 -- information using subprogram ids.
3786 Subp_Id
: Entity_Id
;
3787 Subp_Index
: Entity_Id
;
3788 -- Subprogram_Id as read from the incoming stream
3790 Current_Subp_Number
: Int
:= First_RCI_Subprogram_Id
;
3791 Current_Stubs
: Node_Id
;
3793 Subp_Info_Array
: constant Entity_Id
:= Make_Temporary
(Loc
, 'I');
3794 Subp_Info_List
: constant List_Id
:= New_List
;
3796 Register_Pkg_Actuals
: constant List_Id
:= New_List
;
3798 All_Calls_Remote_E
: Entity_Id
;
3799 Proxy_Object_Addr
: Entity_Id
;
3801 procedure Append_Stubs_To
3802 (RPC_Receiver_Cases
: List_Id
;
3804 Subprogram_Number
: Int
);
3805 -- Add one case to the specified RPC receiver case list
3806 -- associating Subprogram_Number with the subprogram declared
3807 -- by Declaration, for which we have receiving stubs in Stubs.
3809 procedure Visit_Subprogram
(Decl
: Node_Id
);
3810 -- Generate receiving stub for one remote subprogram
3812 ---------------------
3813 -- Append_Stubs_To --
3814 ---------------------
3816 procedure Append_Stubs_To
3817 (RPC_Receiver_Cases
: List_Id
;
3819 Subprogram_Number
: Int
)
3822 Append_To
(RPC_Receiver_Cases
,
3823 Make_Case_Statement_Alternative
(Loc
,
3825 New_List
(Make_Integer_Literal
(Loc
, Subprogram_Number
)),
3828 Make_Procedure_Call_Statement
(Loc
,
3830 New_Occurrence_Of
(Defining_Entity
(Stubs
), Loc
),
3831 Parameter_Associations
=> New_List
(
3832 New_Occurrence_Of
(Request_Parameter
, Loc
))))));
3833 end Append_Stubs_To
;
3835 ----------------------
3836 -- Visit_Subprogram --
3837 ----------------------
3839 procedure Visit_Subprogram
(Decl
: Node_Id
) is
3840 Loc
: constant Source_Ptr
:= Sloc
(Decl
);
3841 Spec
: constant Node_Id
:= Specification
(Decl
);
3842 Subp_Def
: constant Entity_Id
:= Defining_Unit_Name
(Spec
);
3844 Subp_Val
: String_Id
;
3845 pragma Warnings
(Off
, Subp_Val
);
3848 -- Disable expansion of stubs if serious errors have been
3849 -- diagnosed, because otherwise some illegal remote subprogram
3850 -- declarations could cause cascaded errors in stubs.
3852 if Serious_Errors_Detected
/= 0 then
3856 -- Build receiving stub
3859 Build_Subprogram_Receiving_Stubs
3862 Nkind
(Spec
) = N_Procedure_Specification
3863 and then Is_Asynchronous
(Subp_Def
));
3865 Append_To
(Decls
, Current_Stubs
);
3866 Analyze
(Current_Stubs
);
3870 Add_RAS_Proxy_And_Analyze
(Decls
,
3872 All_Calls_Remote_E
=> All_Calls_Remote_E
,
3873 Proxy_Object_Addr
=> Proxy_Object_Addr
);
3875 -- Compute distribution identifier
3877 Assign_Subprogram_Identifier
3878 (Subp_Def
, Current_Subp_Number
, Subp_Val
);
3880 pragma Assert
(Current_Subp_Number
= Get_Subprogram_Id
(Subp_Def
));
3882 -- Add subprogram descriptor (RCI_Subp_Info) to the subprograms
3883 -- table for this receiver. This aggregate must be kept consistent
3884 -- with the declaration of RCI_Subp_Info in
3885 -- System.Partition_Interface.
3887 Append_To
(Subp_Info_List
,
3888 Make_Component_Association
(Loc
,
3889 Choices
=> New_List
(
3890 Make_Integer_Literal
(Loc
, Current_Subp_Number
)),
3893 Make_Aggregate
(Loc
,
3894 Component_Associations
=> New_List
(
3898 Make_Component_Association
(Loc
,
3900 New_List
(Make_Identifier
(Loc
, Name_Addr
)),
3902 New_Occurrence_Of
(Proxy_Object_Addr
, Loc
))))));
3904 Append_Stubs_To
(Pkg_RPC_Receiver_Cases
,
3905 Stubs
=> Current_Stubs
,
3906 Subprogram_Number
=> Current_Subp_Number
);
3908 Current_Subp_Number
:= Current_Subp_Number
+ 1;
3909 end Visit_Subprogram
;
3911 procedure Visit_Spec
is new Build_Package_Stubs
(Visit_Subprogram
);
3913 -- Start of processing for Add_Receiving_Stubs_To_Declarations
3916 -- Building receiving stubs consist in several operations:
3918 -- - a package RPC receiver must be built. This subprogram
3919 -- will get a Subprogram_Id from the incoming stream
3920 -- and will dispatch the call to the right subprogram;
3922 -- - a receiving stub for each subprogram visible in the package
3923 -- spec. This stub will read all the parameters from the stream,
3924 -- and put the result as well as the exception occurrence in the
3927 -- - a dummy package with an empty spec and a body made of an
3928 -- elaboration part, whose job is to register the receiving
3929 -- part of this RCI package on the name server. This is done
3930 -- by calling System.Partition_Interface.Register_Receiving_Stub.
3932 Build_RPC_Receiver_Body
(
3933 RPC_Receiver
=> Pkg_RPC_Receiver
,
3934 Request
=> Request_Parameter
,
3936 Subp_Index
=> Subp_Index
,
3937 Stmts
=> Pkg_RPC_Receiver_Statements
,
3938 Decl
=> Pkg_RPC_Receiver_Body
);
3939 pragma Assert
(Subp_Id
= Subp_Index
);
3941 -- A null subp_id denotes a call through a RAS, in which case the
3942 -- next Uint_64 element in the stream is the address of the local
3943 -- proxy object, from which we can retrieve the actual subprogram id.
3945 Append_To
(Pkg_RPC_Receiver_Statements
,
3946 Make_Implicit_If_Statement
(Pkg_Spec
,
3949 New_Occurrence_Of
(Subp_Id
, Loc
),
3950 Make_Integer_Literal
(Loc
, 0)),
3952 Then_Statements
=> New_List
(
3953 Make_Assignment_Statement
(Loc
,
3955 New_Occurrence_Of
(Subp_Id
, Loc
),
3958 Make_Selected_Component
(Loc
,
3960 Unchecked_Convert_To
(RTE
(RE_RAS_Proxy_Type_Access
),
3961 OK_Convert_To
(RTE
(RE_Address
),
3962 Make_Attribute_Reference
(Loc
,
3964 New_Occurrence_Of
(RTE
(RE_Unsigned_64
), Loc
),
3967 Expressions
=> New_List
(
3968 Make_Selected_Component
(Loc
,
3969 Prefix
=> Request_Parameter
,
3970 Selector_Name
=> Name_Params
))))),
3972 Selector_Name
=> Make_Identifier
(Loc
, Name_Subp_Id
))))));
3974 -- Build a subprogram for RAS information lookups
3977 Make_Subprogram_Declaration
(Loc
,
3979 Make_Function_Specification
(Loc
,
3980 Defining_Unit_Name
=>
3982 Parameter_Specifications
=> New_List
(
3983 Make_Parameter_Specification
(Loc
,
3984 Defining_Identifier
=>
3985 Make_Defining_Identifier
(Loc
, Name_Subp_Id
),
3989 New_Occurrence_Of
(RTE
(RE_Subprogram_Id
), Loc
))),
3990 Result_Definition
=>
3991 New_Occurrence_Of
(RTE
(RE_Unsigned_64
), Loc
)));
3992 Append_To
(Decls
, Lookup_RAS
);
3993 Analyze
(Lookup_RAS
);
3995 Current_Stubs
:= Build_Subprogram_Receiving_Stubs
3996 (Vis_Decl
=> Lookup_RAS
,
3997 Asynchronous
=> False);
3998 Append_To
(Decls
, Current_Stubs
);
3999 Analyze
(Current_Stubs
);
4001 Append_Stubs_To
(Pkg_RPC_Receiver_Cases
,
4002 Stubs
=> Current_Stubs
,
4003 Subprogram_Number
=> 1);
4005 -- For each subprogram, the receiving stub will be built and a
4006 -- case statement will be made on the Subprogram_Id to dispatch
4007 -- to the right subprogram.
4009 All_Calls_Remote_E
:=
4011 (Has_All_Calls_Remote
(Defining_Entity
(Pkg_Spec
)));
4013 Overload_Counter_Table
.Reset
;
4015 Visit_Spec
(Pkg_Spec
);
4017 -- If we receive an invalid Subprogram_Id, it is best to do nothing
4018 -- rather than raising an exception since we do not want someone
4019 -- to crash a remote partition by sending invalid subprogram ids.
4020 -- This is consistent with the other parts of the case statement
4021 -- since even in presence of incorrect parameters in the stream,
4022 -- every exception will be caught and (if the subprogram is not an
4023 -- APC) put into the result stream and sent away.
4025 Append_To
(Pkg_RPC_Receiver_Cases
,
4026 Make_Case_Statement_Alternative
(Loc
,
4027 Discrete_Choices
=> New_List
(Make_Others_Choice
(Loc
)),
4028 Statements
=> New_List
(Make_Null_Statement
(Loc
))));
4030 Append_To
(Pkg_RPC_Receiver_Statements
,
4031 Make_Case_Statement
(Loc
,
4032 Expression
=> New_Occurrence_Of
(Subp_Id
, Loc
),
4033 Alternatives
=> Pkg_RPC_Receiver_Cases
));
4036 Make_Object_Declaration
(Loc
,
4037 Defining_Identifier
=> Subp_Info_Array
,
4038 Constant_Present
=> True,
4039 Aliased_Present
=> True,
4040 Object_Definition
=>
4041 Make_Subtype_Indication
(Loc
,
4043 New_Occurrence_Of
(RTE
(RE_RCI_Subp_Info_Array
), Loc
),
4045 Make_Index_Or_Discriminant_Constraint
(Loc
,
4048 Low_Bound
=> Make_Integer_Literal
(Loc
,
4049 First_RCI_Subprogram_Id
),
4051 Make_Integer_Literal
(Loc
,
4053 First_RCI_Subprogram_Id
4054 + List_Length
(Subp_Info_List
) - 1)))))));
4056 -- For a degenerate RCI with no visible subprograms, Subp_Info_List
4057 -- has zero length, and the declaration is for an empty array, in
4058 -- which case no initialization aggregate must be generated.
4060 if Present
(First
(Subp_Info_List
)) then
4061 Set_Expression
(Last
(Decls
),
4062 Make_Aggregate
(Loc
,
4063 Component_Associations
=> Subp_Info_List
));
4065 -- No initialization provided: remove CONSTANT so that the
4066 -- declaration is not an incomplete deferred constant.
4069 Set_Constant_Present
(Last
(Decls
), False);
4072 Analyze
(Last
(Decls
));
4075 Subp_Info_Addr
: Node_Id
;
4076 -- Return statement for Lookup_RAS_Info: address of the subprogram
4077 -- information record for the requested subprogram id.
4080 if Present
(First
(Subp_Info_List
)) then
4082 Make_Selected_Component
(Loc
,
4084 Make_Indexed_Component
(Loc
,
4085 Prefix
=> New_Occurrence_Of
(Subp_Info_Array
, Loc
),
4086 Expressions
=> New_List
(
4087 Convert_To
(Standard_Integer
,
4088 Make_Identifier
(Loc
, Name_Subp_Id
)))),
4089 Selector_Name
=> Make_Identifier
(Loc
, Name_Addr
));
4091 -- Case of no visible subprogram: just raise Constraint_Error, we
4092 -- know for sure we got junk from a remote partition.
4096 Make_Raise_Constraint_Error
(Loc
,
4097 Reason
=> CE_Range_Check_Failed
);
4098 Set_Etype
(Subp_Info_Addr
, RTE
(RE_Unsigned_64
));
4102 Make_Subprogram_Body
(Loc
,
4104 Copy_Specification
(Loc
, Parent
(Lookup_RAS_Info
)),
4105 Declarations
=> No_List
,
4106 Handled_Statement_Sequence
=>
4107 Make_Handled_Sequence_Of_Statements
(Loc
,
4108 Statements
=> New_List
(
4109 Make_Simple_Return_Statement
(Loc
,
4112 (RTE
(RE_Unsigned_64
), Subp_Info_Addr
))))));
4115 Analyze
(Last
(Decls
));
4117 Append_To
(Decls
, Pkg_RPC_Receiver_Body
);
4118 Analyze
(Last
(Decls
));
4122 Append_To
(Register_Pkg_Actuals
,
4123 Make_String_Literal
(Loc
,
4125 Fully_Qualified_Name_String
4126 (Defining_Entity
(Pkg_Spec
), Append_NUL
=> False)));
4130 Append_To
(Register_Pkg_Actuals
,
4131 Make_Attribute_Reference
(Loc
,
4132 Prefix
=> New_Occurrence_Of
(Pkg_RPC_Receiver
, Loc
),
4133 Attribute_Name
=> Name_Unrestricted_Access
));
4137 Append_To
(Register_Pkg_Actuals
,
4138 Make_Attribute_Reference
(Loc
,
4140 New_Occurrence_Of
(Defining_Entity
(Pkg_Spec
), Loc
),
4141 Attribute_Name
=> Name_Version
));
4145 Append_To
(Register_Pkg_Actuals
,
4146 Make_Attribute_Reference
(Loc
,
4147 Prefix
=> New_Occurrence_Of
(Subp_Info_Array
, Loc
),
4148 Attribute_Name
=> Name_Address
));
4152 Append_To
(Register_Pkg_Actuals
,
4153 Make_Attribute_Reference
(Loc
,
4154 Prefix
=> New_Occurrence_Of
(Subp_Info_Array
, Loc
),
4155 Attribute_Name
=> Name_Length
));
4157 -- Generate the call
4160 Make_Procedure_Call_Statement
(Loc
,
4162 New_Occurrence_Of
(RTE
(RE_Register_Receiving_Stub
), Loc
),
4163 Parameter_Associations
=> Register_Pkg_Actuals
));
4164 Analyze
(Last
(Stmts
));
4165 end Add_Receiving_Stubs_To_Declarations
;
4167 ---------------------------------
4168 -- Build_General_Calling_Stubs --
4169 ---------------------------------
4171 procedure Build_General_Calling_Stubs
4173 Statements
: List_Id
;
4174 Target_Partition
: Entity_Id
;
4175 Target_RPC_Receiver
: Node_Id
;
4176 Subprogram_Id
: Node_Id
;
4177 Asynchronous
: Node_Id
:= Empty
;
4178 Is_Known_Asynchronous
: Boolean := False;
4179 Is_Known_Non_Asynchronous
: Boolean := False;
4180 Is_Function
: Boolean;
4182 Stub_Type
: Entity_Id
:= Empty
;
4183 RACW_Type
: Entity_Id
:= Empty
;
4186 Loc
: constant Source_Ptr
:= Sloc
(Nod
);
4188 Stream_Parameter
: Node_Id
;
4189 -- Name of the stream used to transmit parameters to the remote
4192 Result_Parameter
: Node_Id
;
4193 -- Name of the result parameter (in non-APC cases) which get the
4194 -- result of the remote subprogram.
4196 Exception_Return_Parameter
: Node_Id
;
4197 -- Name of the parameter which will hold the exception sent by the
4198 -- remote subprogram.
4200 Current_Parameter
: Node_Id
;
4201 -- Current parameter being handled
4203 Ordered_Parameters_List
: constant List_Id
:=
4204 Build_Ordered_Parameters_List
(Spec
);
4206 Asynchronous_Statements
: List_Id
:= No_List
;
4207 Non_Asynchronous_Statements
: List_Id
:= No_List
;
4208 -- Statements specifics to the Asynchronous/Non-Asynchronous cases
4210 Extra_Formal_Statements
: constant List_Id
:= New_List
;
4211 -- List of statements for extra formal parameters. It will appear
4212 -- after the regular statements for writing out parameters.
4214 pragma Unreferenced
(RACW_Type
);
4215 -- Used only for the PolyORB case
4218 -- The general form of a calling stub for a given subprogram is:
4220 -- procedure X (...) is P : constant Partition_ID :=
4221 -- RCI_Cache.Get_Active_Partition_ID; Stream, Result : aliased
4222 -- System.RPC.Params_Stream_Type (0); begin
4223 -- Put_Package_RPC_Receiver_In_Stream; (the package RPC receiver
4224 -- comes from RCI_Cache.Get_RCI_Package_Receiver)
4225 -- Put_Subprogram_Id_In_Stream; Put_Parameters_In_Stream; Do_RPC
4226 -- (Stream, Result); Read_Exception_Occurrence_From_Result;
4228 -- Read_Out_Parameters_And_Function_Return_From_Stream; end X;
4230 -- There are some variations: Do_APC is called for an asynchronous
4231 -- procedure and the part after the call is completely ommitted as
4232 -- well as the declaration of Result. For a function call, 'Input is
4233 -- always used to read the result even if it is constrained.
4235 Stream_Parameter
:= Make_Temporary
(Loc
, 'S');
4238 Make_Object_Declaration
(Loc
,
4239 Defining_Identifier
=> Stream_Parameter
,
4240 Aliased_Present
=> True,
4241 Object_Definition
=>
4242 Make_Subtype_Indication
(Loc
,
4244 New_Occurrence_Of
(RTE
(RE_Params_Stream_Type
), Loc
),
4246 Make_Index_Or_Discriminant_Constraint
(Loc
,
4248 New_List
(Make_Integer_Literal
(Loc
, 0))))));
4250 if not Is_Known_Asynchronous
then
4251 Result_Parameter
:= Make_Temporary
(Loc
, 'R');
4254 Make_Object_Declaration
(Loc
,
4255 Defining_Identifier
=> Result_Parameter
,
4256 Aliased_Present
=> True,
4257 Object_Definition
=>
4258 Make_Subtype_Indication
(Loc
,
4260 New_Occurrence_Of
(RTE
(RE_Params_Stream_Type
), Loc
),
4262 Make_Index_Or_Discriminant_Constraint
(Loc
,
4264 New_List
(Make_Integer_Literal
(Loc
, 0))))));
4266 Exception_Return_Parameter
:= Make_Temporary
(Loc
, 'E');
4269 Make_Object_Declaration
(Loc
,
4270 Defining_Identifier
=> Exception_Return_Parameter
,
4271 Object_Definition
=>
4272 New_Occurrence_Of
(RTE
(RE_Exception_Occurrence
), Loc
)));
4275 Result_Parameter
:= Empty
;
4276 Exception_Return_Parameter
:= Empty
;
4279 -- Put first the RPC receiver corresponding to the remote package
4281 Append_To
(Statements
,
4282 Make_Attribute_Reference
(Loc
,
4284 New_Occurrence_Of
(RTE
(RE_Unsigned_64
), Loc
),
4285 Attribute_Name
=> Name_Write
,
4286 Expressions
=> New_List
(
4287 Make_Attribute_Reference
(Loc
,
4288 Prefix
=> New_Occurrence_Of
(Stream_Parameter
, Loc
),
4289 Attribute_Name
=> Name_Access
),
4290 Target_RPC_Receiver
)));
4292 -- Then put the Subprogram_Id of the subprogram we want to call in
4295 Append_To
(Statements
,
4296 Make_Attribute_Reference
(Loc
,
4297 Prefix
=> New_Occurrence_Of
(RTE
(RE_Subprogram_Id
), Loc
),
4298 Attribute_Name
=> Name_Write
,
4299 Expressions
=> New_List
(
4300 Make_Attribute_Reference
(Loc
,
4301 Prefix
=> New_Occurrence_Of
(Stream_Parameter
, Loc
),
4302 Attribute_Name
=> Name_Access
),
4305 Current_Parameter
:= First
(Ordered_Parameters_List
);
4306 while Present
(Current_Parameter
) loop
4308 Typ
: constant Node_Id
:=
4309 Parameter_Type
(Current_Parameter
);
4311 Constrained
: Boolean;
4313 Extra_Parameter
: Entity_Id
;
4316 if Is_RACW_Controlling_Formal
4317 (Current_Parameter
, Stub_Type
)
4319 -- In the case of a controlling formal argument, we marshall
4320 -- its addr field rather than the local stub.
4322 Append_To
(Statements
,
4323 Pack_Node_Into_Stream
(Loc
,
4324 Stream
=> Stream_Parameter
,
4326 Make_Selected_Component
(Loc
,
4328 Defining_Identifier
(Current_Parameter
),
4329 Selector_Name
=> Name_Addr
),
4330 Etyp
=> RTE
(RE_Unsigned_64
)));
4335 (Defining_Identifier
(Current_Parameter
), Loc
);
4337 -- Access type parameters are transmitted as in out
4338 -- parameters. However, a dereference is needed so that
4339 -- we marshall the designated object.
4341 if Nkind
(Typ
) = N_Access_Definition
then
4342 Value
:= Make_Explicit_Dereference
(Loc
, Value
);
4343 Etyp
:= Etype
(Subtype_Mark
(Typ
));
4345 Etyp
:= Etype
(Typ
);
4348 Constrained
:= not Transmit_As_Unconstrained
(Etyp
);
4350 -- Any parameter but unconstrained out parameters are
4351 -- transmitted to the peer.
4353 if In_Present
(Current_Parameter
)
4354 or else not Out_Present
(Current_Parameter
)
4355 or else not Constrained
4357 Append_To
(Statements
,
4358 Make_Attribute_Reference
(Loc
,
4359 Prefix
=> New_Occurrence_Of
(Etyp
, Loc
),
4361 Output_From_Constrained
(Constrained
),
4362 Expressions
=> New_List
(
4363 Make_Attribute_Reference
(Loc
,
4365 New_Occurrence_Of
(Stream_Parameter
, Loc
),
4366 Attribute_Name
=> Name_Access
),
4371 -- If the current parameter has a dynamic constrained status,
4372 -- then this status is transmitted as well.
4373 -- This should be done for accessibility as well ???
4375 if Nkind
(Typ
) /= N_Access_Definition
4376 and then Need_Extra_Constrained
(Current_Parameter
)
4378 -- In this block, we do not use the extra formal that has
4379 -- been created because it does not exist at the time of
4380 -- expansion when building calling stubs for remote access
4381 -- to subprogram types. We create an extra variable of this
4382 -- type and push it in the stream after the regular
4385 Extra_Parameter
:= Make_Temporary
(Loc
, 'P');
4388 Make_Object_Declaration
(Loc
,
4389 Defining_Identifier
=> Extra_Parameter
,
4390 Constant_Present
=> True,
4391 Object_Definition
=>
4392 New_Occurrence_Of
(Standard_Boolean
, Loc
),
4394 Make_Attribute_Reference
(Loc
,
4397 Defining_Identifier
(Current_Parameter
), Loc
),
4398 Attribute_Name
=> Name_Constrained
)));
4400 Append_To
(Extra_Formal_Statements
,
4401 Make_Attribute_Reference
(Loc
,
4403 New_Occurrence_Of
(Standard_Boolean
, Loc
),
4404 Attribute_Name
=> Name_Write
,
4405 Expressions
=> New_List
(
4406 Make_Attribute_Reference
(Loc
,
4409 (Stream_Parameter
, Loc
), Attribute_Name
=>
4411 New_Occurrence_Of
(Extra_Parameter
, Loc
))));
4414 Next
(Current_Parameter
);
4418 -- Append the formal statements list to the statements
4420 Append_List_To
(Statements
, Extra_Formal_Statements
);
4422 if not Is_Known_Non_Asynchronous
then
4424 -- Build the call to System.RPC.Do_APC
4426 Asynchronous_Statements
:= New_List
(
4427 Make_Procedure_Call_Statement
(Loc
,
4429 New_Occurrence_Of
(RTE
(RE_Do_Apc
), Loc
),
4430 Parameter_Associations
=> New_List
(
4431 New_Occurrence_Of
(Target_Partition
, Loc
),
4432 Make_Attribute_Reference
(Loc
,
4434 New_Occurrence_Of
(Stream_Parameter
, Loc
),
4435 Attribute_Name
=> Name_Access
))));
4437 Asynchronous_Statements
:= No_List
;
4440 if not Is_Known_Asynchronous
then
4442 -- Build the call to System.RPC.Do_RPC
4444 Non_Asynchronous_Statements
:= New_List
(
4445 Make_Procedure_Call_Statement
(Loc
,
4447 New_Occurrence_Of
(RTE
(RE_Do_Rpc
), Loc
),
4448 Parameter_Associations
=> New_List
(
4449 New_Occurrence_Of
(Target_Partition
, Loc
),
4451 Make_Attribute_Reference
(Loc
,
4453 New_Occurrence_Of
(Stream_Parameter
, Loc
),
4454 Attribute_Name
=> Name_Access
),
4456 Make_Attribute_Reference
(Loc
,
4458 New_Occurrence_Of
(Result_Parameter
, Loc
),
4459 Attribute_Name
=> Name_Access
))));
4461 -- Read the exception occurrence from the result stream and
4462 -- reraise it. It does no harm if this is a Null_Occurrence since
4463 -- this does nothing.
4465 Append_To
(Non_Asynchronous_Statements
,
4466 Make_Attribute_Reference
(Loc
,
4468 New_Occurrence_Of
(RTE
(RE_Exception_Occurrence
), Loc
),
4470 Attribute_Name
=> Name_Read
,
4472 Expressions
=> New_List
(
4473 Make_Attribute_Reference
(Loc
,
4475 New_Occurrence_Of
(Result_Parameter
, Loc
),
4476 Attribute_Name
=> Name_Access
),
4477 New_Occurrence_Of
(Exception_Return_Parameter
, Loc
))));
4479 Append_To
(Non_Asynchronous_Statements
,
4480 Make_Procedure_Call_Statement
(Loc
,
4482 New_Occurrence_Of
(RTE
(RE_Reraise_Occurrence
), Loc
),
4483 Parameter_Associations
=> New_List
(
4484 New_Occurrence_Of
(Exception_Return_Parameter
, Loc
))));
4488 -- If this is a function call, then read the value and return
4489 -- it. The return value is written/read using 'Output/'Input.
4491 Append_To
(Non_Asynchronous_Statements
,
4492 Make_Tag_Check
(Loc
,
4493 Make_Simple_Return_Statement
(Loc
,
4495 Make_Attribute_Reference
(Loc
,
4498 Etype
(Result_Definition
(Spec
)), Loc
),
4500 Attribute_Name
=> Name_Input
,
4502 Expressions
=> New_List
(
4503 Make_Attribute_Reference
(Loc
,
4505 New_Occurrence_Of
(Result_Parameter
, Loc
),
4506 Attribute_Name
=> Name_Access
))))));
4509 -- Loop around parameters and assign out (or in out)
4510 -- parameters. In the case of RACW, controlling arguments
4511 -- cannot possibly have changed since they are remote, so
4512 -- we do not read them from the stream.
4514 Current_Parameter
:= First
(Ordered_Parameters_List
);
4515 while Present
(Current_Parameter
) loop
4517 Typ
: constant Node_Id
:=
4518 Parameter_Type
(Current_Parameter
);
4525 (Defining_Identifier
(Current_Parameter
), Loc
);
4527 if Nkind
(Typ
) = N_Access_Definition
then
4528 Value
:= Make_Explicit_Dereference
(Loc
, Value
);
4529 Etyp
:= Etype
(Subtype_Mark
(Typ
));
4531 Etyp
:= Etype
(Typ
);
4534 if (Out_Present
(Current_Parameter
)
4535 or else Nkind
(Typ
) = N_Access_Definition
)
4536 and then Etyp
/= Stub_Type
4538 Append_To
(Non_Asynchronous_Statements
,
4539 Make_Attribute_Reference
(Loc
,
4541 New_Occurrence_Of
(Etyp
, Loc
),
4543 Attribute_Name
=> Name_Read
,
4545 Expressions
=> New_List
(
4546 Make_Attribute_Reference
(Loc
,
4548 New_Occurrence_Of
(Result_Parameter
, Loc
),
4549 Attribute_Name
=> Name_Access
),
4554 Next
(Current_Parameter
);
4559 if Is_Known_Asynchronous
then
4560 Append_List_To
(Statements
, Asynchronous_Statements
);
4562 elsif Is_Known_Non_Asynchronous
then
4563 Append_List_To
(Statements
, Non_Asynchronous_Statements
);
4566 pragma Assert
(Present
(Asynchronous
));
4567 Prepend_To
(Asynchronous_Statements
,
4568 Make_Attribute_Reference
(Loc
,
4569 Prefix
=> New_Occurrence_Of
(Standard_Boolean
, Loc
),
4570 Attribute_Name
=> Name_Write
,
4571 Expressions
=> New_List
(
4572 Make_Attribute_Reference
(Loc
,
4574 New_Occurrence_Of
(Stream_Parameter
, Loc
),
4575 Attribute_Name
=> Name_Access
),
4576 New_Occurrence_Of
(Standard_True
, Loc
))));
4578 Prepend_To
(Non_Asynchronous_Statements
,
4579 Make_Attribute_Reference
(Loc
,
4580 Prefix
=> New_Occurrence_Of
(Standard_Boolean
, Loc
),
4581 Attribute_Name
=> Name_Write
,
4582 Expressions
=> New_List
(
4583 Make_Attribute_Reference
(Loc
,
4585 New_Occurrence_Of
(Stream_Parameter
, Loc
),
4586 Attribute_Name
=> Name_Access
),
4587 New_Occurrence_Of
(Standard_False
, Loc
))));
4589 Append_To
(Statements
,
4590 Make_Implicit_If_Statement
(Nod
,
4591 Condition
=> Asynchronous
,
4592 Then_Statements
=> Asynchronous_Statements
,
4593 Else_Statements
=> Non_Asynchronous_Statements
));
4595 end Build_General_Calling_Stubs
;
4597 -----------------------------
4598 -- Build_RPC_Receiver_Body --
4599 -----------------------------
4601 procedure Build_RPC_Receiver_Body
4602 (RPC_Receiver
: Entity_Id
;
4603 Request
: out Entity_Id
;
4604 Subp_Id
: out Entity_Id
;
4605 Subp_Index
: out Entity_Id
;
4606 Stmts
: out List_Id
;
4609 Loc
: constant Source_Ptr
:= Sloc
(RPC_Receiver
);
4611 RPC_Receiver_Spec
: Node_Id
;
4612 RPC_Receiver_Decls
: List_Id
;
4615 Request
:= Make_Defining_Identifier
(Loc
, Name_R
);
4617 RPC_Receiver_Spec
:=
4618 Build_RPC_Receiver_Specification
4619 (RPC_Receiver
=> RPC_Receiver
,
4620 Request_Parameter
=> Request
);
4622 Subp_Id
:= Make_Temporary
(Loc
, 'P');
4623 Subp_Index
:= Subp_Id
;
4625 -- Subp_Id may not be a constant, because in the case of the RPC
4626 -- receiver for an RCI package, when a call is received from a RAS
4627 -- dereference, it will be assigned during subsequent processing.
4629 RPC_Receiver_Decls
:= New_List
(
4630 Make_Object_Declaration
(Loc
,
4631 Defining_Identifier
=> Subp_Id
,
4632 Object_Definition
=>
4633 New_Occurrence_Of
(RTE
(RE_Subprogram_Id
), Loc
),
4635 Make_Attribute_Reference
(Loc
,
4637 New_Occurrence_Of
(RTE
(RE_Subprogram_Id
), Loc
),
4638 Attribute_Name
=> Name_Input
,
4639 Expressions
=> New_List
(
4640 Make_Selected_Component
(Loc
,
4642 Selector_Name
=> Name_Params
)))));
4647 Make_Subprogram_Body
(Loc
,
4648 Specification
=> RPC_Receiver_Spec
,
4649 Declarations
=> RPC_Receiver_Decls
,
4650 Handled_Statement_Sequence
=>
4651 Make_Handled_Sequence_Of_Statements
(Loc
,
4652 Statements
=> Stmts
));
4653 end Build_RPC_Receiver_Body
;
4655 -----------------------
4656 -- Build_Stub_Target --
4657 -----------------------
4659 function Build_Stub_Target
4662 RCI_Locator
: Entity_Id
;
4663 Controlling_Parameter
: Entity_Id
) return RPC_Target
4665 Target_Info
: RPC_Target
(PCS_Kind
=> Name_GARLIC_DSA
);
4668 Target_Info
.Partition
:= Make_Temporary
(Loc
, 'P');
4670 if Present
(Controlling_Parameter
) then
4672 Make_Object_Declaration
(Loc
,
4673 Defining_Identifier
=> Target_Info
.Partition
,
4674 Constant_Present
=> True,
4675 Object_Definition
=>
4676 New_Occurrence_Of
(RTE
(RE_Partition_ID
), Loc
),
4679 Make_Selected_Component
(Loc
,
4680 Prefix
=> Controlling_Parameter
,
4681 Selector_Name
=> Name_Origin
)));
4683 Target_Info
.RPC_Receiver
:=
4684 Make_Selected_Component
(Loc
,
4685 Prefix
=> Controlling_Parameter
,
4686 Selector_Name
=> Name_Receiver
);
4690 Make_Object_Declaration
(Loc
,
4691 Defining_Identifier
=> Target_Info
.Partition
,
4692 Constant_Present
=> True,
4693 Object_Definition
=>
4694 New_Occurrence_Of
(RTE
(RE_Partition_ID
), Loc
),
4697 Make_Function_Call
(Loc
,
4698 Name
=> Make_Selected_Component
(Loc
,
4700 Make_Identifier
(Loc
, Chars
(RCI_Locator
)),
4702 Make_Identifier
(Loc
,
4703 Name_Get_Active_Partition_ID
)))));
4705 Target_Info
.RPC_Receiver
:=
4706 Make_Selected_Component
(Loc
,
4708 Make_Identifier
(Loc
, Chars
(RCI_Locator
)),
4710 Make_Identifier
(Loc
, Name_Get_RCI_Package_Receiver
));
4713 end Build_Stub_Target
;
4715 --------------------------------------
4716 -- Build_Subprogram_Receiving_Stubs --
4717 --------------------------------------
4719 function Build_Subprogram_Receiving_Stubs
4720 (Vis_Decl
: Node_Id
;
4721 Asynchronous
: Boolean;
4722 Dynamically_Asynchronous
: Boolean := False;
4723 Stub_Type
: Entity_Id
:= Empty
;
4724 RACW_Type
: Entity_Id
:= Empty
;
4725 Parent_Primitive
: Entity_Id
:= Empty
) return Node_Id
4727 Loc
: constant Source_Ptr
:= Sloc
(Vis_Decl
);
4729 Request_Parameter
: constant Entity_Id
:= Make_Temporary
(Loc
, 'R');
4730 -- Formal parameter for receiving stubs: a descriptor for an incoming
4733 Decls
: constant List_Id
:= New_List
;
4734 -- All the parameters will get declared before calling the real
4735 -- subprograms. Also the out parameters will be declared.
4737 Statements
: constant List_Id
:= New_List
;
4739 Extra_Formal_Statements
: constant List_Id
:= New_List
;
4740 -- Statements concerning extra formal parameters
4742 After_Statements
: constant List_Id
:= New_List
;
4743 -- Statements to be executed after the subprogram call
4745 Inner_Decls
: List_Id
:= No_List
;
4746 -- In case of a function, the inner declarations are needed since
4747 -- the result may be unconstrained.
4749 Excep_Handlers
: List_Id
:= No_List
;
4750 Excep_Choice
: Entity_Id
;
4751 Excep_Code
: List_Id
;
4753 Parameter_List
: constant List_Id
:= New_List
;
4754 -- List of parameters to be passed to the subprogram
4756 Current_Parameter
: Node_Id
;
4758 Ordered_Parameters_List
: constant List_Id
:=
4759 Build_Ordered_Parameters_List
4760 (Specification
(Vis_Decl
));
4762 Subp_Spec
: Node_Id
;
4763 -- Subprogram specification
4765 Called_Subprogram
: Node_Id
;
4766 -- The subprogram to call
4768 Null_Raise_Statement
: Node_Id
;
4770 Dynamic_Async
: Entity_Id
;
4773 if Present
(RACW_Type
) then
4774 Called_Subprogram
:= New_Occurrence_Of
(Parent_Primitive
, Loc
);
4776 Called_Subprogram
:=
4778 (Defining_Unit_Name
(Specification
(Vis_Decl
)), Loc
);
4781 if Dynamically_Asynchronous
then
4782 Dynamic_Async
:= Make_Temporary
(Loc
, 'S');
4784 Dynamic_Async
:= Empty
;
4787 if not Asynchronous
or Dynamically_Asynchronous
then
4789 -- The first statement after the subprogram call is a statement to
4790 -- write a Null_Occurrence into the result stream.
4792 Null_Raise_Statement
:=
4793 Make_Attribute_Reference
(Loc
,
4795 New_Occurrence_Of
(RTE
(RE_Exception_Occurrence
), Loc
),
4796 Attribute_Name
=> Name_Write
,
4797 Expressions
=> New_List
(
4798 Make_Selected_Component
(Loc
,
4799 Prefix
=> Request_Parameter
,
4800 Selector_Name
=> Name_Result
),
4801 New_Occurrence_Of
(RTE
(RE_Null_Occurrence
), Loc
)));
4803 if Dynamically_Asynchronous
then
4804 Null_Raise_Statement
:=
4805 Make_Implicit_If_Statement
(Vis_Decl
,
4807 Make_Op_Not
(Loc
, New_Occurrence_Of
(Dynamic_Async
, Loc
)),
4808 Then_Statements
=> New_List
(Null_Raise_Statement
));
4811 Append_To
(After_Statements
, Null_Raise_Statement
);
4814 -- Loop through every parameter and get its value from the stream. If
4815 -- the parameter is unconstrained, then the parameter is read using
4816 -- 'Input at the point of declaration.
4818 Current_Parameter
:= First
(Ordered_Parameters_List
);
4819 while Present
(Current_Parameter
) loop
4822 Constrained
: Boolean;
4824 Need_Extra_Constrained
: Boolean;
4825 -- True when an Extra_Constrained actual is required
4827 Object
: constant Entity_Id
:= Make_Temporary
(Loc
, 'P');
4829 Expr
: Node_Id
:= Empty
;
4831 Is_Controlling_Formal
: constant Boolean :=
4832 Is_RACW_Controlling_Formal
4833 (Current_Parameter
, Stub_Type
);
4836 if Is_Controlling_Formal
then
4838 -- We have a controlling formal parameter. Read its address
4839 -- rather than a real object. The address is in Unsigned_64
4842 Etyp
:= RTE
(RE_Unsigned_64
);
4844 Etyp
:= Etype
(Parameter_Type
(Current_Parameter
));
4847 Constrained
:= not Transmit_As_Unconstrained
(Etyp
);
4849 if In_Present
(Current_Parameter
)
4850 or else not Out_Present
(Current_Parameter
)
4851 or else not Constrained
4852 or else Is_Controlling_Formal
4854 -- If an input parameter is constrained, then the read of
4855 -- the parameter is deferred until the beginning of the
4856 -- subprogram body. If it is unconstrained, then an
4857 -- expression is built for the object declaration and the
4858 -- variable is set using 'Input instead of 'Read. Note that
4859 -- this deferral does not change the order in which the
4860 -- actuals are read because Build_Ordered_Parameter_List
4861 -- puts them unconstrained first.
4864 Append_To
(Statements
,
4865 Make_Attribute_Reference
(Loc
,
4866 Prefix
=> New_Occurrence_Of
(Etyp
, Loc
),
4867 Attribute_Name
=> Name_Read
,
4868 Expressions
=> New_List
(
4869 Make_Selected_Component
(Loc
,
4870 Prefix
=> Request_Parameter
,
4871 Selector_Name
=> Name_Params
),
4872 New_Occurrence_Of
(Object
, Loc
))));
4876 -- Build and append Input_With_Tag_Check function
4879 Input_With_Tag_Check
(Loc
,
4882 Make_Selected_Component
(Loc
,
4883 Prefix
=> Request_Parameter
,
4884 Selector_Name
=> Name_Params
)));
4886 -- Prepare function call expression
4889 Make_Function_Call
(Loc
,
4893 (Specification
(Last
(Decls
))), Loc
));
4897 Need_Extra_Constrained
:=
4898 Nkind
(Parameter_Type
(Current_Parameter
)) /=
4901 Ekind
(Defining_Identifier
(Current_Parameter
)) /= E_Void
4903 Present
(Extra_Constrained
4904 (Defining_Identifier
(Current_Parameter
)));
4906 -- We may not associate an extra constrained actual to a
4907 -- constant object, so if one is needed, declare the actual
4908 -- as a variable even if it won't be modified.
4910 Build_Actual_Object_Declaration
4913 Variable
=> Need_Extra_Constrained
4914 or else Out_Present
(Current_Parameter
),
4918 -- An out parameter may be written back using a 'Write
4919 -- attribute instead of a 'Output because it has been
4920 -- constrained by the parameter given to the caller. Note that
4921 -- out controlling arguments in the case of a RACW are not put
4922 -- back in the stream because the pointer on them has not
4925 if Out_Present
(Current_Parameter
)
4927 Etype
(Parameter_Type
(Current_Parameter
)) /= Stub_Type
4929 Append_To
(After_Statements
,
4930 Make_Attribute_Reference
(Loc
,
4931 Prefix
=> New_Occurrence_Of
(Etyp
, Loc
),
4932 Attribute_Name
=> Name_Write
,
4933 Expressions
=> New_List
(
4934 Make_Selected_Component
(Loc
,
4935 Prefix
=> Request_Parameter
,
4936 Selector_Name
=> Name_Result
),
4937 New_Occurrence_Of
(Object
, Loc
))));
4940 -- For RACW controlling formals, the Etyp of Object is always
4941 -- an RACW, even if the parameter is not of an anonymous access
4942 -- type. In such case, we need to dereference it at call time.
4944 if Is_Controlling_Formal
then
4945 if Nkind
(Parameter_Type
(Current_Parameter
)) /=
4948 Append_To
(Parameter_List
,
4949 Make_Parameter_Association
(Loc
,
4952 Defining_Identifier
(Current_Parameter
), Loc
),
4953 Explicit_Actual_Parameter
=>
4954 Make_Explicit_Dereference
(Loc
,
4955 Unchecked_Convert_To
(RACW_Type
,
4956 OK_Convert_To
(RTE
(RE_Address
),
4957 New_Occurrence_Of
(Object
, Loc
))))));
4960 Append_To
(Parameter_List
,
4961 Make_Parameter_Association
(Loc
,
4964 Defining_Identifier
(Current_Parameter
), Loc
),
4965 Explicit_Actual_Parameter
=>
4966 Unchecked_Convert_To
(RACW_Type
,
4967 OK_Convert_To
(RTE
(RE_Address
),
4968 New_Occurrence_Of
(Object
, Loc
)))));
4972 Append_To
(Parameter_List
,
4973 Make_Parameter_Association
(Loc
,
4976 Defining_Identifier
(Current_Parameter
), Loc
),
4977 Explicit_Actual_Parameter
=>
4978 New_Occurrence_Of
(Object
, Loc
)));
4981 -- If the current parameter needs an extra formal, then read it
4982 -- from the stream and set the corresponding semantic field in
4983 -- the variable. If the kind of the parameter identifier is
4984 -- E_Void, then this is a compiler generated parameter that
4985 -- doesn't need an extra constrained status.
4987 -- The case of Extra_Accessibility should also be handled ???
4989 if Need_Extra_Constrained
then
4991 Extra_Parameter
: constant Entity_Id
:=
4993 (Defining_Identifier
4994 (Current_Parameter
));
4996 Formal_Entity
: constant Entity_Id
:=
4997 Make_Defining_Identifier
4998 (Loc
, Chars
(Extra_Parameter
));
5000 Formal_Type
: constant Entity_Id
:=
5001 Etype
(Extra_Parameter
);
5005 Make_Object_Declaration
(Loc
,
5006 Defining_Identifier
=> Formal_Entity
,
5007 Object_Definition
=>
5008 New_Occurrence_Of
(Formal_Type
, Loc
)));
5010 Append_To
(Extra_Formal_Statements
,
5011 Make_Attribute_Reference
(Loc
,
5012 Prefix
=> New_Occurrence_Of
(
5014 Attribute_Name
=> Name_Read
,
5015 Expressions
=> New_List
(
5016 Make_Selected_Component
(Loc
,
5017 Prefix
=> Request_Parameter
,
5018 Selector_Name
=> Name_Params
),
5019 New_Occurrence_Of
(Formal_Entity
, Loc
))));
5021 -- Note: the call to Set_Extra_Constrained below relies
5022 -- on the fact that Object's Ekind has been set by
5023 -- Build_Actual_Object_Declaration.
5025 Set_Extra_Constrained
(Object
, Formal_Entity
);
5030 Next
(Current_Parameter
);
5033 -- Append the formal statements list at the end of regular statements
5035 Append_List_To
(Statements
, Extra_Formal_Statements
);
5037 if Nkind
(Specification
(Vis_Decl
)) = N_Function_Specification
then
5039 -- The remote subprogram is a function. We build an inner block to
5040 -- be able to hold a potentially unconstrained result in a
5044 Etyp
: constant Entity_Id
:=
5045 Etype
(Result_Definition
(Specification
(Vis_Decl
)));
5046 Result
: constant Node_Id
:= Make_Temporary
(Loc
, 'R');
5049 Inner_Decls
:= New_List
(
5050 Make_Object_Declaration
(Loc
,
5051 Defining_Identifier
=> Result
,
5052 Constant_Present
=> True,
5053 Object_Definition
=> New_Occurrence_Of
(Etyp
, Loc
),
5055 Make_Function_Call
(Loc
,
5056 Name
=> Called_Subprogram
,
5057 Parameter_Associations
=> Parameter_List
)));
5059 if Is_Class_Wide_Type
(Etyp
) then
5061 -- For a remote call to a function with a class-wide type,
5062 -- check that the returned value satisfies the requirements
5065 Append_To
(Inner_Decls
,
5066 Make_Transportable_Check
(Loc
,
5067 New_Occurrence_Of
(Result
, Loc
)));
5071 Append_To
(After_Statements
,
5072 Make_Attribute_Reference
(Loc
,
5073 Prefix
=> New_Occurrence_Of
(Etyp
, Loc
),
5074 Attribute_Name
=> Name_Output
,
5075 Expressions
=> New_List
(
5076 Make_Selected_Component
(Loc
,
5077 Prefix
=> Request_Parameter
,
5078 Selector_Name
=> Name_Result
),
5079 New_Occurrence_Of
(Result
, Loc
))));
5082 Append_To
(Statements
,
5083 Make_Block_Statement
(Loc
,
5084 Declarations
=> Inner_Decls
,
5085 Handled_Statement_Sequence
=>
5086 Make_Handled_Sequence_Of_Statements
(Loc
,
5087 Statements
=> After_Statements
)));
5090 -- The remote subprogram is a procedure. We do not need any inner
5091 -- block in this case.
5093 if Dynamically_Asynchronous
then
5095 Make_Object_Declaration
(Loc
,
5096 Defining_Identifier
=> Dynamic_Async
,
5097 Object_Definition
=>
5098 New_Occurrence_Of
(Standard_Boolean
, Loc
)));
5100 Append_To
(Statements
,
5101 Make_Attribute_Reference
(Loc
,
5102 Prefix
=> New_Occurrence_Of
(Standard_Boolean
, Loc
),
5103 Attribute_Name
=> Name_Read
,
5104 Expressions
=> New_List
(
5105 Make_Selected_Component
(Loc
,
5106 Prefix
=> Request_Parameter
,
5107 Selector_Name
=> Name_Params
),
5108 New_Occurrence_Of
(Dynamic_Async
, Loc
))));
5111 Append_To
(Statements
,
5112 Make_Procedure_Call_Statement
(Loc
,
5113 Name
=> Called_Subprogram
,
5114 Parameter_Associations
=> Parameter_List
));
5116 Append_List_To
(Statements
, After_Statements
);
5119 if Asynchronous
and then not Dynamically_Asynchronous
then
5121 -- For an asynchronous procedure, add a null exception handler
5123 Excep_Handlers
:= New_List
(
5124 Make_Implicit_Exception_Handler
(Loc
,
5125 Exception_Choices
=> New_List
(Make_Others_Choice
(Loc
)),
5126 Statements
=> New_List
(Make_Null_Statement
(Loc
))));
5129 -- In the other cases, if an exception is raised, then the
5130 -- exception occurrence is copied into the output stream and
5131 -- no other output parameter is written.
5133 Excep_Choice
:= Make_Temporary
(Loc
, 'E');
5135 Excep_Code
:= New_List
(
5136 Make_Attribute_Reference
(Loc
,
5138 New_Occurrence_Of
(RTE
(RE_Exception_Occurrence
), Loc
),
5139 Attribute_Name
=> Name_Write
,
5140 Expressions
=> New_List
(
5141 Make_Selected_Component
(Loc
,
5142 Prefix
=> Request_Parameter
,
5143 Selector_Name
=> Name_Result
),
5144 New_Occurrence_Of
(Excep_Choice
, Loc
))));
5146 if Dynamically_Asynchronous
then
5147 Excep_Code
:= New_List
(
5148 Make_Implicit_If_Statement
(Vis_Decl
,
5149 Condition
=> Make_Op_Not
(Loc
,
5150 New_Occurrence_Of
(Dynamic_Async
, Loc
)),
5151 Then_Statements
=> Excep_Code
));
5154 Excep_Handlers
:= New_List
(
5155 Make_Implicit_Exception_Handler
(Loc
,
5156 Choice_Parameter
=> Excep_Choice
,
5157 Exception_Choices
=> New_List
(Make_Others_Choice
(Loc
)),
5158 Statements
=> Excep_Code
));
5163 Make_Procedure_Specification
(Loc
,
5164 Defining_Unit_Name
=> Make_Temporary
(Loc
, 'F'),
5166 Parameter_Specifications
=> New_List
(
5167 Make_Parameter_Specification
(Loc
,
5168 Defining_Identifier
=> Request_Parameter
,
5170 New_Occurrence_Of
(RTE
(RE_Request_Access
), Loc
))));
5173 Make_Subprogram_Body
(Loc
,
5174 Specification
=> Subp_Spec
,
5175 Declarations
=> Decls
,
5176 Handled_Statement_Sequence
=>
5177 Make_Handled_Sequence_Of_Statements
(Loc
,
5178 Statements
=> Statements
,
5179 Exception_Handlers
=> Excep_Handlers
));
5180 end Build_Subprogram_Receiving_Stubs
;
5186 function Result
return Node_Id
is
5188 return Make_Identifier
(Loc
, Name_V
);
5191 -----------------------
5192 -- RPC_Receiver_Decl --
5193 -----------------------
5195 function RPC_Receiver_Decl
(RACW_Type
: Entity_Id
) return Node_Id
is
5196 Loc
: constant Source_Ptr
:= Sloc
(RACW_Type
);
5197 Is_RAS
: constant Boolean := not Comes_From_Source
(RACW_Type
);
5200 -- No RPC receiver for remote access-to-subprogram
5207 Make_Subprogram_Declaration
(Loc
,
5208 Build_RPC_Receiver_Specification
5209 (RPC_Receiver
=> Make_Temporary
(Loc
, 'R'),
5210 Request_Parameter
=> Make_Defining_Identifier
(Loc
, Name_R
)));
5211 end RPC_Receiver_Decl
;
5213 ----------------------
5214 -- Stream_Parameter --
5215 ----------------------
5217 function Stream_Parameter
return Node_Id
is
5219 return Make_Identifier
(Loc
, Name_S
);
5220 end Stream_Parameter
;
5224 -------------------------------
5225 -- Get_And_Reset_RACW_Bodies --
5226 -------------------------------
5228 function Get_And_Reset_RACW_Bodies
(RACW_Type
: Entity_Id
) return List_Id
is
5229 Desig
: constant Entity_Id
:=
5230 Etype
(Designated_Type
(RACW_Type
));
5232 Stub_Elements
: Stub_Structure
:= Stubs_Table
.Get
(Desig
);
5234 Body_Decls
: List_Id
;
5235 -- Returned list of declarations
5238 if Stub_Elements
= Empty_Stub_Structure
then
5240 -- Stub elements may be missing as a consequence of a previously
5246 Body_Decls
:= Stub_Elements
.Body_Decls
;
5247 Stub_Elements
.Body_Decls
:= No_List
;
5248 Stubs_Table
.Set
(Desig
, Stub_Elements
);
5250 end Get_And_Reset_RACW_Bodies
;
5252 -----------------------
5253 -- Get_Stub_Elements --
5254 -----------------------
5256 function Get_Stub_Elements
(RACW_Type
: Entity_Id
) return Stub_Structure
is
5257 Desig
: constant Entity_Id
:=
5258 Etype
(Designated_Type
(RACW_Type
));
5259 Stub_Elements
: constant Stub_Structure
:= Stubs_Table
.Get
(Desig
);
5261 pragma Assert
(Stub_Elements
/= Empty_Stub_Structure
);
5262 return Stub_Elements
;
5263 end Get_Stub_Elements
;
5265 -----------------------
5266 -- Get_Subprogram_Id --
5267 -----------------------
5269 function Get_Subprogram_Id
(Def
: Entity_Id
) return String_Id
is
5270 Result
: constant String_Id
:= Get_Subprogram_Ids
(Def
).Str_Identifier
;
5272 pragma Assert
(Result
/= No_String
);
5274 end Get_Subprogram_Id
;
5276 -----------------------
5277 -- Get_Subprogram_Id --
5278 -----------------------
5280 function Get_Subprogram_Id
(Def
: Entity_Id
) return Int
is
5282 return Get_Subprogram_Ids
(Def
).Int_Identifier
;
5283 end Get_Subprogram_Id
;
5285 ------------------------
5286 -- Get_Subprogram_Ids --
5287 ------------------------
5289 function Get_Subprogram_Ids
5290 (Def
: Entity_Id
) return Subprogram_Identifiers
5293 return Subprogram_Identifier_Table
.Get
(Def
);
5294 end Get_Subprogram_Ids
;
5300 function Hash
(F
: Entity_Id
) return Hash_Index
is
5302 return Hash_Index
(Natural (F
) mod Positive (Hash_Index
'Last + 1));
5305 function Hash
(F
: Name_Id
) return Hash_Index
is
5307 return Hash_Index
(Natural (F
) mod Positive (Hash_Index
'Last + 1));
5310 --------------------------
5311 -- Input_With_Tag_Check --
5312 --------------------------
5314 function Input_With_Tag_Check
5316 Var_Type
: Entity_Id
;
5317 Stream
: Node_Id
) return Node_Id
5321 Make_Subprogram_Body
(Loc
,
5323 Make_Function_Specification
(Loc
,
5324 Defining_Unit_Name
=> Make_Temporary
(Loc
, 'S'),
5325 Result_Definition
=> New_Occurrence_Of
(Var_Type
, Loc
)),
5326 Declarations
=> No_List
,
5327 Handled_Statement_Sequence
=>
5328 Make_Handled_Sequence_Of_Statements
(Loc
, New_List
(
5329 Make_Tag_Check
(Loc
,
5330 Make_Simple_Return_Statement
(Loc
,
5331 Make_Attribute_Reference
(Loc
,
5332 Prefix
=> New_Occurrence_Of
(Var_Type
, Loc
),
5333 Attribute_Name
=> Name_Input
,
5335 New_List
(Stream
)))))));
5336 end Input_With_Tag_Check
;
5338 --------------------------------
5339 -- Is_RACW_Controlling_Formal --
5340 --------------------------------
5342 function Is_RACW_Controlling_Formal
5343 (Parameter
: Node_Id
;
5344 Stub_Type
: Entity_Id
) return Boolean
5349 -- If the kind of the parameter is E_Void, then it is not a controlling
5350 -- formal (this can happen in the context of RAS).
5352 if Ekind
(Defining_Identifier
(Parameter
)) = E_Void
then
5356 -- If the parameter is not a controlling formal, then it cannot be
5357 -- possibly a RACW_Controlling_Formal.
5359 if not Is_Controlling_Formal
(Defining_Identifier
(Parameter
)) then
5363 Typ
:= Parameter_Type
(Parameter
);
5364 return (Nkind
(Typ
) = N_Access_Definition
5365 and then Etype
(Subtype_Mark
(Typ
)) = Stub_Type
)
5366 or else Etype
(Typ
) = Stub_Type
;
5367 end Is_RACW_Controlling_Formal
;
5369 ------------------------------
5370 -- Make_Transportable_Check --
5371 ------------------------------
5373 function Make_Transportable_Check
5375 Expr
: Node_Id
) return Node_Id
is
5378 Make_Raise_Program_Error
(Loc
,
5381 Build_Get_Transportable
(Loc
,
5382 Make_Selected_Component
(Loc
,
5384 Selector_Name
=> Make_Identifier
(Loc
, Name_uTag
)))),
5385 Reason
=> PE_Non_Transportable_Actual
);
5386 end Make_Transportable_Check
;
5388 -----------------------------
5389 -- Make_Selected_Component --
5390 -----------------------------
5392 function Make_Selected_Component
5395 Selector_Name
: Name_Id
) return Node_Id
5398 return Make_Selected_Component
(Loc
,
5399 Prefix
=> New_Occurrence_Of
(Prefix
, Loc
),
5400 Selector_Name
=> Make_Identifier
(Loc
, Selector_Name
));
5401 end Make_Selected_Component
;
5403 --------------------
5404 -- Make_Tag_Check --
5405 --------------------
5407 function Make_Tag_Check
(Loc
: Source_Ptr
; N
: Node_Id
) return Node_Id
is
5408 Occ
: constant Entity_Id
:= Make_Temporary
(Loc
, 'E');
5411 return Make_Block_Statement
(Loc
,
5412 Handled_Statement_Sequence
=>
5413 Make_Handled_Sequence_Of_Statements
(Loc
,
5414 Statements
=> New_List
(N
),
5416 Exception_Handlers
=> New_List
(
5417 Make_Implicit_Exception_Handler
(Loc
,
5418 Choice_Parameter
=> Occ
,
5420 Exception_Choices
=>
5421 New_List
(New_Occurrence_Of
(RTE
(RE_Tag_Error
), Loc
)),
5424 New_List
(Make_Procedure_Call_Statement
(Loc
,
5426 (RTE
(RE_Raise_Program_Error_Unknown_Tag
), Loc
),
5427 New_List
(New_Occurrence_Of
(Occ
, Loc
))))))));
5430 ----------------------------
5431 -- Need_Extra_Constrained --
5432 ----------------------------
5434 function Need_Extra_Constrained
(Parameter
: Node_Id
) return Boolean is
5435 Etyp
: constant Entity_Id
:= Etype
(Parameter_Type
(Parameter
));
5437 return Out_Present
(Parameter
)
5438 and then Has_Discriminants
(Etyp
)
5439 and then not Is_Constrained
(Etyp
)
5440 and then not Is_Indefinite_Subtype
(Etyp
);
5441 end Need_Extra_Constrained
;
5443 ------------------------------------
5444 -- Pack_Entity_Into_Stream_Access --
5445 ------------------------------------
5447 function Pack_Entity_Into_Stream_Access
5451 Etyp
: Entity_Id
:= Empty
) return Node_Id
5456 if Present
(Etyp
) then
5459 Typ
:= Etype
(Object
);
5463 Pack_Node_Into_Stream_Access
(Loc
,
5465 Object
=> New_Occurrence_Of
(Object
, Loc
),
5467 end Pack_Entity_Into_Stream_Access
;
5469 ---------------------------
5470 -- Pack_Node_Into_Stream --
5471 ---------------------------
5473 function Pack_Node_Into_Stream
5477 Etyp
: Entity_Id
) return Node_Id
5479 Write_Attribute
: Name_Id
:= Name_Write
;
5482 if not Is_Constrained
(Etyp
) then
5483 Write_Attribute
:= Name_Output
;
5487 Make_Attribute_Reference
(Loc
,
5488 Prefix
=> New_Occurrence_Of
(Etyp
, Loc
),
5489 Attribute_Name
=> Write_Attribute
,
5490 Expressions
=> New_List
(
5491 Make_Attribute_Reference
(Loc
,
5492 Prefix
=> New_Occurrence_Of
(Stream
, Loc
),
5493 Attribute_Name
=> Name_Access
),
5495 end Pack_Node_Into_Stream
;
5497 ----------------------------------
5498 -- Pack_Node_Into_Stream_Access --
5499 ----------------------------------
5501 function Pack_Node_Into_Stream_Access
5505 Etyp
: Entity_Id
) return Node_Id
5507 Write_Attribute
: Name_Id
:= Name_Write
;
5510 if not Is_Constrained
(Etyp
) then
5511 Write_Attribute
:= Name_Output
;
5515 Make_Attribute_Reference
(Loc
,
5516 Prefix
=> New_Occurrence_Of
(Etyp
, Loc
),
5517 Attribute_Name
=> Write_Attribute
,
5518 Expressions
=> New_List
(
5521 end Pack_Node_Into_Stream_Access
;
5523 ---------------------
5524 -- PolyORB_Support --
5525 ---------------------
5527 package body PolyORB_Support
is
5529 -- Local subprograms
5531 procedure Add_RACW_Read_Attribute
5532 (RACW_Type
: Entity_Id
;
5533 Stub_Type
: Entity_Id
;
5534 Stub_Type_Access
: Entity_Id
;
5535 Body_Decls
: List_Id
);
5536 -- Add Read attribute for the RACW type. The declaration and attribute
5537 -- definition clauses are inserted right after the declaration of
5538 -- RACW_Type. If Body_Decls is not No_List, the subprogram body is
5539 -- appended to it (case where the RACW declaration is in the main unit).
5541 procedure Add_RACW_Write_Attribute
5542 (RACW_Type
: Entity_Id
;
5543 Stub_Type
: Entity_Id
;
5544 Stub_Type_Access
: Entity_Id
;
5545 Body_Decls
: List_Id
);
5546 -- Same as above for the Write attribute
5548 procedure Add_RACW_From_Any
5549 (RACW_Type
: Entity_Id
;
5550 Body_Decls
: List_Id
);
5551 -- Add the From_Any TSS for this RACW type
5553 procedure Add_RACW_To_Any
5554 (RACW_Type
: Entity_Id
;
5555 Body_Decls
: List_Id
);
5556 -- Add the To_Any TSS for this RACW type
5558 procedure Add_RACW_TypeCode
5559 (Designated_Type
: Entity_Id
;
5560 RACW_Type
: Entity_Id
;
5561 Body_Decls
: List_Id
);
5562 -- Add the TypeCode TSS for this RACW type
5564 procedure Add_RAS_From_Any
(RAS_Type
: Entity_Id
);
5565 -- Add the From_Any TSS for this RAS type
5567 procedure Add_RAS_To_Any
(RAS_Type
: Entity_Id
);
5568 -- Add the To_Any TSS for this RAS type
5570 procedure Add_RAS_TypeCode
(RAS_Type
: Entity_Id
);
5571 -- Add the TypeCode TSS for this RAS type
5573 procedure Add_RAS_Access_TSS
(N
: Node_Id
);
5574 -- Add a subprogram body for RAS Access TSS
5576 -------------------------------------
5577 -- Add_Obj_RPC_Receiver_Completion --
5578 -------------------------------------
5580 procedure Add_Obj_RPC_Receiver_Completion
5583 RPC_Receiver
: Entity_Id
;
5584 Stub_Elements
: Stub_Structure
)
5586 Desig
: constant Entity_Id
:=
5587 Etype
(Designated_Type
(Stub_Elements
.RACW_Type
));
5590 Make_Procedure_Call_Statement
(Loc
,
5593 RTE
(RE_Register_Obj_Receiving_Stub
), Loc
),
5595 Parameter_Associations
=> New_List
(
5599 Make_String_Literal
(Loc
,
5600 Fully_Qualified_Name_String
(Desig
, Append_NUL
=> False)),
5604 Make_Attribute_Reference
(Loc
,
5607 Defining_Unit_Name
(Parent
(RPC_Receiver
)), Loc
),
5613 Make_Attribute_Reference
(Loc
,
5616 Defining_Identifier
(
5617 Stub_Elements
.RPC_Receiver_Decl
), Loc
),
5620 end Add_Obj_RPC_Receiver_Completion
;
5622 -----------------------
5623 -- Add_RACW_Features --
5624 -----------------------
5626 procedure Add_RACW_Features
5627 (RACW_Type
: Entity_Id
;
5629 Stub_Type
: Entity_Id
;
5630 Stub_Type_Access
: Entity_Id
;
5631 RPC_Receiver_Decl
: Node_Id
;
5632 Body_Decls
: List_Id
)
5634 pragma Unreferenced
(RPC_Receiver_Decl
);
5638 (RACW_Type
=> RACW_Type
,
5639 Body_Decls
=> Body_Decls
);
5642 (RACW_Type
=> RACW_Type
,
5643 Body_Decls
=> Body_Decls
);
5645 Add_RACW_Write_Attribute
5646 (RACW_Type
=> RACW_Type
,
5647 Stub_Type
=> Stub_Type
,
5648 Stub_Type_Access
=> Stub_Type_Access
,
5649 Body_Decls
=> Body_Decls
);
5651 Add_RACW_Read_Attribute
5652 (RACW_Type
=> RACW_Type
,
5653 Stub_Type
=> Stub_Type
,
5654 Stub_Type_Access
=> Stub_Type_Access
,
5655 Body_Decls
=> Body_Decls
);
5658 (Designated_Type
=> Desig
,
5659 RACW_Type
=> RACW_Type
,
5660 Body_Decls
=> Body_Decls
);
5661 end Add_RACW_Features
;
5663 -----------------------
5664 -- Add_RACW_From_Any --
5665 -----------------------
5667 procedure Add_RACW_From_Any
5668 (RACW_Type
: Entity_Id
;
5669 Body_Decls
: List_Id
)
5671 Loc
: constant Source_Ptr
:= Sloc
(RACW_Type
);
5672 Is_RAS
: constant Boolean := not Comes_From_Source
(RACW_Type
);
5673 Fnam
: constant Entity_Id
:=
5674 Make_Defining_Identifier
(Loc
,
5675 Chars
=> New_External_Name
(Chars
(RACW_Type
), 'F'));
5677 Func_Spec
: Node_Id
;
5678 Func_Decl
: Node_Id
;
5679 Func_Body
: Node_Id
;
5681 Statements
: List_Id
;
5682 -- Various parts of the subprogram
5684 Any_Parameter
: constant Entity_Id
:=
5685 Make_Defining_Identifier
(Loc
, Name_A
);
5687 Asynchronous_Flag
: constant Entity_Id
:=
5688 Asynchronous_Flags_Table
.Get
(RACW_Type
);
5689 -- The flag object declared in Add_RACW_Asynchronous_Flag
5693 Make_Function_Specification
(Loc
,
5694 Defining_Unit_Name
=>
5696 Parameter_Specifications
=> New_List
(
5697 Make_Parameter_Specification
(Loc
,
5698 Defining_Identifier
=>
5701 New_Occurrence_Of
(RTE
(RE_Any
), Loc
))),
5702 Result_Definition
=> New_Occurrence_Of
(RACW_Type
, Loc
));
5704 -- NOTE: The usage occurrences of RACW_Parameter must refer to the
5705 -- entity in the declaration spec, not those of the body spec.
5707 Func_Decl
:= Make_Subprogram_Declaration
(Loc
, Func_Spec
);
5708 Insert_After
(Declaration_Node
(RACW_Type
), Func_Decl
);
5709 Set_Renaming_TSS
(RACW_Type
, Fnam
, TSS_From_Any
);
5711 if No
(Body_Decls
) then
5715 -- ??? Issue with asynchronous calls here: the Asynchronous flag is
5716 -- set on the stub type if, and only if, the RACW type has a pragma
5717 -- Asynchronous. This is incorrect for RACWs that implement RAS
5718 -- types, because in that case the /designated subprogram/ (not the
5719 -- type) might be asynchronous, and that causes the stub to need to
5720 -- be asynchronous too. A solution is to transport a RAS as a struct
5721 -- containing a RACW and an asynchronous flag, and to properly alter
5722 -- the Asynchronous component in the stub type in the RAS's _From_Any
5725 Statements
:= New_List
(
5726 Make_Simple_Return_Statement
(Loc
,
5727 Expression
=> Unchecked_Convert_To
(RACW_Type
,
5728 Make_Function_Call
(Loc
,
5729 Name
=> New_Occurrence_Of
(RTE
(RE_Get_RACW
), Loc
),
5730 Parameter_Associations
=> New_List
(
5731 Make_Function_Call
(Loc
,
5732 Name
=> New_Occurrence_Of
(RTE
(RE_FA_ObjRef
), Loc
),
5733 Parameter_Associations
=> New_List
(
5734 New_Occurrence_Of
(Any_Parameter
, Loc
))),
5735 Build_Stub_Tag
(Loc
, RACW_Type
),
5736 New_Occurrence_Of
(Boolean_Literals
(Is_RAS
), Loc
),
5737 New_Occurrence_Of
(Asynchronous_Flag
, Loc
))))));
5740 Make_Subprogram_Body
(Loc
,
5741 Specification
=> Copy_Specification
(Loc
, Func_Spec
),
5742 Declarations
=> No_List
,
5743 Handled_Statement_Sequence
=>
5744 Make_Handled_Sequence_Of_Statements
(Loc
,
5745 Statements
=> Statements
));
5747 Append_To
(Body_Decls
, Func_Body
);
5748 end Add_RACW_From_Any
;
5750 -----------------------------
5751 -- Add_RACW_Read_Attribute --
5752 -----------------------------
5754 procedure Add_RACW_Read_Attribute
5755 (RACW_Type
: Entity_Id
;
5756 Stub_Type
: Entity_Id
;
5757 Stub_Type_Access
: Entity_Id
;
5758 Body_Decls
: List_Id
)
5760 pragma Unreferenced
(Stub_Type
, Stub_Type_Access
);
5762 Loc
: constant Source_Ptr
:= Sloc
(RACW_Type
);
5764 Proc_Decl
: Node_Id
;
5765 Attr_Decl
: Node_Id
;
5767 Body_Node
: Node_Id
;
5769 Decls
: constant List_Id
:= New_List
;
5770 Statements
: constant List_Id
:= New_List
;
5771 Reference
: constant Entity_Id
:=
5772 Make_Defining_Identifier
(Loc
, Name_R
);
5773 -- Various parts of the procedure
5775 Pnam
: constant Entity_Id
:= Make_Temporary
(Loc
, 'R');
5777 Is_RAS
: constant Boolean := not Comes_From_Source
(RACW_Type
);
5779 Asynchronous_Flag
: constant Entity_Id
:=
5780 Asynchronous_Flags_Table
.Get
(RACW_Type
);
5781 pragma Assert
(Present
(Asynchronous_Flag
));
5783 function Stream_Parameter
return Node_Id
;
5784 function Result
return Node_Id
;
5786 -- Functions to create occurrences of the formal parameter names
5792 function Result
return Node_Id
is
5794 return Make_Identifier
(Loc
, Name_V
);
5797 ----------------------
5798 -- Stream_Parameter --
5799 ----------------------
5801 function Stream_Parameter
return Node_Id
is
5803 return Make_Identifier
(Loc
, Name_S
);
5804 end Stream_Parameter
;
5806 -- Start of processing for Add_RACW_Read_Attribute
5809 Build_Stream_Procedure
5810 (Loc
, RACW_Type
, Body_Node
, Pnam
, Statements
, Outp
=> True);
5812 Proc_Decl
:= Make_Subprogram_Declaration
(Loc
,
5813 Copy_Specification
(Loc
, Specification
(Body_Node
)));
5816 Make_Attribute_Definition_Clause
(Loc
,
5817 Name
=> New_Occurrence_Of
(RACW_Type
, Loc
),
5821 Defining_Unit_Name
(Specification
(Proc_Decl
)), Loc
));
5823 Insert_After
(Declaration_Node
(RACW_Type
), Proc_Decl
);
5824 Insert_After
(Proc_Decl
, Attr_Decl
);
5826 if No
(Body_Decls
) then
5831 Make_Object_Declaration
(Loc
,
5832 Defining_Identifier
=>
5834 Object_Definition
=>
5835 New_Occurrence_Of
(RTE
(RE_Object_Ref
), Loc
)));
5837 Append_List_To
(Statements
, New_List
(
5838 Make_Attribute_Reference
(Loc
,
5840 New_Occurrence_Of
(RTE
(RE_Object_Ref
), Loc
),
5841 Attribute_Name
=> Name_Read
,
5842 Expressions
=> New_List
(
5844 New_Occurrence_Of
(Reference
, Loc
))),
5846 Make_Assignment_Statement
(Loc
,
5850 Unchecked_Convert_To
(RACW_Type
,
5851 Make_Function_Call
(Loc
,
5853 New_Occurrence_Of
(RTE
(RE_Get_RACW
), Loc
),
5854 Parameter_Associations
=> New_List
(
5855 New_Occurrence_Of
(Reference
, Loc
),
5856 Build_Stub_Tag
(Loc
, RACW_Type
),
5857 New_Occurrence_Of
(Boolean_Literals
(Is_RAS
), Loc
),
5858 New_Occurrence_Of
(Asynchronous_Flag
, Loc
)))))));
5860 Set_Declarations
(Body_Node
, Decls
);
5861 Append_To
(Body_Decls
, Body_Node
);
5862 end Add_RACW_Read_Attribute
;
5864 ---------------------
5865 -- Add_RACW_To_Any --
5866 ---------------------
5868 procedure Add_RACW_To_Any
5869 (RACW_Type
: Entity_Id
;
5870 Body_Decls
: List_Id
)
5872 Loc
: constant Source_Ptr
:= Sloc
(RACW_Type
);
5874 Fnam
: constant Entity_Id
:=
5875 Make_Defining_Identifier
(Loc
,
5876 Chars
=> New_External_Name
(Chars
(RACW_Type
), 'T'));
5878 Is_RAS
: constant Boolean := not Comes_From_Source
(RACW_Type
);
5880 Stub_Elements
: constant Stub_Structure
:=
5881 Get_Stub_Elements
(RACW_Type
);
5883 Func_Spec
: Node_Id
;
5884 Func_Decl
: Node_Id
;
5885 Func_Body
: Node_Id
;
5888 Statements
: List_Id
;
5889 -- Various parts of the subprogram
5891 RACW_Parameter
: constant Entity_Id
:=
5892 Make_Defining_Identifier
(Loc
, Name_R
);
5894 Reference
: constant Entity_Id
:= Make_Temporary
(Loc
, 'R');
5895 Any
: constant Entity_Id
:= Make_Temporary
(Loc
, 'A');
5899 Make_Function_Specification
(Loc
,
5900 Defining_Unit_Name
=>
5902 Parameter_Specifications
=> New_List
(
5903 Make_Parameter_Specification
(Loc
,
5904 Defining_Identifier
=>
5907 New_Occurrence_Of
(RACW_Type
, Loc
))),
5908 Result_Definition
=> New_Occurrence_Of
(RTE
(RE_Any
), Loc
));
5910 -- NOTE: The usage occurrences of RACW_Parameter must refer to the
5911 -- entity in the declaration spec, not in the body spec.
5913 Func_Decl
:= Make_Subprogram_Declaration
(Loc
, Func_Spec
);
5915 Insert_After
(Declaration_Node
(RACW_Type
), Func_Decl
);
5916 Set_Renaming_TSS
(RACW_Type
, Fnam
, TSS_To_Any
);
5918 if No
(Body_Decls
) then
5924 -- R : constant Object_Ref :=
5930 -- RPC_Receiver'Access);
5934 Make_Object_Declaration
(Loc
,
5935 Defining_Identifier
=> Reference
,
5936 Constant_Present
=> True,
5937 Object_Definition
=>
5938 New_Occurrence_Of
(RTE
(RE_Object_Ref
), Loc
),
5940 Make_Function_Call
(Loc
,
5941 Name
=> New_Occurrence_Of
(RTE
(RE_Get_Reference
), Loc
),
5942 Parameter_Associations
=> New_List
(
5943 Unchecked_Convert_To
(RTE
(RE_Address
),
5944 New_Occurrence_Of
(RACW_Parameter
, Loc
)),
5945 Make_String_Literal
(Loc
,
5946 Strval
=> Fully_Qualified_Name_String
5947 (Etype
(Designated_Type
(RACW_Type
)),
5948 Append_NUL
=> False)),
5949 Build_Stub_Tag
(Loc
, RACW_Type
),
5950 New_Occurrence_Of
(Boolean_Literals
(Is_RAS
), Loc
),
5951 Make_Attribute_Reference
(Loc
,
5954 (Defining_Identifier
5955 (Stub_Elements
.RPC_Receiver_Decl
), Loc
),
5956 Attribute_Name
=> Name_Access
)))),
5958 Make_Object_Declaration
(Loc
,
5959 Defining_Identifier
=> Any
,
5960 Object_Definition
=> New_Occurrence_Of
(RTE
(RE_Any
), Loc
)));
5964 -- Any := TA_ObjRef (Reference);
5965 -- Set_TC (Any, RPC_Receiver.Obj_TypeCode);
5968 Statements
:= New_List
(
5969 Make_Assignment_Statement
(Loc
,
5970 Name
=> New_Occurrence_Of
(Any
, Loc
),
5972 Make_Function_Call
(Loc
,
5973 Name
=> New_Occurrence_Of
(RTE
(RE_TA_ObjRef
), Loc
),
5974 Parameter_Associations
=> New_List
(
5975 New_Occurrence_Of
(Reference
, Loc
)))),
5977 Make_Procedure_Call_Statement
(Loc
,
5978 Name
=> New_Occurrence_Of
(RTE
(RE_Set_TC
), Loc
),
5979 Parameter_Associations
=> New_List
(
5980 New_Occurrence_Of
(Any
, Loc
),
5981 Make_Selected_Component
(Loc
,
5983 Defining_Identifier
(
5984 Stub_Elements
.RPC_Receiver_Decl
),
5985 Selector_Name
=> Name_Obj_TypeCode
))),
5987 Make_Simple_Return_Statement
(Loc
,
5988 Expression
=> New_Occurrence_Of
(Any
, Loc
)));
5991 Make_Subprogram_Body
(Loc
,
5992 Specification
=> Copy_Specification
(Loc
, Func_Spec
),
5993 Declarations
=> Decls
,
5994 Handled_Statement_Sequence
=>
5995 Make_Handled_Sequence_Of_Statements
(Loc
,
5996 Statements
=> Statements
));
5997 Append_To
(Body_Decls
, Func_Body
);
5998 end Add_RACW_To_Any
;
6000 -----------------------
6001 -- Add_RACW_TypeCode --
6002 -----------------------
6004 procedure Add_RACW_TypeCode
6005 (Designated_Type
: Entity_Id
;
6006 RACW_Type
: Entity_Id
;
6007 Body_Decls
: List_Id
)
6009 Loc
: constant Source_Ptr
:= Sloc
(RACW_Type
);
6011 Fnam
: constant Entity_Id
:=
6012 Make_Defining_Identifier
(Loc
,
6013 Chars
=> New_External_Name
(Chars
(RACW_Type
), 'Y'));
6015 Stub_Elements
: constant Stub_Structure
:=
6016 Stubs_Table
.Get
(Designated_Type
);
6017 pragma Assert
(Stub_Elements
/= Empty_Stub_Structure
);
6019 Func_Spec
: Node_Id
;
6020 Func_Decl
: Node_Id
;
6021 Func_Body
: Node_Id
;
6024 -- The spec for this subprogram has a dummy 'access RACW' argument,
6025 -- which serves only for overloading purposes.
6028 Make_Function_Specification
(Loc
,
6029 Defining_Unit_Name
=> Fnam
,
6030 Result_Definition
=> New_Occurrence_Of
(RTE
(RE_TypeCode
), Loc
));
6032 -- NOTE: The usage occurrences of RACW_Parameter must refer to the
6033 -- entity in the declaration spec, not those of the body spec.
6035 Func_Decl
:= Make_Subprogram_Declaration
(Loc
, Func_Spec
);
6036 Insert_After
(Declaration_Node
(RACW_Type
), Func_Decl
);
6037 Set_Renaming_TSS
(RACW_Type
, Fnam
, TSS_TypeCode
);
6039 if No
(Body_Decls
) then
6044 Make_Subprogram_Body
(Loc
,
6045 Specification
=> Copy_Specification
(Loc
, Func_Spec
),
6046 Declarations
=> Empty_List
,
6047 Handled_Statement_Sequence
=>
6048 Make_Handled_Sequence_Of_Statements
(Loc
,
6049 Statements
=> New_List
(
6050 Make_Simple_Return_Statement
(Loc
,
6052 Make_Selected_Component
(Loc
,
6055 (Stub_Elements
.RPC_Receiver_Decl
),
6056 Selector_Name
=> Name_Obj_TypeCode
)))));
6058 Append_To
(Body_Decls
, Func_Body
);
6059 end Add_RACW_TypeCode
;
6061 ------------------------------
6062 -- Add_RACW_Write_Attribute --
6063 ------------------------------
6065 procedure Add_RACW_Write_Attribute
6066 (RACW_Type
: Entity_Id
;
6067 Stub_Type
: Entity_Id
;
6068 Stub_Type_Access
: Entity_Id
;
6069 Body_Decls
: List_Id
)
6071 pragma Unreferenced
(Stub_Type
, Stub_Type_Access
);
6073 Loc
: constant Source_Ptr
:= Sloc
(RACW_Type
);
6075 Is_RAS
: constant Boolean := not Comes_From_Source
(RACW_Type
);
6077 Stub_Elements
: constant Stub_Structure
:=
6078 Get_Stub_Elements
(RACW_Type
);
6080 Body_Node
: Node_Id
;
6081 Proc_Decl
: Node_Id
;
6082 Attr_Decl
: Node_Id
;
6084 Statements
: constant List_Id
:= New_List
;
6085 Pnam
: constant Entity_Id
:= Make_Temporary
(Loc
, 'R');
6087 function Stream_Parameter
return Node_Id
;
6088 function Object
return Node_Id
;
6089 -- Functions to create occurrences of the formal parameter names
6095 function Object
return Node_Id
is
6097 return Make_Identifier
(Loc
, Name_V
);
6100 ----------------------
6101 -- Stream_Parameter --
6102 ----------------------
6104 function Stream_Parameter
return Node_Id
is
6106 return Make_Identifier
(Loc
, Name_S
);
6107 end Stream_Parameter
;
6109 -- Start of processing for Add_RACW_Write_Attribute
6112 Build_Stream_Procedure
6113 (Loc
, RACW_Type
, Body_Node
, Pnam
, Statements
, Outp
=> False);
6116 Make_Subprogram_Declaration
(Loc
,
6117 Copy_Specification
(Loc
, Specification
(Body_Node
)));
6120 Make_Attribute_Definition_Clause
(Loc
,
6121 Name
=> New_Occurrence_Of
(RACW_Type
, Loc
),
6122 Chars
=> Name_Write
,
6125 Defining_Unit_Name
(Specification
(Proc_Decl
)), Loc
));
6127 Insert_After
(Declaration_Node
(RACW_Type
), Proc_Decl
);
6128 Insert_After
(Proc_Decl
, Attr_Decl
);
6130 if No
(Body_Decls
) then
6134 Append_To
(Statements
,
6135 Pack_Node_Into_Stream_Access
(Loc
,
6136 Stream
=> Stream_Parameter
,
6138 Make_Function_Call
(Loc
,
6139 Name
=> New_Occurrence_Of
(RTE
(RE_Get_Reference
), Loc
),
6140 Parameter_Associations
=> New_List
(
6141 Unchecked_Convert_To
(RTE
(RE_Address
), Object
),
6142 Make_String_Literal
(Loc
,
6143 Strval
=> Fully_Qualified_Name_String
6144 (Etype
(Designated_Type
(RACW_Type
)),
6145 Append_NUL
=> False)),
6146 Build_Stub_Tag
(Loc
, RACW_Type
),
6147 New_Occurrence_Of
(Boolean_Literals
(Is_RAS
), Loc
),
6148 Make_Attribute_Reference
(Loc
,
6151 (Defining_Identifier
6152 (Stub_Elements
.RPC_Receiver_Decl
), Loc
),
6153 Attribute_Name
=> Name_Access
))),
6155 Etyp
=> RTE
(RE_Object_Ref
)));
6157 Append_To
(Body_Decls
, Body_Node
);
6158 end Add_RACW_Write_Attribute
;
6160 -----------------------
6161 -- Add_RAST_Features --
6162 -----------------------
6164 procedure Add_RAST_Features
6165 (Vis_Decl
: Node_Id
;
6166 RAS_Type
: Entity_Id
)
6169 Add_RAS_Access_TSS
(Vis_Decl
);
6171 Add_RAS_From_Any
(RAS_Type
);
6172 Add_RAS_TypeCode
(RAS_Type
);
6174 -- To_Any uses TypeCode, and therefore needs to be generated last
6176 Add_RAS_To_Any
(RAS_Type
);
6177 end Add_RAST_Features
;
6179 ------------------------
6180 -- Add_RAS_Access_TSS --
6181 ------------------------
6183 procedure Add_RAS_Access_TSS
(N
: Node_Id
) is
6184 Loc
: constant Source_Ptr
:= Sloc
(N
);
6186 Ras_Type
: constant Entity_Id
:= Defining_Identifier
(N
);
6187 Fat_Type
: constant Entity_Id
:= Equivalent_Type
(Ras_Type
);
6188 -- Ras_Type is the access to subprogram type; Fat_Type is the
6189 -- corresponding record type.
6191 RACW_Type
: constant Entity_Id
:=
6192 Underlying_RACW_Type
(Ras_Type
);
6194 Stub_Elements
: constant Stub_Structure
:=
6195 Get_Stub_Elements
(RACW_Type
);
6197 Proc
: constant Entity_Id
:=
6198 Make_Defining_Identifier
(Loc
,
6199 Chars
=> Make_TSS_Name
(Ras_Type
, TSS_RAS_Access
));
6201 Proc_Spec
: Node_Id
;
6203 -- Formal parameters
6205 Package_Name
: constant Entity_Id
:=
6206 Make_Defining_Identifier
(Loc
,
6211 Subp_Id
: constant Entity_Id
:=
6212 Make_Defining_Identifier
(Loc
,
6215 -- Target subprogram
6217 Asynch_P
: constant Entity_Id
:=
6218 Make_Defining_Identifier
(Loc
,
6219 Chars
=> Name_Asynchronous
);
6220 -- Is the procedure to which the 'Access applies asynchronous?
6222 All_Calls_Remote
: constant Entity_Id
:=
6223 Make_Defining_Identifier
(Loc
,
6224 Chars
=> Name_All_Calls_Remote
);
6225 -- True if an All_Calls_Remote pragma applies to the RCI unit
6226 -- that contains the subprogram.
6228 -- Common local variables
6230 Proc_Decls
: List_Id
;
6231 Proc_Statements
: List_Id
;
6233 Subp_Ref
: constant Entity_Id
:=
6234 Make_Defining_Identifier
(Loc
, Name_R
);
6235 -- Reference that designates the target subprogram (returned
6236 -- by Get_RAS_Info).
6238 Is_Local
: constant Entity_Id
:=
6239 Make_Defining_Identifier
(Loc
, Name_L
);
6240 Local_Addr
: constant Entity_Id
:=
6241 Make_Defining_Identifier
(Loc
, Name_A
);
6242 -- For the call to Get_Local_Address
6244 Local_Stub
: constant Entity_Id
:= Make_Temporary
(Loc
, 'L');
6245 Stub_Ptr
: constant Entity_Id
:= Make_Temporary
(Loc
, 'S');
6246 -- Additional local variables for the remote case
6249 (Field_Name
: Name_Id
;
6250 Value
: Node_Id
) return Node_Id
;
6251 -- Construct an assignment that sets the named component in the
6259 (Field_Name
: Name_Id
;
6260 Value
: Node_Id
) return Node_Id
6264 Make_Assignment_Statement
(Loc
,
6266 Make_Selected_Component
(Loc
,
6268 Selector_Name
=> Field_Name
),
6269 Expression
=> Value
);
6272 -- Start of processing for Add_RAS_Access_TSS
6275 Proc_Decls
:= New_List
(
6277 -- Common declarations
6279 Make_Object_Declaration
(Loc
,
6280 Defining_Identifier
=> Subp_Ref
,
6281 Object_Definition
=>
6282 New_Occurrence_Of
(RTE
(RE_Object_Ref
), Loc
)),
6284 Make_Object_Declaration
(Loc
,
6285 Defining_Identifier
=> Is_Local
,
6286 Object_Definition
=>
6287 New_Occurrence_Of
(Standard_Boolean
, Loc
)),
6289 Make_Object_Declaration
(Loc
,
6290 Defining_Identifier
=> Local_Addr
,
6291 Object_Definition
=>
6292 New_Occurrence_Of
(RTE
(RE_Address
), Loc
)),
6294 Make_Object_Declaration
(Loc
,
6295 Defining_Identifier
=> Local_Stub
,
6296 Aliased_Present
=> True,
6297 Object_Definition
=>
6298 New_Occurrence_Of
(Stub_Elements
.Stub_Type
, Loc
)),
6300 Make_Object_Declaration
(Loc
,
6301 Defining_Identifier
=> Stub_Ptr
,
6302 Object_Definition
=>
6303 New_Occurrence_Of
(Stub_Elements
.Stub_Type_Access
, Loc
),
6305 Make_Attribute_Reference
(Loc
,
6306 Prefix
=> New_Occurrence_Of
(Local_Stub
, Loc
),
6307 Attribute_Name
=> Name_Unchecked_Access
)));
6309 Set_Etype
(Stub_Ptr
, Stub_Elements
.Stub_Type_Access
);
6310 -- Build_Get_Unique_RP_Call needs this information
6312 -- Get_RAS_Info (Pkg, Subp, R);
6313 -- Obtain a reference to the target subprogram
6315 Proc_Statements
:= New_List
(
6316 Make_Procedure_Call_Statement
(Loc
,
6317 Name
=> New_Occurrence_Of
(RTE
(RE_Get_RAS_Info
), Loc
),
6318 Parameter_Associations
=> New_List
(
6319 New_Occurrence_Of
(Package_Name
, Loc
),
6320 New_Occurrence_Of
(Subp_Id
, Loc
),
6321 New_Occurrence_Of
(Subp_Ref
, Loc
))),
6323 -- Get_Local_Address (R, L, A);
6324 -- Determine whether the subprogram is local (L), and if so
6325 -- obtain the local address of its proxy (A).
6327 Make_Procedure_Call_Statement
(Loc
,
6328 Name
=> New_Occurrence_Of
(RTE
(RE_Get_Local_Address
), Loc
),
6329 Parameter_Associations
=> New_List
(
6330 New_Occurrence_Of
(Subp_Ref
, Loc
),
6331 New_Occurrence_Of
(Is_Local
, Loc
),
6332 New_Occurrence_Of
(Local_Addr
, Loc
))));
6334 -- Note: Here we assume that the Fat_Type is a record containing just
6335 -- an access to a proxy or stub object.
6337 Append_To
(Proc_Statements
,
6341 Make_Implicit_If_Statement
(N
,
6342 Condition
=> New_Occurrence_Of
(Is_Local
, Loc
),
6344 Then_Statements
=> New_List
(
6346 -- if A.Target = null then
6348 Make_Implicit_If_Statement
(N
,
6351 Make_Selected_Component
(Loc
,
6353 Unchecked_Convert_To
6354 (RTE
(RE_RAS_Proxy_Type_Access
),
6355 New_Occurrence_Of
(Local_Addr
, Loc
)),
6356 Selector_Name
=> Make_Identifier
(Loc
, Name_Target
)),
6359 Then_Statements
=> New_List
(
6361 -- A.Target := Entity_Of (Ref);
6363 Make_Assignment_Statement
(Loc
,
6365 Make_Selected_Component
(Loc
,
6367 Unchecked_Convert_To
6368 (RTE
(RE_RAS_Proxy_Type_Access
),
6369 New_Occurrence_Of
(Local_Addr
, Loc
)),
6370 Selector_Name
=> Make_Identifier
(Loc
, Name_Target
)),
6372 Make_Function_Call
(Loc
,
6373 Name
=> New_Occurrence_Of
(RTE
(RE_Entity_Of
), Loc
),
6374 Parameter_Associations
=> New_List
(
6375 New_Occurrence_Of
(Subp_Ref
, Loc
)))),
6377 -- Inc_Usage (A.Target);
6380 Make_Procedure_Call_Statement
(Loc
,
6381 Name
=> New_Occurrence_Of
(RTE
(RE_Inc_Usage
), Loc
),
6382 Parameter_Associations
=> New_List
(
6383 Make_Selected_Component
(Loc
,
6385 Unchecked_Convert_To
6386 (RTE
(RE_RAS_Proxy_Type_Access
),
6387 New_Occurrence_Of
(Local_Addr
, Loc
)),
6389 Make_Identifier
(Loc
, Name_Target
)))))),
6391 -- if not All_Calls_Remote then
6392 -- return Fat_Type!(A);
6395 Make_Implicit_If_Statement
(N
,
6399 New_Occurrence_Of
(All_Calls_Remote
, Loc
)),
6401 Then_Statements
=> New_List
(
6402 Make_Simple_Return_Statement
(Loc
,
6404 Unchecked_Convert_To
6405 (Fat_Type
, New_Occurrence_Of
(Local_Addr
, Loc
))))))));
6407 Append_List_To
(Proc_Statements
, New_List
(
6409 -- Stub.Target := Entity_Of (Ref);
6411 Set_Field
(Name_Target
,
6412 Make_Function_Call
(Loc
,
6413 Name
=> New_Occurrence_Of
(RTE
(RE_Entity_Of
), Loc
),
6414 Parameter_Associations
=> New_List
(
6415 New_Occurrence_Of
(Subp_Ref
, Loc
)))),
6417 -- Inc_Usage (Stub.Target);
6419 Make_Procedure_Call_Statement
(Loc
,
6420 Name
=> New_Occurrence_Of
(RTE
(RE_Inc_Usage
), Loc
),
6421 Parameter_Associations
=> New_List
(
6422 Make_Selected_Component
(Loc
,
6424 Selector_Name
=> Name_Target
))),
6426 -- E.4.1(9) A remote call is asynchronous if it is a call to
6427 -- a procedure, or a call through a value of an access-to-procedure
6428 -- type, to which a pragma Asynchronous applies.
6430 -- Parameter Asynch_P is true when the procedure is asynchronous;
6431 -- Expression Asynch_T is true when the type is asynchronous.
6433 Set_Field
(Name_Asynchronous
,
6435 Left_Opnd
=> New_Occurrence_Of
(Asynch_P
, Loc
),
6438 (Boolean_Literals
(Is_Asynchronous
(Ras_Type
)), Loc
)))));
6440 Append_List_To
(Proc_Statements
,
6441 Build_Get_Unique_RP_Call
(Loc
, Stub_Ptr
, Stub_Elements
.Stub_Type
));
6443 Append_To
(Proc_Statements
,
6444 Make_Simple_Return_Statement
(Loc
,
6446 Unchecked_Convert_To
(Fat_Type
,
6447 New_Occurrence_Of
(Stub_Ptr
, Loc
))));
6450 Make_Function_Specification
(Loc
,
6451 Defining_Unit_Name
=> Proc
,
6452 Parameter_Specifications
=> New_List
(
6453 Make_Parameter_Specification
(Loc
,
6454 Defining_Identifier
=> Package_Name
,
6456 New_Occurrence_Of
(Standard_String
, Loc
)),
6458 Make_Parameter_Specification
(Loc
,
6459 Defining_Identifier
=> Subp_Id
,
6461 New_Occurrence_Of
(Standard_String
, Loc
)),
6463 Make_Parameter_Specification
(Loc
,
6464 Defining_Identifier
=> Asynch_P
,
6466 New_Occurrence_Of
(Standard_Boolean
, Loc
)),
6468 Make_Parameter_Specification
(Loc
,
6469 Defining_Identifier
=> All_Calls_Remote
,
6471 New_Occurrence_Of
(Standard_Boolean
, Loc
))),
6473 Result_Definition
=>
6474 New_Occurrence_Of
(Fat_Type
, Loc
));
6476 -- Set the kind and return type of the function to prevent
6477 -- ambiguities between Ras_Type and Fat_Type in subsequent analysis.
6479 Set_Ekind
(Proc
, E_Function
);
6480 Set_Etype
(Proc
, Fat_Type
);
6483 Make_Subprogram_Body
(Loc
,
6484 Specification
=> Proc_Spec
,
6485 Declarations
=> Proc_Decls
,
6486 Handled_Statement_Sequence
=>
6487 Make_Handled_Sequence_Of_Statements
(Loc
,
6488 Statements
=> Proc_Statements
)));
6490 Set_TSS
(Fat_Type
, Proc
);
6491 end Add_RAS_Access_TSS
;
6493 ----------------------
6494 -- Add_RAS_From_Any --
6495 ----------------------
6497 procedure Add_RAS_From_Any
(RAS_Type
: Entity_Id
) is
6498 Loc
: constant Source_Ptr
:= Sloc
(RAS_Type
);
6500 Fnam
: constant Entity_Id
:= Make_Defining_Identifier
(Loc
,
6501 Make_TSS_Name
(RAS_Type
, TSS_From_Any
));
6503 Func_Spec
: Node_Id
;
6505 Statements
: List_Id
;
6507 Any_Parameter
: constant Entity_Id
:=
6508 Make_Defining_Identifier
(Loc
, Name_A
);
6511 Statements
:= New_List
(
6512 Make_Simple_Return_Statement
(Loc
,
6514 Make_Aggregate
(Loc
,
6515 Component_Associations
=> New_List
(
6516 Make_Component_Association
(Loc
,
6517 Choices
=> New_List
(Make_Identifier
(Loc
, Name_Ras
)),
6519 PolyORB_Support
.Helpers
.Build_From_Any_Call
6520 (Underlying_RACW_Type
(RAS_Type
),
6521 New_Occurrence_Of
(Any_Parameter
, Loc
),
6525 Make_Function_Specification
(Loc
,
6526 Defining_Unit_Name
=> Fnam
,
6527 Parameter_Specifications
=> New_List
(
6528 Make_Parameter_Specification
(Loc
,
6529 Defining_Identifier
=> Any_Parameter
,
6530 Parameter_Type
=> New_Occurrence_Of
(RTE
(RE_Any
), Loc
))),
6531 Result_Definition
=> New_Occurrence_Of
(RAS_Type
, Loc
));
6534 Make_Subprogram_Body
(Loc
,
6535 Specification
=> Func_Spec
,
6536 Declarations
=> No_List
,
6537 Handled_Statement_Sequence
=>
6538 Make_Handled_Sequence_Of_Statements
(Loc
,
6539 Statements
=> Statements
)));
6540 Set_TSS
(RAS_Type
, Fnam
);
6541 end Add_RAS_From_Any
;
6543 --------------------
6544 -- Add_RAS_To_Any --
6545 --------------------
6547 procedure Add_RAS_To_Any
(RAS_Type
: Entity_Id
) is
6548 Loc
: constant Source_Ptr
:= Sloc
(RAS_Type
);
6550 Fnam
: constant Entity_Id
:= Make_Defining_Identifier
(Loc
,
6551 Make_TSS_Name
(RAS_Type
, TSS_To_Any
));
6554 Statements
: List_Id
;
6556 Func_Spec
: Node_Id
;
6558 Any
: constant Entity_Id
:= Make_Temporary
(Loc
, 'A');
6559 RAS_Parameter
: constant Entity_Id
:= Make_Temporary
(Loc
, 'R');
6560 RACW_Parameter
: constant Node_Id
:=
6561 Make_Selected_Component
(Loc
,
6562 Prefix
=> RAS_Parameter
,
6563 Selector_Name
=> Name_Ras
);
6566 -- Object declarations
6568 Set_Etype
(RACW_Parameter
, Underlying_RACW_Type
(RAS_Type
));
6570 Make_Object_Declaration
(Loc
,
6571 Defining_Identifier
=> Any
,
6572 Object_Definition
=> New_Occurrence_Of
(RTE
(RE_Any
), Loc
),
6574 PolyORB_Support
.Helpers
.Build_To_Any_Call
6575 (Loc
, RACW_Parameter
, No_List
)));
6577 Statements
:= New_List
(
6578 Make_Procedure_Call_Statement
(Loc
,
6579 Name
=> New_Occurrence_Of
(RTE
(RE_Set_TC
), Loc
),
6580 Parameter_Associations
=> New_List
(
6581 New_Occurrence_Of
(Any
, Loc
),
6582 PolyORB_Support
.Helpers
.Build_TypeCode_Call
(Loc
,
6585 Make_Simple_Return_Statement
(Loc
,
6586 Expression
=> New_Occurrence_Of
(Any
, Loc
)));
6589 Make_Function_Specification
(Loc
,
6590 Defining_Unit_Name
=> Fnam
,
6591 Parameter_Specifications
=> New_List
(
6592 Make_Parameter_Specification
(Loc
,
6593 Defining_Identifier
=> RAS_Parameter
,
6594 Parameter_Type
=> New_Occurrence_Of
(RAS_Type
, Loc
))),
6595 Result_Definition
=> New_Occurrence_Of
(RTE
(RE_Any
), Loc
));
6598 Make_Subprogram_Body
(Loc
,
6599 Specification
=> Func_Spec
,
6600 Declarations
=> Decls
,
6601 Handled_Statement_Sequence
=>
6602 Make_Handled_Sequence_Of_Statements
(Loc
,
6603 Statements
=> Statements
)));
6604 Set_TSS
(RAS_Type
, Fnam
);
6607 ----------------------
6608 -- Add_RAS_TypeCode --
6609 ----------------------
6611 procedure Add_RAS_TypeCode
(RAS_Type
: Entity_Id
) is
6612 Loc
: constant Source_Ptr
:= Sloc
(RAS_Type
);
6614 Fnam
: constant Entity_Id
:= Make_Defining_Identifier
(Loc
,
6615 Make_TSS_Name
(RAS_Type
, TSS_TypeCode
));
6617 Func_Spec
: Node_Id
;
6618 Decls
: constant List_Id
:= New_List
;
6619 Name_String
: String_Id
;
6620 Repo_Id_String
: String_Id
;
6624 Make_Function_Specification
(Loc
,
6625 Defining_Unit_Name
=> Fnam
,
6626 Result_Definition
=> New_Occurrence_Of
(RTE
(RE_TypeCode
), Loc
));
6628 PolyORB_Support
.Helpers
.Build_Name_And_Repository_Id
6629 (RAS_Type
, Name_Str
=> Name_String
, Repo_Id_Str
=> Repo_Id_String
);
6632 Make_Subprogram_Body
(Loc
,
6633 Specification
=> Func_Spec
,
6634 Declarations
=> Decls
,
6635 Handled_Statement_Sequence
=>
6636 Make_Handled_Sequence_Of_Statements
(Loc
,
6637 Statements
=> New_List
(
6638 Make_Simple_Return_Statement
(Loc
,
6640 Make_Function_Call
(Loc
,
6642 New_Occurrence_Of
(RTE
(RE_Build_Complex_TC
), Loc
),
6643 Parameter_Associations
=> New_List
(
6644 New_Occurrence_Of
(RTE
(RE_Tk_Objref
), Loc
),
6645 Make_Aggregate
(Loc
,
6648 Make_Function_Call
(Loc
,
6651 (RTE
(RE_TA_Std_String
), Loc
),
6652 Parameter_Associations
=> New_List
(
6653 Make_String_Literal
(Loc
, Name_String
))),
6654 Make_Function_Call
(Loc
,
6657 (RTE
(RE_TA_Std_String
), Loc
),
6658 Parameter_Associations
=> New_List
(
6659 Make_String_Literal
(Loc
,
6660 Strval
=> Repo_Id_String
))))))))))));
6661 Set_TSS
(RAS_Type
, Fnam
);
6662 end Add_RAS_TypeCode
;
6664 -----------------------------------------
6665 -- Add_Receiving_Stubs_To_Declarations --
6666 -----------------------------------------
6668 procedure Add_Receiving_Stubs_To_Declarations
6669 (Pkg_Spec
: Node_Id
;
6673 Loc
: constant Source_Ptr
:= Sloc
(Pkg_Spec
);
6675 Pkg_RPC_Receiver
: constant Entity_Id
:=
6676 Make_Temporary
(Loc
, 'H');
6677 Pkg_RPC_Receiver_Object
: Node_Id
;
6678 Pkg_RPC_Receiver_Body
: Node_Id
;
6679 Pkg_RPC_Receiver_Decls
: List_Id
;
6680 Pkg_RPC_Receiver_Statements
: List_Id
;
6682 Pkg_RPC_Receiver_Cases
: constant List_Id
:= New_List
;
6683 -- A Pkg_RPC_Receiver is built to decode the request
6686 -- Request object received from neutral layer
6688 Subp_Id
: Entity_Id
;
6689 -- Subprogram identifier as received from the neutral distribution
6692 Subp_Index
: Entity_Id
;
6693 -- Internal index as determined by matching either the method name
6694 -- from the request structure, or the local subprogram address (in
6697 Is_Local
: constant Entity_Id
:= Make_Temporary
(Loc
, 'L');
6699 Local_Address
: constant Entity_Id
:= Make_Temporary
(Loc
, 'A');
6700 -- Address of a local subprogram designated by a reference
6701 -- corresponding to a RAS.
6703 Dispatch_On_Address
: constant List_Id
:= New_List
;
6704 Dispatch_On_Name
: constant List_Id
:= New_List
;
6706 Current_Subp_Number
: Int
:= First_RCI_Subprogram_Id
;
6708 Subp_Info_Array
: constant Entity_Id
:= Make_Temporary
(Loc
, 'I');
6709 Subp_Info_List
: constant List_Id
:= New_List
;
6711 Register_Pkg_Actuals
: constant List_Id
:= New_List
;
6713 All_Calls_Remote_E
: Entity_Id
;
6715 procedure Append_Stubs_To
6716 (RPC_Receiver_Cases
: List_Id
;
6717 Declaration
: Node_Id
;
6720 Subp_Dist_Name
: Entity_Id
;
6721 Subp_Proxy_Addr
: Entity_Id
);
6722 -- Add one case to the specified RPC receiver case list associating
6723 -- Subprogram_Number with the subprogram declared by Declaration, for
6724 -- which we have receiving stubs in Stubs. Subp_Number is an internal
6725 -- subprogram index. Subp_Dist_Name is the string used to call the
6726 -- subprogram by name, and Subp_Dist_Addr is the address of the proxy
6727 -- object, used in the context of calls through remote
6728 -- access-to-subprogram types.
6730 procedure Visit_Subprogram
(Decl
: Node_Id
);
6731 -- Generate receiving stub for one remote subprogram
6733 ---------------------
6734 -- Append_Stubs_To --
6735 ---------------------
6737 procedure Append_Stubs_To
6738 (RPC_Receiver_Cases
: List_Id
;
6739 Declaration
: Node_Id
;
6742 Subp_Dist_Name
: Entity_Id
;
6743 Subp_Proxy_Addr
: Entity_Id
)
6745 Case_Stmts
: List_Id
;
6747 Case_Stmts
:= New_List
(
6748 Make_Procedure_Call_Statement
(Loc
,
6751 Defining_Entity
(Stubs
), Loc
),
6752 Parameter_Associations
=>
6753 New_List
(New_Occurrence_Of
(Request
, Loc
))));
6755 if Nkind
(Specification
(Declaration
)) = N_Function_Specification
6757 Is_Asynchronous
(Defining_Entity
(Specification
(Declaration
)))
6759 Append_To
(Case_Stmts
, Make_Simple_Return_Statement
(Loc
));
6762 Append_To
(RPC_Receiver_Cases
,
6763 Make_Case_Statement_Alternative
(Loc
,
6765 New_List
(Make_Integer_Literal
(Loc
, Subp_Number
)),
6766 Statements
=> Case_Stmts
));
6768 Append_To
(Dispatch_On_Name
,
6769 Make_Elsif_Part
(Loc
,
6771 Make_Function_Call
(Loc
,
6773 New_Occurrence_Of
(RTE
(RE_Caseless_String_Eq
), Loc
),
6774 Parameter_Associations
=> New_List
(
6775 New_Occurrence_Of
(Subp_Id
, Loc
),
6776 New_Occurrence_Of
(Subp_Dist_Name
, Loc
))),
6778 Then_Statements
=> New_List
(
6779 Make_Assignment_Statement
(Loc
,
6780 New_Occurrence_Of
(Subp_Index
, Loc
),
6781 Make_Integer_Literal
(Loc
, Subp_Number
)))));
6783 Append_To
(Dispatch_On_Address
,
6784 Make_Elsif_Part
(Loc
,
6787 Left_Opnd
=> New_Occurrence_Of
(Local_Address
, Loc
),
6788 Right_Opnd
=> New_Occurrence_Of
(Subp_Proxy_Addr
, Loc
)),
6790 Then_Statements
=> New_List
(
6791 Make_Assignment_Statement
(Loc
,
6792 New_Occurrence_Of
(Subp_Index
, Loc
),
6793 Make_Integer_Literal
(Loc
, Subp_Number
)))));
6794 end Append_Stubs_To
;
6796 ----------------------
6797 -- Visit_Subprogram --
6798 ----------------------
6800 procedure Visit_Subprogram
(Decl
: Node_Id
) is
6801 Loc
: constant Source_Ptr
:= Sloc
(Decl
);
6802 Spec
: constant Node_Id
:= Specification
(Decl
);
6803 Subp_Def
: constant Entity_Id
:= Defining_Unit_Name
(Spec
);
6805 Subp_Val
: String_Id
;
6807 Subp_Dist_Name
: constant Entity_Id
:=
6808 Make_Defining_Identifier
(Loc
,
6811 (Related_Id
=> Chars
(Subp_Def
),
6813 Suffix_Index
=> -1));
6815 Current_Stubs
: Node_Id
;
6816 Proxy_Obj_Addr
: Entity_Id
;
6819 -- Disable expansion of stubs if serious errors have been
6820 -- diagnosed, because otherwise some illegal remote subprogram
6821 -- declarations could cause cascaded errors in stubs.
6823 if Serious_Errors_Detected
/= 0 then
6827 -- Build receiving stub
6830 Build_Subprogram_Receiving_Stubs
6832 Asynchronous
=> Nkind
(Spec
) = N_Procedure_Specification
6833 and then Is_Asynchronous
(Subp_Def
));
6835 Append_To
(Decls
, Current_Stubs
);
6836 Analyze
(Current_Stubs
);
6840 Add_RAS_Proxy_And_Analyze
(Decls
,
6842 All_Calls_Remote_E
=> All_Calls_Remote_E
,
6843 Proxy_Object_Addr
=> Proxy_Obj_Addr
);
6845 -- Compute distribution identifier
6847 Assign_Subprogram_Identifier
6848 (Subp_Def
, Current_Subp_Number
, Subp_Val
);
6851 (Current_Subp_Number
= Get_Subprogram_Id
(Subp_Def
));
6854 Make_Object_Declaration
(Loc
,
6855 Defining_Identifier
=> Subp_Dist_Name
,
6856 Constant_Present
=> True,
6857 Object_Definition
=>
6858 New_Occurrence_Of
(Standard_String
, Loc
),
6860 Make_String_Literal
(Loc
, Subp_Val
)));
6861 Analyze
(Last
(Decls
));
6863 -- Add subprogram descriptor (RCI_Subp_Info) to the subprograms
6864 -- table for this receiver. The aggregate below must be kept
6865 -- consistent with the declaration of RCI_Subp_Info in
6866 -- System.Partition_Interface.
6868 Append_To
(Subp_Info_List
,
6869 Make_Component_Association
(Loc
,
6871 New_List
(Make_Integer_Literal
(Loc
, Current_Subp_Number
)),
6874 Make_Aggregate
(Loc
,
6875 Expressions
=> New_List
(
6879 Make_Attribute_Reference
(Loc
,
6881 New_Occurrence_Of
(Subp_Dist_Name
, Loc
),
6882 Attribute_Name
=> Name_Address
),
6886 Make_Attribute_Reference
(Loc
,
6888 New_Occurrence_Of
(Subp_Dist_Name
, Loc
),
6889 Attribute_Name
=> Name_Length
),
6893 New_Occurrence_Of
(Proxy_Obj_Addr
, Loc
)))));
6895 Append_Stubs_To
(Pkg_RPC_Receiver_Cases
,
6896 Declaration
=> Decl
,
6897 Stubs
=> Current_Stubs
,
6898 Subp_Number
=> Current_Subp_Number
,
6899 Subp_Dist_Name
=> Subp_Dist_Name
,
6900 Subp_Proxy_Addr
=> Proxy_Obj_Addr
);
6902 Current_Subp_Number
:= Current_Subp_Number
+ 1;
6903 end Visit_Subprogram
;
6905 procedure Visit_Spec
is new Build_Package_Stubs
(Visit_Subprogram
);
6907 -- Start of processing for Add_Receiving_Stubs_To_Declarations
6910 -- Building receiving stubs consist in several operations:
6912 -- - a package RPC receiver must be built. This subprogram will get
6913 -- a Subprogram_Id from the incoming stream and will dispatch the
6914 -- call to the right subprogram;
6916 -- - a receiving stub for each subprogram visible in the package
6917 -- spec. This stub will read all the parameters from the stream,
6918 -- and put the result as well as the exception occurrence in the
6921 Build_RPC_Receiver_Body
(
6922 RPC_Receiver
=> Pkg_RPC_Receiver
,
6925 Subp_Index
=> Subp_Index
,
6926 Stmts
=> Pkg_RPC_Receiver_Statements
,
6927 Decl
=> Pkg_RPC_Receiver_Body
);
6928 Pkg_RPC_Receiver_Decls
:= Declarations
(Pkg_RPC_Receiver_Body
);
6930 -- Extract local address information from the target reference:
6931 -- if non-null, that means that this is a reference that denotes
6932 -- one particular operation, and hence that the operation name
6933 -- must not be taken into account for dispatching.
6935 Append_To
(Pkg_RPC_Receiver_Decls
,
6936 Make_Object_Declaration
(Loc
,
6937 Defining_Identifier
=> Is_Local
,
6938 Object_Definition
=>
6939 New_Occurrence_Of
(Standard_Boolean
, Loc
)));
6941 Append_To
(Pkg_RPC_Receiver_Decls
,
6942 Make_Object_Declaration
(Loc
,
6943 Defining_Identifier
=> Local_Address
,
6944 Object_Definition
=>
6945 New_Occurrence_Of
(RTE
(RE_Address
), Loc
)));
6947 Append_To
(Pkg_RPC_Receiver_Statements
,
6948 Make_Procedure_Call_Statement
(Loc
,
6949 Name
=> New_Occurrence_Of
(RTE
(RE_Get_Local_Address
), Loc
),
6950 Parameter_Associations
=> New_List
(
6951 Make_Selected_Component
(Loc
,
6953 Selector_Name
=> Name_Target
),
6954 New_Occurrence_Of
(Is_Local
, Loc
),
6955 New_Occurrence_Of
(Local_Address
, Loc
))));
6957 -- For each subprogram, the receiving stub will be built and a case
6958 -- statement will be made on the Subprogram_Id to dispatch to the
6959 -- right subprogram.
6961 All_Calls_Remote_E
:= Boolean_Literals
(
6962 Has_All_Calls_Remote
(Defining_Entity
(Pkg_Spec
)));
6964 Overload_Counter_Table
.Reset
;
6965 Reserve_NamingContext_Methods
;
6967 Visit_Spec
(Pkg_Spec
);
6970 Make_Object_Declaration
(Loc
,
6971 Defining_Identifier
=> Subp_Info_Array
,
6972 Constant_Present
=> True,
6973 Aliased_Present
=> True,
6974 Object_Definition
=>
6975 Make_Subtype_Indication
(Loc
,
6977 New_Occurrence_Of
(RTE
(RE_RCI_Subp_Info_Array
), Loc
),
6979 Make_Index_Or_Discriminant_Constraint
(Loc
,
6983 Make_Integer_Literal
(Loc
,
6984 Intval
=> First_RCI_Subprogram_Id
),
6986 Make_Integer_Literal
(Loc
,
6988 First_RCI_Subprogram_Id
6989 + List_Length
(Subp_Info_List
) - 1)))))));
6991 if Present
(First
(Subp_Info_List
)) then
6992 Set_Expression
(Last
(Decls
),
6993 Make_Aggregate
(Loc
,
6994 Component_Associations
=> Subp_Info_List
));
6996 -- Generate the dispatch statement to determine the subprogram id
6997 -- of the called subprogram.
6999 -- We first test whether the reference that was used to make the
7000 -- call was the base RCI reference (in which case Local_Address is
7001 -- zero, and the method identifier from the request must be used
7002 -- to determine which subprogram is called) or a reference
7003 -- identifying one particular subprogram (in which case
7004 -- Local_Address is the address of that subprogram, and the
7005 -- method name from the request is ignored). The latter occurs
7006 -- for the case of a call through a remote access-to-subprogram.
7008 -- In each case, cascaded elsifs are used to determine the proper
7009 -- subprogram index. Using hash tables might be more efficient.
7011 Append_To
(Pkg_RPC_Receiver_Statements
,
7012 Make_Implicit_If_Statement
(Pkg_Spec
,
7015 Left_Opnd
=> New_Occurrence_Of
(Local_Address
, Loc
),
7016 Right_Opnd
=> New_Occurrence_Of
7017 (RTE
(RE_Null_Address
), Loc
)),
7019 Then_Statements
=> New_List
(
7020 Make_Implicit_If_Statement
(Pkg_Spec
,
7021 Condition
=> New_Occurrence_Of
(Standard_False
, Loc
),
7022 Then_Statements
=> New_List
(
7023 Make_Null_Statement
(Loc
)),
7024 Elsif_Parts
=> Dispatch_On_Address
)),
7026 Else_Statements
=> New_List
(
7027 Make_Implicit_If_Statement
(Pkg_Spec
,
7028 Condition
=> New_Occurrence_Of
(Standard_False
, Loc
),
7029 Then_Statements
=> New_List
(Make_Null_Statement
(Loc
)),
7030 Elsif_Parts
=> Dispatch_On_Name
))));
7033 -- For a degenerate RCI with no visible subprograms,
7034 -- Subp_Info_List has zero length, and the declaration is for an
7035 -- empty array, in which case no initialization aggregate must be
7036 -- generated. We do not generate a Dispatch_Statement either.
7038 -- No initialization provided: remove CONSTANT so that the
7039 -- declaration is not an incomplete deferred constant.
7041 Set_Constant_Present
(Last
(Decls
), False);
7044 -- Analyze Subp_Info_Array declaration
7046 Analyze
(Last
(Decls
));
7048 -- If we receive an invalid Subprogram_Id, it is best to do nothing
7049 -- rather than raising an exception since we do not want someone
7050 -- to crash a remote partition by sending invalid subprogram ids.
7051 -- This is consistent with the other parts of the case statement
7052 -- since even in presence of incorrect parameters in the stream,
7053 -- every exception will be caught and (if the subprogram is not an
7054 -- APC) put into the result stream and sent away.
7056 Append_To
(Pkg_RPC_Receiver_Cases
,
7057 Make_Case_Statement_Alternative
(Loc
,
7058 Discrete_Choices
=> New_List
(Make_Others_Choice
(Loc
)),
7059 Statements
=> New_List
(Make_Null_Statement
(Loc
))));
7061 Append_To
(Pkg_RPC_Receiver_Statements
,
7062 Make_Case_Statement
(Loc
,
7063 Expression
=> New_Occurrence_Of
(Subp_Index
, Loc
),
7064 Alternatives
=> Pkg_RPC_Receiver_Cases
));
7066 -- Pkg_RPC_Receiver body is now complete: insert it into the tree and
7069 Append_To
(Decls
, Pkg_RPC_Receiver_Body
);
7070 Analyze
(Last
(Decls
));
7072 Pkg_RPC_Receiver_Object
:=
7073 Make_Object_Declaration
(Loc
,
7074 Defining_Identifier
=> Make_Temporary
(Loc
, 'R'),
7075 Aliased_Present
=> True,
7076 Object_Definition
=> New_Occurrence_Of
(RTE
(RE_Servant
), Loc
));
7077 Append_To
(Decls
, Pkg_RPC_Receiver_Object
);
7078 Analyze
(Last
(Decls
));
7082 Append_To
(Register_Pkg_Actuals
,
7083 Make_String_Literal
(Loc
,
7085 Fully_Qualified_Name_String
7086 (Defining_Entity
(Pkg_Spec
), Append_NUL
=> False)));
7090 Append_To
(Register_Pkg_Actuals
,
7091 Make_Attribute_Reference
(Loc
,
7094 (Defining_Entity
(Pkg_Spec
), Loc
),
7095 Attribute_Name
=> Name_Version
));
7099 Append_To
(Register_Pkg_Actuals
,
7100 Make_Attribute_Reference
(Loc
,
7102 New_Occurrence_Of
(Pkg_RPC_Receiver
, Loc
),
7103 Attribute_Name
=> Name_Access
));
7107 Append_To
(Register_Pkg_Actuals
,
7108 Make_Attribute_Reference
(Loc
,
7111 Defining_Identifier
(Pkg_RPC_Receiver_Object
), Loc
),
7112 Attribute_Name
=> Name_Access
));
7116 Append_To
(Register_Pkg_Actuals
,
7117 Make_Attribute_Reference
(Loc
,
7118 Prefix
=> New_Occurrence_Of
(Subp_Info_Array
, Loc
),
7119 Attribute_Name
=> Name_Address
));
7123 Append_To
(Register_Pkg_Actuals
,
7124 Make_Attribute_Reference
(Loc
,
7125 Prefix
=> New_Occurrence_Of
(Subp_Info_Array
, Loc
),
7126 Attribute_Name
=> Name_Length
));
7128 -- Is_All_Calls_Remote
7130 Append_To
(Register_Pkg_Actuals
,
7131 New_Occurrence_Of
(All_Calls_Remote_E
, Loc
));
7133 -- Finally call Register_Pkg_Receiving_Stub with the above parameters
7136 Make_Procedure_Call_Statement
(Loc
,
7138 New_Occurrence_Of
(RTE
(RE_Register_Pkg_Receiving_Stub
), Loc
),
7139 Parameter_Associations
=> Register_Pkg_Actuals
));
7140 Analyze
(Last
(Stmts
));
7141 end Add_Receiving_Stubs_To_Declarations
;
7143 ---------------------------------
7144 -- Build_General_Calling_Stubs --
7145 ---------------------------------
7147 procedure Build_General_Calling_Stubs
7149 Statements
: List_Id
;
7150 Target_Object
: Node_Id
;
7151 Subprogram_Id
: Node_Id
;
7152 Asynchronous
: Node_Id
:= Empty
;
7153 Is_Known_Asynchronous
: Boolean := False;
7154 Is_Known_Non_Asynchronous
: Boolean := False;
7155 Is_Function
: Boolean;
7157 Stub_Type
: Entity_Id
:= Empty
;
7158 RACW_Type
: Entity_Id
:= Empty
;
7161 Loc
: constant Source_Ptr
:= Sloc
(Nod
);
7163 Request
: constant Entity_Id
:= Make_Temporary
(Loc
, 'R');
7164 -- The request object constructed by these stubs
7165 -- Could we use Name_R instead??? (see GLADE client stubs)
7167 function Make_Request_RTE_Call
7169 Actuals
: List_Id
:= New_List
) return Node_Id
;
7170 -- Generate a procedure call statement calling RE with the given
7171 -- actuals. Request'Access is appended to the list.
7173 ---------------------------
7174 -- Make_Request_RTE_Call --
7175 ---------------------------
7177 function Make_Request_RTE_Call
7179 Actuals
: List_Id
:= New_List
) return Node_Id
7183 Make_Attribute_Reference
(Loc
,
7184 Prefix
=> New_Occurrence_Of
(Request
, Loc
),
7185 Attribute_Name
=> Name_Access
));
7186 return Make_Procedure_Call_Statement
(Loc
,
7188 New_Occurrence_Of
(RTE
(RE
), Loc
),
7189 Parameter_Associations
=> Actuals
);
7190 end Make_Request_RTE_Call
;
7192 Arguments
: Node_Id
;
7193 -- Name of the named values list used to transmit parameters
7194 -- to the remote package
7197 -- Name of the result named value (in non-APC cases) which get the
7198 -- result of the remote subprogram.
7200 Result_TC
: Node_Id
;
7201 -- Typecode expression for the result of the request (void
7202 -- typecode for procedures).
7204 Exception_Return_Parameter
: Node_Id
;
7205 -- Name of the parameter which will hold the exception sent by the
7206 -- remote subprogram.
7208 Current_Parameter
: Node_Id
;
7209 -- Current parameter being handled
7211 Ordered_Parameters_List
: constant List_Id
:=
7212 Build_Ordered_Parameters_List
(Spec
);
7214 Asynchronous_P
: Node_Id
;
7215 -- A Boolean expression indicating whether this call is asynchronous
7217 Asynchronous_Statements
: List_Id
:= No_List
;
7218 Non_Asynchronous_Statements
: List_Id
:= No_List
;
7219 -- Statements specifics to the Asynchronous/Non-Asynchronous cases
7221 Extra_Formal_Statements
: constant List_Id
:= New_List
;
7222 -- List of statements for extra formal parameters. It will appear
7223 -- after the regular statements for writing out parameters.
7225 After_Statements
: constant List_Id
:= New_List
;
7226 -- Statements to be executed after call returns (to assign IN OUT or
7227 -- OUT parameter values).
7230 -- The type of the formal parameter being processed
7232 Is_Controlling_Formal
: Boolean;
7233 Is_First_Controlling_Formal
: Boolean;
7234 First_Controlling_Formal_Seen
: Boolean := False;
7235 -- Controlling formal parameters of distributed object primitives
7236 -- require special handling, and the first such parameter needs even
7237 -- more special handling.
7240 -- ??? document general form of stub subprograms for the PolyORB case
7243 Make_Object_Declaration
(Loc
,
7244 Defining_Identifier
=> Request
,
7245 Aliased_Present
=> True,
7246 Object_Definition
=>
7247 New_Occurrence_Of
(RTE
(RE_Request
), Loc
)));
7249 Result
:= Make_Temporary
(Loc
, 'R');
7253 PolyORB_Support
.Helpers
.Build_TypeCode_Call
7254 (Loc
, Etype
(Result_Definition
(Spec
)), Decls
);
7256 Result_TC
:= New_Occurrence_Of
(RTE
(RE_TC_Void
), Loc
);
7260 Make_Object_Declaration
(Loc
,
7261 Defining_Identifier
=> Result
,
7262 Aliased_Present
=> False,
7263 Object_Definition
=>
7264 New_Occurrence_Of
(RTE
(RE_NamedValue
), Loc
),
7266 Make_Aggregate
(Loc
,
7267 Component_Associations
=> New_List
(
7268 Make_Component_Association
(Loc
,
7269 Choices
=> New_List
(Make_Identifier
(Loc
, Name_Name
)),
7271 New_Occurrence_Of
(RTE
(RE_Result_Name
), Loc
)),
7272 Make_Component_Association
(Loc
,
7273 Choices
=> New_List
(
7274 Make_Identifier
(Loc
, Name_Argument
)),
7276 Make_Function_Call
(Loc
,
7277 Name
=> New_Occurrence_Of
(RTE
(RE_Create_Any
), Loc
),
7278 Parameter_Associations
=> New_List
(Result_TC
))),
7279 Make_Component_Association
(Loc
,
7280 Choices
=> New_List
(
7281 Make_Identifier
(Loc
, Name_Arg_Modes
)),
7282 Expression
=> Make_Integer_Literal
(Loc
, 0))))));
7284 if not Is_Known_Asynchronous
then
7285 Exception_Return_Parameter
:= Make_Temporary
(Loc
, 'E');
7288 Make_Object_Declaration
(Loc
,
7289 Defining_Identifier
=> Exception_Return_Parameter
,
7290 Object_Definition
=>
7291 New_Occurrence_Of
(RTE
(RE_Exception_Occurrence
), Loc
)));
7294 Exception_Return_Parameter
:= Empty
;
7297 -- Initialize and fill in arguments list
7299 Arguments
:= Make_Temporary
(Loc
, 'A');
7300 Declare_Create_NVList
(Loc
, Arguments
, Decls
, Statements
);
7302 Current_Parameter
:= First
(Ordered_Parameters_List
);
7303 while Present
(Current_Parameter
) loop
7304 if Is_RACW_Controlling_Formal
(Current_Parameter
, Stub_Type
) then
7305 Is_Controlling_Formal
:= True;
7306 Is_First_Controlling_Formal
:=
7307 not First_Controlling_Formal_Seen
;
7308 First_Controlling_Formal_Seen
:= True;
7311 Is_Controlling_Formal
:= False;
7312 Is_First_Controlling_Formal
:= False;
7315 if Is_Controlling_Formal
then
7317 -- For a controlling formal argument, we send its reference
7322 Etyp
:= Etype
(Parameter_Type
(Current_Parameter
));
7325 -- The first controlling formal parameter is treated specially:
7326 -- it is used to set the target object of the call.
7328 if not Is_First_Controlling_Formal
then
7330 Constrained
: constant Boolean :=
7331 Is_Constrained
(Etyp
)
7332 or else Is_Elementary_Type
(Etyp
);
7334 Any
: constant Entity_Id
:= Make_Temporary
(Loc
, 'A');
7336 Actual_Parameter
: Node_Id
:=
7338 Defining_Identifier
(
7339 Current_Parameter
), Loc
);
7344 if Is_Controlling_Formal
then
7346 -- For a controlling formal parameter (other than the
7347 -- first one), use the corresponding RACW. If the
7348 -- parameter is not an anonymous access parameter, that
7349 -- involves taking its 'Unrestricted_Access.
7351 if Nkind
(Parameter_Type
(Current_Parameter
))
7352 = N_Access_Definition
7354 Actual_Parameter
:= OK_Convert_To
7355 (Etyp
, Actual_Parameter
);
7357 Actual_Parameter
:= OK_Convert_To
(Etyp
,
7358 Make_Attribute_Reference
(Loc
,
7359 Prefix
=> Actual_Parameter
,
7360 Attribute_Name
=> Name_Unrestricted_Access
));
7365 if In_Present
(Current_Parameter
)
7366 or else not Out_Present
(Current_Parameter
)
7367 or else not Constrained
7368 or else Is_Controlling_Formal
7370 -- The parameter has an input value, is constrained at
7371 -- runtime by an input value, or is a controlling formal
7372 -- parameter (always passed as a reference) other than
7375 Expr
:= PolyORB_Support
.Helpers
.Build_To_Any_Call
7376 (Loc
, Actual_Parameter
, Decls
);
7379 Expr
:= Make_Function_Call
(Loc
,
7380 Name
=> New_Occurrence_Of
(RTE
(RE_Create_Any
), Loc
),
7381 Parameter_Associations
=> New_List
(
7382 PolyORB_Support
.Helpers
.Build_TypeCode_Call
7383 (Loc
, Etyp
, Decls
)));
7387 Make_Object_Declaration
(Loc
,
7388 Defining_Identifier
=> Any
,
7389 Aliased_Present
=> False,
7390 Object_Definition
=>
7391 New_Occurrence_Of
(RTE
(RE_Any
), Loc
),
7392 Expression
=> Expr
));
7394 Append_To
(Statements
,
7395 Add_Parameter_To_NVList
(Loc
,
7396 Parameter
=> Current_Parameter
,
7397 NVList
=> Arguments
,
7398 Constrained
=> Constrained
,
7401 if Out_Present
(Current_Parameter
)
7402 and then not Is_Controlling_Formal
7404 if Is_Limited_Type
(Etyp
) then
7405 Helpers
.Assign_Opaque_From_Any
(Loc
,
7406 Stms
=> After_Statements
,
7408 N
=> New_Occurrence_Of
(Any
, Loc
),
7410 Defining_Identifier
(Current_Parameter
),
7411 Constrained
=> True);
7414 Append_To
(After_Statements
,
7415 Make_Assignment_Statement
(Loc
,
7418 Defining_Identifier
(Current_Parameter
), Loc
),
7420 PolyORB_Support
.Helpers
.Build_From_Any_Call
7422 New_Occurrence_Of
(Any
, Loc
),
7429 -- If the current parameter has a dynamic constrained status, then
7430 -- this status is transmitted as well.
7432 -- This should be done for accessibility as well ???
7434 if Nkind
(Parameter_Type
(Current_Parameter
)) /=
7436 and then Need_Extra_Constrained
(Current_Parameter
)
7438 -- In this block, we do not use the extra formal that has been
7439 -- created because it does not exist at the time of expansion
7440 -- when building calling stubs for remote access to subprogram
7441 -- types. We create an extra variable of this type and push it
7442 -- in the stream after the regular parameters.
7445 Extra_Any_Parameter
: constant Entity_Id
:=
7446 Make_Temporary
(Loc
, 'P');
7448 Parameter_Exp
: constant Node_Id
:=
7449 Make_Attribute_Reference
(Loc
,
7450 Prefix
=> New_Occurrence_Of
(
7451 Defining_Identifier
(Current_Parameter
), Loc
),
7452 Attribute_Name
=> Name_Constrained
);
7455 Set_Etype
(Parameter_Exp
, Etype
(Standard_Boolean
));
7458 Make_Object_Declaration
(Loc
,
7459 Defining_Identifier
=> Extra_Any_Parameter
,
7460 Aliased_Present
=> False,
7461 Object_Definition
=>
7462 New_Occurrence_Of
(RTE
(RE_Any
), Loc
),
7464 PolyORB_Support
.Helpers
.Build_To_Any_Call
7465 (Loc
, Parameter_Exp
, Decls
)));
7467 Append_To
(Extra_Formal_Statements
,
7468 Add_Parameter_To_NVList
(Loc
,
7469 Parameter
=> Extra_Any_Parameter
,
7470 NVList
=> Arguments
,
7471 Constrained
=> True,
7472 Any
=> Extra_Any_Parameter
));
7476 Next
(Current_Parameter
);
7479 -- Append the formal statements list to the statements
7481 Append_List_To
(Statements
, Extra_Formal_Statements
);
7483 Append_To
(Statements
,
7484 Make_Procedure_Call_Statement
(Loc
,
7486 New_Occurrence_Of
(RTE
(RE_Request_Setup
), Loc
),
7487 Parameter_Associations
=> New_List
(
7488 New_Occurrence_Of
(Request
, Loc
),
7491 New_Occurrence_Of
(Arguments
, Loc
),
7492 New_Occurrence_Of
(Result
, Loc
),
7493 New_Occurrence_Of
(RTE
(RE_Nil_Exc_List
), Loc
))));
7496 (not (Is_Known_Non_Asynchronous
and Is_Known_Asynchronous
));
7498 if Is_Known_Non_Asynchronous
or Is_Known_Asynchronous
then
7501 (Boolean_Literals
(Is_Known_Asynchronous
), Loc
);
7504 pragma Assert
(Present
(Asynchronous
));
7505 Asynchronous_P
:= New_Copy_Tree
(Asynchronous
);
7507 -- The expression node Asynchronous will be used to build an 'if'
7508 -- statement at the end of Build_General_Calling_Stubs: we need to
7509 -- make a copy here.
7512 Append_To
(Parameter_Associations
(Last
(Statements
)),
7513 Make_Indexed_Component
(Loc
,
7516 RTE
(RE_Asynchronous_P_To_Sync_Scope
), Loc
),
7517 Expressions
=> New_List
(Asynchronous_P
)));
7519 Append_To
(Statements
, Make_Request_RTE_Call
(RE_Request_Invoke
));
7521 -- Asynchronous case
7523 if not Is_Known_Non_Asynchronous
then
7524 Asynchronous_Statements
:= New_List
(Make_Null_Statement
(Loc
));
7527 -- Non-asynchronous case
7529 if not Is_Known_Asynchronous
then
7530 -- Reraise an exception occurrence from the completed request.
7531 -- If the exception occurrence is empty, this is a no-op.
7533 Non_Asynchronous_Statements
:= New_List
(
7534 Make_Procedure_Call_Statement
(Loc
,
7536 New_Occurrence_Of
(RTE
(RE_Request_Raise_Occurrence
), Loc
),
7537 Parameter_Associations
=> New_List
(
7538 New_Occurrence_Of
(Request
, Loc
))));
7541 -- If this is a function call, read the value and return it
7543 Append_To
(Non_Asynchronous_Statements
,
7544 Make_Tag_Check
(Loc
,
7545 Make_Simple_Return_Statement
(Loc
,
7546 PolyORB_Support
.Helpers
.Build_From_Any_Call
7547 (Etype
(Result_Definition
(Spec
)),
7548 Make_Selected_Component
(Loc
,
7550 Selector_Name
=> Name_Argument
),
7555 -- Case of a procedure: deal with IN OUT and OUT formals
7557 Append_List_To
(Non_Asynchronous_Statements
, After_Statements
);
7561 if Is_Known_Asynchronous
then
7562 Append_List_To
(Statements
, Asynchronous_Statements
);
7564 elsif Is_Known_Non_Asynchronous
then
7565 Append_List_To
(Statements
, Non_Asynchronous_Statements
);
7568 pragma Assert
(Present
(Asynchronous
));
7569 Append_To
(Statements
,
7570 Make_Implicit_If_Statement
(Nod
,
7571 Condition
=> Asynchronous
,
7572 Then_Statements
=> Asynchronous_Statements
,
7573 Else_Statements
=> Non_Asynchronous_Statements
));
7575 end Build_General_Calling_Stubs
;
7577 -----------------------
7578 -- Build_Stub_Target --
7579 -----------------------
7581 function Build_Stub_Target
7584 RCI_Locator
: Entity_Id
;
7585 Controlling_Parameter
: Entity_Id
) return RPC_Target
7587 Target_Info
: RPC_Target
(PCS_Kind
=> Name_PolyORB_DSA
);
7588 Target_Reference
: constant Entity_Id
:= Make_Temporary
(Loc
, 'T');
7591 if Present
(Controlling_Parameter
) then
7593 Make_Object_Declaration
(Loc
,
7594 Defining_Identifier
=> Target_Reference
,
7596 Object_Definition
=>
7597 New_Occurrence_Of
(RTE
(RE_Object_Ref
), Loc
),
7600 Make_Function_Call
(Loc
,
7602 New_Occurrence_Of
(RTE
(RE_Make_Ref
), Loc
),
7603 Parameter_Associations
=> New_List
(
7604 Make_Selected_Component
(Loc
,
7605 Prefix
=> Controlling_Parameter
,
7606 Selector_Name
=> Name_Target
)))));
7608 -- Note: Controlling_Parameter has the same components as
7609 -- System.Partition_Interface.RACW_Stub_Type.
7611 Target_Info
.Object
:= New_Occurrence_Of
(Target_Reference
, Loc
);
7614 Target_Info
.Object
:=
7615 Make_Selected_Component
(Loc
,
7617 Make_Identifier
(Loc
, Chars
(RCI_Locator
)),
7619 Make_Identifier
(Loc
, Name_Get_RCI_Package_Ref
));
7623 end Build_Stub_Target
;
7625 -----------------------------
7626 -- Build_RPC_Receiver_Body --
7627 -----------------------------
7629 procedure Build_RPC_Receiver_Body
7630 (RPC_Receiver
: Entity_Id
;
7631 Request
: out Entity_Id
;
7632 Subp_Id
: out Entity_Id
;
7633 Subp_Index
: out Entity_Id
;
7634 Stmts
: out List_Id
;
7637 Loc
: constant Source_Ptr
:= Sloc
(RPC_Receiver
);
7639 RPC_Receiver_Spec
: Node_Id
;
7640 RPC_Receiver_Decls
: List_Id
;
7643 Request
:= Make_Defining_Identifier
(Loc
, Name_R
);
7645 RPC_Receiver_Spec
:=
7646 Build_RPC_Receiver_Specification
7647 (RPC_Receiver
=> RPC_Receiver
,
7648 Request_Parameter
=> Request
);
7650 Subp_Id
:= Make_Defining_Identifier
(Loc
, Name_P
);
7651 Subp_Index
:= Make_Defining_Identifier
(Loc
, Name_I
);
7653 RPC_Receiver_Decls
:= New_List
(
7654 Make_Object_Renaming_Declaration
(Loc
,
7655 Defining_Identifier
=> Subp_Id
,
7656 Subtype_Mark
=> New_Occurrence_Of
(Standard_String
, Loc
),
7658 Make_Explicit_Dereference
(Loc
,
7660 Make_Selected_Component
(Loc
,
7662 Selector_Name
=> Name_Operation
))),
7664 Make_Object_Declaration
(Loc
,
7665 Defining_Identifier
=> Subp_Index
,
7666 Object_Definition
=>
7667 New_Occurrence_Of
(RTE
(RE_Subprogram_Id
), Loc
),
7669 Make_Attribute_Reference
(Loc
,
7671 New_Occurrence_Of
(RTE
(RE_Subprogram_Id
), Loc
),
7672 Attribute_Name
=> Name_Last
)));
7677 Make_Subprogram_Body
(Loc
,
7678 Specification
=> RPC_Receiver_Spec
,
7679 Declarations
=> RPC_Receiver_Decls
,
7680 Handled_Statement_Sequence
=>
7681 Make_Handled_Sequence_Of_Statements
(Loc
,
7682 Statements
=> Stmts
));
7683 end Build_RPC_Receiver_Body
;
7685 --------------------------------------
7686 -- Build_Subprogram_Receiving_Stubs --
7687 --------------------------------------
7689 function Build_Subprogram_Receiving_Stubs
7690 (Vis_Decl
: Node_Id
;
7691 Asynchronous
: Boolean;
7692 Dynamically_Asynchronous
: Boolean := False;
7693 Stub_Type
: Entity_Id
:= Empty
;
7694 RACW_Type
: Entity_Id
:= Empty
;
7695 Parent_Primitive
: Entity_Id
:= Empty
) return Node_Id
7697 Loc
: constant Source_Ptr
:= Sloc
(Vis_Decl
);
7699 Request_Parameter
: constant Entity_Id
:= Make_Temporary
(Loc
, 'R');
7700 -- Formal parameter for receiving stubs: a descriptor for an incoming
7703 Outer_Decls
: constant List_Id
:= New_List
;
7704 -- At the outermost level, an NVList and Any's are declared for all
7705 -- parameters. The Dynamic_Async flag also needs to be declared there
7706 -- to be visible from the exception handling code.
7708 Outer_Statements
: constant List_Id
:= New_List
;
7709 -- Statements that occur prior to the declaration of the actual
7710 -- parameter variables.
7712 Outer_Extra_Formal_Statements
: constant List_Id
:= New_List
;
7713 -- Statements concerning extra formal parameters, prior to the
7714 -- declaration of the actual parameter variables.
7716 Decls
: constant List_Id
:= New_List
;
7717 -- All the parameters will get declared before calling the real
7718 -- subprograms. Also the out parameters will be declared. At this
7719 -- level, parameters may be unconstrained.
7721 Statements
: constant List_Id
:= New_List
;
7723 After_Statements
: constant List_Id
:= New_List
;
7724 -- Statements to be executed after the subprogram call
7726 Inner_Decls
: List_Id
:= No_List
;
7727 -- In case of a function, the inner declarations are needed since
7728 -- the result may be unconstrained.
7730 Excep_Handlers
: List_Id
:= No_List
;
7732 Parameter_List
: constant List_Id
:= New_List
;
7733 -- List of parameters to be passed to the subprogram
7735 First_Controlling_Formal_Seen
: Boolean := False;
7737 Current_Parameter
: Node_Id
;
7739 Ordered_Parameters_List
: constant List_Id
:=
7740 Build_Ordered_Parameters_List
7741 (Specification
(Vis_Decl
));
7743 Arguments
: constant Entity_Id
:= Make_Temporary
(Loc
, 'A');
7744 -- Name of the named values list used to retrieve parameters
7746 Subp_Spec
: Node_Id
;
7747 -- Subprogram specification
7749 Called_Subprogram
: Node_Id
;
7750 -- The subprogram to call
7753 if Present
(RACW_Type
) then
7754 Called_Subprogram
:=
7755 New_Occurrence_Of
(Parent_Primitive
, Loc
);
7757 Called_Subprogram
:=
7759 (Defining_Unit_Name
(Specification
(Vis_Decl
)), Loc
);
7762 Declare_Create_NVList
(Loc
, Arguments
, Outer_Decls
, Outer_Statements
);
7764 -- Loop through every parameter and get its value from the stream. If
7765 -- the parameter is unconstrained, then the parameter is read using
7766 -- 'Input at the point of declaration.
7768 Current_Parameter
:= First
(Ordered_Parameters_List
);
7769 while Present
(Current_Parameter
) loop
7772 Constrained
: Boolean;
7773 Any
: Entity_Id
:= Empty
;
7774 Object
: constant Entity_Id
:= Make_Temporary
(Loc
, 'P');
7775 Expr
: Node_Id
:= Empty
;
7777 Is_Controlling_Formal
: constant Boolean :=
7778 Is_RACW_Controlling_Formal
7779 (Current_Parameter
, Stub_Type
);
7781 Is_First_Controlling_Formal
: Boolean := False;
7783 Need_Extra_Constrained
: Boolean;
7784 -- True when an extra constrained actual is required
7787 if Is_Controlling_Formal
then
7789 -- Controlling formals in distributed object primitive
7790 -- operations are handled specially:
7792 -- - the first controlling formal is used as the
7793 -- target of the call;
7795 -- - the remaining controlling formals are transmitted
7799 Is_First_Controlling_Formal
:=
7800 not First_Controlling_Formal_Seen
;
7801 First_Controlling_Formal_Seen
:= True;
7804 Etyp
:= Etype
(Parameter_Type
(Current_Parameter
));
7808 Is_Constrained
(Etyp
) or else Is_Elementary_Type
(Etyp
);
7810 if not Is_First_Controlling_Formal
then
7811 Any
:= Make_Temporary
(Loc
, 'A');
7813 Append_To
(Outer_Decls
,
7814 Make_Object_Declaration
(Loc
,
7815 Defining_Identifier
=> Any
,
7816 Object_Definition
=>
7817 New_Occurrence_Of
(RTE
(RE_Any
), Loc
),
7819 Make_Function_Call
(Loc
,
7820 Name
=> New_Occurrence_Of
(RTE
(RE_Create_Any
), Loc
),
7821 Parameter_Associations
=> New_List
(
7822 PolyORB_Support
.Helpers
.Build_TypeCode_Call
7823 (Loc
, Etyp
, Outer_Decls
)))));
7825 Append_To
(Outer_Statements
,
7826 Add_Parameter_To_NVList
(Loc
,
7827 Parameter
=> Current_Parameter
,
7828 NVList
=> Arguments
,
7829 Constrained
=> Constrained
,
7833 if Is_First_Controlling_Formal
then
7835 Addr
: constant Entity_Id
:= Make_Temporary
(Loc
, 'A');
7837 Is_Local
: constant Entity_Id
:=
7838 Make_Temporary
(Loc
, 'L');
7841 -- Special case: obtain the first controlling formal
7842 -- from the target of the remote call, instead of the
7845 Append_To
(Outer_Decls
,
7846 Make_Object_Declaration
(Loc
,
7847 Defining_Identifier
=> Addr
,
7848 Object_Definition
=>
7849 New_Occurrence_Of
(RTE
(RE_Address
), Loc
)));
7851 Append_To
(Outer_Decls
,
7852 Make_Object_Declaration
(Loc
,
7853 Defining_Identifier
=> Is_Local
,
7854 Object_Definition
=>
7855 New_Occurrence_Of
(Standard_Boolean
, Loc
)));
7857 Append_To
(Outer_Statements
,
7858 Make_Procedure_Call_Statement
(Loc
,
7860 New_Occurrence_Of
(RTE
(RE_Get_Local_Address
), Loc
),
7861 Parameter_Associations
=> New_List
(
7862 Make_Selected_Component
(Loc
,
7865 Request_Parameter
, Loc
),
7867 Make_Identifier
(Loc
, Name_Target
)),
7868 New_Occurrence_Of
(Is_Local
, Loc
),
7869 New_Occurrence_Of
(Addr
, Loc
))));
7871 Expr
:= Unchecked_Convert_To
(RACW_Type
,
7872 New_Occurrence_Of
(Addr
, Loc
));
7875 elsif In_Present
(Current_Parameter
)
7876 or else not Out_Present
(Current_Parameter
)
7877 or else not Constrained
7879 -- If an input parameter is constrained, then its reading is
7880 -- deferred until the beginning of the subprogram body. If
7881 -- it is unconstrained, then an expression is built for
7882 -- the object declaration and the variable is set using
7883 -- 'Input instead of 'Read.
7885 if Constrained
and then Is_Limited_Type
(Etyp
) then
7886 Helpers
.Assign_Opaque_From_Any
(Loc
,
7889 N
=> New_Occurrence_Of
(Any
, Loc
),
7893 Expr
:= Helpers
.Build_From_Any_Call
7894 (Etyp
, New_Occurrence_Of
(Any
, Loc
), Decls
);
7897 Append_To
(Statements
,
7898 Make_Assignment_Statement
(Loc
,
7899 Name
=> New_Occurrence_Of
(Object
, Loc
),
7900 Expression
=> Expr
));
7904 -- Expr will be used to initialize (and constrain) the
7905 -- parameter when it is declared.
7913 Need_Extra_Constrained
:=
7914 Nkind
(Parameter_Type
(Current_Parameter
)) /=
7917 Ekind
(Defining_Identifier
(Current_Parameter
)) /= E_Void
7919 Present
(Extra_Constrained
7920 (Defining_Identifier
(Current_Parameter
)));
7922 -- We may not associate an extra constrained actual to a
7923 -- constant object, so if one is needed, declare the actual
7924 -- as a variable even if it won't be modified.
7926 Build_Actual_Object_Declaration
7929 Variable
=> Need_Extra_Constrained
7930 or else Out_Present
(Current_Parameter
),
7933 Set_Etype
(Object
, Etyp
);
7935 -- An out parameter may be written back using a 'Write
7936 -- attribute instead of a 'Output because it has been
7937 -- constrained by the parameter given to the caller. Note that
7938 -- OUT controlling arguments in the case of a RACW are not put
7939 -- back in the stream because the pointer on them has not
7942 if Out_Present
(Current_Parameter
)
7943 and then not Is_Controlling_Formal
7945 Append_To
(After_Statements
,
7946 Make_Procedure_Call_Statement
(Loc
,
7947 Name
=> New_Occurrence_Of
(RTE
(RE_Move_Any_Value
), Loc
),
7948 Parameter_Associations
=> New_List
(
7949 New_Occurrence_Of
(Any
, Loc
),
7950 PolyORB_Support
.Helpers
.Build_To_Any_Call
7952 New_Occurrence_Of
(Object
, Loc
),
7954 Constrained
=> True))));
7957 -- For RACW controlling formals, the Etyp of Object is always
7958 -- an RACW, even if the parameter is not of an anonymous access
7959 -- type. In such case, we need to dereference it at call time.
7961 if Is_Controlling_Formal
then
7962 if Nkind
(Parameter_Type
(Current_Parameter
)) /=
7965 Append_To
(Parameter_List
,
7966 Make_Parameter_Association
(Loc
,
7969 (Defining_Identifier
(Current_Parameter
), Loc
),
7970 Explicit_Actual_Parameter
=>
7971 Make_Explicit_Dereference
(Loc
,
7972 Prefix
=> New_Occurrence_Of
(Object
, Loc
))));
7975 Append_To
(Parameter_List
,
7976 Make_Parameter_Association
(Loc
,
7979 (Defining_Identifier
(Current_Parameter
), Loc
),
7981 Explicit_Actual_Parameter
=>
7982 New_Occurrence_Of
(Object
, Loc
)));
7986 Append_To
(Parameter_List
,
7987 Make_Parameter_Association
(Loc
,
7990 Defining_Identifier
(Current_Parameter
), Loc
),
7991 Explicit_Actual_Parameter
=>
7992 New_Occurrence_Of
(Object
, Loc
)));
7995 -- If the current parameter needs an extra formal, then read it
7996 -- from the stream and set the corresponding semantic field in
7997 -- the variable. If the kind of the parameter identifier is
7998 -- E_Void, then this is a compiler generated parameter that
7999 -- doesn't need an extra constrained status.
8001 -- The case of Extra_Accessibility should also be handled ???
8003 if Need_Extra_Constrained
then
8005 Extra_Parameter
: constant Entity_Id
:=
8007 (Defining_Identifier
8008 (Current_Parameter
));
8010 Extra_Any
: constant Entity_Id
:=
8011 Make_Temporary
(Loc
, 'A');
8013 Formal_Entity
: constant Entity_Id
:=
8014 Make_Defining_Identifier
(Loc
,
8015 Chars
=> Chars
(Extra_Parameter
));
8017 Formal_Type
: constant Entity_Id
:=
8018 Etype
(Extra_Parameter
);
8021 Append_To
(Outer_Decls
,
8022 Make_Object_Declaration
(Loc
,
8023 Defining_Identifier
=> Extra_Any
,
8024 Object_Definition
=>
8025 New_Occurrence_Of
(RTE
(RE_Any
), Loc
),
8027 Make_Function_Call
(Loc
,
8029 New_Occurrence_Of
(RTE
(RE_Create_Any
), Loc
),
8030 Parameter_Associations
=> New_List
(
8031 PolyORB_Support
.Helpers
.Build_TypeCode_Call
8032 (Loc
, Formal_Type
, Outer_Decls
)))));
8034 Append_To
(Outer_Extra_Formal_Statements
,
8035 Add_Parameter_To_NVList
(Loc
,
8036 Parameter
=> Extra_Parameter
,
8037 NVList
=> Arguments
,
8038 Constrained
=> True,
8042 Make_Object_Declaration
(Loc
,
8043 Defining_Identifier
=> Formal_Entity
,
8044 Object_Definition
=>
8045 New_Occurrence_Of
(Formal_Type
, Loc
)));
8047 Append_To
(Statements
,
8048 Make_Assignment_Statement
(Loc
,
8049 Name
=> New_Occurrence_Of
(Formal_Entity
, Loc
),
8051 PolyORB_Support
.Helpers
.Build_From_Any_Call
8053 New_Occurrence_Of
(Extra_Any
, Loc
),
8055 Set_Extra_Constrained
(Object
, Formal_Entity
);
8060 Next
(Current_Parameter
);
8063 -- Extra Formals should go after all the other parameters
8065 Append_List_To
(Outer_Statements
, Outer_Extra_Formal_Statements
);
8067 Append_To
(Outer_Statements
,
8068 Make_Procedure_Call_Statement
(Loc
,
8069 Name
=> New_Occurrence_Of
(RTE
(RE_Request_Arguments
), Loc
),
8070 Parameter_Associations
=> New_List
(
8071 New_Occurrence_Of
(Request_Parameter
, Loc
),
8072 New_Occurrence_Of
(Arguments
, Loc
))));
8074 if Nkind
(Specification
(Vis_Decl
)) = N_Function_Specification
then
8076 -- The remote subprogram is a function: Build an inner block to be
8077 -- able to hold a potentially unconstrained result in a variable.
8080 Etyp
: constant Entity_Id
:=
8081 Etype
(Result_Definition
(Specification
(Vis_Decl
)));
8082 Result
: constant Node_Id
:= Make_Temporary
(Loc
, 'R');
8085 Inner_Decls
:= New_List
(
8086 Make_Object_Declaration
(Loc
,
8087 Defining_Identifier
=> Result
,
8088 Constant_Present
=> True,
8089 Object_Definition
=> New_Occurrence_Of
(Etyp
, Loc
),
8091 Make_Function_Call
(Loc
,
8092 Name
=> Called_Subprogram
,
8093 Parameter_Associations
=> Parameter_List
)));
8095 if Is_Class_Wide_Type
(Etyp
) then
8097 -- For a remote call to a function with a class-wide type,
8098 -- check that the returned value satisfies the requirements
8101 Append_To
(Inner_Decls
,
8102 Make_Transportable_Check
(Loc
,
8103 New_Occurrence_Of
(Result
, Loc
)));
8107 Set_Etype
(Result
, Etyp
);
8108 Append_To
(After_Statements
,
8109 Make_Procedure_Call_Statement
(Loc
,
8110 Name
=> New_Occurrence_Of
(RTE
(RE_Set_Result
), Loc
),
8111 Parameter_Associations
=> New_List
(
8112 New_Occurrence_Of
(Request_Parameter
, Loc
),
8113 PolyORB_Support
.Helpers
.Build_To_Any_Call
8114 (Loc
, New_Occurrence_Of
(Result
, Loc
), Decls
))));
8116 -- A DSA function does not have out or inout arguments
8119 Append_To
(Statements
,
8120 Make_Block_Statement
(Loc
,
8121 Declarations
=> Inner_Decls
,
8122 Handled_Statement_Sequence
=>
8123 Make_Handled_Sequence_Of_Statements
(Loc
,
8124 Statements
=> After_Statements
)));
8127 -- The remote subprogram is a procedure. We do not need any inner
8128 -- block in this case. No specific processing is required here for
8129 -- the dynamically asynchronous case: the indication of whether
8130 -- call is asynchronous or not is managed by the Sync_Scope
8131 -- attibute of the request, and is handled entirely in the
8134 Append_To
(After_Statements
,
8135 Make_Procedure_Call_Statement
(Loc
,
8136 Name
=> New_Occurrence_Of
(RTE
(RE_Request_Set_Out
), Loc
),
8137 Parameter_Associations
=> New_List
(
8138 New_Occurrence_Of
(Request_Parameter
, Loc
))));
8140 Append_To
(Statements
,
8141 Make_Procedure_Call_Statement
(Loc
,
8142 Name
=> Called_Subprogram
,
8143 Parameter_Associations
=> Parameter_List
));
8145 Append_List_To
(Statements
, After_Statements
);
8149 Make_Procedure_Specification
(Loc
,
8150 Defining_Unit_Name
=> Make_Temporary
(Loc
, 'F'),
8152 Parameter_Specifications
=> New_List
(
8153 Make_Parameter_Specification
(Loc
,
8154 Defining_Identifier
=> Request_Parameter
,
8156 New_Occurrence_Of
(RTE
(RE_Request_Access
), Loc
))));
8158 -- An exception raised during the execution of an incoming remote
8159 -- subprogram call and that needs to be sent back to the caller is
8160 -- propagated by the receiving stubs, and will be handled by the
8161 -- caller (the distribution runtime).
8163 if Asynchronous
and then not Dynamically_Asynchronous
then
8165 -- For an asynchronous procedure, add a null exception handler
8167 Excep_Handlers
:= New_List
(
8168 Make_Implicit_Exception_Handler
(Loc
,
8169 Exception_Choices
=> New_List
(Make_Others_Choice
(Loc
)),
8170 Statements
=> New_List
(Make_Null_Statement
(Loc
))));
8173 -- In the other cases, if an exception is raised, then the
8174 -- exception occurrence is propagated.
8179 Append_To
(Outer_Statements
,
8180 Make_Block_Statement
(Loc
,
8181 Declarations
=> Decls
,
8182 Handled_Statement_Sequence
=>
8183 Make_Handled_Sequence_Of_Statements
(Loc
,
8184 Statements
=> Statements
)));
8187 Make_Subprogram_Body
(Loc
,
8188 Specification
=> Subp_Spec
,
8189 Declarations
=> Outer_Decls
,
8190 Handled_Statement_Sequence
=>
8191 Make_Handled_Sequence_Of_Statements
(Loc
,
8192 Statements
=> Outer_Statements
,
8193 Exception_Handlers
=> Excep_Handlers
));
8194 end Build_Subprogram_Receiving_Stubs
;
8200 package body Helpers
is
8202 -----------------------
8203 -- Local Subprograms --
8204 -----------------------
8206 function Find_Numeric_Representation
8207 (Typ
: Entity_Id
) return Entity_Id
;
8208 -- Given a numeric type Typ, return the smallest integer or modular
8209 -- type from Interfaces, or the smallest floating point type from
8210 -- Standard whose range encompasses that of Typ.
8212 function Make_Helper_Function_Name
8215 Nam
: Name_Id
) return Entity_Id
;
8216 -- Return the name to be assigned for helper subprogram Nam of Typ
8218 ------------------------------------------------------------
8219 -- Common subprograms for building various tree fragments --
8220 ------------------------------------------------------------
8222 function Build_Get_Aggregate_Element
8226 Idx
: Node_Id
) return Node_Id
;
8227 -- Build a call to Get_Aggregate_Element on Any for typecode TC,
8228 -- returning the Idx'th element.
8231 Subprogram
: Entity_Id
;
8232 -- Reference location for constructed nodes
8235 -- For 'Range and Etype
8238 -- For the construction of the innermost element expression
8240 with procedure Add_Process_Element
8243 Counter
: Entity_Id
;
8246 procedure Append_Array_Traversal
8249 Counter
: Entity_Id
:= Empty
;
8251 -- Build nested loop statements that iterate over the elements of an
8252 -- array Arry. The statement(s) built by Add_Process_Element are
8253 -- executed for each element; Indexes is the list of indexes to be
8254 -- used in the construction of the indexed component that denotes the
8255 -- current element. Subprogram is the entity for the subprogram for
8256 -- which this iterator is generated. The generated statements are
8257 -- appended to Stmts.
8261 -- The record entity being dealt with
8263 with procedure Add_Process_Element
8265 Container
: Node_Or_Entity_Id
;
8266 Counter
: in out Int
;
8269 -- Rec is the instance of the record type, or Empty.
8270 -- Field is either the N_Defining_Identifier for a component,
8271 -- or an N_Variant_Part.
8273 procedure Append_Record_Traversal
8276 Container
: Node_Or_Entity_Id
;
8277 Counter
: in out Int
);
8278 -- Process component list Clist. Individual fields are passed
8279 -- to Field_Processing. Each variant part is also processed.
8280 -- Container is the outer Any (for From_Any/To_Any),
8281 -- the outer typecode (for TC) to which the operation applies.
8283 -----------------------------
8284 -- Append_Record_Traversal --
8285 -----------------------------
8287 procedure Append_Record_Traversal
8290 Container
: Node_Or_Entity_Id
;
8291 Counter
: in out Int
)
8295 -- Clist's Component_Items and Variant_Part
8305 CI
:= Component_Items
(Clist
);
8306 VP
:= Variant_Part
(Clist
);
8309 while Present
(Item
) loop
8310 Def
:= Defining_Identifier
(Item
);
8312 if not Is_Internal_Name
(Chars
(Def
)) then
8314 (Stmts
, Container
, Counter
, Rec
, Def
);
8320 if Present
(VP
) then
8321 Add_Process_Element
(Stmts
, Container
, Counter
, Rec
, VP
);
8323 end Append_Record_Traversal
;
8325 -----------------------------
8326 -- Assign_Opaque_From_Any --
8327 -----------------------------
8329 procedure Assign_Opaque_From_Any
8335 Constrained
: Boolean := False)
8337 Strm
: constant Entity_Id
:= Make_Temporary
(Loc
, 'S');
8340 Read_Call_List
: List_Id
;
8341 -- List on which to place the 'Read attribute reference
8344 -- Strm : Buffer_Stream_Type;
8347 Make_Object_Declaration
(Loc
,
8348 Defining_Identifier
=> Strm
,
8349 Aliased_Present
=> True,
8350 Object_Definition
=>
8351 New_Occurrence_Of
(RTE
(RE_Buffer_Stream_Type
), Loc
)));
8353 -- Any_To_BS (Strm, A);
8356 Make_Procedure_Call_Statement
(Loc
,
8357 Name
=> New_Occurrence_Of
(RTE
(RE_Any_To_BS
), Loc
),
8358 Parameter_Associations
=> New_List
(
8360 New_Occurrence_Of
(Strm
, Loc
))));
8362 if Transmit_As_Unconstrained
(Typ
) and then not Constrained
then
8364 Make_Attribute_Reference
(Loc
,
8365 Prefix
=> New_Occurrence_Of
(Typ
, Loc
),
8366 Attribute_Name
=> Name_Input
,
8367 Expressions
=> New_List
(
8368 Make_Attribute_Reference
(Loc
,
8369 Prefix
=> New_Occurrence_Of
(Strm
, Loc
),
8370 Attribute_Name
=> Name_Access
)));
8372 -- Target := Typ'Input (Strm'Access)
8374 if Present
(Target
) then
8376 Make_Assignment_Statement
(Loc
,
8377 Name
=> New_Occurrence_Of
(Target
, Loc
),
8378 Expression
=> Expr
));
8380 -- return Typ'Input (Strm'Access);
8384 Make_Simple_Return_Statement
(Loc
,
8385 Expression
=> Expr
));
8389 if Present
(Target
) then
8390 Read_Call_List
:= Stms
;
8391 Expr
:= New_Occurrence_Of
(Target
, Loc
);
8395 Temp
: constant Entity_Id
:= Make_Temporary
(Loc
, 'R');
8398 Read_Call_List
:= New_List
;
8399 Expr
:= New_Occurrence_Of
(Temp
, Loc
);
8401 Append_To
(Stms
, Make_Block_Statement
(Loc
,
8402 Declarations
=> New_List
(
8403 Make_Object_Declaration
(Loc
,
8404 Defining_Identifier
=>
8406 Object_Definition
=>
8407 New_Occurrence_Of
(Typ
, Loc
))),
8409 Handled_Statement_Sequence
=>
8410 Make_Handled_Sequence_Of_Statements
(Loc
,
8411 Statements
=> Read_Call_List
)));
8415 -- Typ'Read (Strm'Access, [Target|Temp])
8417 Append_To
(Read_Call_List
,
8418 Make_Attribute_Reference
(Loc
,
8419 Prefix
=> New_Occurrence_Of
(Typ
, Loc
),
8420 Attribute_Name
=> Name_Read
,
8421 Expressions
=> New_List
(
8422 Make_Attribute_Reference
(Loc
,
8423 Prefix
=> New_Occurrence_Of
(Strm
, Loc
),
8424 Attribute_Name
=> Name_Access
),
8431 Append_To
(Read_Call_List
,
8432 Make_Simple_Return_Statement
(Loc
,
8433 Expression
=> New_Copy
(Expr
)));
8436 end Assign_Opaque_From_Any
;
8438 -------------------------
8439 -- Build_From_Any_Call --
8440 -------------------------
8442 function Build_From_Any_Call
8445 Decls
: List_Id
) return Node_Id
8447 Loc
: constant Source_Ptr
:= Sloc
(N
);
8449 U_Type
: Entity_Id
:= Underlying_Type
(Typ
);
8451 Fnam
: Entity_Id
:= Empty
;
8452 Lib_RE
: RE_Id
:= RE_Null
;
8456 -- First simple case where the From_Any function is present
8457 -- in the type's TSS.
8459 Fnam
:= Find_Inherited_TSS
(U_Type
, TSS_From_Any
);
8461 -- For the subtype representing a generic actual type, go to the
8464 if Is_Generic_Actual_Type
(U_Type
) then
8465 U_Type
:= Underlying_Type
(Base_Type
(U_Type
));
8468 -- For a standard subtype, go to the base type
8470 if Sloc
(U_Type
) <= Standard_Location
then
8471 U_Type
:= Base_Type
(U_Type
);
8473 -- For a user subtype, go to first subtype
8475 elsif Comes_From_Source
(U_Type
)
8476 and then Nkind
(Declaration_Node
(U_Type
))
8477 = N_Subtype_Declaration
8479 U_Type
:= First_Subtype
(U_Type
);
8482 -- Check first for Boolean and Character. These are enumeration
8483 -- types, but we treat them specially, since they may require
8484 -- special handling in the transfer protocol. However, this
8485 -- special handling only applies if they have standard
8486 -- representation, otherwise they are treated like any other
8487 -- enumeration type.
8489 if Present
(Fnam
) then
8492 elsif U_Type
= Standard_Boolean
then
8495 elsif U_Type
= Standard_Character
then
8498 elsif U_Type
= Standard_Wide_Character
then
8501 elsif U_Type
= Standard_Wide_Wide_Character
then
8502 Lib_RE
:= RE_FA_WWC
;
8504 -- Floating point types
8506 elsif U_Type
= Standard_Short_Float
then
8509 elsif U_Type
= Standard_Float
then
8512 elsif U_Type
= Standard_Long_Float
then
8515 elsif U_Type
= Standard_Long_Long_Float
then
8516 Lib_RE
:= RE_FA_LLF
;
8520 elsif U_Type
= RTE
(RE_Integer_8
) then
8523 elsif U_Type
= RTE
(RE_Integer_16
) then
8524 Lib_RE
:= RE_FA_I16
;
8526 elsif U_Type
= RTE
(RE_Integer_32
) then
8527 Lib_RE
:= RE_FA_I32
;
8529 elsif U_Type
= RTE
(RE_Integer_64
) then
8530 Lib_RE
:= RE_FA_I64
;
8532 -- Unsigned integer types
8534 elsif U_Type
= RTE
(RE_Unsigned_8
) then
8537 elsif U_Type
= RTE
(RE_Unsigned_16
) then
8538 Lib_RE
:= RE_FA_U16
;
8540 elsif U_Type
= RTE
(RE_Unsigned_32
) then
8541 Lib_RE
:= RE_FA_U32
;
8543 elsif U_Type
= RTE
(RE_Unsigned_64
) then
8544 Lib_RE
:= RE_FA_U64
;
8546 elsif Is_RTE
(U_Type
, RE_Unbounded_String
) then
8547 Lib_RE
:= RE_FA_String
;
8549 -- Special DSA types
8551 elsif Is_RTE
(U_Type
, RE_Any_Container_Ptr
) then
8554 -- Other (non-primitive) types
8561 Build_From_Any_Function
(Loc
, U_Type
, Decl
, Fnam
);
8562 Append_To
(Decls
, Decl
);
8566 -- Call the function
8568 if Lib_RE
/= RE_Null
then
8569 pragma Assert
(No
(Fnam
));
8570 Fnam
:= RTE
(Lib_RE
);
8574 Make_Function_Call
(Loc
,
8575 Name
=> New_Occurrence_Of
(Fnam
, Loc
),
8576 Parameter_Associations
=> New_List
(N
));
8578 -- We must set the type of Result, so the unchecked conversion
8579 -- from the underlying type to the base type is properly done.
8581 Set_Etype
(Result
, U_Type
);
8583 return Unchecked_Convert_To
(Typ
, Result
);
8584 end Build_From_Any_Call
;
8586 -----------------------------
8587 -- Build_From_Any_Function --
8588 -----------------------------
8590 procedure Build_From_Any_Function
8594 Fnam
: out Entity_Id
)
8597 Decls
: constant List_Id
:= New_List
;
8598 Stms
: constant List_Id
:= New_List
;
8600 Any_Parameter
: constant Entity_Id
:= Make_Temporary
(Loc
, 'A');
8602 Use_Opaque_Representation
: Boolean;
8605 -- For a derived type, we can't go past the base type (to the
8606 -- parent type) here, because that would cause the attribute's
8607 -- formal parameter to have the wrong type; hence the Base_Type
8610 if Is_Itype
(Typ
) and then Typ
/= Base_Type
(Typ
) then
8611 Build_From_Any_Function
8619 Fnam
:= Make_Helper_Function_Name
(Loc
, Typ
, Name_From_Any
);
8622 Make_Function_Specification
(Loc
,
8623 Defining_Unit_Name
=> Fnam
,
8624 Parameter_Specifications
=> New_List
(
8625 Make_Parameter_Specification
(Loc
,
8626 Defining_Identifier
=> Any_Parameter
,
8627 Parameter_Type
=> New_Occurrence_Of
(RTE
(RE_Any
), Loc
))),
8628 Result_Definition
=> New_Occurrence_Of
(Typ
, Loc
));
8630 -- The RACW case is taken care of by Exp_Dist.Add_RACW_From_Any
8633 (not (Is_Remote_Access_To_Class_Wide_Type
(Typ
)));
8635 Use_Opaque_Representation
:= False;
8637 if Has_Stream_Attribute_Definition
8638 (Typ
, TSS_Stream_Output
, At_Any_Place
=> True)
8640 Has_Stream_Attribute_Definition
8641 (Typ
, TSS_Stream_Write
, At_Any_Place
=> True)
8643 -- If user-defined stream attributes are specified for this
8644 -- type, use them and transmit data as an opaque sequence of
8647 Use_Opaque_Representation
:= True;
8649 elsif Is_Derived_Type
(Typ
) and then not Is_Tagged_Type
(Typ
) then
8651 Make_Simple_Return_Statement
(Loc
,
8656 New_Occurrence_Of
(Any_Parameter
, Loc
),
8659 elsif Is_Record_Type
(Typ
)
8660 and then not Is_Derived_Type
(Typ
)
8661 and then not Is_Tagged_Type
(Typ
)
8663 if Nkind
(Declaration_Node
(Typ
)) = N_Subtype_Declaration
then
8665 Make_Simple_Return_Statement
(Loc
,
8669 New_Occurrence_Of
(Any_Parameter
, Loc
),
8674 Disc
: Entity_Id
:= Empty
;
8675 Discriminant_Associations
: List_Id
;
8676 Rdef
: constant Node_Id
:=
8678 (Declaration_Node
(Typ
));
8679 Component_Counter
: Int
:= 0;
8681 -- The returned object
8683 Res
: constant Entity_Id
:= Make_Temporary
(Loc
, 'R');
8685 Res_Definition
: Node_Id
:= New_Occurrence_Of
(Typ
, Loc
);
8687 procedure FA_Rec_Add_Process_Element
8690 Counter
: in out Int
;
8694 procedure FA_Append_Record_Traversal
is
8695 new Append_Record_Traversal
8697 Add_Process_Element
=> FA_Rec_Add_Process_Element
);
8699 --------------------------------
8700 -- FA_Rec_Add_Process_Element --
8701 --------------------------------
8703 procedure FA_Rec_Add_Process_Element
8706 Counter
: in out Int
;
8712 if Nkind
(Field
) = N_Defining_Identifier
then
8713 -- A regular component
8715 Ctyp
:= Etype
(Field
);
8718 Make_Assignment_Statement
(Loc
,
8719 Name
=> Make_Selected_Component
(Loc
,
8721 New_Occurrence_Of
(Rec
, Loc
),
8723 New_Occurrence_Of
(Field
, Loc
)),
8726 Build_From_Any_Call
(Ctyp
,
8727 Build_Get_Aggregate_Element
(Loc
,
8730 Build_TypeCode_Call
(Loc
, Ctyp
, Decls
),
8732 Make_Integer_Literal
(Loc
, Counter
)),
8740 Struct_Counter
: Int
:= 0;
8742 Block_Decls
: constant List_Id
:= New_List
;
8743 Block_Stmts
: constant List_Id
:= New_List
;
8746 Alt_List
: constant List_Id
:= New_List
;
8747 Choice_List
: List_Id
;
8749 Struct_Any
: constant Entity_Id
:=
8750 Make_Temporary
(Loc
, 'S');
8754 Make_Object_Declaration
(Loc
,
8755 Defining_Identifier
=> Struct_Any
,
8756 Constant_Present
=> True,
8757 Object_Definition
=>
8758 New_Occurrence_Of
(RTE
(RE_Any
), Loc
),
8760 Make_Function_Call
(Loc
,
8763 (RTE
(RE_Extract_Union_Value
), Loc
),
8765 Parameter_Associations
=> New_List
(
8766 Build_Get_Aggregate_Element
(Loc
,
8769 Make_Function_Call
(Loc
,
8770 Name
=> New_Occurrence_Of
(
8771 RTE
(RE_Any_Member_Type
), Loc
),
8772 Parameter_Associations
=>
8774 New_Occurrence_Of
(Any
, Loc
),
8775 Make_Integer_Literal
(Loc
,
8776 Intval
=> Counter
))),
8778 Make_Integer_Literal
(Loc
,
8779 Intval
=> Counter
))))));
8782 Make_Block_Statement
(Loc
,
8783 Declarations
=> Block_Decls
,
8784 Handled_Statement_Sequence
=>
8785 Make_Handled_Sequence_Of_Statements
(Loc
,
8786 Statements
=> Block_Stmts
)));
8788 Append_To
(Block_Stmts
,
8789 Make_Case_Statement
(Loc
,
8791 Make_Selected_Component
(Loc
,
8793 Selector_Name
=> Chars
(Name
(Field
))),
8794 Alternatives
=> Alt_List
));
8796 Variant
:= First_Non_Pragma
(Variants
(Field
));
8797 while Present
(Variant
) loop
8800 (Discrete_Choices
(Variant
));
8802 VP_Stmts
:= New_List
;
8804 -- Struct_Counter should be reset before
8805 -- handling a variant part. Indeed only one
8806 -- of the case statement alternatives will be
8807 -- executed at run time, so the counter must
8808 -- start at 0 for every case statement.
8810 Struct_Counter
:= 0;
8812 FA_Append_Record_Traversal
(
8814 Clist
=> Component_List
(Variant
),
8815 Container
=> Struct_Any
,
8816 Counter
=> Struct_Counter
);
8818 Append_To
(Alt_List
,
8819 Make_Case_Statement_Alternative
(Loc
,
8820 Discrete_Choices
=> Choice_List
,
8821 Statements
=> VP_Stmts
));
8822 Next_Non_Pragma
(Variant
);
8827 Counter
:= Counter
+ 1;
8828 end FA_Rec_Add_Process_Element
;
8831 -- First all discriminants
8833 if Has_Discriminants
(Typ
) then
8834 Discriminant_Associations
:= New_List
;
8836 Disc
:= First_Discriminant
(Typ
);
8837 while Present
(Disc
) loop
8839 Disc_Var_Name
: constant Entity_Id
:=
8840 Make_Defining_Identifier
(Loc
,
8841 Chars
=> Chars
(Disc
));
8842 Disc_Type
: constant Entity_Id
:=
8847 Make_Object_Declaration
(Loc
,
8848 Defining_Identifier
=> Disc_Var_Name
,
8849 Constant_Present
=> True,
8850 Object_Definition
=>
8851 New_Occurrence_Of
(Disc_Type
, Loc
),
8854 Build_From_Any_Call
(Disc_Type
,
8855 Build_Get_Aggregate_Element
(Loc
,
8856 Any
=> Any_Parameter
,
8857 TC
=> Build_TypeCode_Call
8858 (Loc
, Disc_Type
, Decls
),
8859 Idx
=> Make_Integer_Literal
(Loc
,
8860 Intval
=> Component_Counter
)),
8863 Component_Counter
:= Component_Counter
+ 1;
8865 Append_To
(Discriminant_Associations
,
8866 Make_Discriminant_Association
(Loc
,
8867 Selector_Names
=> New_List
(
8868 New_Occurrence_Of
(Disc
, Loc
)),
8870 New_Occurrence_Of
(Disc_Var_Name
, Loc
)));
8872 Next_Discriminant
(Disc
);
8876 Make_Subtype_Indication
(Loc
,
8877 Subtype_Mark
=> Res_Definition
,
8879 Make_Index_Or_Discriminant_Constraint
(Loc
,
8880 Discriminant_Associations
));
8883 -- Now we have all the discriminants in variables, we can
8884 -- declared a constrained object. Note that we are not
8885 -- initializing (non-discriminant) components directly in
8886 -- the object declarations, because which fields to
8887 -- initialize depends (at run time) on the discriminant
8891 Make_Object_Declaration
(Loc
,
8892 Defining_Identifier
=> Res
,
8893 Object_Definition
=> Res_Definition
));
8895 -- ... then all components
8897 FA_Append_Record_Traversal
(Stms
,
8898 Clist
=> Component_List
(Rdef
),
8899 Container
=> Any_Parameter
,
8900 Counter
=> Component_Counter
);
8903 Make_Simple_Return_Statement
(Loc
,
8904 Expression
=> New_Occurrence_Of
(Res
, Loc
)));
8908 elsif Is_Array_Type
(Typ
) then
8910 Constrained
: constant Boolean := Is_Constrained
(Typ
);
8912 procedure FA_Ary_Add_Process_Element
8915 Counter
: Entity_Id
;
8917 -- Assign the current element (as identified by Counter) of
8918 -- Any to the variable denoted by name Datum, and advance
8919 -- Counter by 1. If Datum is not an Any, a call to From_Any
8920 -- for its type is inserted.
8922 --------------------------------
8923 -- FA_Ary_Add_Process_Element --
8924 --------------------------------
8926 procedure FA_Ary_Add_Process_Element
8929 Counter
: Entity_Id
;
8932 Assignment
: constant Node_Id
:=
8933 Make_Assignment_Statement
(Loc
,
8935 Expression
=> Empty
);
8937 Element_Any
: Node_Id
;
8941 Element_TC
: Node_Id
;
8944 if Etype
(Datum
) = RTE
(RE_Any
) then
8946 -- When Datum is an Any the Etype field is not
8947 -- sufficient to determine the typecode of Datum
8948 -- (which can be a TC_SEQUENCE or TC_ARRAY
8949 -- depending on the value of Constrained).
8951 -- Therefore we retrieve the typecode which has
8952 -- been constructed in Append_Array_Traversal with
8953 -- a call to Get_Any_Type.
8956 Make_Function_Call
(Loc
,
8957 Name
=> New_Occurrence_Of
(
8958 RTE
(RE_Get_Any_Type
), Loc
),
8959 Parameter_Associations
=> New_List
(
8960 New_Occurrence_Of
(Entity
(Datum
), Loc
)));
8962 -- For non Any Datum we simply construct a typecode
8963 -- matching the Etype of the Datum.
8965 Element_TC
:= Build_TypeCode_Call
8966 (Loc
, Etype
(Datum
), Decls
);
8970 Build_Get_Aggregate_Element
(Loc
,
8973 Idx
=> New_Occurrence_Of
(Counter
, Loc
));
8976 -- Note: here we *prepend* statements to Stmts, so
8977 -- we must do it in reverse order.
8980 Make_Assignment_Statement
(Loc
,
8982 New_Occurrence_Of
(Counter
, Loc
),
8985 Left_Opnd
=> New_Occurrence_Of
(Counter
, Loc
),
8986 Right_Opnd
=> Make_Integer_Literal
(Loc
, 1))));
8988 if Nkind
(Datum
) /= N_Attribute_Reference
then
8990 -- We ignore the value of the length of each
8991 -- dimension, since the target array has already been
8992 -- constrained anyway.
8994 if Etype
(Datum
) /= RTE
(RE_Any
) then
8995 Set_Expression
(Assignment
,
8997 (Component_Type
(Typ
), Element_Any
, Decls
));
8999 Set_Expression
(Assignment
, Element_Any
);
9002 Prepend_To
(Stmts
, Assignment
);
9004 end FA_Ary_Add_Process_Element
;
9006 ------------------------
9007 -- Local Declarations --
9008 ------------------------
9010 Counter
: constant Entity_Id
:=
9011 Make_Defining_Identifier
(Loc
, Name_J
);
9013 Initial_Counter_Value
: Int
:= 0;
9015 Component_TC
: constant Entity_Id
:=
9016 Make_Defining_Identifier
(Loc
, Name_T
);
9018 Res
: constant Entity_Id
:=
9019 Make_Defining_Identifier
(Loc
, Name_R
);
9021 procedure Append_From_Any_Array_Iterator
is
9022 new Append_Array_Traversal
(
9025 Indexes
=> New_List
,
9026 Add_Process_Element
=> FA_Ary_Add_Process_Element
);
9028 Res_Subtype_Indication
: Node_Id
:=
9029 New_Occurrence_Of
(Typ
, Loc
);
9032 if not Constrained
then
9034 Ndim
: constant Int
:= Number_Dimensions
(Typ
);
9037 Indx
: Node_Id
:= First_Index
(Typ
);
9040 Ranges
: constant List_Id
:= New_List
;
9043 for J
in 1 .. Ndim
loop
9044 Lnam
:= New_External_Name
('L', J
);
9045 Hnam
:= New_External_Name
('H', J
);
9047 -- Note, for empty arrays bounds may be out of
9048 -- the range of Etype (Indx).
9050 Indt
:= Base_Type
(Etype
(Indx
));
9053 Make_Object_Declaration
(Loc
,
9054 Defining_Identifier
=>
9055 Make_Defining_Identifier
(Loc
, Lnam
),
9056 Constant_Present
=> True,
9057 Object_Definition
=>
9058 New_Occurrence_Of
(Indt
, Loc
),
9062 Build_Get_Aggregate_Element
(Loc
,
9063 Any
=> Any_Parameter
,
9064 TC
=> Build_TypeCode_Call
9067 Make_Integer_Literal
(Loc
, J
- 1)),
9071 Make_Object_Declaration
(Loc
,
9072 Defining_Identifier
=>
9073 Make_Defining_Identifier
(Loc
, Hnam
),
9075 Constant_Present
=> True,
9077 Object_Definition
=>
9078 New_Occurrence_Of
(Indt
, Loc
),
9080 Expression
=> Make_Attribute_Reference
(Loc
,
9082 New_Occurrence_Of
(Indt
, Loc
),
9084 Attribute_Name
=> Name_Val
,
9086 Expressions
=> New_List
(
9087 Make_Op_Subtract
(Loc
,
9092 (Standard_Long_Integer
,
9093 Make_Identifier
(Loc
, Lnam
)),
9097 (Standard_Long_Integer
,
9098 Make_Function_Call
(Loc
,
9100 New_Occurrence_Of
(RTE
(
9101 RE_Get_Nested_Sequence_Length
9103 Parameter_Associations
=>
9106 Any_Parameter
, Loc
),
9107 Make_Integer_Literal
(Loc
,
9111 Make_Integer_Literal
(Loc
, 1))))));
9115 Low_Bound
=> Make_Identifier
(Loc
, Lnam
),
9116 High_Bound
=> Make_Identifier
(Loc
, Hnam
)));
9121 -- Now we have all the necessary bound information:
9122 -- apply the set of range constraints to the
9123 -- (unconstrained) nominal subtype of Res.
9125 Initial_Counter_Value
:= Ndim
;
9126 Res_Subtype_Indication
:= Make_Subtype_Indication
(Loc
,
9127 Subtype_Mark
=> Res_Subtype_Indication
,
9129 Make_Index_Or_Discriminant_Constraint
(Loc
,
9130 Constraints
=> Ranges
));
9135 Make_Object_Declaration
(Loc
,
9136 Defining_Identifier
=> Res
,
9137 Object_Definition
=> Res_Subtype_Indication
));
9138 Set_Etype
(Res
, Typ
);
9141 Make_Object_Declaration
(Loc
,
9142 Defining_Identifier
=> Counter
,
9143 Object_Definition
=>
9144 New_Occurrence_Of
(RTE
(RE_Unsigned_32
), Loc
),
9146 Make_Integer_Literal
(Loc
, Initial_Counter_Value
)));
9149 Make_Object_Declaration
(Loc
,
9150 Defining_Identifier
=> Component_TC
,
9151 Constant_Present
=> True,
9152 Object_Definition
=>
9153 New_Occurrence_Of
(RTE
(RE_TypeCode
), Loc
),
9155 Build_TypeCode_Call
(Loc
,
9156 Component_Type
(Typ
), Decls
)));
9158 Append_From_Any_Array_Iterator
9159 (Stms
, Any_Parameter
, Counter
);
9162 Make_Simple_Return_Statement
(Loc
,
9163 Expression
=> New_Occurrence_Of
(Res
, Loc
)));
9166 elsif Is_Integer_Type
(Typ
) or else Is_Unsigned_Type
(Typ
) then
9168 Make_Simple_Return_Statement
(Loc
,
9170 Unchecked_Convert_To
(Typ
,
9172 (Find_Numeric_Representation
(Typ
),
9173 New_Occurrence_Of
(Any_Parameter
, Loc
),
9177 Use_Opaque_Representation
:= True;
9180 if Use_Opaque_Representation
then
9181 Assign_Opaque_From_Any
(Loc
,
9184 N
=> New_Occurrence_Of
(Any_Parameter
, Loc
),
9189 Make_Subprogram_Body
(Loc
,
9190 Specification
=> Spec
,
9191 Declarations
=> Decls
,
9192 Handled_Statement_Sequence
=>
9193 Make_Handled_Sequence_Of_Statements
(Loc
,
9194 Statements
=> Stms
));
9195 end Build_From_Any_Function
;
9197 ---------------------------------
9198 -- Build_Get_Aggregate_Element --
9199 ---------------------------------
9201 function Build_Get_Aggregate_Element
9205 Idx
: Node_Id
) return Node_Id
9208 return Make_Function_Call
(Loc
,
9210 New_Occurrence_Of
(RTE
(RE_Get_Aggregate_Element
), Loc
),
9211 Parameter_Associations
=> New_List
(
9212 New_Occurrence_Of
(Any
, Loc
),
9215 end Build_Get_Aggregate_Element
;
9217 -------------------------
9218 -- Build_Reposiroty_Id --
9219 -------------------------
9221 procedure Build_Name_And_Repository_Id
9223 Name_Str
: out String_Id
;
9224 Repo_Id_Str
: out String_Id
)
9227 Name_Str
:= Fully_Qualified_Name_String
(E
, Append_NUL
=> False);
9229 Store_String_Chars
("DSA:");
9230 Store_String_Chars
(Name_Str
);
9231 Store_String_Chars
(":1.0");
9232 Repo_Id_Str
:= End_String
;
9233 end Build_Name_And_Repository_Id
;
9235 -----------------------
9236 -- Build_To_Any_Call --
9237 -----------------------
9239 function Build_To_Any_Call
9243 Constrained
: Boolean := False) return Node_Id
9245 Typ
: Entity_Id
:= Etype
(N
);
9248 Fnam
: Entity_Id
:= Empty
;
9249 Lib_RE
: RE_Id
:= RE_Null
;
9252 -- If N is a selected component, then maybe its Etype has not been
9253 -- set yet: try to use Etype of the selector_name in that case.
9255 if No
(Typ
) and then Nkind
(N
) = N_Selected_Component
then
9256 Typ
:= Etype
(Selector_Name
(N
));
9259 pragma Assert
(Present
(Typ
));
9261 -- Get full view for private type, completion for incomplete type
9263 U_Type
:= Underlying_Type
(Typ
);
9265 -- First simple case where the To_Any function is present in the
9268 Fnam
:= Find_Inherited_TSS
(U_Type
, TSS_To_Any
);
9270 -- For the subtype representing a generic actual type, go to the
9273 if Is_Generic_Actual_Type
(U_Type
) then
9274 U_Type
:= Underlying_Type
(Base_Type
(U_Type
));
9277 -- For a standard subtype, go to the base type
9279 if Sloc
(U_Type
) <= Standard_Location
then
9280 U_Type
:= Base_Type
(U_Type
);
9282 -- For a user subtype, go to first subtype
9284 elsif Comes_From_Source
(U_Type
)
9285 and then Nkind
(Declaration_Node
(U_Type
))
9286 = N_Subtype_Declaration
9288 U_Type
:= First_Subtype
(U_Type
);
9291 if Present
(Fnam
) then
9294 -- Check first for Boolean and Character. These are enumeration
9295 -- types, but we treat them specially, since they may require
9296 -- special handling in the transfer protocol. However, this
9297 -- special handling only applies if they have standard
9298 -- representation, otherwise they are treated like any other
9299 -- enumeration type.
9301 elsif U_Type
= Standard_Boolean
then
9304 elsif U_Type
= Standard_Character
then
9307 elsif U_Type
= Standard_Wide_Character
then
9310 elsif U_Type
= Standard_Wide_Wide_Character
then
9311 Lib_RE
:= RE_TA_WWC
;
9313 -- Floating point types
9315 elsif U_Type
= Standard_Short_Float
then
9318 elsif U_Type
= Standard_Float
then
9321 elsif U_Type
= Standard_Long_Float
then
9324 elsif U_Type
= Standard_Long_Long_Float
then
9325 Lib_RE
:= RE_TA_LLF
;
9329 elsif U_Type
= RTE
(RE_Integer_8
) then
9332 elsif U_Type
= RTE
(RE_Integer_16
) then
9333 Lib_RE
:= RE_TA_I16
;
9335 elsif U_Type
= RTE
(RE_Integer_32
) then
9336 Lib_RE
:= RE_TA_I32
;
9338 elsif U_Type
= RTE
(RE_Integer_64
) then
9339 Lib_RE
:= RE_TA_I64
;
9341 -- Unsigned integer types
9343 elsif U_Type
= RTE
(RE_Unsigned_8
) then
9346 elsif U_Type
= RTE
(RE_Unsigned_16
) then
9347 Lib_RE
:= RE_TA_U16
;
9349 elsif U_Type
= RTE
(RE_Unsigned_32
) then
9350 Lib_RE
:= RE_TA_U32
;
9352 elsif U_Type
= RTE
(RE_Unsigned_64
) then
9353 Lib_RE
:= RE_TA_U64
;
9355 elsif Is_RTE
(U_Type
, RE_Unbounded_String
) then
9356 Lib_RE
:= RE_TA_String
;
9358 -- Special DSA types
9360 elsif Is_RTE
(U_Type
, RE_Any_Container_Ptr
) then
9364 elsif U_Type
= Underlying_Type
(RTE
(RE_TypeCode
)) then
9366 -- No corresponding FA_TC ???
9370 -- Other (non-primitive) types
9376 Build_To_Any_Function
(Loc
, U_Type
, Decl
, Fnam
);
9377 Append_To
(Decls
, Decl
);
9381 -- Call the function
9383 if Lib_RE
/= RE_Null
then
9384 pragma Assert
(No
(Fnam
));
9385 Fnam
:= RTE
(Lib_RE
);
9388 -- If Fnam is already analyzed, find the proper expected type,
9389 -- else we have a newly constructed To_Any function and we know
9390 -- that the expected type of its parameter is U_Type.
9392 if Ekind
(Fnam
) = E_Function
9393 and then Present
(First_Formal
(Fnam
))
9395 C_Type
:= Etype
(First_Formal
(Fnam
));
9401 Params
: constant List_Id
:=
9402 New_List
(OK_Convert_To
(C_Type
, N
));
9404 if Is_Limited_Type
(C_Type
) then
9406 New_Occurrence_Of
(Boolean_Literals
(Constrained
), Loc
));
9410 Make_Function_Call
(Loc
,
9411 Name
=> New_Occurrence_Of
(Fnam
, Loc
),
9412 Parameter_Associations
=> Params
);
9414 end Build_To_Any_Call
;
9416 ---------------------------
9417 -- Build_To_Any_Function --
9418 ---------------------------
9420 procedure Build_To_Any_Function
9424 Fnam
: out Entity_Id
)
9431 Expr_Formal
: Entity_Id
;
9432 Cstr_Formal
: Entity_Id
;
9434 Result_TC
: Node_Id
;
9438 Use_Opaque_Representation
: Boolean;
9439 -- When True, use stream attributes and represent type as an
9440 -- opaque sequence of bytes.
9443 -- For a derived type, we can't go past the base type (to the
9444 -- parent type) here, because that would cause the attribute's
9445 -- formal parameter to have the wrong type; hence the Base_Type
9448 if Is_Itype
(Typ
) and then Typ
/= Base_Type
(Typ
) then
9449 Build_To_Any_Function
9460 Any
:= Make_Defining_Identifier
(Loc
, Name_A
);
9461 Result_TC
:= Build_TypeCode_Call
(Loc
, Typ
, Decls
);
9463 Fnam
:= Make_Helper_Function_Name
(Loc
, Typ
, Name_To_Any
);
9465 Expr_Formal
:= Make_Defining_Identifier
(Loc
, Name_E
);
9466 Params
:= New_List
(
9467 Make_Parameter_Specification
(Loc
,
9468 Defining_Identifier
=> Expr_Formal
,
9469 Parameter_Type
=> New_Occurrence_Of
(Typ
, Loc
)));
9470 Set_Etype
(Expr_Formal
, Typ
);
9472 if Is_Limited_Type
(Typ
) then
9473 Cstr_Formal
:= Make_Defining_Identifier
(Loc
, Name_C
);
9475 Make_Parameter_Specification
(Loc
,
9476 Defining_Identifier
=> Cstr_Formal
,
9478 New_Occurrence_Of
(Standard_Boolean
, Loc
)));
9482 Make_Function_Specification
(Loc
,
9483 Defining_Unit_Name
=> Fnam
,
9484 Parameter_Specifications
=> Params
,
9485 Result_Definition
=>
9486 New_Occurrence_Of
(RTE
(RE_Any
), Loc
));
9489 Make_Object_Declaration
(Loc
,
9490 Defining_Identifier
=> Any
,
9491 Object_Definition
=> New_Occurrence_Of
(RTE
(RE_Any
), Loc
));
9493 Use_Opaque_Representation
:= False;
9495 if Has_Stream_Attribute_Definition
9496 (Typ
, TSS_Stream_Output
, At_Any_Place
=> True)
9498 Has_Stream_Attribute_Definition
9499 (Typ
, TSS_Stream_Write
, At_Any_Place
=> True)
9501 -- If user-defined stream attributes are specified for this
9502 -- type, use them and transmit data as an opaque sequence of
9505 Use_Opaque_Representation
:= True;
9507 elsif Is_Derived_Type
(Typ
) and then not Is_Tagged_Type
(Typ
) then
9509 -- Untagged derived type: convert to root type
9512 Rt_Type
: constant Entity_Id
:= Root_Type
(Typ
);
9513 Expr
: constant Node_Id
:=
9516 New_Occurrence_Of
(Expr_Formal
, Loc
));
9518 Set_Expression
(Any_Decl
,
9519 Build_To_Any_Call
(Loc
, Expr
, Decls
));
9522 elsif Is_Record_Type
(Typ
) and then not Is_Tagged_Type
(Typ
) then
9524 -- Untagged record type
9526 if Nkind
(Declaration_Node
(Typ
)) = N_Subtype_Declaration
then
9528 Rt_Type
: constant Entity_Id
:= Etype
(Typ
);
9529 Expr
: constant Node_Id
:=
9530 OK_Convert_To
(Rt_Type
,
9531 New_Occurrence_Of
(Expr_Formal
, Loc
));
9535 (Any_Decl
, Build_To_Any_Call
(Loc
, Expr
, Decls
));
9538 -- Comment needed here (and label on declare block ???)
9542 Disc
: Entity_Id
:= Empty
;
9543 Rdef
: constant Node_Id
:=
9544 Type_Definition
(Declaration_Node
(Typ
));
9546 Elements
: constant List_Id
:= New_List
;
9548 procedure TA_Rec_Add_Process_Element
9550 Container
: Node_Or_Entity_Id
;
9551 Counter
: in out Int
;
9554 -- Processing routine for traversal below
9556 procedure TA_Append_Record_Traversal
is
9557 new Append_Record_Traversal
9558 (Rec
=> Expr_Formal
,
9559 Add_Process_Element
=> TA_Rec_Add_Process_Element
);
9561 --------------------------------
9562 -- TA_Rec_Add_Process_Element --
9563 --------------------------------
9565 procedure TA_Rec_Add_Process_Element
9567 Container
: Node_Or_Entity_Id
;
9568 Counter
: in out Int
;
9572 Field_Ref
: Node_Id
;
9575 if Nkind
(Field
) = N_Defining_Identifier
then
9577 -- A regular component
9579 Field_Ref
:= Make_Selected_Component
(Loc
,
9580 Prefix
=> New_Occurrence_Of
(Rec
, Loc
),
9581 Selector_Name
=> New_Occurrence_Of
(Field
, Loc
));
9582 Set_Etype
(Field_Ref
, Etype
(Field
));
9585 Make_Procedure_Call_Statement
(Loc
,
9588 RTE
(RE_Add_Aggregate_Element
), Loc
),
9589 Parameter_Associations
=> New_List
(
9590 New_Occurrence_Of
(Container
, Loc
),
9591 Build_To_Any_Call
(Loc
, Field_Ref
, Decls
))));
9596 Variant_Part
: declare
9598 Struct_Counter
: Int
:= 0;
9600 Block_Decls
: constant List_Id
:= New_List
;
9601 Block_Stmts
: constant List_Id
:= New_List
;
9604 Alt_List
: constant List_Id
:= New_List
;
9605 Choice_List
: List_Id
;
9607 Union_Any
: constant Entity_Id
:=
9608 Make_Temporary
(Loc
, 'V');
9610 Struct_Any
: constant Entity_Id
:=
9611 Make_Temporary
(Loc
, 'S');
9613 function Make_Discriminant_Reference
9615 -- Build reference to the discriminant for this
9618 ---------------------------------
9619 -- Make_Discriminant_Reference --
9620 ---------------------------------
9622 function Make_Discriminant_Reference
9625 Nod
: constant Node_Id
:=
9626 Make_Selected_Component
(Loc
,
9629 Chars
(Name
(Field
)));
9631 Set_Etype
(Nod
, Etype
(Name
(Field
)));
9633 end Make_Discriminant_Reference
;
9635 -- Start of processing for Variant_Part
9639 Make_Block_Statement
(Loc
,
9642 Handled_Statement_Sequence
=>
9643 Make_Handled_Sequence_Of_Statements
(Loc
,
9644 Statements
=> Block_Stmts
)));
9646 -- Declare variant part aggregate (Union_Any).
9647 -- Knowing the position of this VP in the
9648 -- variant record, we can fetch the VP typecode
9651 Append_To
(Block_Decls
,
9652 Make_Object_Declaration
(Loc
,
9653 Defining_Identifier
=> Union_Any
,
9654 Object_Definition
=>
9655 New_Occurrence_Of
(RTE
(RE_Any
), Loc
),
9657 Make_Function_Call
(Loc
,
9658 Name
=> New_Occurrence_Of
(
9659 RTE
(RE_Create_Any
), Loc
),
9660 Parameter_Associations
=> New_List
(
9661 Make_Function_Call
(Loc
,
9664 RTE
(RE_Any_Member_Type
), Loc
),
9665 Parameter_Associations
=> New_List
(
9666 New_Occurrence_Of
(Container
, Loc
),
9667 Make_Integer_Literal
(Loc
,
9670 -- Declare inner struct aggregate (which
9671 -- contains the components of this VP).
9673 Append_To
(Block_Decls
,
9674 Make_Object_Declaration
(Loc
,
9675 Defining_Identifier
=> Struct_Any
,
9676 Object_Definition
=>
9677 New_Occurrence_Of
(RTE
(RE_Any
), Loc
),
9679 Make_Function_Call
(Loc
,
9680 Name
=> New_Occurrence_Of
(
9681 RTE
(RE_Create_Any
), Loc
),
9682 Parameter_Associations
=> New_List
(
9683 Make_Function_Call
(Loc
,
9686 RTE
(RE_Any_Member_Type
), Loc
),
9687 Parameter_Associations
=> New_List
(
9688 New_Occurrence_Of
(Union_Any
, Loc
),
9689 Make_Integer_Literal
(Loc
,
9692 -- Build case statement
9694 Append_To
(Block_Stmts
,
9695 Make_Case_Statement
(Loc
,
9696 Expression
=> Make_Discriminant_Reference
,
9697 Alternatives
=> Alt_List
));
9699 Variant
:= First_Non_Pragma
(Variants
(Field
));
9700 while Present
(Variant
) loop
9701 Choice_List
:= New_Copy_List_Tree
9702 (Discrete_Choices
(Variant
));
9704 VP_Stmts
:= New_List
;
9706 -- Append discriminant val to union aggregate
9708 Append_To
(VP_Stmts
,
9709 Make_Procedure_Call_Statement
(Loc
,
9712 RTE
(RE_Add_Aggregate_Element
), Loc
),
9713 Parameter_Associations
=> New_List
(
9714 New_Occurrence_Of
(Union_Any
, Loc
),
9717 Make_Discriminant_Reference
,
9720 -- Populate inner struct aggregate
9722 -- Struct_Counter should be reset before
9723 -- handling a variant part. Indeed only one
9724 -- of the case statement alternatives will be
9725 -- executed at run time, so the counter must
9726 -- start at 0 for every case statement.
9728 Struct_Counter
:= 0;
9730 TA_Append_Record_Traversal
9732 Clist
=> Component_List
(Variant
),
9733 Container
=> Struct_Any
,
9734 Counter
=> Struct_Counter
);
9736 -- Append inner struct to union aggregate
9738 Append_To
(VP_Stmts
,
9739 Make_Procedure_Call_Statement
(Loc
,
9742 (RTE
(RE_Add_Aggregate_Element
), Loc
),
9743 Parameter_Associations
=> New_List
(
9744 New_Occurrence_Of
(Union_Any
, Loc
),
9745 New_Occurrence_Of
(Struct_Any
, Loc
))));
9747 -- Append union to outer aggregate
9749 Append_To
(VP_Stmts
,
9750 Make_Procedure_Call_Statement
(Loc
,
9753 (RTE
(RE_Add_Aggregate_Element
), Loc
),
9754 Parameter_Associations
=> New_List
(
9755 New_Occurrence_Of
(Container
, Loc
),
9757 (Union_Any
, Loc
))));
9759 Append_To
(Alt_List
,
9760 Make_Case_Statement_Alternative
(Loc
,
9761 Discrete_Choices
=> Choice_List
,
9762 Statements
=> VP_Stmts
));
9764 Next_Non_Pragma
(Variant
);
9769 Counter
:= Counter
+ 1;
9770 end TA_Rec_Add_Process_Element
;
9773 -- Records are encoded in a TC_STRUCT aggregate:
9775 -- -- Outer aggregate (TC_STRUCT)
9776 -- | [discriminant1]
9777 -- | [discriminant2]
9784 -- A component can be a common component or variant part
9786 -- A variant part is encoded as a TC_UNION aggregate:
9788 -- -- Variant Part Aggregate (TC_UNION)
9789 -- | [discriminant choice for this Variant Part]
9791 -- | -- Inner struct (TC_STRUCT)
9796 -- Let's start by building the outer aggregate. First we
9797 -- construct Elements array containing all discriminants.
9799 if Has_Discriminants
(Typ
) then
9800 Disc
:= First_Discriminant
(Typ
);
9801 while Present
(Disc
) loop
9803 Discriminant
: constant Entity_Id
:=
9804 Make_Selected_Component
(Loc
,
9805 Prefix
=> Expr_Formal
,
9806 Selector_Name
=> Chars
(Disc
));
9808 Set_Etype
(Discriminant
, Etype
(Disc
));
9809 Append_To
(Elements
,
9810 Make_Component_Association
(Loc
,
9811 Choices
=> New_List
(
9812 Make_Integer_Literal
(Loc
, Counter
)),
9814 Build_To_Any_Call
(Loc
,
9815 Discriminant
, Decls
)));
9818 Counter
:= Counter
+ 1;
9819 Next_Discriminant
(Disc
);
9823 -- If there are no discriminants, we declare an empty
9827 Dummy_Any
: constant Entity_Id
:=
9828 Make_Temporary
(Loc
, 'A');
9832 Make_Object_Declaration
(Loc
,
9833 Defining_Identifier
=> Dummy_Any
,
9834 Object_Definition
=>
9835 New_Occurrence_Of
(RTE
(RE_Any
), Loc
)));
9837 Append_To
(Elements
,
9838 Make_Component_Association
(Loc
,
9839 Choices
=> New_List
(
9842 Make_Integer_Literal
(Loc
, 1),
9844 Make_Integer_Literal
(Loc
, 0))),
9846 New_Occurrence_Of
(Dummy_Any
, Loc
)));
9850 -- We build the result aggregate with discriminants
9851 -- as the first elements.
9853 Set_Expression
(Any_Decl
,
9854 Make_Function_Call
(Loc
,
9855 Name
=> New_Occurrence_Of
9856 (RTE
(RE_Any_Aggregate_Build
), Loc
),
9857 Parameter_Associations
=> New_List
(
9859 Make_Aggregate
(Loc
,
9860 Component_Associations
=> Elements
))));
9863 -- Then we append all the components to the result
9866 TA_Append_Record_Traversal
(Stms
,
9867 Clist
=> Component_List
(Rdef
),
9869 Counter
=> Counter
);
9873 elsif Is_Array_Type
(Typ
) then
9875 -- Constrained and unconstrained array types
9878 Constrained
: constant Boolean :=
9879 not Transmit_As_Unconstrained
(Typ
);
9881 procedure TA_Ary_Add_Process_Element
9884 Counter
: Entity_Id
;
9887 --------------------------------
9888 -- TA_Ary_Add_Process_Element --
9889 --------------------------------
9891 procedure TA_Ary_Add_Process_Element
9894 Counter
: Entity_Id
;
9897 pragma Unreferenced
(Counter
);
9899 Element_Any
: Node_Id
;
9902 if Etype
(Datum
) = RTE
(RE_Any
) then
9903 Element_Any
:= Datum
;
9905 Element_Any
:= Build_To_Any_Call
(Loc
, Datum
, Decls
);
9909 Make_Procedure_Call_Statement
(Loc
,
9910 Name
=> New_Occurrence_Of
(
9911 RTE
(RE_Add_Aggregate_Element
), Loc
),
9912 Parameter_Associations
=> New_List
(
9913 New_Occurrence_Of
(Any
, Loc
),
9915 end TA_Ary_Add_Process_Element
;
9917 procedure Append_To_Any_Array_Iterator
is
9918 new Append_Array_Traversal
(
9920 Arry
=> Expr_Formal
,
9921 Indexes
=> New_List
,
9922 Add_Process_Element
=> TA_Ary_Add_Process_Element
);
9927 Set_Expression
(Any_Decl
,
9928 Make_Function_Call
(Loc
,
9930 New_Occurrence_Of
(RTE
(RE_Create_Any
), Loc
),
9931 Parameter_Associations
=> New_List
(Result_TC
)));
9934 if not Constrained
then
9935 Index
:= First_Index
(Typ
);
9936 for J
in 1 .. Number_Dimensions
(Typ
) loop
9938 Make_Procedure_Call_Statement
(Loc
,
9941 (RTE
(RE_Add_Aggregate_Element
), Loc
),
9942 Parameter_Associations
=> New_List
(
9943 New_Occurrence_Of
(Any
, Loc
),
9944 Build_To_Any_Call
(Loc
,
9945 OK_Convert_To
(Etype
(Index
),
9946 Make_Attribute_Reference
(Loc
,
9948 New_Occurrence_Of
(Expr_Formal
, Loc
),
9949 Attribute_Name
=> Name_First
,
9950 Expressions
=> New_List
(
9951 Make_Integer_Literal
(Loc
, J
)))),
9957 Append_To_Any_Array_Iterator
(Stms
, Any
);
9960 elsif Is_Integer_Type
(Typ
) or else Is_Unsigned_Type
(Typ
) then
9964 Set_Expression
(Any_Decl
,
9965 Build_To_Any_Call
(Loc
,
9967 Find_Numeric_Representation
(Typ
),
9968 New_Occurrence_Of
(Expr_Formal
, Loc
)),
9972 -- Default case, including tagged types: opaque representation
9974 Use_Opaque_Representation
:= True;
9977 if Use_Opaque_Representation
then
9979 Strm
: constant Entity_Id
:= Make_Temporary
(Loc
, 'S');
9980 -- Stream used to store data representation produced by
9981 -- stream attribute.
9985 -- Strm : aliased Buffer_Stream_Type;
9988 Make_Object_Declaration
(Loc
,
9989 Defining_Identifier
=> Strm
,
9990 Aliased_Present
=> True,
9991 Object_Definition
=>
9992 New_Occurrence_Of
(RTE
(RE_Buffer_Stream_Type
), Loc
)));
9995 -- T'Output (Strm'Access, E);
9997 -- T'Write (Strm'Access, E);
9998 -- depending on whether to transmit as unconstrained.
10000 -- For limited types, select at run time depending on
10001 -- Constrained parameter.
10004 function Stream_Call
(Attr
: Name_Id
) return Node_Id
;
10005 -- Return a call to the named attribute
10011 function Stream_Call
(Attr
: Name_Id
) return Node_Id
is
10013 return Make_Attribute_Reference
(Loc
,
10015 New_Occurrence_Of
(Typ
, Loc
),
10016 Attribute_Name
=> Attr
,
10017 Expressions
=> New_List
(
10018 Make_Attribute_Reference
(Loc
,
10020 New_Occurrence_Of
(Strm
, Loc
),
10021 Attribute_Name
=> Name_Access
),
10022 New_Occurrence_Of
(Expr_Formal
, Loc
)));
10027 if Is_Limited_Type
(Typ
) then
10029 Make_Implicit_If_Statement
(Typ
,
10031 New_Occurrence_Of
(Cstr_Formal
, Loc
),
10032 Then_Statements
=> New_List
(
10033 Stream_Call
(Name_Write
)),
10034 Else_Statements
=> New_List
(
10035 Stream_Call
(Name_Output
))));
10037 elsif Transmit_As_Unconstrained
(Typ
) then
10038 Append_To
(Stms
, Stream_Call
(Name_Output
));
10041 Append_To
(Stms
, Stream_Call
(Name_Write
));
10046 -- BS_To_Any (Strm, A);
10049 Make_Procedure_Call_Statement
(Loc
,
10051 New_Occurrence_Of
(RTE
(RE_BS_To_Any
), Loc
),
10052 Parameter_Associations
=> New_List
(
10053 New_Occurrence_Of
(Strm
, Loc
),
10054 New_Occurrence_Of
(Any
, Loc
))));
10057 -- Release_Buffer (Strm);
10060 Make_Procedure_Call_Statement
(Loc
,
10062 New_Occurrence_Of
(RTE
(RE_Release_Buffer
), Loc
),
10063 Parameter_Associations
=> New_List
(
10064 New_Occurrence_Of
(Strm
, Loc
))));
10068 Append_To
(Decls
, Any_Decl
);
10070 if Present
(Result_TC
) then
10072 Make_Procedure_Call_Statement
(Loc
,
10074 New_Occurrence_Of
(RTE
(RE_Set_TC
), Loc
),
10075 Parameter_Associations
=> New_List
(
10076 New_Occurrence_Of
(Any
, Loc
),
10081 Make_Simple_Return_Statement
(Loc
,
10082 Expression
=> New_Occurrence_Of
(Any
, Loc
)));
10085 Make_Subprogram_Body
(Loc
,
10086 Specification
=> Spec
,
10087 Declarations
=> Decls
,
10088 Handled_Statement_Sequence
=>
10089 Make_Handled_Sequence_Of_Statements
(Loc
,
10090 Statements
=> Stms
));
10091 end Build_To_Any_Function
;
10093 -------------------------
10094 -- Build_TypeCode_Call --
10095 -------------------------
10097 function Build_TypeCode_Call
10100 Decls
: List_Id
) return Node_Id
10102 U_Type
: Entity_Id
:= Underlying_Type
(Typ
);
10103 -- The full view, if Typ is private; the completion,
10104 -- if Typ is incomplete.
10106 Fnam
: Entity_Id
:= Empty
;
10107 Lib_RE
: RE_Id
:= RE_Null
;
10111 -- Special case System.PolyORB.Interface.Any: its primitives have
10112 -- not been set yet, so can't call Find_Inherited_TSS.
10114 if Typ
= RTE
(RE_Any
) then
10115 Fnam
:= RTE
(RE_TC_A
);
10118 -- First simple case where the TypeCode is present
10119 -- in the type's TSS.
10121 Fnam
:= Find_Inherited_TSS
(U_Type
, TSS_TypeCode
);
10124 -- For the subtype representing a generic actual type, go to the
10127 if Is_Generic_Actual_Type
(U_Type
) then
10128 U_Type
:= Underlying_Type
(Base_Type
(U_Type
));
10131 -- For a standard subtype, go to the base type
10133 if Sloc
(U_Type
) <= Standard_Location
then
10134 U_Type
:= Base_Type
(U_Type
);
10136 -- For a user subtype, go to first subtype
10138 elsif Comes_From_Source
(U_Type
)
10139 and then Nkind
(Declaration_Node
(U_Type
))
10140 = N_Subtype_Declaration
10142 U_Type
:= First_Subtype
(U_Type
);
10146 if U_Type
= Standard_Boolean
then
10149 elsif U_Type
= Standard_Character
then
10152 elsif U_Type
= Standard_Wide_Character
then
10153 Lib_RE
:= RE_TC_WC
;
10155 elsif U_Type
= Standard_Wide_Wide_Character
then
10156 Lib_RE
:= RE_TC_WWC
;
10158 -- Floating point types
10160 elsif U_Type
= Standard_Short_Float
then
10161 Lib_RE
:= RE_TC_SF
;
10163 elsif U_Type
= Standard_Float
then
10166 elsif U_Type
= Standard_Long_Float
then
10167 Lib_RE
:= RE_TC_LF
;
10169 elsif U_Type
= Standard_Long_Long_Float
then
10170 Lib_RE
:= RE_TC_LLF
;
10172 -- Integer types (walk back to the base type)
10174 elsif U_Type
= RTE
(RE_Integer_8
) then
10175 Lib_RE
:= RE_TC_I8
;
10177 elsif U_Type
= RTE
(RE_Integer_16
) then
10178 Lib_RE
:= RE_TC_I16
;
10180 elsif U_Type
= RTE
(RE_Integer_32
) then
10181 Lib_RE
:= RE_TC_I32
;
10183 elsif U_Type
= RTE
(RE_Integer_64
) then
10184 Lib_RE
:= RE_TC_I64
;
10186 -- Unsigned integer types
10188 elsif U_Type
= RTE
(RE_Unsigned_8
) then
10189 Lib_RE
:= RE_TC_U8
;
10191 elsif U_Type
= RTE
(RE_Unsigned_16
) then
10192 Lib_RE
:= RE_TC_U16
;
10194 elsif U_Type
= RTE
(RE_Unsigned_32
) then
10195 Lib_RE
:= RE_TC_U32
;
10197 elsif U_Type
= RTE
(RE_Unsigned_64
) then
10198 Lib_RE
:= RE_TC_U64
;
10200 elsif Is_RTE
(U_Type
, RE_Unbounded_String
) then
10201 Lib_RE
:= RE_TC_String
;
10203 -- Special DSA types
10205 elsif Is_RTE
(U_Type
, RE_Any_Container_Ptr
) then
10208 -- Other (non-primitive) types
10214 Build_TypeCode_Function
(Loc
, U_Type
, Decl
, Fnam
);
10215 Append_To
(Decls
, Decl
);
10219 if Lib_RE
/= RE_Null
then
10220 Fnam
:= RTE
(Lib_RE
);
10224 -- Call the function
10227 Make_Function_Call
(Loc
, Name
=> New_Occurrence_Of
(Fnam
, Loc
));
10229 -- Allow Expr to be used as arg to Build_To_Any_Call immediately
10231 Set_Etype
(Expr
, RTE
(RE_TypeCode
));
10234 end Build_TypeCode_Call
;
10236 -----------------------------
10237 -- Build_TypeCode_Function --
10238 -----------------------------
10240 procedure Build_TypeCode_Function
10243 Decl
: out Node_Id
;
10244 Fnam
: out Entity_Id
)
10247 Decls
: constant List_Id
:= New_List
;
10248 Stms
: constant List_Id
:= New_List
;
10250 TCNam
: constant Entity_Id
:=
10251 Make_Helper_Function_Name
(Loc
, Typ
, Name_TypeCode
);
10253 Parameters
: List_Id
;
10255 procedure Add_String_Parameter
10257 Parameter_List
: List_Id
);
10258 -- Add a literal for S to Parameters
10260 procedure Add_TypeCode_Parameter
10261 (TC_Node
: Node_Id
;
10262 Parameter_List
: List_Id
);
10263 -- Add the typecode for Typ to Parameters
10265 procedure Add_Long_Parameter
10266 (Expr_Node
: Node_Id
;
10267 Parameter_List
: List_Id
);
10268 -- Add a signed long integer expression to Parameters
10270 procedure Initialize_Parameter_List
10271 (Name_String
: String_Id
;
10272 Repo_Id_String
: String_Id
;
10273 Parameter_List
: out List_Id
);
10274 -- Return a list that contains the first two parameters
10275 -- for a parameterized typecode: name and repository id.
10277 function Make_Constructed_TypeCode
10279 Parameters
: List_Id
) return Node_Id
;
10280 -- Call Build_Complex_TC with the given kind and parameters
10282 procedure Return_Constructed_TypeCode
(Kind
: Entity_Id
);
10283 -- Make a return statement that calls Build_Complex_TC with the
10284 -- given typecode kind, and the constructed parameters list.
10286 procedure Return_Alias_TypeCode
(Base_TypeCode
: Node_Id
);
10287 -- Return a typecode that is a TC_Alias for the given typecode
10289 --------------------------
10290 -- Add_String_Parameter --
10291 --------------------------
10293 procedure Add_String_Parameter
10295 Parameter_List
: List_Id
)
10298 Append_To
(Parameter_List
,
10299 Make_Function_Call
(Loc
,
10300 Name
=> New_Occurrence_Of
(RTE
(RE_TA_Std_String
), Loc
),
10301 Parameter_Associations
=> New_List
(
10302 Make_String_Literal
(Loc
, S
))));
10303 end Add_String_Parameter
;
10305 ----------------------------
10306 -- Add_TypeCode_Parameter --
10307 ----------------------------
10309 procedure Add_TypeCode_Parameter
10310 (TC_Node
: Node_Id
;
10311 Parameter_List
: List_Id
)
10314 Append_To
(Parameter_List
,
10315 Make_Function_Call
(Loc
,
10316 Name
=> New_Occurrence_Of
(RTE
(RE_TA_TC
), Loc
),
10317 Parameter_Associations
=> New_List
(TC_Node
)));
10318 end Add_TypeCode_Parameter
;
10320 ------------------------
10321 -- Add_Long_Parameter --
10322 ------------------------
10324 procedure Add_Long_Parameter
10325 (Expr_Node
: Node_Id
;
10326 Parameter_List
: List_Id
)
10329 Append_To
(Parameter_List
,
10330 Make_Function_Call
(Loc
,
10332 New_Occurrence_Of
(RTE
(RE_TA_I32
), Loc
),
10333 Parameter_Associations
=> New_List
(Expr_Node
)));
10334 end Add_Long_Parameter
;
10336 -------------------------------
10337 -- Initialize_Parameter_List --
10338 -------------------------------
10340 procedure Initialize_Parameter_List
10341 (Name_String
: String_Id
;
10342 Repo_Id_String
: String_Id
;
10343 Parameter_List
: out List_Id
)
10346 Parameter_List
:= New_List
;
10347 Add_String_Parameter
(Name_String
, Parameter_List
);
10348 Add_String_Parameter
(Repo_Id_String
, Parameter_List
);
10349 end Initialize_Parameter_List
;
10351 ---------------------------
10352 -- Return_Alias_TypeCode --
10353 ---------------------------
10355 procedure Return_Alias_TypeCode
(Base_TypeCode
: Node_Id
) is
10357 Add_TypeCode_Parameter
(Base_TypeCode
, Parameters
);
10358 Return_Constructed_TypeCode
(RTE
(RE_Tk_Alias
));
10359 end Return_Alias_TypeCode
;
10361 -------------------------------
10362 -- Make_Constructed_TypeCode --
10363 -------------------------------
10365 function Make_Constructed_TypeCode
10367 Parameters
: List_Id
) return Node_Id
10369 Constructed_TC
: constant Node_Id
:=
10370 Make_Function_Call
(Loc
,
10372 New_Occurrence_Of
(RTE
(RE_Build_Complex_TC
), Loc
),
10373 Parameter_Associations
=> New_List
(
10374 New_Occurrence_Of
(Kind
, Loc
),
10375 Make_Aggregate
(Loc
,
10376 Expressions
=> Parameters
)));
10378 Set_Etype
(Constructed_TC
, RTE
(RE_TypeCode
));
10379 return Constructed_TC
;
10380 end Make_Constructed_TypeCode
;
10382 ---------------------------------
10383 -- Return_Constructed_TypeCode --
10384 ---------------------------------
10386 procedure Return_Constructed_TypeCode
(Kind
: Entity_Id
) is
10389 Make_Simple_Return_Statement
(Loc
,
10391 Make_Constructed_TypeCode
(Kind
, Parameters
)));
10392 end Return_Constructed_TypeCode
;
10398 procedure TC_Rec_Add_Process_Element
10401 Counter
: in out Int
;
10405 procedure TC_Append_Record_Traversal
is
10406 new Append_Record_Traversal
(
10408 Add_Process_Element
=> TC_Rec_Add_Process_Element
);
10410 --------------------------------
10411 -- TC_Rec_Add_Process_Element --
10412 --------------------------------
10414 procedure TC_Rec_Add_Process_Element
10417 Counter
: in out Int
;
10421 pragma Unreferenced
(Any
, Counter
, Rec
);
10424 if Nkind
(Field
) = N_Defining_Identifier
then
10426 -- A regular component
10428 Add_TypeCode_Parameter
10429 (Build_TypeCode_Call
(Loc
, Etype
(Field
), Decls
), Params
);
10430 Get_Name_String
(Chars
(Field
));
10431 Add_String_Parameter
(String_From_Name_Buffer
, Params
);
10437 Variant_Part
: declare
10438 Disc_Type
: constant Entity_Id
:= Etype
(Name
(Field
));
10440 Is_Enum
: constant Boolean :=
10441 Is_Enumeration_Type
(Disc_Type
);
10443 Union_TC_Params
: List_Id
;
10445 U_Name
: constant Name_Id
:=
10446 New_External_Name
(Chars
(Typ
), 'V', -1);
10448 Name_Str
: String_Id
;
10449 Struct_TC_Params
: List_Id
;
10453 Default
: constant Node_Id
:=
10454 Make_Integer_Literal
(Loc
, -1);
10456 Dummy_Counter
: Int
:= 0;
10458 Choice_Index
: Int
:= 0;
10459 -- Index of current choice in TypeCode, used to identify
10460 -- it as the default choice if it is a "when others".
10462 procedure Add_Params_For_Variant_Components
;
10463 -- Add a struct TypeCode and a corresponding member name
10464 -- to the union parameter list.
10466 -- Ordering of declarations is a complete mess in this
10467 -- area, it is supposed to be types/variables, then
10468 -- subprogram specs, then subprogram bodies ???
10470 ---------------------------------------
10471 -- Add_Params_For_Variant_Components --
10472 ---------------------------------------
10474 procedure Add_Params_For_Variant_Components
is
10475 S_Name
: constant Name_Id
:=
10476 New_External_Name
(U_Name
, 'S', -1);
10479 Get_Name_String
(S_Name
);
10480 Name_Str
:= String_From_Name_Buffer
;
10481 Initialize_Parameter_List
10482 (Name_Str
, Name_Str
, Struct_TC_Params
);
10484 -- Build struct parameters
10486 TC_Append_Record_Traversal
(Struct_TC_Params
,
10487 Component_List
(Variant
),
10491 Add_TypeCode_Parameter
10492 (Make_Constructed_TypeCode
10493 (RTE
(RE_Tk_Struct
), Struct_TC_Params
),
10496 Add_String_Parameter
(Name_Str
, Union_TC_Params
);
10497 end Add_Params_For_Variant_Components
;
10499 -- Start of processing for Variant_Part
10502 Get_Name_String
(U_Name
);
10503 Name_Str
:= String_From_Name_Buffer
;
10505 Initialize_Parameter_List
10506 (Name_Str
, Name_Str
, Union_TC_Params
);
10508 -- Add union in enclosing parameter list
10510 Add_TypeCode_Parameter
10511 (Make_Constructed_TypeCode
10512 (RTE
(RE_Tk_Union
), Union_TC_Params
),
10515 Add_String_Parameter
(Name_Str
, Params
);
10517 -- Build union parameters
10519 Add_TypeCode_Parameter
10520 (Build_TypeCode_Call
(Loc
, Disc_Type
, Decls
),
10523 Add_Long_Parameter
(Default
, Union_TC_Params
);
10525 Variant
:= First_Non_Pragma
(Variants
(Field
));
10526 while Present
(Variant
) loop
10527 Choice
:= First
(Discrete_Choices
(Variant
));
10528 while Present
(Choice
) loop
10529 case Nkind
(Choice
) is
10532 L
: constant Uint
:=
10533 Expr_Value
(Low_Bound
(Choice
));
10534 H
: constant Uint
:=
10535 Expr_Value
(High_Bound
(Choice
));
10537 -- 3.8.1(8) guarantees that the bounds of
10538 -- this range are static.
10545 Expr
:= Get_Enum_Lit_From_Pos
10546 (Disc_Type
, J
, Loc
);
10549 Make_Integer_Literal
(Loc
, J
);
10552 Set_Etype
(Expr
, Disc_Type
);
10553 Append_To
(Union_TC_Params
,
10554 Build_To_Any_Call
(Loc
, Expr
, Decls
));
10556 Add_Params_For_Variant_Components
;
10561 Choice_Index
+ UI_To_Int
(H
- L
) + 1;
10564 when N_Others_Choice
=>
10566 -- This variant has a default choice. We must
10567 -- therefore set the default parameter to the
10568 -- current choice index. This parameter is by
10569 -- construction the 4th in Union_TC_Params.
10572 (Pick
(Union_TC_Params
, 4),
10573 Make_Function_Call
(Loc
,
10576 (RTE
(RE_TA_I32
), Loc
),
10577 Parameter_Associations
=>
10579 Make_Integer_Literal
(Loc
,
10580 Intval
=> Choice_Index
))));
10582 -- Add a placeholder member label for the
10583 -- default case, which must have the
10584 -- discriminant type.
10587 Exp
: constant Node_Id
:=
10588 Make_Attribute_Reference
(Loc
,
10589 Prefix
=> New_Occurrence_Of
10591 Attribute_Name
=> Name_First
);
10593 Set_Etype
(Exp
, Disc_Type
);
10594 Append_To
(Union_TC_Params
,
10595 Build_To_Any_Call
(Loc
, Exp
, Decls
));
10598 Add_Params_For_Variant_Components
;
10599 Choice_Index
:= Choice_Index
+ 1;
10601 -- Case of an explicit choice
10605 Exp
: constant Node_Id
:=
10606 New_Copy_Tree
(Choice
);
10608 Append_To
(Union_TC_Params
,
10609 Build_To_Any_Call
(Loc
, Exp
, Decls
));
10612 Add_Params_For_Variant_Components
;
10613 Choice_Index
:= Choice_Index
+ 1;
10619 Next_Non_Pragma
(Variant
);
10623 end TC_Rec_Add_Process_Element
;
10625 Type_Name_Str
: String_Id
;
10626 Type_Repo_Id_Str
: String_Id
;
10628 -- Start of processing for Build_TypeCode_Function
10631 -- For a derived type, we can't go past the base type (to the
10632 -- parent type) here, because that would cause the attribute's
10633 -- formal parameter to have the wrong type; hence the Base_Type
10636 if Is_Itype
(Typ
) and then Typ
/= Base_Type
(Typ
) then
10637 Build_TypeCode_Function
10639 Typ
=> Etype
(Typ
),
10648 Make_Function_Specification
(Loc
,
10649 Defining_Unit_Name
=> Fnam
,
10650 Parameter_Specifications
=> Empty_List
,
10651 Result_Definition
=>
10652 New_Occurrence_Of
(RTE
(RE_TypeCode
), Loc
));
10654 Build_Name_And_Repository_Id
(Typ
,
10655 Name_Str
=> Type_Name_Str
, Repo_Id_Str
=> Type_Repo_Id_Str
);
10657 Initialize_Parameter_List
10658 (Type_Name_Str
, Type_Repo_Id_Str
, Parameters
);
10660 if Has_Stream_Attribute_Definition
10661 (Typ
, TSS_Stream_Output
, At_Any_Place
=> True)
10663 Has_Stream_Attribute_Definition
10664 (Typ
, TSS_Stream_Write
, At_Any_Place
=> True)
10666 -- If user-defined stream attributes are specified for this
10667 -- type, use them and transmit data as an opaque sequence of
10668 -- stream elements.
10670 Return_Alias_TypeCode
10671 (New_Occurrence_Of
(RTE
(RE_TC_Opaque
), Loc
));
10673 elsif Is_Derived_Type
(Typ
) and then not Is_Tagged_Type
(Typ
) then
10674 Return_Alias_TypeCode
(
10675 Build_TypeCode_Call
(Loc
, Etype
(Typ
), Decls
));
10677 elsif Is_Integer_Type
(Typ
) or else Is_Unsigned_Type
(Typ
) then
10678 Return_Alias_TypeCode
(
10679 Build_TypeCode_Call
(Loc
,
10680 Find_Numeric_Representation
(Typ
), Decls
));
10682 elsif Is_Record_Type
(Typ
) and then not Is_Tagged_Type
(Typ
) then
10684 -- Record typecodes are encoded as follows:
10688 -- | [Repository Id]
10690 -- Then for each discriminant:
10692 -- | [Discriminant Type Code]
10693 -- | [Discriminant Name]
10696 -- Then for each component:
10698 -- | [Component Type Code]
10699 -- | [Component Name]
10702 -- Variants components type codes are encoded as follows:
10706 -- | [Repository Id]
10707 -- | [Discriminant Type Code]
10708 -- | [Index of Default Variant Part or -1 for no default]
10710 -- Then for each Variant Part :
10715 -- | | [Variant Part Name]
10716 -- | | [Variant Part Repository Id]
10718 -- | Then for each VP component:
10719 -- | | [VP component Typecode]
10720 -- | | [VP component Name]
10726 if Nkind
(Declaration_Node
(Typ
)) = N_Subtype_Declaration
then
10727 Return_Alias_TypeCode
10728 (Build_TypeCode_Call
(Loc
, Etype
(Typ
), Decls
));
10732 Disc
: Entity_Id
:= Empty
;
10733 Rdef
: constant Node_Id
:=
10734 Type_Definition
(Declaration_Node
(Typ
));
10735 Dummy_Counter
: Int
:= 0;
10738 -- Construct the discriminants typecodes
10740 if Has_Discriminants
(Typ
) then
10741 Disc
:= First_Discriminant
(Typ
);
10744 while Present
(Disc
) loop
10745 Add_TypeCode_Parameter
(
10746 Build_TypeCode_Call
(Loc
, Etype
(Disc
), Decls
),
10748 Get_Name_String
(Chars
(Disc
));
10749 Add_String_Parameter
(
10750 String_From_Name_Buffer
,
10752 Next_Discriminant
(Disc
);
10755 -- then the components typecodes
10757 TC_Append_Record_Traversal
10758 (Parameters
, Component_List
(Rdef
),
10759 Empty
, Dummy_Counter
);
10760 Return_Constructed_TypeCode
(RTE
(RE_Tk_Struct
));
10764 elsif Is_Array_Type
(Typ
) then
10766 Ndim
: constant Pos
:= Number_Dimensions
(Typ
);
10767 Inner_TypeCode
: Node_Id
;
10768 Constrained
: constant Boolean := Is_Constrained
(Typ
);
10769 Indx
: Node_Id
:= First_Index
(Typ
);
10773 Build_TypeCode_Call
(Loc
, Component_Type
(Typ
), Decls
);
10775 for J
in 1 .. Ndim
loop
10776 if Constrained
then
10777 Inner_TypeCode
:= Make_Constructed_TypeCode
10778 (RTE
(RE_Tk_Array
), New_List
(
10779 Build_To_Any_Call
(Loc
,
10780 OK_Convert_To
(RTE
(RE_Unsigned_32
),
10781 Make_Attribute_Reference
(Loc
,
10782 Prefix
=> New_Occurrence_Of
(Typ
, Loc
),
10783 Attribute_Name
=> Name_Length
,
10784 Expressions
=> New_List
(
10785 Make_Integer_Literal
(Loc
,
10786 Intval
=> Ndim
- J
+ 1)))),
10788 Build_To_Any_Call
(Loc
, Inner_TypeCode
, Decls
)));
10791 -- Unconstrained case: add low bound for each
10794 Add_TypeCode_Parameter
10795 (Build_TypeCode_Call
(Loc
, Etype
(Indx
), Decls
),
10797 Get_Name_String
(New_External_Name
('L', J
));
10798 Add_String_Parameter
(
10799 String_From_Name_Buffer
,
10803 Inner_TypeCode
:= Make_Constructed_TypeCode
10804 (RTE
(RE_Tk_Sequence
), New_List
(
10805 Build_To_Any_Call
(Loc
,
10806 OK_Convert_To
(RTE
(RE_Unsigned_32
),
10807 Make_Integer_Literal
(Loc
, 0)),
10809 Build_To_Any_Call
(Loc
, Inner_TypeCode
, Decls
)));
10813 if Constrained
then
10814 Return_Alias_TypeCode
(Inner_TypeCode
);
10816 Add_TypeCode_Parameter
(Inner_TypeCode
, Parameters
);
10818 Store_String_Char
('V');
10819 Add_String_Parameter
(End_String
, Parameters
);
10820 Return_Constructed_TypeCode
(RTE
(RE_Tk_Struct
));
10825 -- Default: type is represented as an opaque sequence of bytes
10827 Return_Alias_TypeCode
10828 (New_Occurrence_Of
(RTE
(RE_TC_Opaque
), Loc
));
10832 Make_Subprogram_Body
(Loc
,
10833 Specification
=> Spec
,
10834 Declarations
=> Decls
,
10835 Handled_Statement_Sequence
=>
10836 Make_Handled_Sequence_Of_Statements
(Loc
,
10837 Statements
=> Stms
));
10838 end Build_TypeCode_Function
;
10840 ---------------------------------
10841 -- Find_Numeric_Representation --
10842 ---------------------------------
10844 function Find_Numeric_Representation
10845 (Typ
: Entity_Id
) return Entity_Id
10847 FST
: constant Entity_Id
:= First_Subtype
(Typ
);
10848 P_Size
: constant Uint
:= Esize
(FST
);
10851 -- Special case: for Stream_Element_Offset and Storage_Offset,
10852 -- always force transmission as a 64-bit value.
10854 if Is_RTE
(FST
, RE_Stream_Element_Offset
)
10856 Is_RTE
(FST
, RE_Storage_Offset
)
10858 return RTE
(RE_Unsigned_64
);
10861 if Is_Unsigned_Type
(Typ
) then
10862 if P_Size
<= 8 then
10863 return RTE
(RE_Unsigned_8
);
10865 elsif P_Size
<= 16 then
10866 return RTE
(RE_Unsigned_16
);
10868 elsif P_Size
<= 32 then
10869 return RTE
(RE_Unsigned_32
);
10872 return RTE
(RE_Unsigned_64
);
10875 elsif Is_Integer_Type
(Typ
) then
10876 if P_Size
<= 8 then
10877 return RTE
(RE_Integer_8
);
10879 elsif P_Size
<= Standard_Short_Integer_Size
then
10880 return RTE
(RE_Integer_16
);
10882 elsif P_Size
<= Standard_Integer_Size
then
10883 return RTE
(RE_Integer_32
);
10886 return RTE
(RE_Integer_64
);
10889 elsif Is_Floating_Point_Type
(Typ
) then
10890 if P_Size
<= Standard_Short_Float_Size
then
10891 return Standard_Short_Float
;
10893 elsif P_Size
<= Standard_Float_Size
then
10894 return Standard_Float
;
10896 elsif P_Size
<= Standard_Long_Float_Size
then
10897 return Standard_Long_Float
;
10900 return Standard_Long_Long_Float
;
10904 raise Program_Error
;
10907 -- TBD: fixed point types???
10908 -- TBverified numeric types with a biased representation???
10910 end Find_Numeric_Representation
;
10912 ---------------------------
10913 -- Append_Array_Traversal --
10914 ---------------------------
10916 procedure Append_Array_Traversal
10919 Counter
: Entity_Id
:= Empty
;
10922 Loc
: constant Source_Ptr
:= Sloc
(Subprogram
);
10923 Typ
: constant Entity_Id
:= Etype
(Arry
);
10924 Constrained
: constant Boolean := Is_Constrained
(Typ
);
10925 Ndim
: constant Pos
:= Number_Dimensions
(Typ
);
10927 Inner_Any
, Inner_Counter
: Entity_Id
;
10929 Loop_Stm
: Node_Id
;
10930 Inner_Stmts
: constant List_Id
:= New_List
;
10933 if Depth
> Ndim
then
10935 -- Processing for one element of an array
10938 Element_Expr
: constant Node_Id
:=
10939 Make_Indexed_Component
(Loc
,
10940 New_Occurrence_Of
(Arry
, Loc
),
10943 Set_Etype
(Element_Expr
, Component_Type
(Typ
));
10944 Add_Process_Element
(Stmts
,
10946 Counter
=> Counter
,
10947 Datum
=> Element_Expr
);
10953 Append_To
(Indexes
,
10954 Make_Identifier
(Loc
, New_External_Name
('L', Depth
)));
10956 if not Constrained
or else Depth
> 1 then
10957 Inner_Any
:= Make_Defining_Identifier
(Loc
,
10958 New_External_Name
('A', Depth
));
10959 Set_Etype
(Inner_Any
, RTE
(RE_Any
));
10961 Inner_Any
:= Empty
;
10964 if Present
(Counter
) then
10965 Inner_Counter
:= Make_Defining_Identifier
(Loc
,
10966 New_External_Name
('J', Depth
));
10968 Inner_Counter
:= Empty
;
10972 Loop_Any
: Node_Id
:= Inner_Any
;
10975 -- For the first dimension of a constrained array, we add
10976 -- elements directly in the corresponding Any; there is no
10977 -- intervening inner Any.
10979 if No
(Loop_Any
) then
10983 Append_Array_Traversal
(Inner_Stmts
,
10985 Counter
=> Inner_Counter
,
10986 Depth
=> Depth
+ 1);
10990 Make_Implicit_Loop_Statement
(Subprogram
,
10991 Iteration_Scheme
=>
10992 Make_Iteration_Scheme
(Loc
,
10993 Loop_Parameter_Specification
=>
10994 Make_Loop_Parameter_Specification
(Loc
,
10995 Defining_Identifier
=>
10996 Make_Defining_Identifier
(Loc
,
10997 Chars
=> New_External_Name
('L', Depth
)),
10999 Discrete_Subtype_Definition
=>
11000 Make_Attribute_Reference
(Loc
,
11001 Prefix
=> New_Occurrence_Of
(Arry
, Loc
),
11002 Attribute_Name
=> Name_Range
,
11004 Expressions
=> New_List
(
11005 Make_Integer_Literal
(Loc
, Depth
))))),
11006 Statements
=> Inner_Stmts
);
11009 Decls
: constant List_Id
:= New_List
;
11010 Dimen_Stmts
: constant List_Id
:= New_List
;
11011 Length_Node
: Node_Id
;
11013 Inner_Any_TypeCode
: constant Entity_Id
:=
11014 Make_Defining_Identifier
(Loc
,
11015 New_External_Name
('T', Depth
));
11017 Inner_Any_TypeCode_Expr
: Node_Id
;
11021 if Constrained
then
11022 Inner_Any_TypeCode_Expr
:=
11023 Make_Function_Call
(Loc
,
11024 Name
=> New_Occurrence_Of
(RTE
(RE_Get_TC
), Loc
),
11025 Parameter_Associations
=> New_List
(
11026 New_Occurrence_Of
(Any
, Loc
)));
11029 Inner_Any_TypeCode_Expr
:=
11030 Make_Function_Call
(Loc
,
11032 New_Occurrence_Of
(RTE
(RE_Any_Member_Type
), Loc
),
11033 Parameter_Associations
=> New_List
(
11034 New_Occurrence_Of
(Any
, Loc
),
11035 Make_Integer_Literal
(Loc
, Ndim
)));
11039 Inner_Any_TypeCode_Expr
:=
11040 Make_Function_Call
(Loc
,
11041 Name
=> New_Occurrence_Of
(RTE
(RE_Content_Type
), Loc
),
11042 Parameter_Associations
=> New_List
(
11043 Make_Identifier
(Loc
,
11044 Chars
=> New_External_Name
('T', Depth
- 1))));
11048 Make_Object_Declaration
(Loc
,
11049 Defining_Identifier
=> Inner_Any_TypeCode
,
11050 Constant_Present
=> True,
11051 Object_Definition
=> New_Occurrence_Of
(
11052 RTE
(RE_TypeCode
), Loc
),
11053 Expression
=> Inner_Any_TypeCode_Expr
));
11055 if Present
(Inner_Any
) then
11057 Make_Object_Declaration
(Loc
,
11058 Defining_Identifier
=> Inner_Any
,
11059 Object_Definition
=>
11060 New_Occurrence_Of
(RTE
(RE_Any
), Loc
),
11062 Make_Function_Call
(Loc
,
11064 New_Occurrence_Of
(
11065 RTE
(RE_Create_Any
), Loc
),
11066 Parameter_Associations
=> New_List
(
11067 New_Occurrence_Of
(Inner_Any_TypeCode
, Loc
)))));
11070 if Present
(Inner_Counter
) then
11072 Make_Object_Declaration
(Loc
,
11073 Defining_Identifier
=> Inner_Counter
,
11074 Object_Definition
=>
11075 New_Occurrence_Of
(RTE
(RE_Unsigned_32
), Loc
),
11077 Make_Integer_Literal
(Loc
, 0)));
11080 if not Constrained
then
11081 Length_Node
:= Make_Attribute_Reference
(Loc
,
11082 Prefix
=> New_Occurrence_Of
(Arry
, Loc
),
11083 Attribute_Name
=> Name_Length
,
11085 New_List
(Make_Integer_Literal
(Loc
, Depth
)));
11086 Set_Etype
(Length_Node
, RTE
(RE_Unsigned_32
));
11088 Add_Process_Element
(Dimen_Stmts
,
11089 Datum
=> Length_Node
,
11091 Counter
=> Inner_Counter
);
11094 -- Loop_Stm does appropriate processing for each element
11097 Append_To
(Dimen_Stmts
, Loop_Stm
);
11099 -- Link outer and inner any
11101 if Present
(Inner_Any
) then
11102 Add_Process_Element
(Dimen_Stmts
,
11104 Counter
=> Counter
,
11105 Datum
=> New_Occurrence_Of
(Inner_Any
, Loc
));
11109 Make_Block_Statement
(Loc
,
11112 Handled_Statement_Sequence
=>
11113 Make_Handled_Sequence_Of_Statements
(Loc
,
11114 Statements
=> Dimen_Stmts
)));
11116 end Append_Array_Traversal
;
11118 -------------------------------
11119 -- Make_Helper_Function_Name --
11120 -------------------------------
11122 function Make_Helper_Function_Name
11125 Nam
: Name_Id
) return Entity_Id
11130 -- For tagged types that aren't frozen yet, generate the helper
11131 -- under its canonical name so that it matches the primitive
11132 -- spec. For all other cases, we use a serialized name so that
11133 -- multiple generations of the same procedure do not clash.
11136 if Is_Tagged_Type
(Typ
) and then not Is_Frozen
(Typ
) then
11139 Serial
:= Increment_Serial_Number
;
11142 -- Use prefixed underscore to avoid potential clash with user
11143 -- identifier (we use attribute names for Nam).
11146 Make_Defining_Identifier
(Loc
,
11149 (Related_Id
=> Nam
,
11151 Suffix_Index
=> Serial
,
11154 end Make_Helper_Function_Name
;
11157 -----------------------------------
11158 -- Reserve_NamingContext_Methods --
11159 -----------------------------------
11161 procedure Reserve_NamingContext_Methods
is
11162 Str_Resolve
: constant String := "resolve";
11164 Name_Buffer
(1 .. Str_Resolve
'Length) := Str_Resolve
;
11165 Name_Len
:= Str_Resolve
'Length;
11166 Overload_Counter_Table
.Set
(Name_Find
, 1);
11167 end Reserve_NamingContext_Methods
;
11169 -----------------------
11170 -- RPC_Receiver_Decl --
11171 -----------------------
11173 function RPC_Receiver_Decl
(RACW_Type
: Entity_Id
) return Node_Id
is
11174 Loc
: constant Source_Ptr
:= Sloc
(RACW_Type
);
11177 Make_Object_Declaration
(Loc
,
11178 Defining_Identifier
=> Make_Temporary
(Loc
, 'R'),
11179 Aliased_Present
=> True,
11180 Object_Definition
=> New_Occurrence_Of
(RTE
(RE_Servant
), Loc
));
11181 end RPC_Receiver_Decl
;
11183 end PolyORB_Support
;
11185 -------------------------------
11186 -- RACW_Type_Is_Asynchronous --
11187 -------------------------------
11189 procedure RACW_Type_Is_Asynchronous
(RACW_Type
: Entity_Id
) is
11190 Asynchronous_Flag
: constant Entity_Id
:=
11191 Asynchronous_Flags_Table
.Get
(RACW_Type
);
11193 Replace
(Expression
(Parent
(Asynchronous_Flag
)),
11194 New_Occurrence_Of
(Standard_True
, Sloc
(Asynchronous_Flag
)));
11195 end RACW_Type_Is_Asynchronous
;
11197 -------------------------
11198 -- RCI_Package_Locator --
11199 -------------------------
11201 function RCI_Package_Locator
11203 Package_Spec
: Node_Id
) return Node_Id
11206 Pkg_Name
: constant String_Id
:=
11207 Fully_Qualified_Name_String
11208 (Defining_Entity
(Package_Spec
), Append_NUL
=> False);
11212 Make_Package_Instantiation
(Loc
,
11213 Defining_Unit_Name
=> Make_Temporary
(Loc
, 'R'),
11216 New_Occurrence_Of
(RTE
(RE_RCI_Locator
), Loc
),
11218 Generic_Associations
=> New_List
(
11219 Make_Generic_Association
(Loc
,
11221 Make_Identifier
(Loc
, Name_RCI_Name
),
11222 Explicit_Generic_Actual_Parameter
=>
11223 Make_String_Literal
(Loc
,
11224 Strval
=> Pkg_Name
)),
11226 Make_Generic_Association
(Loc
,
11228 Make_Identifier
(Loc
, Name_Version
),
11229 Explicit_Generic_Actual_Parameter
=>
11230 Make_Attribute_Reference
(Loc
,
11232 New_Occurrence_Of
(Defining_Entity
(Package_Spec
), Loc
),
11236 RCI_Locator_Table
.Set
11237 (Defining_Unit_Name
(Package_Spec
),
11238 Defining_Unit_Name
(Inst
));
11240 end RCI_Package_Locator
;
11242 -----------------------------------------------
11243 -- Remote_Types_Tagged_Full_View_Encountered --
11244 -----------------------------------------------
11246 procedure Remote_Types_Tagged_Full_View_Encountered
11247 (Full_View
: Entity_Id
)
11249 Stub_Elements
: constant Stub_Structure
:=
11250 Stubs_Table
.Get
(Full_View
);
11253 -- For an RACW encountered before the freeze point of its designated
11254 -- type, the stub type is generated at the point of the RACW declaration
11255 -- but the primitives are generated only once the designated type is
11256 -- frozen. That freeze can occur in another scope, for example when the
11257 -- RACW is declared in a nested package. In that case we need to
11258 -- reestablish the stub type's scope prior to generating its primitive
11261 if Stub_Elements
/= Empty_Stub_Structure
then
11263 Saved_Scope
: constant Entity_Id
:= Current_Scope
;
11264 Stubs_Scope
: constant Entity_Id
:=
11265 Scope
(Stub_Elements
.Stub_Type
);
11268 if Current_Scope
/= Stubs_Scope
then
11269 Push_Scope
(Stubs_Scope
);
11272 Add_RACW_Primitive_Declarations_And_Bodies
11274 Stub_Elements
.RPC_Receiver_Decl
,
11275 Stub_Elements
.Body_Decls
);
11277 if Current_Scope
/= Saved_Scope
then
11282 end Remote_Types_Tagged_Full_View_Encountered
;
11284 -------------------
11285 -- Scope_Of_Spec --
11286 -------------------
11288 function Scope_Of_Spec
(Spec
: Node_Id
) return Entity_Id
is
11289 Unit_Name
: Node_Id
;
11292 Unit_Name
:= Defining_Unit_Name
(Spec
);
11293 while Nkind
(Unit_Name
) /= N_Defining_Identifier
loop
11294 Unit_Name
:= Defining_Identifier
(Unit_Name
);
11300 ----------------------
11301 -- Set_Renaming_TSS --
11302 ----------------------
11304 procedure Set_Renaming_TSS
11307 TSS_Nam
: TSS_Name_Type
)
11309 Loc
: constant Source_Ptr
:= Sloc
(Nam
);
11310 Spec
: constant Node_Id
:= Parent
(Nam
);
11312 TSS_Node
: constant Node_Id
:=
11313 Make_Subprogram_Renaming_Declaration
(Loc
,
11315 Copy_Specification
(Loc
,
11317 New_Name
=> Make_TSS_Name
(Typ
, TSS_Nam
)),
11318 Name
=> New_Occurrence_Of
(Nam
, Loc
));
11320 Snam
: constant Entity_Id
:=
11321 Defining_Unit_Name
(Specification
(TSS_Node
));
11324 if Nkind
(Spec
) = N_Function_Specification
then
11325 Set_Ekind
(Snam
, E_Function
);
11326 Set_Etype
(Snam
, Entity
(Result_Definition
(Spec
)));
11328 Set_Ekind
(Snam
, E_Procedure
);
11329 Set_Etype
(Snam
, Standard_Void_Type
);
11332 Set_TSS
(Typ
, Snam
);
11333 end Set_Renaming_TSS
;
11335 ----------------------------------------------
11336 -- Specific_Add_Obj_RPC_Receiver_Completion --
11337 ----------------------------------------------
11339 procedure Specific_Add_Obj_RPC_Receiver_Completion
11342 RPC_Receiver
: Entity_Id
;
11343 Stub_Elements
: Stub_Structure
)
11346 case Get_PCS_Name
is
11347 when Name_PolyORB_DSA
=>
11348 PolyORB_Support
.Add_Obj_RPC_Receiver_Completion
11349 (Loc
, Decls
, RPC_Receiver
, Stub_Elements
);
11351 GARLIC_Support
.Add_Obj_RPC_Receiver_Completion
11352 (Loc
, Decls
, RPC_Receiver
, Stub_Elements
);
11354 end Specific_Add_Obj_RPC_Receiver_Completion
;
11356 --------------------------------
11357 -- Specific_Add_RACW_Features --
11358 --------------------------------
11360 procedure Specific_Add_RACW_Features
11361 (RACW_Type
: Entity_Id
;
11363 Stub_Type
: Entity_Id
;
11364 Stub_Type_Access
: Entity_Id
;
11365 RPC_Receiver_Decl
: Node_Id
;
11366 Body_Decls
: List_Id
)
11369 case Get_PCS_Name
is
11370 when Name_PolyORB_DSA
=>
11371 PolyORB_Support
.Add_RACW_Features
11380 GARLIC_Support
.Add_RACW_Features
11387 end Specific_Add_RACW_Features
;
11389 --------------------------------
11390 -- Specific_Add_RAST_Features --
11391 --------------------------------
11393 procedure Specific_Add_RAST_Features
11394 (Vis_Decl
: Node_Id
;
11395 RAS_Type
: Entity_Id
)
11398 case Get_PCS_Name
is
11399 when Name_PolyORB_DSA
=>
11400 PolyORB_Support
.Add_RAST_Features
(Vis_Decl
, RAS_Type
);
11402 GARLIC_Support
.Add_RAST_Features
(Vis_Decl
, RAS_Type
);
11404 end Specific_Add_RAST_Features
;
11406 --------------------------------------------------
11407 -- Specific_Add_Receiving_Stubs_To_Declarations --
11408 --------------------------------------------------
11410 procedure Specific_Add_Receiving_Stubs_To_Declarations
11411 (Pkg_Spec
: Node_Id
;
11416 case Get_PCS_Name
is
11417 when Name_PolyORB_DSA
=>
11418 PolyORB_Support
.Add_Receiving_Stubs_To_Declarations
11419 (Pkg_Spec
, Decls
, Stmts
);
11421 GARLIC_Support
.Add_Receiving_Stubs_To_Declarations
11422 (Pkg_Spec
, Decls
, Stmts
);
11424 end Specific_Add_Receiving_Stubs_To_Declarations
;
11426 ------------------------------------------
11427 -- Specific_Build_General_Calling_Stubs --
11428 ------------------------------------------
11430 procedure Specific_Build_General_Calling_Stubs
11432 Statements
: List_Id
;
11433 Target
: RPC_Target
;
11434 Subprogram_Id
: Node_Id
;
11435 Asynchronous
: Node_Id
:= Empty
;
11436 Is_Known_Asynchronous
: Boolean := False;
11437 Is_Known_Non_Asynchronous
: Boolean := False;
11438 Is_Function
: Boolean;
11440 Stub_Type
: Entity_Id
:= Empty
;
11441 RACW_Type
: Entity_Id
:= Empty
;
11445 case Get_PCS_Name
is
11446 when Name_PolyORB_DSA
=>
11447 PolyORB_Support
.Build_General_Calling_Stubs
11453 Is_Known_Asynchronous
,
11454 Is_Known_Non_Asynchronous
,
11462 GARLIC_Support
.Build_General_Calling_Stubs
11466 Target
.RPC_Receiver
,
11469 Is_Known_Asynchronous
,
11470 Is_Known_Non_Asynchronous
,
11477 end Specific_Build_General_Calling_Stubs
;
11479 --------------------------------------
11480 -- Specific_Build_RPC_Receiver_Body --
11481 --------------------------------------
11483 procedure Specific_Build_RPC_Receiver_Body
11484 (RPC_Receiver
: Entity_Id
;
11485 Request
: out Entity_Id
;
11486 Subp_Id
: out Entity_Id
;
11487 Subp_Index
: out Entity_Id
;
11488 Stmts
: out List_Id
;
11489 Decl
: out Node_Id
)
11492 case Get_PCS_Name
is
11493 when Name_PolyORB_DSA
=>
11494 PolyORB_Support
.Build_RPC_Receiver_Body
11503 GARLIC_Support
.Build_RPC_Receiver_Body
11511 end Specific_Build_RPC_Receiver_Body
;
11513 --------------------------------
11514 -- Specific_Build_Stub_Target --
11515 --------------------------------
11517 function Specific_Build_Stub_Target
11520 RCI_Locator
: Entity_Id
;
11521 Controlling_Parameter
: Entity_Id
) return RPC_Target
11524 case Get_PCS_Name
is
11525 when Name_PolyORB_DSA
=>
11527 PolyORB_Support
.Build_Stub_Target
11528 (Loc
, Decls
, RCI_Locator
, Controlling_Parameter
);
11532 GARLIC_Support
.Build_Stub_Target
11533 (Loc
, Decls
, RCI_Locator
, Controlling_Parameter
);
11535 end Specific_Build_Stub_Target
;
11537 --------------------------------
11538 -- Specific_RPC_Receiver_Decl --
11539 --------------------------------
11541 function Specific_RPC_Receiver_Decl
11542 (RACW_Type
: Entity_Id
) return Node_Id
11545 case Get_PCS_Name
is
11546 when Name_PolyORB_DSA
=>
11547 return PolyORB_Support
.RPC_Receiver_Decl
(RACW_Type
);
11550 return GARLIC_Support
.RPC_Receiver_Decl
(RACW_Type
);
11552 end Specific_RPC_Receiver_Decl
;
11554 -----------------------------------------------
11555 -- Specific_Build_Subprogram_Receiving_Stubs --
11556 -----------------------------------------------
11558 function Specific_Build_Subprogram_Receiving_Stubs
11559 (Vis_Decl
: Node_Id
;
11560 Asynchronous
: Boolean;
11561 Dynamically_Asynchronous
: Boolean := False;
11562 Stub_Type
: Entity_Id
:= Empty
;
11563 RACW_Type
: Entity_Id
:= Empty
;
11564 Parent_Primitive
: Entity_Id
:= Empty
) return Node_Id
11567 case Get_PCS_Name
is
11568 when Name_PolyORB_DSA
=>
11570 PolyORB_Support
.Build_Subprogram_Receiving_Stubs
11573 Dynamically_Asynchronous
,
11580 GARLIC_Support
.Build_Subprogram_Receiving_Stubs
11583 Dynamically_Asynchronous
,
11588 end Specific_Build_Subprogram_Receiving_Stubs
;
11590 -------------------------------
11591 -- Transmit_As_Unconstrained --
11592 -------------------------------
11594 function Transmit_As_Unconstrained
(Typ
: Entity_Id
) return Boolean is
11597 not (Is_Elementary_Type
(Typ
) or else Is_Constrained
(Typ
))
11598 or else (Is_Access_Type
(Typ
) and then Can_Never_Be_Null
(Typ
));
11599 end Transmit_As_Unconstrained
;
11601 --------------------------
11602 -- Underlying_RACW_Type --
11603 --------------------------
11605 function Underlying_RACW_Type
(RAS_Typ
: Entity_Id
) return Entity_Id
is
11606 Record_Type
: Entity_Id
;
11609 if Ekind
(RAS_Typ
) = E_Record_Type
then
11610 Record_Type
:= RAS_Typ
;
11612 pragma Assert
(Present
(Equivalent_Type
(RAS_Typ
)));
11613 Record_Type
:= Equivalent_Type
(RAS_Typ
);
11617 Etype
(Subtype_Indication
11618 (Component_Definition
11619 (First
(Component_Items
11622 (Declaration_Node
(Record_Type
))))))));
11623 end Underlying_RACW_Type
;