-- Area based memory manager -- Copyright (C) 2014 Tristan Gingold -- -- GHDL is free software; you can redistribute it and/or modify it under -- the terms of the GNU General Public License as published by the Free -- Software Foundation; either version 2, or (at your option) any later -- version. -- -- GHDL is distributed in the hope that it will be useful, but WITHOUT ANY -- WARRANTY; without even the implied warranty of MERCHANTABILITY or -- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- for more details. -- -- You should have received a copy of the GNU General Public License -- along with GHDL; see the file COPYING. If not, write to the Free -- Software Foundation, 59 Temple Place - Suite 330, Boston, MA -- 02111-1307, USA. with System; use System; with System.Storage_Elements; use System.Storage_Elements; with Types; use Types; package Areapools is type Areapool is limited private; type Mark_Type is private; type Areapool_Acc is access all Areapool; -- Allocate SIZE bytes (aligned on ALIGN bytes) in memory pool POOL and -- return the address in RES. procedure Allocate (Pool : in out Areapool; Res : out Address; Size : Size_Type; Align : Size_Type); -- Return TRUE iff no memory is allocated in POOL. function Is_Empty (Pool : Areapool) return Boolean; -- Higher level abstraction for Allocate. generic type T is private; function Alloc_On_Pool_Addr (Pool : Areapool_Acc; Val : T) return System.Address; -- Get a mark of POOL. procedure Mark (M : out Mark_Type; Pool : Areapool); -- Release memory allocated in POOL after mark M. procedure Release (M : Mark_Type; Pool : in out Areapool); Empty_Marker : constant Mark_Type; private -- Minimal size of allocation. Default_Chunk_Size : constant Size_Type := 16 * 1024; type Chunk_Type; type Chunk_Acc is access all Chunk_Type; type Data_Array is array (Size_Type range <>) of Storage_Element; for Data_Array'Alignment use Standard'Maximum_Alignment; type Chunk_Type (Last : Size_Type) is record Prev : Chunk_Acc; Data : Data_Array (0 .. Last); end record; for Chunk_Type'Alignment use Standard'Maximum_Alignment; type Areapool is limited record First, Last : Chunk_Acc := null; Next_Use : Size_Type; end record; type Mark_Type is record Last : Chunk_Acc := null; Next_Use : Size_Type; end record; Empty_Marker : constant Mark_Type := (Last => null, Next_Use => 0); Erase_When_Released : constant Boolean := True; end Areapools; summary='blob content' class='blob'>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
-- Efficient expandable one dimensional array type.
-- Copyright (C) 2015 - 2016 Tristan Gingold
--
-- This program is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation, either version 2 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <gnu.org/licenses>.
-- This package mimics GNAT.Table, but:
-- - the index type can be any discrete type (in particular a modular type)
-- - the increment is not used
-- - the interface is simplified.
generic
-- This package creates:
-- array (Table_Index_Type range Table_Low_Bound .. <>)
-- of Table_Component_Type;
type Table_Component_Type is private;
type Table_Index_Type is (<>);
-- The lowest bound of the array. Note that Table_Low_Bound shouldn't be
-- Table_Index_Type'First, as otherwise Last may raise constraint error
-- when the table is empty.
Table_Low_Bound : Table_Index_Type;
package Dyn_Tables is
-- Ada type for the array.
type Table_Type is
array (Table_Index_Type range <>) of Table_Component_Type;
-- Fat subtype (so that the access is thin).
subtype Big_Table_Type is
Table_Type (Table_Low_Bound .. Table_Index_Type'Last);
-- Access type for the vector. This is a thin pointer so that it is
-- compatible with C pointer, as this package uses malloc/realloc/free for
-- memory management.
type Table_Thin_Ptr is access all Big_Table_Type;
pragma Convention (C, Table_Thin_Ptr);
for Table_Thin_Ptr'Storage_Size use 0;
-- Non user visible data.
type Instance_Private is private;
-- Type for the dynamic table.
type Instance is record
-- Pointer to the table. Note that the use of a thin pointer to the
-- largest array, this implementation bypasses Ada index checks.
Table : Table_Thin_Ptr := null;
-- Private data.
Priv : Instance_Private;
end record;
-- Initialize the table. This must be done by users.
procedure Init (T : in out Instance; Table_Initial : Positive);
-- Logical bounds of the array.
First : constant Table_Index_Type := Table_Low_Bound;
function Last (T : Instance) return Table_Index_Type;
pragma Inline (Last);
-- Return the index of the next bound after last.
function Next (T : Instance) return Table_Index_Type;
-- Deallocate all the memory. Makes the array unusable until the next
-- call to Init.
procedure Free (T : in out Instance);
-- Increase by 1 the length of the array. This may allocate memory.
procedure Increment_Last (T : in out Instance);
pragma Inline (Increment_Last);
-- Decrease by 1 the length of the array.
procedure Decrement_Last (T : in out Instance);
pragma Inline (Decrement_Last);
-- Increase or decrease the length of the array by specifying the upper
-- bound.
procedure Set_Last (T : in out Instance; Index : Table_Index_Type);
-- Append VAL to the array. This always increase the length of the array.
procedure Append (T : in out Instance; Val : Table_Component_Type);
pragma Inline (Append);
-- Increase by NUM the length of the array.
procedure Allocate (T : in out Instance; Num : Natural := 1);
-- Reserve memory for NUM extra entries.
procedure Reserve (T : in out Instance; Num : Natural);
private
type Unsigned is mod 2**32;
type Instance_Private is record
-- Number of allocated elements in the table.
Length : Unsigned := 0;
-- Number of used elements in the table.
Last_Pos : Unsigned := 0;
end record;
end Dyn_Tables;