2003-05-31 Bud Davis <bdavis9659@comcast.net>
[official-gcc.git] / gcc / ada / elists.h
blob0a1ad06b1ee494a0c543c2ac65a6e7e956ca9efa
1 /****************************************************************************
2 * *
3 * GNAT COMPILER COMPONENTS *
4 * *
5 * E L I S T S *
6 * *
7 * C Header File *
8 * *
9 * Copyright (C) 1992-2001 Free Software Foundation, Inc. *
10 * *
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 2, 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. See the GNU General Public License *
17 * for more details. You should have received a copy of the GNU General *
18 * Public License distributed with GNAT; see file COPYING. If not, write *
19 * to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, *
20 * MA 02111-1307, USA. *
21 * *
22 * GNAT was originally developed by the GNAT team at New York University. *
23 * Extensive contributions were provided by Ada Core Technologies Inc. *
24 * *
25 ****************************************************************************/
27 /* This is the C header corresponding to the Ada package specification for
28 Elists. It also contains the implementations of inlined functions from the
29 package body for Elists. It was generated manually from elists.ads and
30 elists.adb and must be kept synchronized with changes in these files.
32 Note that only routines for reading the tree are included, since the
33 tree transformer is not supposed to modify the tree in any way. */
35 /* The following are the structures used to hold element lists */
37 struct Elist_Header
39 Elmt_Id first;
40 Elmt_Id last;
43 struct Elmt_Item
45 Node_Id node;
46 Int next;
49 /* The element list headers and element descriptors themselves are stored in
50 two arrays. The pointers to these arrays are passed as a parameter to the
51 tree transformer procedure and stored in the global variables Elists_Ptr
52 and Elmts_Ptr. */
54 extern struct Elist_Header *Elists_Ptr;
55 extern struct Elmt_Item *Elmts_Ptr;
57 /* Element List Access Functions: */
59 static Node_Id Node PARAMS ((Elmt_Id));
60 static Elmt_Id First_Elmt PARAMS ((Elist_Id));
61 static Elmt_Id Last_Elmt PARAMS ((Elist_Id));
62 static Elmt_Id Next_Elmt PARAMS ((Elmt_Id));
63 static Boolean Is_Empty_Elmt_List PARAMS ((Elist_Id));
65 INLINE Node_Id
66 Node (Elmt)
67 Elmt_Id Elmt;
69 return Elmts_Ptr[Elmt - First_Elmt_Id].node;
72 INLINE Elmt_Id
73 First_Elmt (List)
74 Elist_Id List;
76 return Elists_Ptr[List - First_Elist_Id].first;
79 INLINE Elmt_Id
80 Last_Elmt (List)
81 Elist_Id List;
83 return Elists_Ptr[List - First_Elist_Id].last;
86 INLINE Elmt_Id
87 Next_Elmt (Node)
88 Elmt_Id Node;
90 Int N = Elmts_Ptr[Node - First_Elmt_Id].next;
92 if (IN (N, Elist_Range))
93 return No_Elmt;
94 else
95 return N;
98 INLINE Boolean
99 Is_Empty_Elmt_List (Id)
100 Elist_Id Id;
102 return Elists_Ptr[Id - First_Elist_Id].first == No_Elmt;