source: src/libcfa/bits/containers.h@ 3ce0d440

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum with_gc
Last change on this file since 3ce0d440 was 0c674e8, checked in by Thierry Delisle <tdelisle@…>, 7 years ago

added missing bool testing operator for dllist

  • Property mode set to 100644
File size: 6.3 KB
RevLine 
[ea7d2b0]1//
2// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// bits/containers.h -- Intrusive generic containers.h
8//
9// Author : Thierry Delisle
10// Created On : Tue Oct 31 16:38:50 2017
11// Last Modified By : --
12// Last Modified On : --
13// Update Count : 0
14
15#pragma once
16
[c2b9f21]17#include "bits/align.h"
[0cf5b79]18#include "bits/defs.h"
[ea7d2b0]19
[0cf5b79]20//-----------------------------------------------------------------------------
21// Array
22//-----------------------------------------------------------------------------
23
24#ifdef __cforall
25 forall(dtype T)
26#else
27 #define T void
28#endif
29struct __small_array {
30 T * data;
31 __lock_size_t size;
32};
33#undef T
34
35#ifdef __cforall
36 #define __small_array_t(T) __small_array(T)
37#else
38 #define __small_array_t(T) struct __small_array
39#endif
40
41#ifdef __cforall
42 // forall(otype T | sized(T))
43 // static inline void ?{}(__small_array(T) & this) {}
44
45 forall(dtype T | sized(T))
46 static inline T& ?[?]( __small_array(T) & this, __lock_size_t idx) {
47 return ((typeof(this.data))this.data)[idx];
48 }
49
50 forall(dtype T | sized(T))
51 static inline T& ?[?]( const __small_array(T) & this, __lock_size_t idx) {
52 return ((typeof(this.data))this.data)[idx];
53 }
54
55 forall(dtype T | sized(T))
56 static inline T* begin( const __small_array(T) & this ) {
57 return ((typeof(this.data))this.data);
58 }
59
60 forall(dtype T | sized(T))
61 static inline T* end( const __small_array(T) & this ) {
62 return ((typeof(this.data))this.data) + this.size;
63 }
64#endif
65
[ea7d2b0]66//-----------------------------------------------------------------------------
67// Node Base
68//-----------------------------------------------------------------------------
69
[0cf5b79]70#ifdef __cforall
[ea7d2b0]71 trait is_node(dtype T) {
72 T*& get_next( T& );
73 };
74#endif
75
76//-----------------------------------------------------------------------------
77// Stack
78//-----------------------------------------------------------------------------
[0cf5b79]79#ifdef __cforall
[ea7d2b0]80 forall(dtype TYPE | is_node(TYPE))
81 #define T TYPE
82#else
83 #define T void
84#endif
85struct __stack {
86 T * top;
87};
[0cf5b79]88#undef T
[ea7d2b0]89
[0cf5b79]90#ifdef __cforall
[ea7d2b0]91#define __stack_t(T) __stack(T)
92#else
93#define __stack_t(T) struct __stack
94#endif
95
[0cf5b79]96#ifdef __cforall
[ea7d2b0]97 forall(dtype T | is_node(T))
[0cf5b79]98 static inline void ?{}( __stack(T) & this ) {
99 (this.top){ NULL };
[ea7d2b0]100 }
101
102 forall(dtype T | is_node(T) | sized(T))
[0cf5b79]103 static inline void push( __stack(T) & this, T * val ) {
[ea7d2b0]104 verify( !get_next( *val ) );
105 get_next( *val ) = this.top;
106 this.top = val;
107 }
108
109 forall(dtype T | is_node(T) | sized(T))
[0cf5b79]110 static inline T * pop( __stack(T) & this ) {
[ea7d2b0]111 T * top = this.top;
112 if( top ) {
113 this.top = get_next( *top );
114 get_next( *top ) = NULL;
115 }
116 return top;
117 }
118#endif
119
120//-----------------------------------------------------------------------------
121// Queue
122//-----------------------------------------------------------------------------
[0cf5b79]123#ifdef __cforall
124 forall(dtype TYPE | is_node(TYPE))
[ea7d2b0]125 #define T TYPE
126#else
127 #define T void
128#endif
129struct __queue {
130 T * head;
131 T ** tail;
132};
[0cf5b79]133#undef T
134
135#ifdef __cforall
136#define __queue_t(T) __queue(T)
137#else
138#define __queue_t(T) struct __queue
139#endif
[ea7d2b0]140
[0cf5b79]141#ifdef __cforall
[65deb18]142
[ea7d2b0]143 forall(dtype T | is_node(T))
[65deb18]144 static inline void ?{}( __queue(T) & this ) with( this ) {
145 head{ NULL };
146 tail{ &head };
[ea7d2b0]147 }
148
149 forall(dtype T | is_node(T) | sized(T))
[65deb18]150 static inline void append( __queue(T) & this, T * val ) with( this ) {
151 verify(tail != NULL);
152 *tail = val;
153 tail = &get_next( *val );
[ea7d2b0]154 }
155
156 forall(dtype T | is_node(T) | sized(T))
[0cf5b79]157 static inline T * pop_head( __queue(T) & this ) {
[ea7d2b0]158 T * head = this.head;
159 if( head ) {
160 this.head = get_next( *head );
161 if( !get_next( *head ) ) {
162 this.tail = &this.head;
163 }
164 get_next( *head ) = NULL;
165 }
166 return head;
167 }
168
169 forall(dtype T | is_node(T) | sized(T))
[65deb18]170 static inline T * remove( __queue(T) & this, T ** it ) with( this ) {
[ea7d2b0]171 T * val = *it;
172 verify( val );
173
174 (*it) = get_next( *val );
175
[65deb18]176 if( tail == &get_next( *val ) ) {
177 tail = it;
[ea7d2b0]178 }
179
180 get_next( *val ) = NULL;
181
[65deb18]182 verify( (head == NULL) == (&head == tail) );
183 verify( *tail == NULL );
[ea7d2b0]184 return val;
185 }
[8ebbfc4]186
187 forall(dtype T | is_node(T))
[0c674e8]188 static inline bool ?!=?( __queue(T) & this, zero_t zero ) {
189 return this.head != 0;
[8ebbfc4]190 }
[ea7d2b0]191#endif
[65deb18]192
[14a61b5]193
194//-----------------------------------------------------------------------------
195// Doubly Linked List
196//-----------------------------------------------------------------------------
197#ifdef __cforall
[de94a60]198 forall(dtype TYPE | sized(TYPE))
[14a61b5]199 #define T TYPE
[705e612]200 #define __getter_t * [T * & next, T * & prev] ( T & )
[14a61b5]201#else
[705e612]202 typedef void (*__generit_c_getter_t)();
[14a61b5]203 #define T void
[705e612]204 #define __getter_t __generit_c_getter_t
[14a61b5]205#endif
206struct __dllist {
207 T * head;
[705e612]208 __getter_t __get;
[14a61b5]209};
210#undef T
[705e612]211#undef __getter_t
[14a61b5]212
213#ifdef __cforall
214#define __dllist_t(T) __dllist(T)
215#else
216#define __dllist_t(T) struct __dllist
217#endif
218
219#ifdef __cforall
220
[de94a60]221 forall(dtype T | sized(T))
222 static inline [void] ?{}( __dllist(T) & this, * [T * & next, T * & prev] ( T & ) __get ) {
223 this.head{ NULL };
224 this.__get = __get;
225 }
226
[639991a]227 #define next 0
228 #define prev 1
[de94a60]229 forall(dtype T | sized(T))
230 static inline void push_front( __dllist(T) & this, T & node ) with( this ) {
[a1a17a74]231 verify(__get);
[de94a60]232 if ( head ) {
[639991a]233 __get( node ).next = head;
234 __get( node ).prev = __get( *head ).prev;
[de94a60]235 // inserted node must be consistent before it is seen
236 // prevent code movement across barrier
237 asm( "" : : : "memory" );
[639991a]238 __get( *head ).prev = &node;
239 T & _prev = *__get( node ).prev;
240 __get( _prev ).next = &node;
[de94a60]241 }
242 else {
[639991a]243 __get( node ).next = &node;
244 __get( node ).prev = &node;
[de94a60]245 }
246
247 // prevent code movement across barrier
248 asm( "" : : : "memory" );
249 head = &node;
[14a61b5]250 }
251
[de94a60]252 forall(dtype T | sized(T))
253 static inline void remove( __dllist(T) & this, T & node ) with( this ) {
[a1a17a74]254 verify(__get);
[de94a60]255 if ( &node == head ) {
[639991a]256 if ( __get( *head ).next == head ) {
[de94a60]257 head = NULL;
258 }
259 else {
[639991a]260 head = __get( *head ).next;
[de94a60]261 }
262 }
[639991a]263 __get( *__get( node ).next ).prev = __get( node ).prev;
264 __get( *__get( node ).prev ).next = __get( node ).next;
265 __get( node ).next = NULL;
266 __get( node ).prev = NULL;
[de94a60]267 }
[0c674e8]268
269 forall(dtype T | sized(T))
270 static inline bool ?!=?( __dllist(T) & this, zero_t zero ) {
271 return this.head != 0;
272 }
[639991a]273 #undef next
274 #undef prev
[14a61b5]275#endif
276
[65deb18]277//-----------------------------------------------------------------------------
278// Tools
279//-----------------------------------------------------------------------------
280#ifdef __cforall
281
282#endif
Note: See TracBrowser for help on using the repository browser.