* tree-vect-loop-manip.c (vect_do_peeling): Do not use
[official-gcc.git] / gcc / ada / libgnat / a-cbdlli.ads
blobcfcbecf2bff909f23492863fa603fae14b931ab3
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT LIBRARY COMPONENTS --
4 -- --
5 -- ADA.CONTAINERS.BOUNDED_DOUBLY_LINKED_LISTS --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 2004-2017, 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 3, 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. --
21 -- --
22 -- As a special exception under Section 7 of GPL version 3, you are granted --
23 -- additional permissions described in the GCC Runtime Library Exception, --
24 -- version 3.1, as published by the Free Software Foundation. --
25 -- --
26 -- You should have received a copy of the GNU General Public License and --
27 -- a copy of the GCC Runtime Library Exception along with this program; --
28 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
29 -- <http://www.gnu.org/licenses/>. --
30 -- --
31 -- This unit was originally developed by Matthew J Heaney. --
32 ------------------------------------------------------------------------------
34 with Ada.Iterator_Interfaces;
36 with Ada.Containers.Helpers;
37 private with Ada.Streams;
38 private with Ada.Finalization;
40 generic
41 type Element_Type is private;
43 with function "=" (Left, Right : Element_Type)
44 return Boolean is <>;
46 package Ada.Containers.Bounded_Doubly_Linked_Lists is
47 pragma Annotate (CodePeer, Skip_Analysis);
48 pragma Pure;
49 pragma Remote_Types;
51 type List (Capacity : Count_Type) is tagged private with
52 Constant_Indexing => Constant_Reference,
53 Variable_Indexing => Reference,
54 Default_Iterator => Iterate,
55 Iterator_Element => Element_Type;
57 pragma Preelaborable_Initialization (List);
59 type Cursor is private;
60 pragma Preelaborable_Initialization (Cursor);
62 Empty_List : constant List;
64 No_Element : constant Cursor;
66 function Has_Element (Position : Cursor) return Boolean;
68 package List_Iterator_Interfaces is new
69 Ada.Iterator_Interfaces (Cursor, Has_Element);
71 function "=" (Left, Right : List) return Boolean;
73 function Length (Container : List) return Count_Type;
75 function Is_Empty (Container : List) return Boolean;
77 procedure Clear (Container : in out List);
79 function Element (Position : Cursor) return Element_Type;
81 procedure Replace_Element
82 (Container : in out List;
83 Position : Cursor;
84 New_Item : Element_Type);
86 procedure Query_Element
87 (Position : Cursor;
88 Process : not null access procedure (Element : Element_Type));
90 procedure Update_Element
91 (Container : in out List;
92 Position : Cursor;
93 Process : not null access procedure (Element : in out Element_Type));
95 type Constant_Reference_Type
96 (Element : not null access constant Element_Type) is private
97 with
98 Implicit_Dereference => Element;
100 type Reference_Type
101 (Element : not null access Element_Type) is private
102 with
103 Implicit_Dereference => Element;
105 function Constant_Reference
106 (Container : aliased List;
107 Position : Cursor) return Constant_Reference_Type;
109 function Reference
110 (Container : aliased in out List;
111 Position : Cursor) return Reference_Type;
113 procedure Assign (Target : in out List; Source : List);
115 function Copy (Source : List; Capacity : Count_Type := 0) return List;
117 procedure Move
118 (Target : in out List;
119 Source : in out List);
121 procedure Insert
122 (Container : in out List;
123 Before : Cursor;
124 New_Item : Element_Type;
125 Count : Count_Type := 1);
127 procedure Insert
128 (Container : in out List;
129 Before : Cursor;
130 New_Item : Element_Type;
131 Position : out Cursor;
132 Count : Count_Type := 1);
134 procedure Insert
135 (Container : in out List;
136 Before : Cursor;
137 Position : out Cursor;
138 Count : Count_Type := 1);
140 procedure Prepend
141 (Container : in out List;
142 New_Item : Element_Type;
143 Count : Count_Type := 1);
145 procedure Append
146 (Container : in out List;
147 New_Item : Element_Type;
148 Count : Count_Type := 1);
150 procedure Delete
151 (Container : in out List;
152 Position : in out Cursor;
153 Count : Count_Type := 1);
155 procedure Delete_First
156 (Container : in out List;
157 Count : Count_Type := 1);
159 procedure Delete_Last
160 (Container : in out List;
161 Count : Count_Type := 1);
163 procedure Reverse_Elements (Container : in out List);
165 function Iterate
166 (Container : List)
167 return List_Iterator_Interfaces.Reversible_Iterator'class;
169 function Iterate
170 (Container : List;
171 Start : Cursor)
172 return List_Iterator_Interfaces.Reversible_Iterator'class;
174 procedure Swap
175 (Container : in out List;
176 I, J : Cursor);
178 procedure Swap_Links
179 (Container : in out List;
180 I, J : Cursor);
182 procedure Splice
183 (Target : in out List;
184 Before : Cursor;
185 Source : in out List);
187 procedure Splice
188 (Target : in out List;
189 Before : Cursor;
190 Source : in out List;
191 Position : in out Cursor);
193 procedure Splice
194 (Container : in out List;
195 Before : Cursor;
196 Position : Cursor);
198 function First (Container : List) return Cursor;
200 function First_Element (Container : List) return Element_Type;
202 function Last (Container : List) return Cursor;
204 function Last_Element (Container : List) return Element_Type;
206 function Next (Position : Cursor) return Cursor;
208 procedure Next (Position : in out Cursor);
210 function Previous (Position : Cursor) return Cursor;
212 procedure Previous (Position : in out Cursor);
214 function Find
215 (Container : List;
216 Item : Element_Type;
217 Position : Cursor := No_Element) return Cursor;
219 function Reverse_Find
220 (Container : List;
221 Item : Element_Type;
222 Position : Cursor := No_Element) return Cursor;
224 function Contains
225 (Container : List;
226 Item : Element_Type) return Boolean;
228 procedure Iterate
229 (Container : List;
230 Process : not null access procedure (Position : Cursor));
232 procedure Reverse_Iterate
233 (Container : List;
234 Process : not null access procedure (Position : Cursor));
236 generic
237 with function "<" (Left, Right : Element_Type) return Boolean is <>;
238 package Generic_Sorting is
240 function Is_Sorted (Container : List) return Boolean;
242 procedure Sort (Container : in out List);
244 procedure Merge (Target, Source : in out List);
246 end Generic_Sorting;
248 private
250 pragma Inline (Next);
251 pragma Inline (Previous);
253 use Ada.Containers.Helpers;
254 package Implementation is new Generic_Implementation;
255 use Implementation;
257 use Ada.Streams;
258 use Ada.Finalization;
260 type Node_Type is record
261 Prev : Count_Type'Base;
262 Next : Count_Type;
263 Element : aliased Element_Type;
264 end record;
266 type Node_Array is array (Count_Type range <>) of Node_Type;
268 type List (Capacity : Count_Type) is tagged record
269 Nodes : Node_Array (1 .. Capacity) := (others => <>);
270 Free : Count_Type'Base := -1;
271 First : Count_Type := 0;
272 Last : Count_Type := 0;
273 Length : Count_Type := 0;
274 TC : aliased Tamper_Counts;
275 end record;
277 procedure Read
278 (Stream : not null access Root_Stream_Type'Class;
279 Item : out List);
281 for List'Read use Read;
283 procedure Write
284 (Stream : not null access Root_Stream_Type'Class;
285 Item : List);
287 for List'Write use Write;
289 type List_Access is access all List;
290 for List_Access'Storage_Size use 0;
292 type Cursor is record
293 Container : List_Access;
294 Node : Count_Type := 0;
295 end record;
297 procedure Read
298 (Stream : not null access Root_Stream_Type'Class;
299 Item : out Cursor);
301 for Cursor'Read use Read;
303 procedure Write
304 (Stream : not null access Root_Stream_Type'Class;
305 Item : Cursor);
307 for Cursor'Write use Write;
309 subtype Reference_Control_Type is Implementation.Reference_Control_Type;
310 -- It is necessary to rename this here, so that the compiler can find it
312 type Constant_Reference_Type
313 (Element : not null access constant Element_Type) is
314 record
315 Control : Reference_Control_Type :=
316 raise Program_Error with "uninitialized reference";
317 -- The RM says, "The default initialization of an object of
318 -- type Constant_Reference_Type or Reference_Type propagates
319 -- Program_Error."
320 end record;
322 procedure Read
323 (Stream : not null access Root_Stream_Type'Class;
324 Item : out Constant_Reference_Type);
326 for Constant_Reference_Type'Read use Read;
328 procedure Write
329 (Stream : not null access Root_Stream_Type'Class;
330 Item : Constant_Reference_Type);
332 for Constant_Reference_Type'Write use Write;
334 type Reference_Type (Element : not null access Element_Type) is record
335 Control : Reference_Control_Type :=
336 raise Program_Error with "uninitialized reference";
337 -- The RM says, "The default initialization of an object of
338 -- type Constant_Reference_Type or Reference_Type propagates
339 -- Program_Error."
340 end record;
342 procedure Write
343 (Stream : not null access Root_Stream_Type'Class;
344 Item : Reference_Type);
346 for Reference_Type'Write use Write;
348 procedure Read
349 (Stream : not null access Root_Stream_Type'Class;
350 Item : out Reference_Type);
352 for Reference_Type'Read use Read;
354 -- Three operations are used to optimize in the expansion of "for ... of"
355 -- loops: the Next(Cursor) procedure in the visible part, and the following
356 -- Pseudo_Reference and Get_Element_Access functions. See Exp_Ch5 for
357 -- details.
359 function Pseudo_Reference
360 (Container : aliased List'Class) return Reference_Control_Type;
361 pragma Inline (Pseudo_Reference);
362 -- Creates an object of type Reference_Control_Type pointing to the
363 -- container, and increments the Lock. Finalization of this object will
364 -- decrement the Lock.
366 type Element_Access is access all Element_Type with
367 Storage_Size => 0;
369 function Get_Element_Access
370 (Position : Cursor) return not null Element_Access;
371 -- Returns a pointer to the element designated by Position.
373 Empty_List : constant List := (Capacity => 0, others => <>);
375 No_Element : constant Cursor := Cursor'(null, 0);
377 type Iterator is new Limited_Controlled and
378 List_Iterator_Interfaces.Reversible_Iterator with
379 record
380 Container : List_Access;
381 Node : Count_Type;
382 end record
383 with Disable_Controlled => not T_Check;
385 overriding procedure Finalize (Object : in out Iterator);
387 overriding function First (Object : Iterator) return Cursor;
388 overriding function Last (Object : Iterator) return Cursor;
390 overriding function Next
391 (Object : Iterator;
392 Position : Cursor) return Cursor;
394 overriding function Previous
395 (Object : Iterator;
396 Position : Cursor) return Cursor;
398 end Ada.Containers.Bounded_Doubly_Linked_Lists;