Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / libobjc / objc / objc-list.h
blob051e1c2c132af0a9060660c21031dcf2e6a761be
1 /* Generic single linked list to keep various information
2 Copyright (C) 1993, 1994, 1996 Free Software Foundation, Inc.
3 Contributed by Kresten Krab Thorup.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to
19 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
22 /* As a special exception, if you link this library with files compiled with
23 GCC to produce an executable, this does not cause the resulting executable
24 to be covered by the GNU General Public License. This exception does not
25 however invalidate any other reasons why the executable file might be
26 covered by the GNU General Public License. */
28 #ifndef __GNU_OBJC_LIST_H
29 #define __GNU_OBJC_LIST_H
31 #ifdef __cplusplus
32 extern "C" {
33 #endif /* __cplusplus */
35 struct objc_list {
36 void *head;
37 struct objc_list *tail;
40 /* Return a cons cell produced from (head . tail) */
42 static inline struct objc_list*
43 list_cons(void* head, struct objc_list* tail)
45 struct objc_list* cell;
47 cell = (struct objc_list*)objc_malloc(sizeof(struct objc_list));
48 cell->head = head;
49 cell->tail = tail;
50 return cell;
53 /* Return the length of a list, list_length(NULL) returns zero */
55 static inline int
56 list_length(struct objc_list* list)
58 int i = 0;
59 while(list)
61 i += 1;
62 list = list->tail;
64 return i;
67 /* Return the Nth element of LIST, where N count from zero. If N
68 larger than the list length, NULL is returned */
70 static inline void*
71 list_nth(int indx, struct objc_list* list)
73 while(indx-- != 0)
75 if(list->tail)
76 list = list->tail;
77 else
78 return 0;
80 return list->head;
83 /* Remove the element at the head by replacing it by its successor */
85 static inline void
86 list_remove_head(struct objc_list** list)
88 if ((*list)->tail)
90 struct objc_list* tail = (*list)->tail; /* fetch next */
91 *(*list) = *tail; /* copy next to list head */
92 objc_free(tail); /* free next */
94 else /* only one element in list */
96 objc_free(*list);
97 (*list) = 0;
102 /* Remove the element with `car' set to ELEMENT */
104 static inline void
105 list_remove_elem(struct objc_list** list, void* elem)
107 while (*list) {
108 if ((*list)->head == elem)
109 list_remove_head(list);
110 list = &((*list)->tail);
114 /* Map FUNCTION over all elements in LIST */
116 static inline void
117 list_mapcar(struct objc_list* list, void(*function)(void*))
119 while(list)
121 (*function)(list->head);
122 list = list->tail;
126 /* Return element that has ELEM as car */
128 static inline struct objc_list**
129 list_find(struct objc_list** list, void* elem)
131 while(*list)
133 if ((*list)->head == elem)
134 return list;
135 list = &((*list)->tail);
137 return NULL;
140 /* Free list (backwards recursive) */
142 static void
143 list_free(struct objc_list* list)
145 if(list)
147 list_free(list->tail);
148 objc_free(list);
152 #ifdef __cplusplus
154 #endif /* __cplusplus */
156 #endif /* not __GNU_OBJC_LIST_H */