1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2007, 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 -- Routines to build stream subprograms for composite types
28 with Exp_Tss
; use Exp_Tss
;
29 with Types
; use Types
;
33 function Build_Elementary_Input_Call
(N
: Node_Id
) return Node_Id
;
34 -- Build call to Read attribute function for elementary type. Also used
35 -- for Input attributes for elementary types with an appropriate extra
36 -- assignment statement. N is the attribute reference node.
38 function Build_Elementary_Write_Call
(N
: Node_Id
) return Node_Id
;
39 -- Build call to Write attribute function for elementary type. Also used
40 -- for Output attributes for elementary types (since the effect of the
41 -- two attributes is identical for elementary types). N is the attribute
44 function Build_Stream_Attr_Profile
47 Nam
: TSS_Name_Type
) return List_Id
;
48 -- Builds the parameter profile for the stream attribute identified by
49 -- the given name. This is used for the tagged case to build the spec
50 -- for the primitive operation.
52 -- The following routines build procedures and functions for stream
53 -- attributes applied to composite types. For each of these routines,
54 -- Loc is used to provide the location for the constructed subprogram
55 -- declaration. Typ is the base type to which the subprogram applies
56 -- (i.e. the base type of the stream attribute prefix). The returned
57 -- results are the declaration and name (entity) of the subprogram.
59 procedure Build_Array_Input_Function
63 Fnam
: out Entity_Id
);
64 -- Build function for Input attribute for array type
66 procedure Build_Array_Output_Procedure
70 Pnam
: out Entity_Id
);
71 -- Build procedure for Output attribute for array type
73 procedure Build_Array_Read_Procedure
77 Pnam
: out Entity_Id
);
78 -- Build procedure for Read attribute for array type. Nod provides the
79 -- Sloc value for generated code.
81 procedure Build_Array_Write_Procedure
85 Pnam
: out Entity_Id
);
86 -- Build procedure for Write attribute for array type. Nod provides the
87 -- Sloc value for generated code.
89 procedure Build_Mutable_Record_Read_Procedure
93 Pnam
: out Entity_Id
);
94 -- Build procedure to Read a record with default discriminants.
95 -- Discriminants must be read explicitly (RM 13.13.2(9)) in the
96 -- same manner as is done for 'Input.
98 procedure Build_Mutable_Record_Write_Procedure
102 Pnam
: out Entity_Id
);
103 -- Build procedure to write a record with default discriminants.
104 -- Discriminants must be written explicitly (RM 13.13.2(9)) in
105 -- the same manner as is done for 'Output.
107 procedure Build_Record_Or_Elementary_Input_Function
111 Fnam
: out Entity_Id
);
112 -- Build function for Input attribute for record type or for an
113 -- elementary type (the latter is used only in the case where a
114 -- user defined Read routine is defined, since in other cases,
115 -- Input calls the appropriate runtime library routine directly.
117 procedure Build_Record_Or_Elementary_Output_Procedure
121 Pnam
: out Entity_Id
);
122 -- Build procedure for Output attribute for record type or for an
123 -- elementary type (the latter is used only in the case where a
124 -- user defined Write routine is defined, since in other cases,
125 -- Output calls the appropriate runtime library routine directly.
127 procedure Build_Record_Read_Procedure
131 Pnam
: out Entity_Id
);
132 -- Build procedure for Read attribute for record type
134 procedure Build_Record_Write_Procedure
138 Pnam
: out Entity_Id
);
139 -- Build procedure for Write attribute for record type
141 procedure Build_Stream_Procedure
148 -- Called to build an array or record stream procedure. The first three
149 -- arguments are the same as Build_Record_Or_Elementary_Output_Procedure.
150 -- Stms is the list of statements for the body (the declaration list is
151 -- always null), and Pnam is the name of the constructed procedure.
152 -- Used by Exp_Dist to generate stream-oriented attributes for RACWs.