* Removed all Id tags.
[cacao.git] / src / toolbox / worklist.h
1 /* src/toolbox/worklist.h - worklist header
2
3    Copyright (C) 2005, 2006 R. Grafl, A. Krall, C. Kruegel, C. Oates,
4    R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner,
5    C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger,
6    Institut f. Computersprachen - TU Wien
7
8    This file is part of CACAO.
9
10    This program is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License as
12    published by the Free Software Foundation; either version 2, or (at
13    your option) any later version.
14
15    This program is distributed in the hope that it will be useful, but
16    WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
23    02111-1307, USA.
24
25    Contact: cacao@complang.tuwien.ac.at
26
27    Authors: Christian Ullrich
28
29
30 */
31
32
33 #ifndef _WORKLIST_H
34 #define _WORKLIST_H
35
36 #include "toolbox/bitvector.h"
37
38 #if !defined(NDEBUG)
39 #include <assert.h>
40
41 /* define WL_DEBUG_CHECK to activate the bound checks */
42
43 /* #define WL_DEBUG_CHECK */
44
45 /* no debug messages implemented till now */
46
47 /* #define WL_DEBUG_VERBOSE */
48
49 #endif
50
51 #if defined(WL_DEBUG_CHECK)
52 #define _WL_CHECK_BOUNDS(i,l,h) assert( ((i) >= (l)) && ((i) < (h)));
53 #define _WL_ASSERT(a) assert((a));
54 #else
55 #define _WL_CHECK_BOUNDS(i,l,h);
56 #define _WL_ASSERT(a);
57 #endif
58
59 struct worklist {
60         int *W_stack;
61         int W_top;
62         bitvector W_bv;
63 #ifdef WL_DEBUG_CHECK
64         int size;
65 #endif
66 };
67
68 typedef struct worklist worklist;
69
70 /* function prototypes */
71 worklist *wl_new(int size);
72 void wl_add(worklist *w, int element);
73 int wl_get(worklist *w);
74 bool wl_is_empty(worklist *w);
75 void wl_reset(worklist *w, int size);
76
77
78 #endif /* _BITVECTOR_H */
79
80
81 /*
82  * These are local overrides for various environment variables in Emacs.
83  * Please do not remove this and leave it at the end of the file, where
84  * Emacs will automagically detect them.
85  * ---------------------------------------------------------------------
86  * Local variables:
87  * mode: c
88  * indent-tabs-mode: t
89  * c-basic-offset: 4
90  * tab-width: 4
91  * End:
92  */