- add two more (void *) casts to should up MSVC const problems
[libfirm] / include / libfirm / adt / pdeq.h
1 /*
2  * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief       double ended queue of generic pointers.
23  * @author      Christian von Roques
24  * @version     $Id$
25  */
26 #ifndef FIRM_ADT_PDEQ_H
27 #define FIRM_ADT_PDEQ_H
28
29 /**
30  * The type of the pointer compare function.
31  *
32  * @param elem  The list element.
33  * @param key   The user supplied key.
34  *
35  * @return 0 if the element matches the key, non-zero else.
36  */
37 typedef int (*cmp_fun)(const void *elem, const void *key);
38
39 /**
40  * The pointer double ended queue (list).
41  */
42 typedef struct pdeq pdeq;
43
44 /**
45  * Creates a new double ended pointer list.
46  *
47  * @return A new list.
48  */
49 pdeq *new_pdeq(void);
50
51 /**
52  * Creates a new double ended pointer list and puts an initial pointer element in.
53  *
54  * @param x   The pointer element to put in.
55  *
56  * @return The new list.
57  */
58 pdeq *new_pdeq1(const void *x);
59
60 /**
61  * Delete a double ended pointer list.
62  *
63  * @param dq   The list to be deleted.
64  */
65 void del_pdeq(pdeq *dq);
66
67 /**
68  * Returns the lenght of a double ended pointer list.
69  *
70  * @param dq   The list.
71  */
72 int pdeq_len(pdeq *dq);
73
74 /**
75  * Checks if a list is empty.
76  *
77  * @param dq   The list.
78  *
79  * @return  non-zero if the list is empty.
80  */
81 int pdeq_empty(pdeq *dq);
82
83 /**
84  * Returns non-zero if a double ended pointer list
85  * contains a pointer x.
86  *
87  * @param dq  The list.
88  * @param x   The pointer to be searched for.
89  */
90 int pdeq_contains(pdeq *dq, const void *x);
91
92 /**
93  * Search a key in a double ended pointer list, the search
94  * is controlled by a compare function.
95  * An element is found, if the compare function returns 0.
96  * The search is started from the left site of the list.
97  *
98  * @param qp   The list.
99  * @param cmp  The compare function.
100  * @param key  The search key.
101  *
102  * @return The address of the element entry if the key was found,
103  *         NULL else.
104  */
105 void *pdeq_search(pdeq *qp, cmp_fun cmp, const void *key);
106
107 /**
108  * Convert the double ended pointer list into a linear array beginning from
109  * left, the first element in the linear array will be the left one.
110  *
111  * @param qp   The list.
112  * @param dst  A pointer to a pointer array with must be at least
113  *             pdeq_len(dq) * sizeof(void *)
114  *
115  * @return  dst
116  */
117 void **pdeq_copyl(pdeq *qp, const void **dst);
118
119 /**
120  * Convert the double ended pointer list into a linear array beginning from
121  * right, the first element in the linear array will be the right one.
122  *
123  * @param qp   The list.
124  * @param dst  A pointer to a pointer array with must be at least
125  *             pdeq_len(dq) * sizeof(void *)
126  *
127  * @return  dst
128  */
129 void **pdeq_copyr(pdeq *qp, const void **dst);
130
131 /**
132  * Add a pointer to the left side of a double ended pointer list.
133  *
134  * @param dq  The list to add a pointer to.
135  * @param x   The pointer element to be added
136  *
137  * @return The list.
138  */
139 pdeq *pdeq_putl(pdeq *dq, const void *x);
140
141 /**
142  * Add a pointer to the right side of a double ended pointer list.
143  *
144  * @param dq  The list to add a pointer to.
145  * @param x   The pointer element to be added
146  *
147  * @return The list.
148  */
149 pdeq *pdeq_putr(pdeq *dq, const void *x);
150
151 /**
152  * Retrieve a pointer from the left site of a double ended pointer list.
153  *
154  * @param dq   The list
155  *
156  * @return The pointer element.
157  *
158  * @remark This function will fail if the list is empty.
159  */
160 void *pdeq_getl(pdeq *dq);
161
162 /**
163  * Retrieve a pointer from the right site of a double ended pointer list.
164  *
165  * @param dq   The list
166  *
167  * @return The pointer element.
168  *
169  * @remark This function will fail if the list is empty.
170  */
171 void *pdeq_getr(pdeq *dq);
172
173 #ifdef NDEBUG
174 #define PDEQ_VRFY(deq) ((void)0)
175 #else
176 #define PDEQ_VRFY(deq) _pdeq_vrfy ((deq))
177 void _pdeq_vrfy(pdeq *dq);
178 #endif
179
180 /**
181  * The pdeq is often used as a wait queue. A helper
182  * type to support this.
183  */
184 typedef pdeq waitq;
185
186 /**
187  * Creates a new pointer wait queue (fifo).
188  *
189  * @return A new queue.
190  */
191 #define new_waitq()  new_pdeq()
192
193 /**
194  * Delete a wait queue (fifo)
195  *
196  * @param wq   The wait queue.
197  */
198 #define del_waitq(wq) del_pdeq(wq)
199
200 /**
201  * Retrieve a pointer from the wait queue (fifo).
202  *
203  * @param wq   The wait queue.
204  *
205  * @return The pointer element.
206  *
207  * @remark This function will fail if the queue is empty.
208  */
209 #define waitq_get(wq)  pdeq_getl(wq)
210
211 /**
212  * Add a pointer to the wait queue (fifo).
213  *
214  * @param wq  The wait queue
215  * @param x   The pointer element to be added
216  *
217  * @return The wait queue.
218  */
219 #define waitq_put(wq, x) pdeq_putr((wq), (x))
220
221 /**
222  * Checks if a wait queue is empty.
223  *
224  * @param wq   The wait queue.
225  *
226  * @return  non-zero if the queue is empty.
227  */
228 #define waitq_empty(wq) pdeq_empty(wq)
229
230 /**
231  * The pdeq can be used as a stack. A helper
232  * type to support this.
233  */
234 typedef pdeq stack;
235
236 /**
237  * Creates a new pointer stack (lifo).
238  *
239  * @return A new stack.
240  */
241 #define new_stack()  new_pdeq()
242
243 /**
244  * Pop a pointer from the stack (lifo).
245  *
246  * @param st   The stack.
247  *
248  * @return The pointer element.
249  *
250  * @remark This function will fail if the stack is empty.
251  */
252 #define stack_pop(st)  pdeq_getr(st)
253
254 /**
255  * Push a pointer to the stack (lifo).
256  *
257  * @param st  The stack.
258  * @param x   The pointer element to be added
259  *
260  * @return The stack.
261  */
262 #define stack_push(st, x) pdeq_putr((st), (x))
263
264 /**
265  * Checks if a stack is empty.
266  *
267  * @param st   The stack.
268  *
269  * @return  non-zero if the stack is empty.
270  */
271 #define stack_empty(st) pdeq_empty(wq)
272
273 #endif