1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2015, 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
295 function List_Length
(List
: Elist_Id
) return Nat
is
300 if List
= No_Elist
then
305 Elmt
:= First_Elmt
(List
);
323 Elists
.Locked
:= True;
324 Elmts
.Locked
:= True;
333 function New_Copy_Elist
(List
: Elist_Id
) return Elist_Id
is
338 if List
= No_Elist
then
341 -- Replicate the contents of the input list while preserving the
345 Result
:= New_Elmt_List
;
347 Elmt
:= First_Elmt
(List
);
348 while Present
(Elmt
) loop
349 Append_Elmt
(Node
(Elmt
), Result
);
361 function New_Elmt_List
return Elist_Id
is
363 Elists
.Increment_Last
;
364 Elists
.Table
(Elists
.Last
).First
:= No_Elmt
;
365 Elists
.Table
(Elists
.Last
).Last
:= No_Elmt
;
368 Write_Str
("Allocate new element list, returned ID = ");
369 Write_Int
(Int
(Elists
.Last
));
380 function Next_Elmt
(Elmt
: Elmt_Id
) return Elmt_Id
is
381 N
: constant Union_Id
:= Elmts
.Table
(Elmt
).Next
;
384 if N
in Elist_Range
then
391 procedure Next_Elmt
(Elmt
: in out Elmt_Id
) is
393 Elmt
:= Next_Elmt
(Elmt
);
400 function No
(List
: Elist_Id
) return Boolean is
402 return List
= No_Elist
;
405 function No
(Elmt
: Elmt_Id
) return Boolean is
407 return Elmt
= No_Elmt
;
414 function Node
(Elmt
: Elmt_Id
) return Node_Or_Entity_Id
is
416 if Elmt
= No_Elmt
then
419 return Elmts
.Table
(Elmt
).Node
;
427 function Num_Elists
return Nat
is
429 return Int
(Elmts
.Last
) - Int
(Elmts
.First
) + 1;
436 procedure Prepend_Elmt
(N
: Node_Or_Entity_Id
; To
: Elist_Id
) is
437 F
: constant Elmt_Id
:= Elists
.Table
(To
).First
;
440 Elmts
.Increment_Last
;
441 Elmts
.Table
(Elmts
.Last
).Node
:= N
;
444 Elists
.Table
(To
).Last
:= Elmts
.Last
;
445 Elmts
.Table
(Elmts
.Last
).Next
:= Union_Id
(To
);
447 Elmts
.Table
(Elmts
.Last
).Next
:= Union_Id
(F
);
450 Elists
.Table
(To
).First
:= Elmts
.Last
;
457 function Present
(List
: Elist_Id
) return Boolean is
459 return List
/= No_Elist
;
462 function Present
(Elmt
: Elmt_Id
) return Boolean is
464 return Elmt
/= No_Elmt
;
471 procedure Remove
(List
: Elist_Id
; N
: Node_Or_Entity_Id
) is
475 if Present
(List
) then
476 Elmt
:= First_Elmt
(List
);
477 while Present
(Elmt
) loop
478 if Node
(Elmt
) = N
then
479 Remove_Elmt
(List
, Elmt
);
492 procedure Remove_Elmt
(List
: Elist_Id
; Elmt
: Elmt_Id
) is
497 Nxt
:= Elists
.Table
(List
).First
;
499 -- Case of removing only element in the list
501 if Elmts
.Table
(Nxt
).Next
in Elist_Range
then
502 pragma Assert
(Nxt
= Elmt
);
504 Elists
.Table
(List
).First
:= No_Elmt
;
505 Elists
.Table
(List
).Last
:= No_Elmt
;
507 -- Case of removing the first element in the list
509 elsif Nxt
= Elmt
then
510 Elists
.Table
(List
).First
:= Elmt_Id
(Elmts
.Table
(Nxt
).Next
);
512 -- Case of removing second or later element in the list
517 Nxt
:= Elmt_Id
(Elmts
.Table
(Prv
).Next
);
519 or else Elmts
.Table
(Nxt
).Next
in Elist_Range
;
522 pragma Assert
(Nxt
= Elmt
);
524 Elmts
.Table
(Prv
).Next
:= Elmts
.Table
(Nxt
).Next
;
526 if Elmts
.Table
(Prv
).Next
in Elist_Range
then
527 Elists
.Table
(List
).Last
:= Prv
;
532 ----------------------
533 -- Remove_Last_Elmt --
534 ----------------------
536 procedure Remove_Last_Elmt
(List
: Elist_Id
) is
541 Nxt
:= Elists
.Table
(List
).First
;
543 -- Case of removing only element in the list
545 if Elmts
.Table
(Nxt
).Next
in Elist_Range
then
546 Elists
.Table
(List
).First
:= No_Elmt
;
547 Elists
.Table
(List
).Last
:= No_Elmt
;
549 -- Case of at least two elements in list
554 Nxt
:= Elmt_Id
(Elmts
.Table
(Prv
).Next
);
555 exit when Elmts
.Table
(Nxt
).Next
in Elist_Range
;
558 Elmts
.Table
(Prv
).Next
:= Elmts
.Table
(Nxt
).Next
;
559 Elists
.Table
(List
).Last
:= Prv
;
561 end Remove_Last_Elmt
;
567 procedure Replace_Elmt
(Elmt
: Elmt_Id
; New_Node
: Node_Or_Entity_Id
) is
569 Elmts
.Table
(Elmt
).Node
:= New_Node
;
576 procedure Tree_Read
is
586 procedure Tree_Write
is
598 Elists
.Locked
:= False;
599 Elmts
.Locked
:= False;