OSDN Git Service

2004-10-04 Vincent Celier <celier@gnat.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / table.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                                T A B L E                                 --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --          Copyright (C) 1992-2004 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 -- As a special exception,  if other files  instantiate  generics from this --
23 -- unit, or you link  this unit with other files  to produce an executable, --
24 -- this  unit  does not  by itself cause  the resulting  executable  to  be --
25 -- covered  by the  GNU  General  Public  License.  This exception does not --
26 -- however invalidate  any other reasons why  the executable file  might be --
27 -- covered by the  GNU Public License.                                      --
28 --                                                                          --
29 -- GNAT was originally developed  by the GNAT team at  New York University. --
30 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
31 --                                                                          --
32 ------------------------------------------------------------------------------
33
34 with Debug;   use Debug;
35 with Opt;     use Opt;
36 with Output;  use Output;
37 with System;  use System;
38 with Tree_IO; use Tree_IO;
39
40 with System.Memory; use System.Memory;
41
42 with Unchecked_Conversion;
43
44 pragma Elaborate_All (Output);
45
46 package body Table is
47    package body Table is
48
49       Min : constant Int := Int (Table_Low_Bound);
50       --  Subscript of the minimum entry in the currently allocated table
51
52       Length : Int := 0;
53       --  Number of entries in currently allocated table. The value of zero
54       --  ensures that we initially allocate the table.
55
56       -----------------------
57       -- Local Subprograms --
58       -----------------------
59
60       procedure Reallocate;
61       --  Reallocate the existing table according to the current value stored
62       --  in Max. Works correctly to do an initial allocation if the table
63       --  is currently null.
64
65       function Tree_Get_Table_Address return Address;
66       --  Return Null_Address if the table length is zero,
67       --  Table (First)'Address if not.
68
69       pragma Warnings (Off);
70       --  Turn off warnings. The following unchecked conversions are only used
71       --  internally in this package, and cannot never result in any instances
72       --  of improperly aliased pointers for the client of the package.
73
74       function To_Address is new Unchecked_Conversion (Table_Ptr, Address);
75       function To_Pointer is new Unchecked_Conversion (Address, Table_Ptr);
76
77       pragma Warnings (On);
78
79       ------------
80       -- Append --
81       ------------
82
83       procedure Append (New_Val : Table_Component_Type) is
84       begin
85          Increment_Last;
86          Table (Table_Index_Type (Last_Val)) := New_Val;
87       end Append;
88
89       --------------------
90       -- Decrement_Last --
91       --------------------
92
93       procedure Decrement_Last is
94       begin
95          Last_Val := Last_Val - 1;
96       end Decrement_Last;
97
98       ----------
99       -- Free --
100       ----------
101
102       procedure Free is
103       begin
104          Free (To_Address (Table));
105          Table := null;
106          Length := 0;
107       end Free;
108
109       --------------------
110       -- Increment_Last --
111       --------------------
112
113       procedure Increment_Last is
114       begin
115          Last_Val := Last_Val + 1;
116
117          if Last_Val > Max then
118             Reallocate;
119          end if;
120       end Increment_Last;
121
122       ----------
123       -- Init --
124       ----------
125
126       procedure Init is
127          Old_Length : constant Int := Length;
128
129       begin
130          Locked   := False;
131          Last_Val := Min - 1;
132          Max      := Min + (Table_Initial * Table_Factor) - 1;
133          Length   := Max - Min + 1;
134
135          --  If table is same size as before (happens when table is never
136          --  expanded which is a common case), then simply reuse it. Note
137          --  that this also means that an explicit Init call right after
138          --  the implicit one in the package body is harmless.
139
140          if Old_Length = Length then
141             return;
142
143          --  Otherwise we can use Reallocate to get a table of the right size.
144          --  Note that Reallocate works fine to allocate a table of the right
145          --  initial size when it is first allocated.
146
147          else
148             Reallocate;
149          end if;
150       end Init;
151
152       ----------
153       -- Last --
154       ----------
155
156       function Last return Table_Index_Type is
157       begin
158          return Table_Index_Type (Last_Val);
159       end Last;
160
161       ----------------
162       -- Reallocate --
163       ----------------
164
165       procedure Reallocate is
166          New_Size : Memory.size_t;
167
168       begin
169          if Max < Last_Val then
170             pragma Assert (not Locked);
171
172             --  Make sure that we have at least the initial allocation. This
173             --  is needed in cases where a zero length table is written out.
174
175             Length := Int'Max (Length, Table_Initial);
176
177             --  Now increment table length until it is sufficiently large
178
179             while Max < Last_Val loop
180                Length := Length * (100 + Table_Increment) / 100;
181                Max := Min + Length - 1;
182             end loop;
183
184             if Debug_Flag_D then
185                Write_Str ("--> Allocating new ");
186                Write_Str (Table_Name);
187                Write_Str (" table, size = ");
188                Write_Int (Max - Min + 1);
189                Write_Eol;
190             end if;
191          end if;
192
193          New_Size :=
194            Memory.size_t ((Max - Min + 1) *
195                           (Table_Type'Component_Size / Storage_Unit));
196
197          if Table = null then
198             Table := To_Pointer (Alloc (New_Size));
199
200          elsif New_Size > 0 then
201             Table :=
202               To_Pointer (Realloc (Ptr  => To_Address (Table),
203                                    Size => New_Size));
204          end if;
205
206          if Length /= 0 and then Table = null then
207             Set_Standard_Error;
208             Write_Str ("available memory exhausted");
209             Write_Eol;
210             Set_Standard_Output;
211             raise Unrecoverable_Error;
212          end if;
213
214       end Reallocate;
215
216       -------------
217       -- Release --
218       -------------
219
220       procedure Release is
221       begin
222          Length := Last_Val - Int (Table_Low_Bound) + 1;
223          Max    := Last_Val;
224          Reallocate;
225       end Release;
226
227       -------------
228       -- Restore --
229       -------------
230
231       procedure Restore (T : Saved_Table) is
232       begin
233          Free (To_Address (Table));
234          Last_Val := T.Last_Val;
235          Max      := T.Max;
236          Table    := T.Table;
237          Length   := Max - Min + 1;
238       end Restore;
239
240       ----------
241       -- Save --
242       ----------
243
244       function Save return Saved_Table is
245          Res : Saved_Table;
246
247       begin
248          Res.Last_Val := Last_Val;
249          Res.Max      := Max;
250          Res.Table    := Table;
251
252          Table  := null;
253          Length := 0;
254          Init;
255          return Res;
256       end Save;
257
258       --------------
259       -- Set_Item --
260       --------------
261
262       procedure Set_Item
263          (Index : Table_Index_Type;
264           Item  : Table_Component_Type)
265       is
266       begin
267          if Int (Index) > Max then
268             Set_Last (Index);
269          end if;
270
271          Table (Index) := Item;
272       end Set_Item;
273
274       --------------
275       -- Set_Last --
276       --------------
277
278       procedure Set_Last (New_Val : Table_Index_Type) is
279       begin
280          if Int (New_Val) < Last_Val then
281             Last_Val := Int (New_Val);
282          else
283             Last_Val := Int (New_Val);
284
285             if Last_Val > Max then
286                Reallocate;
287             end if;
288          end if;
289       end Set_Last;
290
291       ----------------------------
292       -- Tree_Get_Table_Address --
293       ----------------------------
294
295       function Tree_Get_Table_Address return Address is
296       begin
297          if Length = 0 then
298             return Null_Address;
299          else
300             return Table (First)'Address;
301          end if;
302       end Tree_Get_Table_Address;
303
304       ---------------
305       -- Tree_Read --
306       ---------------
307
308       --  Note: we allocate only the space required to accommodate the data
309       --  actually written, which means that a Tree_Write/Tree_Read sequence
310       --  does an implicit Release.
311
312       procedure Tree_Read is
313       begin
314          Tree_Read_Int (Max);
315          Last_Val := Max;
316          Length := Max - Min + 1;
317          Reallocate;
318
319          Tree_Read_Data
320            (Tree_Get_Table_Address,
321              (Last_Val - Int (First) + 1) *
322                Table_Type'Component_Size / Storage_Unit);
323       end Tree_Read;
324
325       ----------------
326       -- Tree_Write --
327       ----------------
328
329       --  Note: we write out only the currently valid data, not the entire
330       --  contents of the allocated array. See note above on Tree_Read.
331
332       procedure Tree_Write is
333       begin
334          Tree_Write_Int (Int (Last));
335          Tree_Write_Data
336            (Tree_Get_Table_Address,
337             (Last_Val - Int (First) + 1) *
338               Table_Type'Component_Size / Storage_Unit);
339       end Tree_Write;
340
341    begin
342       Init;
343    end Table;
344 end Table;