OSDN Git Service

* Make-lang.in (gnat_ug_unx.info): Add dependency on stmp-docobjdir.
[pf3gnuchains/gcc-fork.git] / gcc / ada / exp_ch3.ads
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                              E X P _ C H 3                               --
6 --                                                                          --
7 --                                 S p e c                                  --
8 --                                                                          --
9 --           Copyright (C) 1992-2001 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 2,  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 COPYING.  If not, write --
19 -- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
20 -- MA 02111-1307, USA.                                                      --
21 --                                                                          --
22 -- GNAT was originally developed  by the GNAT team at  New York University. --
23 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
24 --                                                                          --
25 ------------------------------------------------------------------------------
26
27 --  Expand routines for chapter 3 constructs
28
29 with Types; use Types;
30 with Elists; use Elists;
31
32 package Exp_Ch3 is
33
34    procedure Expand_N_Object_Declaration         (N : Node_Id);
35    procedure Expand_N_Subtype_Indication         (N : Node_Id);
36    procedure Expand_N_Variant_Part               (N : Node_Id);
37    procedure Expand_N_Full_Type_Declaration      (N : Node_Id);
38
39    procedure Expand_Previous_Access_Type (Def_Id : Entity_Id);
40    --  For a full type declaration that contains tasks, or that is a task,
41    --  check whether there exists an access type whose designated type is an
42    --  incomplete declarations for the current composite type. If so, build
43    --  the master for that access type, now that it is known to denote an
44    --  object with tasks.
45
46    procedure Expand_Derived_Record (T : Entity_Id; Def : Node_Id);
47    --  Add a field _parent in the extension part of the record.
48
49    procedure Build_Discr_Checking_Funcs (N : Node_Id);
50    --  Builds function which checks whether the component name is consistent
51    --  with the current discriminants. N is the full type declaration node,
52    --  and the discriminant checking functions are inserted after this node.
53
54    function Build_Initialization_Call
55      (Loc          : Source_Ptr;
56       Id_Ref       : Node_Id;
57       Typ          : Entity_Id;
58       In_Init_Proc : Boolean := False;
59       Enclos_Type  : Entity_Id := Empty;
60       Discr_Map    : Elist_Id := New_Elmt_List)
61       return         List_Id;
62    --  Builds a call to the initialization procedure of the Id entity. Id_Ref
63    --  is either a new reference to Id (for record fields), or an indexed
64    --  component (for array elements). Loc is the source location for the
65    --  constructed tree, and Typ is the type of the entity (the initialization
66    --  procedure of the base type is the procedure that actually gets called).
67    --  In_Init_Proc has to be set to True when the call is itself in an Init
68    --  procedure in order to enable the use of discriminals. Enclos_type is
69    --  the type of the init_proc and it is used for various expansion cases
70    --  including the case where Typ is a task type which is a array component,
71    --  the indices of the enclosing type are used to build the string that
72    --  identifies each task at runtime.
73    --
74    --  Discr_Map is used to replace discriminants by their discriminals in
75    --  expressions used to constrain record components. In the presence of
76    --  entry families bounded by discriminants, protected type discriminants
77    --  can appear within expressions in array bounds (not as stand-alone
78    --  identifiers) and a general replacement is necessary.
79
80    procedure Freeze_Type (N : Node_Id);
81    --  This procedure executes the freezing actions associated with the given
82    --  freeze type node N.
83
84    function Needs_Simple_Initialization (T : Entity_Id) return Boolean;
85    --  Certain types need initialization even though there is no specific
86    --  initialization routine. In this category are access types (which
87    --  need initializing to null), packed array types whose implementation
88    --  is a modular type, and all scalar types if Normalize_Scalars is set,
89    --  as well as private types whose underlying type is present and meets
90    --  any of these criteria. Finally, descendants of String and Wide_String
91    --  also need initialization in Initialize/Normalize_Scalars mode.
92
93    function Get_Simple_Init_Val
94      (T    : Entity_Id;
95       Loc  : Source_Ptr)
96       return Node_Id;
97    --  For a type which Needs_Simple_Initialization (see above), prepares
98    --  the tree for an expression representing the required initial value.
99    --  Loc is the source location used in constructing this tree which is
100    --  returned as the result of the call.
101
102 end Exp_Ch3;