[9e2341b4] | 1 | // |
---|
| 2 | // Cforall Version 1.0.0 Copyright (C) 2020 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 | // list -- lets a user-defined stuct form intrusive linked lists |
---|
| 8 | // |
---|
| 9 | // Author : Michael Brooks |
---|
| 10 | // Created On : Wed Apr 22 18:00:00 2020 |
---|
| 11 | // Last Modified By : Michael Brooks |
---|
| 12 | // Last Modified On : Wed Apr 22 18:00:00 2020 |
---|
| 13 | // Update Count : 1 |
---|
| 14 | // |
---|
| 15 | |
---|
| 16 | #pragma once |
---|
| 17 | |
---|
| 18 | #include <assert.h> |
---|
| 19 | |
---|
[7d51ef8] | 20 | forall( Decorator &, T & ) |
---|
| 21 | struct tytagref { |
---|
| 22 | inline T &; |
---|
| 23 | }; |
---|
[9e2341b4] | 24 | |
---|
[7d51ef8] | 25 | trait embedded( tOuter &, tMid &, tInner & ) { |
---|
| 26 | tytagref( tMid, tInner ) ?`inner( tOuter & ); |
---|
[9e2341b4] | 27 | }; |
---|
| 28 | |
---|
[7d51ef8] | 29 | // embedded is reflexive, with no info (void) as the type tag |
---|
| 30 | forall (T &) |
---|
| 31 | tytagref(void, T) ?`inner ( T & this ) { tytagref( void, T ) ret = {this}; return ret; } |
---|
[9e2341b4] | 32 | |
---|
| 33 | // use this on every case of plan-9 inheritance, to make embedded a closure of plan-9 inheritance |
---|
[7d51ef8] | 34 | #define P9_EMBEDDED( derived, immedBase ) \ |
---|
| 35 | forall( Tbase &, TdiscardPath & | { tytagref( TdiscardPath, Tbase ) ?`inner( immedBase & ); } ) \ |
---|
| 36 | static inline tytagref(immedBase, Tbase) ?`inner( derived & this ) { \ |
---|
| 37 | immedBase & ib = this; \ |
---|
| 38 | Tbase & b = ib`inner; \ |
---|
| 39 | tytagref(immedBase, Tbase) result = { b }; \ |
---|
| 40 | return result; \ |
---|
| 41 | } |
---|
| 42 | |
---|
| 43 | #define EMBEDDED_VIA( OUTER, MID, INNER ) \ |
---|
| 44 | (struct { tytagref(MID, INNER) ( * ?`inner ) ( OUTER & ); }){ ?`inner } |
---|
| 45 | |
---|
| 46 | #define DLINK_VIA( TE, TLINK ) \ |
---|
| 47 | EMBEDDED_VIA( TE, TLINK, dlink(TE) ) |
---|
[9e2341b4] | 48 | |
---|
| 49 | |
---|
[a5db488] | 50 | // The origin is the position encountered at the start of iteration, |
---|
| 51 | // signifying, "need to advance to the first element," and at the end |
---|
| 52 | // of iteration, signifying, "no more elements." Normal comsumption of |
---|
| 53 | // an iterator runs ?`moveNext as the first step, and uses the return |
---|
| 54 | // of ?`moveNext as a guard, before dereferencing the iterator. So |
---|
| 55 | // normal consumption of an iterator does not dereference an iterator |
---|
| 56 | // in origin position. The value of a pointer (underlying a refence) |
---|
| 57 | // that is exposed publicly as an iteraor, and also a pointer stored |
---|
| 58 | // internally in a link field, is tagged, to indicate "is the origin" |
---|
| 59 | // (internally, is the list-head sentinel node), or untagged, to indicate |
---|
| 60 | // "is a regular node." Intent is to help a user who dereferences an |
---|
| 61 | // iterator in origin position (which would be an API-use error on their |
---|
| 62 | // part), by failing fast. |
---|
| 63 | |
---|
| 64 | #if defined( __x86_64 ) |
---|
| 65 | // Preferred case: tag in the most-significant bit. Dereference |
---|
| 66 | // has been shown to segfault consistently. Maintenance should |
---|
| 67 | // list more architectures as "ok" here, to let them use the |
---|
| 68 | // preferred case, when valid. |
---|
| 69 | #define ORIGIN_TAG_BITNO ( 8 * sizeof( size_t ) - 1 ) |
---|
| 70 | #else |
---|
| 71 | // Fallback case: tag in the least-significant bit. Dereference |
---|
| 72 | // will often give an alignment error, but may not, e.g. if |
---|
| 73 | // accessing a char-typed member. 32-bit x86 uses the most- |
---|
| 74 | // significant bit for real room on the heap. |
---|
| 75 | #define ORIGIN_TAG_BITNO 0 |
---|
| 76 | #endif |
---|
[9e2341b4] | 77 | #define ORIGIN_TAG_MASK (((size_t)1) << ORIGIN_TAG_BITNO) |
---|
| 78 | |
---|
| 79 | #define ORIGIN_TAG_SET(p) ((p) | ORIGIN_TAG_MASK) |
---|
| 80 | #define ORIGIN_TAG_CLEAR(p) ((p) & ~ORIGIN_TAG_MASK) |
---|
| 81 | #define ORIGIN_TAG_QUERY(p) ((p) & ORIGIN_TAG_MASK) |
---|
| 82 | |
---|
| 83 | |
---|
| 84 | forall( tE & ) { |
---|
| 85 | |
---|
| 86 | struct dlink{ |
---|
| 87 | tE *next; |
---|
| 88 | tE *prev; |
---|
| 89 | }; |
---|
| 90 | |
---|
| 91 | static inline void ?{}( dlink(tE) & this ) { |
---|
| 92 | this.next = 0p; |
---|
| 93 | this.prev = 0p; |
---|
| 94 | } |
---|
| 95 | |
---|
[7d51ef8] | 96 | forall( tLinks & = dlink(tE) ) |
---|
| 97 | struct dlist { |
---|
| 98 | inline dlink(tE); |
---|
| 99 | }; |
---|
[9e2341b4] | 100 | |
---|
[7d51ef8] | 101 | forall( tLinks & | embedded( tE, tLinks, dlink(tE) ) ) { |
---|
[9e2341b4] | 102 | static inline tE * $get_list_origin_addr( dlist(tE, tLinks) & lst ) { |
---|
[7d51ef8] | 103 | dlink(tE) & link_from_null = ( * (tE *) 0p )`inner; |
---|
[9e2341b4] | 104 | ptrdiff_t link_offset = (ptrdiff_t) & link_from_null; |
---|
| 105 | size_t origin_addr = ((size_t) & lst) - link_offset; |
---|
| 106 | size_t preResult = ORIGIN_TAG_SET( origin_addr ); |
---|
| 107 | return (tE *)preResult; |
---|
| 108 | } |
---|
| 109 | |
---|
| 110 | static inline void ?{}( dlist(tE, tLinks) & this ) { |
---|
| 111 | tE * listOrigin = $get_list_origin_addr( this ); |
---|
| 112 | ( ( dlink(tE) & ) this ){ listOrigin, listOrigin } ; |
---|
| 113 | } |
---|
| 114 | } |
---|
| 115 | |
---|
| 116 | } |
---|
| 117 | |
---|
| 118 | |
---|
[7d51ef8] | 119 | forall( tE &, tLinks & | embedded( tE, tLinks, dlink(tE) ) ) { |
---|
[9e2341b4] | 120 | |
---|
[7d51ef8] | 121 | static inline void insert_after(tE & list_pos, tE &to_insert) { |
---|
[9e2341b4] | 122 | verify (&list_pos != 0p); |
---|
| 123 | verify (&to_insert != 0p); |
---|
[7d51ef8] | 124 | dlink(tE) & linkToInsert = to_insert`inner; |
---|
[9e2341b4] | 125 | verify(linkToInsert.prev == 0p); |
---|
| 126 | verify(linkToInsert.next == 0p); |
---|
| 127 | tE & list_pos_raw = list_pos; |
---|
| 128 | tE & list_pos_elem = * (tE *) ORIGIN_TAG_CLEAR( (size_t) & list_pos_raw ); |
---|
[7d51ef8] | 129 | dlink(tE) & list_pos_links = list_pos_elem`inner; |
---|
[a5db488] | 130 | asm( "" : : : "memory" ); |
---|
[7d51ef8] | 131 | tE & after_raw = * list_pos_links.next; |
---|
[9e2341b4] | 132 | tE & after_elem = * (tE *) ORIGIN_TAG_CLEAR( (size_t) & after_raw ); |
---|
| 133 | linkToInsert.prev = & list_pos_raw; |
---|
| 134 | linkToInsert.next = & after_raw; |
---|
[7d51ef8] | 135 | dlink(tE) & afterLinks = after_elem`inner; |
---|
| 136 | afterLinks.prev = &to_insert; |
---|
| 137 | list_pos_links.next = &to_insert; |
---|
[a5db488] | 138 | asm( "" : : : "memory" ); |
---|
[9e2341b4] | 139 | } |
---|
| 140 | |
---|
[7d51ef8] | 141 | static inline void insert_before(tE & list_pos, tE &to_insert) { |
---|
[9e2341b4] | 142 | verify (&list_pos != 0p); |
---|
| 143 | verify (&to_insert != 0p); |
---|
[7d51ef8] | 144 | dlink(tE) & linkToInsert = to_insert`inner; |
---|
[9e2341b4] | 145 | verify(linkToInsert.next == 0p); |
---|
| 146 | verify(linkToInsert.prev == 0p); |
---|
| 147 | tE & list_pos_raw = list_pos; |
---|
| 148 | tE & list_pos_elem = * (tE *) ORIGIN_TAG_CLEAR( (size_t) & list_pos_raw ); |
---|
[7d51ef8] | 149 | dlink(tE) & list_pos_links = list_pos_elem`inner; |
---|
[a5db488] | 150 | asm( "" : : : "memory" ); |
---|
[7d51ef8] | 151 | tE & before_raw = * (list_pos_links).prev; |
---|
[9e2341b4] | 152 | tE & before_elem = * (tE *) ORIGIN_TAG_CLEAR( (size_t) & before_raw ); |
---|
| 153 | linkToInsert.next = & list_pos_raw; |
---|
| 154 | linkToInsert.prev = & before_raw; |
---|
[7d51ef8] | 155 | dlink(tE) & beforeLinks = before_elem`inner; |
---|
| 156 | beforeLinks.next = &to_insert; |
---|
| 157 | (list_pos_links).prev = &to_insert; |
---|
[9e2341b4] | 158 | asm( "" : : : "memory" ); |
---|
| 159 | } |
---|
[a5db488] | 160 | |
---|
[7d51ef8] | 161 | static inline tE & remove(tE & list_pos) { |
---|
[9e2341b4] | 162 | verify (&list_pos != 0p); |
---|
| 163 | tE & list_pos_elem = list_pos; |
---|
| 164 | verify( ! ORIGIN_TAG_QUERY((size_t) & list_pos_elem) ); |
---|
[7d51ef8] | 165 | dlink(tE) & list_pos_links = list_pos_elem`inner; |
---|
[9e2341b4] | 166 | tE & before_raw = * list_pos_links.prev; |
---|
| 167 | tE & before_elem = * (tE *) ORIGIN_TAG_CLEAR( (size_t) & before_raw ); |
---|
[7d51ef8] | 168 | dlink(tE) & before_links = before_elem`inner; |
---|
[9e2341b4] | 169 | tE & after_raw = * list_pos_links.next; |
---|
| 170 | tE & after_elem = * (tE *) ORIGIN_TAG_CLEAR( (size_t) & after_raw ); |
---|
[7d51ef8] | 171 | dlink(tE) & after_links = after_elem`inner; |
---|
[9e2341b4] | 172 | before_links.next = &after_raw; |
---|
| 173 | after_links.prev = &before_raw; |
---|
[a5db488] | 174 | asm( "" : : : "memory" ); |
---|
[9e2341b4] | 175 | list_pos_links.prev = 0p; |
---|
| 176 | list_pos_links.next = 0p; |
---|
[a5db488] | 177 | asm( "" : : : "memory" ); |
---|
[9e2341b4] | 178 | return list_pos_elem; |
---|
| 179 | } |
---|
[a5db488] | 180 | |
---|
[7d51ef8] | 181 | static inline tE & ?`first( dlist(tE, tLinks) &lst ) { |
---|
[9e2341b4] | 182 | tE * firstPtr = lst.next; |
---|
| 183 | if (ORIGIN_TAG_QUERY((size_t)firstPtr)) firstPtr = 0p; |
---|
[7d51ef8] | 184 | return *firstPtr; |
---|
[9e2341b4] | 185 | } |
---|
[7d51ef8] | 186 | static inline tE & ?`last ( dlist(tE, tLinks) &lst ) { |
---|
[9e2341b4] | 187 | tE * lastPtr = lst.prev; |
---|
| 188 | if (ORIGIN_TAG_QUERY((size_t)lastPtr)) lastPtr = 0p; |
---|
[7d51ef8] | 189 | return *lastPtr; |
---|
[9e2341b4] | 190 | } |
---|
| 191 | |
---|
[8d1ad36] | 192 | static inline bool ?`isEmpty( dlist(tE, tLinks) & lst ) { |
---|
| 193 | tE * firstPtr = lst.next; |
---|
| 194 | if (ORIGIN_TAG_QUERY((size_t)firstPtr)) firstPtr = 0p; |
---|
| 195 | return firstPtr == 0p; |
---|
| 196 | } |
---|
| 197 | |
---|
[7d51ef8] | 198 | static inline tE & ?`elems( dlist(tE, tLinks) & lst ) { |
---|
[9e2341b4] | 199 | tE * origin = $get_list_origin_addr( lst ); |
---|
[7d51ef8] | 200 | return *origin; |
---|
[9e2341b4] | 201 | } |
---|
| 202 | |
---|
[7d51ef8] | 203 | static inline bool ?`moveNext( tE && refx ) { |
---|
[9e2341b4] | 204 | tE && ref_inner = refx; |
---|
| 205 | tE & oldReferent = * (tE*) ORIGIN_TAG_CLEAR( (size_t) & ref_inner ); |
---|
[7d51ef8] | 206 | &ref_inner = oldReferent`inner.next; |
---|
[9e2341b4] | 207 | return &ref_inner != 0p && |
---|
| 208 | ! ORIGIN_TAG_QUERY( (size_t) & ref_inner ); |
---|
| 209 | } |
---|
| 210 | |
---|
[7d51ef8] | 211 | static inline bool ?`movePrev( tE && refx ) { |
---|
[9e2341b4] | 212 | tE && ref_inner = refx; |
---|
| 213 | tE & oldReferent = * (tE*) ORIGIN_TAG_CLEAR( (size_t) & ref_inner ); |
---|
[7d51ef8] | 214 | &ref_inner = oldReferent`inner.prev; |
---|
[9e2341b4] | 215 | return &ref_inner != 0p && |
---|
| 216 | ! ORIGIN_TAG_QUERY( (size_t) & ref_inner ); |
---|
| 217 | } |
---|
| 218 | |
---|
[7d51ef8] | 219 | static inline bool ?`hasNext( tE & e ) { |
---|
| 220 | return e`moveNext; |
---|
[8d1ad36] | 221 | } |
---|
| 222 | |
---|
[7d51ef8] | 223 | static inline bool ?`hasPrev( tE & e ) { |
---|
| 224 | return e`movePrev; |
---|
[8d1ad36] | 225 | } |
---|
| 226 | |
---|
[7d51ef8] | 227 | static inline tE & ?`next( tE & e ) { |
---|
| 228 | if( e`moveNext ) return e; |
---|
| 229 | return * 0p; |
---|
[8d1ad36] | 230 | } |
---|
| 231 | |
---|
[7d51ef8] | 232 | static inline tE & ?`prev( tE & e ) { |
---|
| 233 | if( e`movePrev ) return e; |
---|
| 234 | return * 0p; |
---|
[8d1ad36] | 235 | } |
---|
| 236 | |
---|
[9e2341b4] | 237 | static inline void insert_first( dlist(tE, tLinks) &lst, tE & e ) { |
---|
| 238 | insert_after(lst`elems, e); |
---|
| 239 | } |
---|
| 240 | |
---|
| 241 | static inline void insert_last( dlist(tE, tLinks) &lst, tE & e ) { |
---|
| 242 | insert_before(lst`elems, e); |
---|
| 243 | } |
---|
| 244 | |
---|
[8d1ad36] | 245 | static inline tE & try_pop_front( dlist(tE, tLinks) &lst ) { |
---|
[7d51ef8] | 246 | tE & first_inlist = lst`first; |
---|
[8d1ad36] | 247 | tE & first_item = first_inlist; |
---|
| 248 | if (&first_item) remove(first_inlist); |
---|
| 249 | return first_item; |
---|
| 250 | } |
---|
| 251 | |
---|
| 252 | static inline tE & try_pop_back( dlist(tE, tLinks) &lst ) { |
---|
[7d51ef8] | 253 | tE & last_inlist = lst`last; |
---|
[8d1ad36] | 254 | tE & last_item = last_inlist; |
---|
| 255 | if (&last_item) remove(last_inlist); |
---|
| 256 | return last_item; |
---|
| 257 | } |
---|
| 258 | |
---|
[9e2341b4] | 259 | |
---|
| 260 | #if !defined(NDEBUG) && (defined(__CFA_DEBUG__) || defined(__CFA_VERIFY__)) |
---|
| 261 | static bool $validate_fwd( dlist(tE, tLinks) & this ) { |
---|
| 262 | if ( ! & this`first ) return ( (& this`last) == 0p); |
---|
| 263 | |
---|
| 264 | tE & lagElem = *0p; |
---|
| 265 | |
---|
[7d51ef8] | 266 | while ( tE & it = this`elems; it`moveNext ) { |
---|
[9e2341b4] | 267 | if (& lagElem == 0p && &it != & this`first ) return false; |
---|
| 268 | & lagElem = & it; |
---|
| 269 | } |
---|
| 270 | |
---|
| 271 | if (& lagElem != & this`last) return false; |
---|
| 272 | |
---|
| 273 | // TODO: verify that it is back at this`elems; |
---|
| 274 | return true; |
---|
| 275 | } |
---|
| 276 | static bool $validate_rev( dlist(tE, tLinks) & this ) { |
---|
| 277 | if ( ! & this`last ) return ( (& this`first) == 0p); |
---|
| 278 | |
---|
| 279 | tE & lagElem = *0p; |
---|
| 280 | |
---|
[7d51ef8] | 281 | while ( tE & it = this`elems; it`movePrev ) { |
---|
[9e2341b4] | 282 | if (& lagElem == 0p && &it != & this`last ) return false; |
---|
| 283 | & lagElem = & it; |
---|
| 284 | } |
---|
| 285 | |
---|
| 286 | if (& lagElem != & this`first) return false; |
---|
| 287 | |
---|
| 288 | // TODO: verify that it is back at this`elems; |
---|
| 289 | return true; |
---|
| 290 | } |
---|
| 291 | static bool validate( dlist(tE, tLinks) & this ) { |
---|
| 292 | return $validate_fwd(this) && $validate_rev(this); |
---|
| 293 | } |
---|
| 294 | #endif |
---|
| 295 | |
---|
| 296 | } |
---|
| 297 | |
---|