OSDN Git Service

2008-03-26 Javier Miranda <miranda@adacore.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / exp_ch13.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                             E X P _ C H 1 3                              --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --          Copyright (C) 1992-2007, Free Software Foundation, Inc.         --
10 --                                                                          --
11 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
12 -- terms of the  GNU General Public License as published  by the Free Soft- --
13 -- ware  Foundation;  either version 3,  or (at your option) any later ver- --
14 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
17 -- for  more details.  You should have  received  a copy of the GNU General --
18 -- Public License  distributed with GNAT; see file COPYING3.  If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license.          --
20 --                                                                          --
21 -- GNAT was originally developed  by the GNAT team at  New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
23 --                                                                          --
24 ------------------------------------------------------------------------------
25
26 with Atree;    use Atree;
27 with Checks;   use Checks;
28 with Einfo;    use Einfo;
29 with Exp_Ch3;  use Exp_Ch3;
30 with Exp_Ch6;  use Exp_Ch6;
31 with Exp_Imgv; use Exp_Imgv;
32 with Exp_Tss;  use Exp_Tss;
33 with Exp_Util; use Exp_Util;
34 with Namet;    use Namet;
35 with Nlists;   use Nlists;
36 with Nmake;    use Nmake;
37 with Rtsfind;  use Rtsfind;
38 with Sem;      use Sem;
39 with Sem_Ch7;  use Sem_Ch7;
40 with Sem_Ch8;  use Sem_Ch8;
41 with Sem_Eval; use Sem_Eval;
42 with Sem_Util; use Sem_Util;
43 with Sinfo;    use Sinfo;
44 with Snames;   use Snames;
45 with Stand;    use Stand;
46 with Tbuild;   use Tbuild;
47 with Uintp;    use Uintp;
48
49 package body Exp_Ch13 is
50
51    ------------------------------------------
52    -- Expand_N_Attribute_Definition_Clause --
53    ------------------------------------------
54
55    --  Expansion action depends on attribute involved
56
57    procedure Expand_N_Attribute_Definition_Clause (N : Node_Id) is
58       Loc : constant Source_Ptr := Sloc (N);
59       Exp : constant Node_Id    := Expression (N);
60       Ent : Entity_Id;
61       V   : Node_Id;
62
63    begin
64       Ent := Entity (Name (N));
65
66       if Is_Type (Ent) then
67          Ent := Underlying_Type (Ent);
68       end if;
69
70       case Get_Attribute_Id (Chars (N)) is
71
72          -------------
73          -- Address --
74          -------------
75
76          when Attribute_Address =>
77
78             --  If there is an initialization which did not come from the
79             --  source program, then it is an artifact of our expansion, and we
80             --  suppress it. The case we are most concerned about here is the
81             --  initialization of a packed array to all false, which seems
82             --  inappropriate for variable to which an address clause is
83             --  applied. The expression may itself have been rewritten if the
84             --  type is packed array, so we need to examine whether the
85             --  original node is in the source. An exception though is the case
86             --  of an access variable which is default initialized to null, and
87             --  such initialization is retained.
88
89             --  Furthermore, if the initialization is the equivalent aggregate
90             --  of the type initialization procedure, it replaces an implicit
91             --  call to the init proc, and must be respected. Note that for
92             --  packed types we do not build equivalent aggregates.
93
94             declare
95                Decl : constant Node_Id := Declaration_Node (Ent);
96                Typ  : constant Entity_Id := Etype (Ent);
97             begin
98                if Nkind (Decl) = N_Object_Declaration
99                   and then Present (Expression (Decl))
100                   and then Nkind (Expression (Decl)) /= N_Null
101                   and then
102                    not Comes_From_Source (Original_Node (Expression (Decl)))
103                then
104                   if Present (Base_Init_Proc (Typ))
105                     and then
106                       Present (Static_Initialization (Base_Init_Proc (Typ)))
107                   then
108                      null;
109                   else
110                      Set_Expression (Decl, Empty);
111                   end if;
112                end if;
113             end;
114
115          ---------------
116          -- Alignment --
117          ---------------
118
119          when Attribute_Alignment =>
120
121             --  As required by Gigi, we guarantee that the operand is an
122             --  integer literal (this simplifies things in Gigi).
123
124             if Nkind (Exp) /= N_Integer_Literal then
125                Rewrite
126                  (Exp, Make_Integer_Literal (Loc, Expr_Value (Exp)));
127             end if;
128
129          ------------------
130          -- Storage_Size --
131          ------------------
132
133          when Attribute_Storage_Size =>
134
135             --  If the type is a task type, then assign the value of the
136             --  storage size to the Size variable associated with the task.
137             --    task_typeZ := expression
138
139             if Ekind (Ent) = E_Task_Type then
140                Insert_Action (N,
141                  Make_Assignment_Statement (Loc,
142                    Name => New_Reference_To (Storage_Size_Variable (Ent), Loc),
143                    Expression =>
144                      Convert_To (RTE (RE_Size_Type), Expression (N))));
145
146             --  For Storage_Size for an access type, create a variable to hold
147             --  the value of the specified size with name typeV and expand an
148             --  assignment statement to initialze this value.
149
150             elsif Is_Access_Type (Ent) then
151                V := Make_Defining_Identifier (Loc,
152                       New_External_Name (Chars (Ent), 'V'));
153
154                Insert_Action (N,
155                  Make_Object_Declaration (Loc,
156                    Defining_Identifier => V,
157                    Object_Definition  =>
158                      New_Reference_To (RTE (RE_Storage_Offset), Loc),
159                    Expression =>
160                      Convert_To (RTE (RE_Storage_Offset), Expression (N))));
161
162                Set_Storage_Size_Variable (Ent, Entity_Id (V));
163             end if;
164
165          --  Other attributes require no expansion
166
167          when others =>
168             null;
169
170       end case;
171    end Expand_N_Attribute_Definition_Clause;
172
173    ----------------------------
174    -- Expand_N_Freeze_Entity --
175    ----------------------------
176
177    procedure Expand_N_Freeze_Entity (N : Node_Id) is
178       E              : constant Entity_Id := Entity (N);
179       E_Scope        : Entity_Id;
180       S              : Entity_Id;
181       In_Other_Scope : Boolean;
182       In_Outer_Scope : Boolean;
183       Decl           : Node_Id;
184       Delete         : Boolean := False;
185
186    begin
187       --  Processing for objects with address clauses
188
189       if Is_Object (E) and then Present (Address_Clause (E)) then
190          Apply_Address_Clause_Check (E, N);
191          return;
192
193       --  Only other items requiring any front end action are types and
194       --  subprograms.
195
196       elsif not Is_Type (E) and then not Is_Subprogram (E) then
197          return;
198       end if;
199
200       --  Here E is a type or a subprogram
201
202       E_Scope := Scope (E);
203
204       --  This is an error protection against previous errors
205
206       if No (E_Scope) then
207          return;
208       end if;
209
210       --  If we are freezing entities defined in protected types, they belong
211       --  in the enclosing scope, given that the original type has been
212       --  expanded away. The same is true for entities in task types, in
213       --  particular the parameter records of entries (Entities in bodies are
214       --  all frozen within the body). If we are in the task body, this is a
215       --  proper scope. If we are within a subprogram body, the proper scope
216       --  is the corresponding spec. This may happen for itypes generated in
217       --  the bodies of protected operations.
218
219       if Ekind (E_Scope) = E_Protected_Type
220         or else (Ekind (E_Scope) = E_Task_Type
221                    and then not Has_Completion (E_Scope))
222       then
223          E_Scope := Scope (E_Scope);
224
225       elsif Ekind (E_Scope) = E_Subprogram_Body then
226          E_Scope := Corresponding_Spec (Unit_Declaration_Node (E_Scope));
227
228       end if;
229
230       S := Current_Scope;
231       while S /= Standard_Standard and then S /= E_Scope loop
232          S := Scope (S);
233       end loop;
234
235       In_Other_Scope := not (S = E_Scope);
236       In_Outer_Scope := (not In_Other_Scope) and then (S /= Current_Scope);
237
238       --  If the entity being frozen is defined in a scope that is not
239       --  currently on the scope stack, we must establish the proper
240       --  visibility before freezing the entity and related subprograms.
241
242       if In_Other_Scope then
243          Push_Scope (E_Scope);
244          Install_Visible_Declarations (E_Scope);
245
246          if Ekind (E_Scope) = E_Package         or else
247             Ekind (E_Scope) = E_Generic_Package or else
248             Is_Protected_Type (E_Scope)         or else
249             Is_Task_Type (E_Scope)
250          then
251             Install_Private_Declarations (E_Scope);
252          end if;
253
254       --  If the entity is in an outer scope, then that scope needs to
255       --  temporarily become the current scope so that operations created
256       --  during type freezing will be declared in the right scope and
257       --  can properly override any corresponding inherited operations.
258
259       elsif In_Outer_Scope then
260          Push_Scope (E_Scope);
261       end if;
262
263       --  If type, freeze the type
264
265       if Is_Type (E) then
266          Delete := Freeze_Type (N);
267
268          --  And for enumeration type, build the enumeration tables
269
270          if Is_Enumeration_Type (E) then
271             Build_Enumeration_Image_Tables (E, N);
272          end if;
273
274       --  If subprogram, freeze the subprogram
275
276       elsif Is_Subprogram (E) then
277          Freeze_Subprogram (N);
278
279          --  Ada 2005 (AI-251): Remove the freezing node associated with the
280          --  entities internally used by the frontend to register primitives
281          --  covering abstract interfaces. The call to Freeze_Subprogram has
282          --  already expanded the code that fills the corresponding entry in
283          --  its secondary dispatch table and therefore the code generator
284          --  has nothing else to do with this freezing node.
285
286          Delete := Present (Abstract_Interface_Alias (E));
287       end if;
288
289       --  Analyze actions generated by freezing. The init_proc contains source
290       --  expressions that may raise Constraint_Error, and the assignment
291       --  procedure for complex types needs checks on individual component
292       --  assignments, but all other freezing actions should be compiled with
293       --  all checks off.
294
295       if Present (Actions (N)) then
296          Decl := First (Actions (N));
297          while Present (Decl) loop
298             if Nkind (Decl) = N_Subprogram_Body
299               and then (Is_Init_Proc (Defining_Entity (Decl))
300                           or else
301                             Chars (Defining_Entity (Decl)) = Name_uAssign)
302             then
303                Analyze (Decl);
304
305             --  A subprogram body created for a renaming_as_body completes
306             --  a previous declaration, which may be in a different scope.
307             --  Establish the proper scope before analysis.
308
309             elsif Nkind (Decl) = N_Subprogram_Body
310               and then Present (Corresponding_Spec (Decl))
311               and then Scope (Corresponding_Spec (Decl)) /= Current_Scope
312             then
313                Push_Scope (Scope (Corresponding_Spec (Decl)));
314                Analyze (Decl, Suppress => All_Checks);
315                Pop_Scope;
316
317             else
318                Analyze (Decl, Suppress => All_Checks);
319             end if;
320
321             Next (Decl);
322          end loop;
323       end if;
324
325       --  If we are to delete this N_Freeze_Entity, do so by rewriting so that
326       --  a loop on all nodes being inserted will work propertly.
327
328       if Delete then
329          Rewrite (N, Make_Null_Statement (Sloc (N)));
330       end if;
331
332       if In_Other_Scope then
333          if Ekind (Current_Scope) = E_Package then
334             End_Package_Scope (E_Scope);
335          else
336             End_Scope;
337          end if;
338
339       elsif In_Outer_Scope then
340          Pop_Scope;
341       end if;
342    end Expand_N_Freeze_Entity;
343
344    -------------------------------------------
345    -- Expand_N_Record_Representation_Clause --
346    -------------------------------------------
347
348    --  The only expansion required is for the case of a mod clause present,
349    --  which is removed, and translated into an alignment representation
350    --  clause inserted immediately after the record rep clause with any
351    --  initial pragmas inserted at the start of the component clause list.
352
353    procedure Expand_N_Record_Representation_Clause (N : Node_Id) is
354       Loc     : constant Source_Ptr := Sloc (N);
355       Rectype : constant Entity_Id  := Entity (Identifier (N));
356       Mod_Val : Uint;
357       Citems  : List_Id;
358       Repitem : Node_Id;
359       AtM_Nod : Node_Id;
360
361    begin
362       if Present (Mod_Clause (N)) then
363          Mod_Val := Expr_Value (Expression (Mod_Clause (N)));
364          Citems  := Pragmas_Before (Mod_Clause (N));
365
366          if Present (Citems) then
367             Append_List_To (Citems, Component_Clauses (N));
368             Set_Component_Clauses (N, Citems);
369          end if;
370
371          AtM_Nod :=
372            Make_Attribute_Definition_Clause (Loc,
373              Name       => New_Reference_To (Base_Type (Rectype), Loc),
374              Chars      => Name_Alignment,
375              Expression => Make_Integer_Literal (Loc, Mod_Val));
376
377          Set_From_At_Mod (AtM_Nod);
378          Insert_After (N, AtM_Nod);
379          Set_Mod_Clause (N, Empty);
380       end if;
381
382       --  If the record representation clause has no components, then
383       --  completely remove it.  Note that we also have to remove
384       --  ourself from the Rep Item list.
385
386       if Is_Empty_List (Component_Clauses (N)) then
387          if First_Rep_Item (Rectype) = N then
388             Set_First_Rep_Item (Rectype, Next_Rep_Item (N));
389          else
390             Repitem := First_Rep_Item (Rectype);
391             while Present (Next_Rep_Item (Repitem)) loop
392                if Next_Rep_Item (Repitem) = N then
393                   Set_Next_Rep_Item (Repitem, Next_Rep_Item (N));
394                   exit;
395                end if;
396
397                Next_Rep_Item (Repitem);
398             end loop;
399          end if;
400
401          Rewrite (N,
402            Make_Null_Statement (Loc));
403       end if;
404    end Expand_N_Record_Representation_Clause;
405
406 end Exp_Ch13;