1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2014, 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 3, 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. --
18 -- As a special exception under Section 7 of GPL version 3, you are granted --
19 -- additional permissions described in the GCC Runtime Library Exception, --
20 -- version 3.1, as published by the Free Software Foundation. --
22 -- You should have received a copy of the GNU General Public License and --
23 -- a copy of the GCC Runtime Library Exception along with this program; --
24 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
25 -- <http://www.gnu.org/licenses/>. --
27 -- GNAT was originally developed by the GNAT team at New York University. --
28 -- Extensive contributions were provided by Ada Core Technologies Inc. --
30 ------------------------------------------------------------------------------
32 -- WARNING: There is a C version of this package. Any changes to this
33 -- source file must be properly reflected in the C header a-elists.h.
36 with Debug
; use Debug
;
37 with Output
; use Output
;
40 package body Elists
is
42 -------------------------------------
43 -- Implementation of Element Lists --
44 -------------------------------------
46 -- Element lists are composed of three types of entities. The element
47 -- list header, which references the first and last elements of the
48 -- list, the elements themselves which are singly linked and also
49 -- reference the nodes on the list, and finally the nodes themselves.
50 -- The following diagram shows how an element list is represented:
52 -- +----------------------------------------------------+
53 -- | +------------------------------------------+ |
56 -- +-----|--+ +-------+ +-------+ +-------+ |
57 -- | Elmt | | 1st | | 2nd | | Last | |
58 -- | List |--->| Elmt |--->| Elmt ---...-->| Elmt ---+
59 -- | Header | | | | | | | | | |
60 -- +--------+ +---|---+ +---|---+ +---|---+
63 -- +-------+ +-------+ +-------+
65 -- | Node1 | | Node2 | | Node3 |
67 -- +-------+ +-------+ +-------+
69 -- The list header is an entry in the Elists table. The values used for
70 -- the type Elist_Id are subscripts into this table. The First_Elmt field
71 -- (Lfield1) points to the first element on the list, or to No_Elmt in the
72 -- case of an empty list. Similarly the Last_Elmt field (Lfield2) points to
73 -- the last element on the list or to No_Elmt in the case of an empty list.
75 -- The elements themselves are entries in the Elmts table. The Next field
76 -- of each entry points to the next element, or to the Elist header if this
77 -- is the last item in the list. The Node field points to the node which
78 -- is referenced by the corresponding list entry.
80 -------------------------
81 -- Element List Tables --
82 -------------------------
84 type Elist_Header
is record
89 package Elists
is new Table
.Table
(
90 Table_Component_Type
=> Elist_Header
,
91 Table_Index_Type
=> Elist_Id
'Base,
92 Table_Low_Bound
=> First_Elist_Id
,
93 Table_Initial
=> Alloc
.Elists_Initial
,
94 Table_Increment
=> Alloc
.Elists_Increment
,
95 Table_Name
=> "Elists");
97 type Elmt_Item
is record
98 Node
: Node_Or_Entity_Id
;
102 package Elmts
is new Table
.Table
(
103 Table_Component_Type
=> Elmt_Item
,
104 Table_Index_Type
=> Elmt_Id
'Base,
105 Table_Low_Bound
=> First_Elmt_Id
,
106 Table_Initial
=> Alloc
.Elmts_Initial
,
107 Table_Increment
=> Alloc
.Elmts_Increment
,
108 Table_Name
=> "Elmts");
114 procedure Append_Elmt
(N
: Node_Or_Entity_Id
; To
: Elist_Id
) is
115 L
: constant Elmt_Id
:= Elists
.Table
(To
).Last
;
118 Elmts
.Increment_Last
;
119 Elmts
.Table
(Elmts
.Last
).Node
:= N
;
120 Elmts
.Table
(Elmts
.Last
).Next
:= Union_Id
(To
);
123 Elists
.Table
(To
).First
:= Elmts
.Last
;
125 Elmts
.Table
(L
).Next
:= Union_Id
(Elmts
.Last
);
128 Elists
.Table
(To
).Last
:= Elmts
.Last
;
131 Write_Str
("Append new element Elmt_Id = ");
132 Write_Int
(Int
(Elmts
.Last
));
133 Write_Str
(" to list Elist_Id = ");
134 Write_Int
(Int
(To
));
135 Write_Str
(" referencing Node_Or_Entity_Id = ");
141 ---------------------
142 -- Append_New_Elmt --
143 ---------------------
145 procedure Append_New_Elmt
(N
: Node_Or_Entity_Id
; To
: in out Elist_Id
) is
147 if To
= No_Elist
then
154 ------------------------
155 -- Append_Unique_Elmt --
156 ------------------------
158 procedure Append_Unique_Elmt
(N
: Node_Or_Entity_Id
; To
: Elist_Id
) is
161 Elmt
:= First_Elmt
(To
);
166 elsif Node
(Elmt
) = N
then
172 end Append_Unique_Elmt
;
178 function Contains
(List
: Elist_Id
; N
: Node_Or_Entity_Id
) return Boolean is
182 if Present
(List
) then
183 Elmt
:= First_Elmt
(List
);
184 while Present
(Elmt
) loop
185 if Node
(Elmt
) = N
then
200 function Elists_Address
return System
.Address
is
202 return Elists
.Table
(First_Elist_Id
)'Address;
209 function Elmts_Address
return System
.Address
is
211 return Elmts
.Table
(First_Elmt_Id
)'Address;
218 function First_Elmt
(List
: Elist_Id
) return Elmt_Id
is
220 pragma Assert
(List
> Elist_Low_Bound
);
221 return Elists
.Table
(List
).First
;
228 procedure Initialize
is
234 -----------------------
235 -- Insert_Elmt_After --
236 -----------------------
238 procedure Insert_Elmt_After
(N
: Node_Or_Entity_Id
; Elmt
: Elmt_Id
) is
239 Nxt
: constant Union_Id
:= Elmts
.Table
(Elmt
).Next
;
242 pragma Assert
(Elmt
/= No_Elmt
);
244 Elmts
.Increment_Last
;
245 Elmts
.Table
(Elmts
.Last
).Node
:= N
;
246 Elmts
.Table
(Elmts
.Last
).Next
:= Nxt
;
248 Elmts
.Table
(Elmt
).Next
:= Union_Id
(Elmts
.Last
);
250 if Nxt
in Elist_Range
then
251 Elists
.Table
(Elist_Id
(Nxt
)).Last
:= Elmts
.Last
;
253 end Insert_Elmt_After
;
255 ------------------------
256 -- Is_Empty_Elmt_List --
257 ------------------------
259 function Is_Empty_Elmt_List
(List
: Elist_Id
) return Boolean is
261 return Elists
.Table
(List
).First
= No_Elmt
;
262 end Is_Empty_Elmt_List
;
268 function Last_Elist_Id
return Elist_Id
is
277 function Last_Elmt
(List
: Elist_Id
) return Elmt_Id
is
279 return Elists
.Table
(List
).Last
;
286 function Last_Elmt_Id
return Elmt_Id
is
297 Elists
.Locked
:= True;
298 Elmts
.Locked
:= True;
307 function New_Copy_Elist
(List
: Elist_Id
) return Elist_Id
is
312 if List
= No_Elist
then
315 -- Replicate the contents of the input list while preserving the
319 Result
:= New_Elmt_List
;
321 Elmt
:= First_Elmt
(List
);
322 while Present
(Elmt
) loop
323 Append_Elmt
(Node
(Elmt
), Result
);
335 function New_Elmt_List
return Elist_Id
is
337 Elists
.Increment_Last
;
338 Elists
.Table
(Elists
.Last
).First
:= No_Elmt
;
339 Elists
.Table
(Elists
.Last
).Last
:= No_Elmt
;
342 Write_Str
("Allocate new element list, returned ID = ");
343 Write_Int
(Int
(Elists
.Last
));
354 function Next_Elmt
(Elmt
: Elmt_Id
) return Elmt_Id
is
355 N
: constant Union_Id
:= Elmts
.Table
(Elmt
).Next
;
358 if N
in Elist_Range
then
365 procedure Next_Elmt
(Elmt
: in out Elmt_Id
) is
367 Elmt
:= Next_Elmt
(Elmt
);
374 function No
(List
: Elist_Id
) return Boolean is
376 return List
= No_Elist
;
379 function No
(Elmt
: Elmt_Id
) return Boolean is
381 return Elmt
= No_Elmt
;
388 function Node
(Elmt
: Elmt_Id
) return Node_Or_Entity_Id
is
390 if Elmt
= No_Elmt
then
393 return Elmts
.Table
(Elmt
).Node
;
401 function Num_Elists
return Nat
is
403 return Int
(Elmts
.Last
) - Int
(Elmts
.First
) + 1;
410 procedure Prepend_Elmt
(N
: Node_Or_Entity_Id
; To
: Elist_Id
) is
411 F
: constant Elmt_Id
:= Elists
.Table
(To
).First
;
414 Elmts
.Increment_Last
;
415 Elmts
.Table
(Elmts
.Last
).Node
:= N
;
418 Elists
.Table
(To
).Last
:= Elmts
.Last
;
419 Elmts
.Table
(Elmts
.Last
).Next
:= Union_Id
(To
);
421 Elmts
.Table
(Elmts
.Last
).Next
:= Union_Id
(F
);
424 Elists
.Table
(To
).First
:= Elmts
.Last
;
431 function Present
(List
: Elist_Id
) return Boolean is
433 return List
/= No_Elist
;
436 function Present
(Elmt
: Elmt_Id
) return Boolean is
438 return Elmt
/= No_Elmt
;
445 procedure Remove
(List
: Elist_Id
; N
: Node_Or_Entity_Id
) is
449 if Present
(List
) then
450 Elmt
:= First_Elmt
(List
);
451 while Present
(Elmt
) loop
452 if Node
(Elmt
) = N
then
453 Remove_Elmt
(List
, Elmt
);
466 procedure Remove_Elmt
(List
: Elist_Id
; Elmt
: Elmt_Id
) is
471 Nxt
:= Elists
.Table
(List
).First
;
473 -- Case of removing only element in the list
475 if Elmts
.Table
(Nxt
).Next
in Elist_Range
then
476 pragma Assert
(Nxt
= Elmt
);
478 Elists
.Table
(List
).First
:= No_Elmt
;
479 Elists
.Table
(List
).Last
:= No_Elmt
;
481 -- Case of removing the first element in the list
483 elsif Nxt
= Elmt
then
484 Elists
.Table
(List
).First
:= Elmt_Id
(Elmts
.Table
(Nxt
).Next
);
486 -- Case of removing second or later element in the list
491 Nxt
:= Elmt_Id
(Elmts
.Table
(Prv
).Next
);
493 or else Elmts
.Table
(Nxt
).Next
in Elist_Range
;
496 pragma Assert
(Nxt
= Elmt
);
498 Elmts
.Table
(Prv
).Next
:= Elmts
.Table
(Nxt
).Next
;
500 if Elmts
.Table
(Prv
).Next
in Elist_Range
then
501 Elists
.Table
(List
).Last
:= Prv
;
506 ----------------------
507 -- Remove_Last_Elmt --
508 ----------------------
510 procedure Remove_Last_Elmt
(List
: Elist_Id
) is
515 Nxt
:= Elists
.Table
(List
).First
;
517 -- Case of removing only element in the list
519 if Elmts
.Table
(Nxt
).Next
in Elist_Range
then
520 Elists
.Table
(List
).First
:= No_Elmt
;
521 Elists
.Table
(List
).Last
:= No_Elmt
;
523 -- Case of at least two elements in list
528 Nxt
:= Elmt_Id
(Elmts
.Table
(Prv
).Next
);
529 exit when Elmts
.Table
(Nxt
).Next
in Elist_Range
;
532 Elmts
.Table
(Prv
).Next
:= Elmts
.Table
(Nxt
).Next
;
533 Elists
.Table
(List
).Last
:= Prv
;
535 end Remove_Last_Elmt
;
541 procedure Replace_Elmt
(Elmt
: Elmt_Id
; New_Node
: Node_Or_Entity_Id
) is
543 Elmts
.Table
(Elmt
).Node
:= New_Node
;
550 procedure Tree_Read
is
560 procedure Tree_Write
is
572 Elists
.Locked
:= False;
573 Elmts
.Locked
:= False;