1 ------------------------------------------------------------------------------
3 -- GNAT RUN-TIME COMPONENTS --
5 -- S Y S T E M . P O O L _ S I Z E --
9 -- Copyright (C) 1992-2004 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 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, 51 Franklin Street, Fifth Floor, --
20 -- Boston, MA 02110-1301, USA. --
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. --
29 -- GNAT was originally developed by the GNAT team at New York University. --
30 -- Extensive contributions were provided by Ada Core Technologies Inc. --
32 ------------------------------------------------------------------------------
34 with System
.Storage_Elements
;
35 with System
.Soft_Links
;
37 with Unchecked_Conversion
;
39 package body System
.Pool_Size
is
41 package SSE
renames System
.Storage_Elements
;
42 use type SSE
.Storage_Offset
;
44 -- Even though these storage pools are typically only used
45 -- by a single task, if multiple tasks are declared at the
46 -- same or a more nested scope as the storage pool, there
47 -- still may be concurrent access. The current implementation
48 -- of Stack_Bounded_Pool always uses a global lock for protecting
49 -- access. This should eventually be replaced by an atomic
50 -- linked list implementation for efficiency reasons.
52 package SSL
renames System
.Soft_Links
;
54 type Storage_Count_Access
is access SSE
.Storage_Count
;
55 function To_Storage_Count_Access
is
56 new Unchecked_Conversion
(Address
, Storage_Count_Access
);
58 SC_Size
: constant := SSE
.Storage_Count
'Object_Size / System
.Storage_Unit
;
60 package Variable_Size_Management
is
62 -- Embedded pool that manages allocation of variable-size data.
64 -- This pool is used as soon as the Elmt_sizS of the pool object is 0.
66 -- Allocation is done on the first chunk long enough for the request.
67 -- Deallocation just puts the freed chunk at the beginning of the list.
69 procedure Initialize
(Pool
: in out Stack_Bounded_Pool
);
71 (Pool
: in out Stack_Bounded_Pool
;
72 Address
: out System
.Address
;
73 Storage_Size
: SSE
.Storage_Count
;
74 Alignment
: SSE
.Storage_Count
);
77 (Pool
: in out Stack_Bounded_Pool
;
78 Address
: System
.Address
;
79 Storage_Size
: SSE
.Storage_Count
;
80 Alignment
: SSE
.Storage_Count
);
81 end Variable_Size_Management
;
83 package Vsize
renames Variable_Size_Management
;
90 (Pool
: in out Stack_Bounded_Pool
;
91 Address
: out System
.Address
;
92 Storage_Size
: SSE
.Storage_Count
;
93 Alignment
: SSE
.Storage_Count
)
98 if Pool
.Elmt_Size
= 0 then
99 Vsize
.Allocate
(Pool
, Address
, Storage_Size
, Alignment
);
101 elsif Pool
.First_Free
/= 0 then
102 Address
:= Pool
.The_Pool
(Pool
.First_Free
)'Address;
103 Pool
.First_Free
:= To_Storage_Count_Access
(Address
).all;
106 Pool
.First_Empty
<= (Pool
.Pool_Size
- Pool
.Aligned_Elmt_Size
+ 1)
108 Address
:= Pool
.The_Pool
(Pool
.First_Empty
)'Address;
109 Pool
.First_Empty
:= Pool
.First_Empty
+ Pool
.Aligned_Elmt_Size
;
128 (Pool
: in out Stack_Bounded_Pool
;
129 Address
: System
.Address
;
130 Storage_Size
: SSE
.Storage_Count
;
131 Alignment
: SSE
.Storage_Count
)
136 if Pool
.Elmt_Size
= 0 then
137 Vsize
.Deallocate
(Pool
, Address
, Storage_Size
, Alignment
);
140 To_Storage_Count_Access
(Address
).all := Pool
.First_Free
;
141 Pool
.First_Free
:= Address
- Pool
.The_Pool
'Address + 1;
155 procedure Initialize
(Pool
: in out Stack_Bounded_Pool
) is
157 -- Define the appropriate alignment for allocations. This is the
158 -- maximum of the requested alignment, and the alignment required
159 -- for Storage_Count values. The latter test is to ensure that we
160 -- can properly reference the linked list pointers for free lists.
162 Align
: constant SSE
.Storage_Count
:=
163 SSE
.Storage_Count
'Max
164 (SSE
.Storage_Count
'Alignment, Pool
.Alignment
);
167 if Pool
.Elmt_Size
= 0 then
168 Vsize
.Initialize
(Pool
);
171 Pool
.First_Free
:= 0;
172 Pool
.First_Empty
:= 1;
174 -- Compute the size to allocate given the size of the element and
175 -- the possible alignment requirement as defined above.
177 Pool
.Aligned_Elmt_Size
:=
178 SSE
.Storage_Count
'Max (SC_Size
,
179 ((Pool
.Elmt_Size
+ Align
- 1) / Align
) * Align
);
187 function Storage_Size
188 (Pool
: Stack_Bounded_Pool
) return SSE
.Storage_Count
191 return Pool
.Pool_Size
;
194 ------------------------------
195 -- Variable_Size_Management --
196 ------------------------------
198 package body Variable_Size_Management
is
200 Minimum_Size
: constant := 2 * SC_Size
;
203 (Pool
: Stack_Bounded_Pool
;
204 Chunk
, Size
: SSE
.Storage_Count
);
205 -- Update the field 'size' of a chunk of available storage
208 (Pool
: Stack_Bounded_Pool
;
209 Chunk
, Next
: SSE
.Storage_Count
);
210 -- Update the field 'next' of a chunk of available storage
213 (Pool
: Stack_Bounded_Pool
;
214 Chunk
: SSE
.Storage_Count
) return SSE
.Storage_Count
;
215 -- Fetch the field 'size' of a chunk of available storage
218 (Pool
: Stack_Bounded_Pool
;
219 Chunk
: SSE
.Storage_Count
) return SSE
.Storage_Count
;
220 -- Fetch the field 'next' of a chunk of available storage
223 (Pool
: Stack_Bounded_Pool
;
224 Addr
: System
.Address
) return SSE
.Storage_Count
;
225 -- Give the chunk number in the pool from its Address
232 (Pool
: in out Stack_Bounded_Pool
;
233 Address
: out System
.Address
;
234 Storage_Size
: SSE
.Storage_Count
;
235 Alignment
: SSE
.Storage_Count
)
237 Chunk
: SSE
.Storage_Count
;
238 New_Chunk
: SSE
.Storage_Count
;
239 Prev_Chunk
: SSE
.Storage_Count
;
240 Our_Align
: constant SSE
.Storage_Count
:=
241 SSE
.Storage_Count
'Max (SSE
.Storage_Count
'Alignment,
243 Align_Size
: constant SSE
.Storage_Count
:=
244 SSE
.Storage_Count
'Max (
246 ((Storage_Size
+ Our_Align
- 1) / Our_Align
) *
250 -- Look for the first big enough chunk
252 Prev_Chunk
:= Pool
.First_Free
;
253 Chunk
:= Next
(Pool
, Prev_Chunk
);
255 while Chunk
/= 0 and then Size
(Pool
, Chunk
) < Align_Size
loop
257 Chunk
:= Next
(Pool
, Chunk
);
260 -- Raise storage_error if no big enough chunk available
266 -- When the chunk is bigger than what is needed, take appropraite
267 -- amount and build a new shrinked chunk with the remainder.
269 if Size
(Pool
, Chunk
) - Align_Size
> Minimum_Size
then
270 New_Chunk
:= Chunk
+ Align_Size
;
271 Set_Size
(Pool
, New_Chunk
, Size
(Pool
, Chunk
) - Align_Size
);
272 Set_Next
(Pool
, New_Chunk
, Next
(Pool
, Chunk
));
273 Set_Next
(Pool
, Prev_Chunk
, New_Chunk
);
275 -- If the chunk is the right size, just delete it from the chain
278 Set_Next
(Pool
, Prev_Chunk
, Next
(Pool
, Chunk
));
281 Address
:= Pool
.The_Pool
(Chunk
)'Address;
289 (Pool
: Stack_Bounded_Pool
;
290 Addr
: System
.Address
) return SSE
.Storage_Count
293 return 1 + abs (Addr
- Pool
.The_Pool
(1)'Address);
301 (Pool
: in out Stack_Bounded_Pool
;
302 Address
: System
.Address
;
303 Storage_Size
: SSE
.Storage_Count
;
304 Alignment
: SSE
.Storage_Count
)
306 Align_Size
: constant SSE
.Storage_Count
:=
307 ((Storage_Size
+ Alignment
- 1) / Alignment
) *
309 Chunk
: constant SSE
.Storage_Count
:= Chunk_Of
(Pool
, Address
);
312 -- Attach the freed chunk to the chain
314 Set_Size
(Pool
, Chunk
,
315 SSE
.Storage_Count
'Max (Align_Size
, Minimum_Size
));
316 Set_Next
(Pool
, Chunk
, Next
(Pool
, Pool
.First_Free
));
317 Set_Next
(Pool
, Pool
.First_Free
, Chunk
);
325 procedure Initialize
(Pool
: in out Stack_Bounded_Pool
) is
327 Pool
.First_Free
:= 1;
329 if Pool
.Pool_Size
> Minimum_Size
then
330 Set_Next
(Pool
, Pool
.First_Free
, Pool
.First_Free
+ Minimum_Size
);
331 Set_Size
(Pool
, Pool
.First_Free
, 0);
332 Set_Size
(Pool
, Pool
.First_Free
+ Minimum_Size
,
333 Pool
.Pool_Size
- Minimum_Size
);
334 Set_Next
(Pool
, Pool
.First_Free
+ Minimum_Size
, 0);
343 (Pool
: Stack_Bounded_Pool
;
344 Chunk
: SSE
.Storage_Count
) return SSE
.Storage_Count
347 pragma Warnings
(Off
);
348 -- Kill alignment warnings, we are careful to make sure
349 -- that the alignment is correct.
351 return To_Storage_Count_Access
352 (Pool
.The_Pool
(Chunk
+ SC_Size
)'Address).all;
354 pragma Warnings
(On
);
362 (Pool
: Stack_Bounded_Pool
;
363 Chunk
, Next
: SSE
.Storage_Count
)
366 pragma Warnings
(Off
);
367 -- Kill alignment warnings, we are careful to make sure
368 -- that the alignment is correct.
370 To_Storage_Count_Access
371 (Pool
.The_Pool
(Chunk
+ SC_Size
)'Address).all := Next
;
373 pragma Warnings
(On
);
381 (Pool
: Stack_Bounded_Pool
;
382 Chunk
, Size
: SSE
.Storage_Count
)
385 pragma Warnings
(Off
);
386 -- Kill alignment warnings, we are careful to make sure
387 -- that the alignment is correct.
389 To_Storage_Count_Access
390 (Pool
.The_Pool
(Chunk
)'Address).all := Size
;
392 pragma Warnings
(On
);
400 (Pool
: Stack_Bounded_Pool
;
401 Chunk
: SSE
.Storage_Count
) return SSE
.Storage_Count
404 pragma Warnings
(Off
);
405 -- Kill alignment warnings, we are careful to make sure
406 -- that the alignment is correct.
408 return To_Storage_Count_Access
(Pool
.The_Pool
(Chunk
)'Address).all;
410 pragma Warnings
(On
);
413 end Variable_Size_Management
;
414 end System
.Pool_Size
;