* gimplify.c (find_single_pointer_decl_1): New static function.
[official-gcc.git] / gcc / ada / a-cohase.ads
blobe4734c885cc1202a95482ced8c34edaabba64366
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT LIBRARY COMPONENTS --
4 -- --
5 -- A D A . C O N T A I N E R S . H A S H E D _ S E T S --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 2004-2005 Free Software Foundation, Inc. --
10 -- --
11 -- This specification is derived from the Ada Reference Manual for use with --
12 -- GNAT. The copyright notice above, and the license provisions that follow --
13 -- apply solely to the contents of the part following the private keyword. --
14 -- --
15 -- GNAT is free software; you can redistribute it and/or modify it under --
16 -- terms of the GNU General Public License as published by the Free Soft- --
17 -- ware Foundation; either version 2, or (at your option) any later ver- --
18 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
19 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
20 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
21 -- for more details. You should have received a copy of the GNU General --
22 -- Public License distributed with GNAT; see file COPYING. If not, write --
23 -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
24 -- Boston, MA 02110-1301, USA. --
25 -- --
26 -- As a special exception, if other files instantiate generics from this --
27 -- unit, or you link this unit with other files to produce an executable, --
28 -- this unit does not by itself cause the resulting executable to be --
29 -- covered by the GNU General Public License. This exception does not --
30 -- however invalidate any other reasons why the executable file might be --
31 -- covered by the GNU Public License. --
32 -- --
33 -- This unit was originally developed by Matthew J Heaney. --
34 ------------------------------------------------------------------------------
36 with Ada.Containers.Hash_Tables;
37 with Ada.Streams;
38 with Ada.Finalization;
40 generic
41 type Element_Type is private;
43 with function Hash (Element : Element_Type) return Hash_Type;
45 with function Equivalent_Elements (Left, Right : Element_Type)
46 return Boolean;
48 with function "=" (Left, Right : Element_Type) return Boolean is <>;
50 package Ada.Containers.Hashed_Sets is
51 pragma Preelaborate;
53 type Set is tagged private;
55 type Cursor is private;
57 Empty_Set : constant Set;
59 No_Element : constant Cursor;
61 function "=" (Left, Right : Set) return Boolean;
63 function Equivalent_Sets (Left, Right : Set) return Boolean;
65 function Capacity (Container : Set) return Count_Type;
67 procedure Reserve_Capacity
68 (Container : in out Set;
69 Capacity : Count_Type);
71 function Length (Container : Set) return Count_Type;
73 function Is_Empty (Container : Set) return Boolean;
75 procedure Clear (Container : in out Set);
77 function Element (Position : Cursor) return Element_Type;
79 procedure Replace_Element
80 (Container : in out Set;
81 Position : Cursor;
82 New_Item : Element_Type);
84 procedure Query_Element
85 (Position : Cursor;
86 Process : not null access procedure (Element : Element_Type));
88 procedure Move (Target : in out Set; Source : in out Set);
90 procedure Insert
91 (Container : in out Set;
92 New_Item : Element_Type;
93 Position : out Cursor;
94 Inserted : out Boolean);
96 procedure Insert (Container : in out Set; New_Item : Element_Type);
98 procedure Include (Container : in out Set; New_Item : Element_Type);
100 procedure Replace (Container : in out Set; New_Item : Element_Type);
102 procedure Exclude (Container : in out Set; Item : Element_Type);
104 procedure Delete (Container : in out Set; Item : Element_Type);
106 procedure Delete (Container : in out Set; Position : in out Cursor);
108 procedure Union (Target : in out Set; Source : Set);
110 function Union (Left, Right : Set) return Set;
112 function "or" (Left, Right : Set) return Set renames Union;
114 procedure Intersection (Target : in out Set; Source : Set);
116 function Intersection (Left, Right : Set) return Set;
118 function "and" (Left, Right : Set) return Set renames Intersection;
120 procedure Difference (Target : in out Set; Source : Set);
122 function Difference (Left, Right : Set) return Set;
124 function "-" (Left, Right : Set) return Set renames Difference;
126 procedure Symmetric_Difference (Target : in out Set; Source : Set);
128 function Symmetric_Difference (Left, Right : Set) return Set;
130 function "xor" (Left, Right : Set) return Set
131 renames Symmetric_Difference;
133 function Overlap (Left, Right : Set) return Boolean;
135 function Is_Subset (Subset : Set; Of_Set : Set) return Boolean;
137 function First (Container : Set) return Cursor;
139 function Next (Position : Cursor) return Cursor;
141 procedure Next (Position : in out Cursor);
143 function Find
144 (Container : Set;
145 Item : Element_Type) return Cursor;
147 function Contains (Container : Set; Item : Element_Type) return Boolean;
149 function Has_Element (Position : Cursor) return Boolean;
151 function Equivalent_Elements (Left, Right : Cursor) return Boolean;
153 function Equivalent_Elements
154 (Left : Cursor;
155 Right : Element_Type) return Boolean;
157 function Equivalent_Elements
158 (Left : Element_Type;
159 Right : Cursor) return Boolean;
161 procedure Iterate
162 (Container : Set;
163 Process : not null access procedure (Position : Cursor));
165 generic
166 type Key_Type (<>) is private;
168 with function Key (Element : Element_Type) return Key_Type;
170 with function Hash (Key : Key_Type) return Hash_Type;
172 with function Equivalent_Keys (Left, Right : Key_Type) return Boolean;
174 package Generic_Keys is
176 function Key (Position : Cursor) return Key_Type;
178 function Element (Container : Set; Key : Key_Type) return Element_Type;
180 procedure Replace -- TODO: ask Randy why this wasn't removed
181 (Container : in out Set;
182 Key : Key_Type;
183 New_Item : Element_Type);
185 procedure Exclude (Container : in out Set; Key : Key_Type);
187 procedure Delete (Container : in out Set; Key : Key_Type);
189 function Find (Container : Set; Key : Key_Type) return Cursor;
191 function Contains (Container : Set; Key : Key_Type) return Boolean;
193 procedure Update_Element_Preserving_Key
194 (Container : in out Set;
195 Position : Cursor;
196 Process : not null access
197 procedure (Element : in out Element_Type));
199 end Generic_Keys;
201 private
202 type Node_Type;
203 type Node_Access is access Node_Type;
205 type Node_Type is
206 limited record
207 Element : Element_Type;
208 Next : Node_Access;
209 end record;
211 package HT_Types is new Hash_Tables.Generic_Hash_Table_Types
212 (Node_Type,
213 Node_Access);
215 type Set is new Ada.Finalization.Controlled with record
216 HT : HT_Types.Hash_Table_Type;
217 end record;
219 procedure Adjust (Container : in out Set);
221 procedure Finalize (Container : in out Set);
223 use HT_Types;
224 use Ada.Finalization;
226 type Set_Access is access all Set;
227 for Set_Access'Storage_Size use 0;
229 type Cursor is
230 record
231 Container : Set_Access;
232 Node : Node_Access;
233 end record;
235 No_Element : constant Cursor := (Container => null, Node => null);
237 use Ada.Streams;
239 procedure Write
240 (Stream : access Root_Stream_Type'Class;
241 Container : Set);
243 for Set'Write use Write;
245 procedure Read
246 (Stream : access Root_Stream_Type'Class;
247 Container : out Set);
249 for Set'Read use Read;
251 Empty_Set : constant Set := (Controlled with HT => (null, 0, 0, 0));
253 end Ada.Containers.Hashed_Sets;