OSDN Git Service

* gcc.dg/vect/O3-vect-pr34223.c: Check vect_int_mult.
[pf3gnuchains/gcc-fork.git] / gcc / ada / prj-attr.ads
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                             P R J . A T T R                              --
6 --                                                                          --
7 --                                 S p e c                                  --
8 --                                                                          --
9 --          Copyright (C) 2001-2008, 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 --  This package defines packages and attributes in GNAT project files.
27 --  There are predefined packages and attributes.
28
29 --  It is also possible to define new packages with their attributes
30
31 with Table;
32
33 with GNAT.Strings;
34
35 package Prj.Attr is
36
37    function Package_Name_List return GNAT.Strings.String_List;
38    --  Returns the list of valid package names, including those added by
39    --  procedures Register_New_Package below. The String_Access components of
40    --  the returned String_List should never be freed.
41
42    procedure Initialize;
43    --  Initialize the predefined project level attributes and the predefined
44    --  packages and their attribute. This procedure should be called by
45    --  Prj.Initialize.
46
47    type Attribute_Kind is
48      (Unknown,
49       Single,
50       Associative_Array,
51       Optional_Index_Associative_Array,
52       Case_Insensitive_Associative_Array,
53       Optional_Index_Case_Insensitive_Associative_Array);
54    --  Characteristics of an attribute. Optional_Index indicates that there
55    --  may be an optional index in the index of the associative array, as in
56    --     for Switches ("files.ada" at 2) use ...
57    --  Above character literals should be documented ???
58
59    subtype Defined_Attribute_Kind is Attribute_Kind
60      range Single .. Optional_Index_Case_Insensitive_Associative_Array;
61    --  Subset of Attribute_Kinds that may be used for the attributes that is
62    --  used when defining a new package.
63
64    Max_Attribute_Name_Length : constant := 64;
65    --  The maximum length of attribute names
66
67    subtype Attribute_Name_Length is
68      Positive range 1 .. Max_Attribute_Name_Length;
69
70    type Attribute_Data (Name_Length : Attribute_Name_Length := 1) is record
71       Name : String (1 .. Name_Length);
72       --  The name of the attribute
73
74       Attr_Kind  : Defined_Attribute_Kind;
75       --  The type of the attribute
76
77       Index_Is_File_Name : Boolean;
78       --  For associative arrays, indicate if the index is a file name, so
79       --  that the attribute kind may be modified depending on the case
80       --  sensitivity of file names. This is only taken into account when
81       --  Attr_Kind is Associative_Array or Optional_Index_Associative_Array.
82
83       Opt_Index : Boolean;
84       --  True if there may be an optional index in the value of the index,
85       --  as in:
86       --    "file.ada" at 2
87       --    ("main.adb", "file.ada" at 1)
88
89       Var_Kind : Defined_Variable_Kind;
90       --  The attribute value kind: single or list
91
92    end record;
93    --  Name and characteristics of an attribute in a package registered
94    --  explicitly with Register_New_Package (see below).
95
96    type Attribute_Data_Array is array (Positive range <>) of Attribute_Data;
97    --  A list of attribute name/characteristics to be used as parameter of
98    --  procedure Register_New_Package below.
99
100    --  In the subprograms below, when it is specified that the subprogram
101    --  "fails", procedure Prj.Com.Fail is called. Unless it is specified
102    --  otherwise, if Prj.Com.Fail returns, exception Prj.Prj_Error is raised.
103
104    procedure Register_New_Package
105      (Name       : String;
106       Attributes : Attribute_Data_Array);
107    --  Add a new package with its attributes. This procedure can only be
108    --  called after Initialize, but before any other call to a service of
109    --  the Project Manager. Fail if the name of the package is empty or not
110    --  unique, or if the names of the attributes are not different.
111
112    ----------------
113    -- Attributes --
114    ----------------
115
116    type Attribute_Node_Id is private;
117    --  The type to refers to an attribute, self-initialized
118
119    Empty_Attribute : constant Attribute_Node_Id;
120    --  Indicates no attribute. Default value of Attribute_Node_Id objects
121
122    Attribute_First : constant Attribute_Node_Id;
123    --  First attribute node id of project level attributes
124
125    function Attribute_Node_Id_Of
126      (Name        : Name_Id;
127       Starting_At : Attribute_Node_Id) return Attribute_Node_Id;
128    --  Returns the node id of an attribute at the project level or in
129    --  a package. Starting_At indicates the first known attribute node where
130    --  to start the search. Returns Empty_Attribute if the attribute cannot
131    --  be found.
132
133    function Attribute_Kind_Of
134      (Attribute : Attribute_Node_Id) return Attribute_Kind;
135    --  Returns the attribute kind of a known attribute. Returns Unknown if
136    --  Attribute is Empty_Attribute.
137
138    procedure Set_Attribute_Kind_Of
139      (Attribute : Attribute_Node_Id;
140       To        : Attribute_Kind);
141    --  Set the attribute kind of a known attribute. Does nothing if
142    --  Attribute is Empty_Attribute.
143
144    function Attribute_Name_Of (Attribute : Attribute_Node_Id) return Name_Id;
145    --  Returns the name of a known attribute. Returns No_Name if Attribute is
146    --  Empty_Attribute.
147
148    function Variable_Kind_Of
149      (Attribute : Attribute_Node_Id) return Variable_Kind;
150    --  Returns the variable kind of a known attribute. Returns Undefined if
151    --  Attribute is Empty_Attribute.
152
153    procedure Set_Variable_Kind_Of
154      (Attribute : Attribute_Node_Id;
155       To        : Variable_Kind);
156    --  Set the variable kind of a known attribute. Does nothing if Attribute is
157    --  Empty_Attribute.
158
159    function Optional_Index_Of (Attribute : Attribute_Node_Id) return Boolean;
160    --  Returns True if Attribute is a known attribute and may have an
161    --  optional index. Returns False otherwise.
162
163    function Is_Read_Only (Attribute : Attribute_Node_Id) return Boolean;
164
165    function Next_Attribute
166      (After : Attribute_Node_Id) return Attribute_Node_Id;
167    --  Returns the attribute that follow After in the list of project level
168    --  attributes or the list of attributes in a package.
169    --  Returns Empty_Attribute if After is either Empty_Attribute or is the
170    --  last of the list.
171
172    function Others_Allowed_For (Attribute : Attribute_Node_Id) return Boolean;
173    --  True iff the index for an associative array attributes may be others
174
175    --------------
176    -- Packages --
177    --------------
178
179    type Package_Node_Id is private;
180    --  Type to refer to a package, self initialized
181
182    Empty_Package : constant Package_Node_Id;
183    --  Default value of Package_Node_Id objects
184
185    Unknown_Package : constant Package_Node_Id;
186    --  Value of an unknown package that has been found but is unknown.
187
188    procedure Register_New_Package (Name : String; Id : out Package_Node_Id);
189    --  Add a new package. Fails if Name (the package name) is empty or is
190    --  already the name of a package, and set Id to Empty_Package,
191    --  if Prj.Com.Fail returns. Initially, the new package has no attributes.
192    --  Id may be used to add attributes using procedure Register_New_Attribute
193    --  below.
194
195    procedure Register_New_Attribute
196      (Name               : String;
197       In_Package         : Package_Node_Id;
198       Attr_Kind          : Defined_Attribute_Kind;
199       Var_Kind           : Defined_Variable_Kind;
200       Index_Is_File_Name : Boolean := False;
201       Opt_Index          : Boolean := False);
202    --  Add a new attribute to registered package In_Package. Fails if Name
203    --  (the attribute name) is empty, if In_Package is Empty_Package or if
204    --  the attribute name has a duplicate name. See definition of type
205    --  Attribute_Data above for the meaning of parameters Attr_Kind, Var_Kind,
206    --  Index_Is_File_Name and Opt_Index.
207
208    function Package_Node_Id_Of (Name : Name_Id) return Package_Node_Id;
209    --  Returns the package node id of the package with name Name. Returns
210    --  Empty_Package if there is no package with this name.
211
212    function First_Attribute_Of
213      (Pkg : Package_Node_Id) return Attribute_Node_Id;
214    --  Returns the first attribute in the list of attributes of package Pkg.
215    --  Returns Empty_Attribute if Pkg is Empty_Package.
216
217 private
218    ----------------
219    -- Attributes --
220    ----------------
221
222    Attributes_Initial   : constant := 50;
223    Attributes_Increment : constant := 100;
224
225    Attribute_Node_Low_Bound  : constant := 0;
226    Attribute_Node_High_Bound : constant := 099_999_999;
227
228    type Attr_Node_Id is
229      range Attribute_Node_Low_Bound .. Attribute_Node_High_Bound;
230    --  Index type for table Attrs in the body
231
232    type Attribute_Node_Id is record
233       Value : Attr_Node_Id := Attribute_Node_Low_Bound;
234    end record;
235    --  Full declaration of self-initialized private type
236
237    Empty_Attr : constant Attr_Node_Id := Attribute_Node_Low_Bound;
238
239    Empty_Attribute : constant Attribute_Node_Id := (Value => Empty_Attr);
240
241    First_Attribute : constant Attr_Node_Id := Attribute_Node_Low_Bound + 1;
242
243    First_Attribute_Node_Id : constant Attribute_Node_Id :=
244                                (Value => First_Attribute);
245
246    Attribute_First : constant Attribute_Node_Id := First_Attribute_Node_Id;
247
248    --------------
249    -- Packages --
250    --------------
251
252    Packages_Initial   : constant := 10;
253    Packages_Increment : constant := 100;
254
255    Package_Node_Low_Bound  : constant := 0;
256    Package_Node_High_Bound : constant := 099_999_999;
257
258    type Pkg_Node_Id is
259      range Package_Node_Low_Bound .. Package_Node_High_Bound;
260    --  Index type for table Package_Attributes in the body
261
262    type Package_Node_Id is record
263       Value : Pkg_Node_Id := Package_Node_Low_Bound;
264    end record;
265    --  Full declaration of self-initialized private type
266
267    Empty_Pkg       : constant Pkg_Node_Id     := Package_Node_Low_Bound;
268    Empty_Package   : constant Package_Node_Id := (Value => Empty_Pkg);
269    Unknown_Pkg     : constant Pkg_Node_Id     := Package_Node_High_Bound;
270    Unknown_Package : constant Package_Node_Id := (Value => Unknown_Pkg);
271    First_Package   : constant Pkg_Node_Id     := Package_Node_Low_Bound + 1;
272
273    First_Package_Node_Id  : constant Package_Node_Id :=
274                               (Value => First_Package);
275
276    Package_First : constant Package_Node_Id := First_Package_Node_Id;
277
278    ----------------
279    -- Attributes --
280    ----------------
281
282    type Attribute_Record is record
283       Name           : Name_Id;
284       Var_Kind       : Variable_Kind;
285       Optional_Index : Boolean;
286       Attr_Kind      : Attribute_Kind;
287       Read_Only      : Boolean;
288       Others_Allowed : Boolean;
289       Next           : Attr_Node_Id;
290    end record;
291    --  Data for an attribute
292
293    package Attrs is
294       new Table.Table (Table_Component_Type => Attribute_Record,
295                        Table_Index_Type     => Attr_Node_Id,
296                        Table_Low_Bound      => First_Attribute,
297                        Table_Initial        => Attributes_Initial,
298                        Table_Increment      => Attributes_Increment,
299                        Table_Name           => "Prj.Attr.Attrs");
300    --  The table of the attributes
301
302    --------------
303    -- Packages --
304    --------------
305
306    type Package_Record is record
307       Name             : Name_Id;
308       Known            : Boolean := True;
309       First_Attribute  : Attr_Node_Id;
310    end record;
311    --  Data for a package
312
313    package Package_Attributes is
314       new Table.Table (Table_Component_Type => Package_Record,
315                        Table_Index_Type     => Pkg_Node_Id,
316                        Table_Low_Bound      => First_Package,
317                        Table_Initial        => Packages_Initial,
318                        Table_Increment      => Packages_Increment,
319                        Table_Name           => "Prj.Attr.Packages");
320    --  The table of the packages
321
322 end Prj.Attr;