OSDN Git Service

* 41intnam.ads, 42intnam.ads, 4aintnam.ads, 4cintnam.ads,
[pf3gnuchains/gcc-fork.git] / gcc / ada / s-pooglo.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                   S Y S T E M . P O O L _ G L O B A L                    --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --                            $Revision$
10 --                                                                          --
11 --          Copyright (C) 1992-2001, Free Software Foundation, Inc.         --
12 --                                                                          --
13 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
14 -- terms of the  GNU General Public License as published  by the Free Soft- --
15 -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
16 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
17 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
18 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
19 -- for  more details.  You should have  received  a copy of the GNU General --
20 -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
21 -- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
22 -- MA 02111-1307, USA.                                                      --
23 --                                                                          --
24 -- As a special exception,  if other files  instantiate  generics from this --
25 -- unit, or you link  this unit with other files  to produce an executable, --
26 -- this  unit  does not  by itself cause  the resulting  executable  to  be --
27 -- covered  by the  GNU  General  Public  License.  This exception does not --
28 -- however invalidate  any other reasons why  the executable file  might be --
29 -- covered by the  GNU Public License.                                      --
30 --                                                                          --
31 -- GNAT was originally developed  by the GNAT team at  New York University. --
32 -- It is now maintained by Ada Core Technologies Inc (http://www.gnat.com). --
33 --                                                                          --
34 ------------------------------------------------------------------------------
35
36 with System.Storage_Pools;    use System.Storage_Pools;
37 with System.Storage_Elements;
38 with System.Memory;
39
40 package body System.Pool_Global is
41
42    package SSE renames System.Storage_Elements;
43
44    --------------
45    -- Allocate --
46    --------------
47
48    procedure Allocate
49      (Pool         : in out Unbounded_No_Reclaim_Pool;
50       Address      : out System.Address;
51       Storage_Size : SSE.Storage_Count;
52       Alignment    : SSE.Storage_Count)
53    is
54       pragma Warnings (Off, Pool);
55       pragma Warnings (Off, Alignment);
56
57       Allocated : System.Address;
58
59    begin
60       Allocated := Memory.Alloc (Memory.size_t (Storage_Size));
61
62       --  The call to Alloc returns an address whose alignment is compatible
63       --  with the worst case alignment requirement for the machine; thus the
64       --  Alignment argument can be safely ignored.
65
66       if Allocated = Null_Address then
67          raise Storage_Error;
68       else
69          Address := Allocated;
70       end if;
71    end Allocate;
72
73    ----------------
74    -- Deallocate --
75    ----------------
76
77    procedure Deallocate
78      (Pool         : in out Unbounded_No_Reclaim_Pool;
79       Address      : System.Address;
80       Storage_Size : SSE.Storage_Count;
81       Alignment    : SSE.Storage_Count)
82    is
83       pragma Warnings (Off, Pool);
84       pragma Warnings (Off, Storage_Size);
85       pragma Warnings (Off, Alignment);
86
87    begin
88       Memory.Free (Address);
89    end Deallocate;
90
91    ------------------
92    -- Storage_Size --
93    ------------------
94
95    function Storage_Size
96      (Pool  : Unbounded_No_Reclaim_Pool)
97       return  SSE.Storage_Count
98    is
99       pragma Warnings (Off, Pool);
100
101    begin
102       --  Intuitively, should return System.Memory_Size. But on Sun/Alsys,
103       --  System.Memory_Size > System.Max_Int, which means all you can do with
104       --  it is raise CONSTRAINT_ERROR...
105
106       return SSE.Storage_Count'Last;
107    end Storage_Size;
108
109 end System.Pool_Global;