Changes in / [0d4456b:6403ae5]
- Files:
-
- 1 deleted
- 4 edited
-
doc/theses/andrew_beach_MMath/features.tex (deleted)
-
libcfa/src/Makefile.am (modified) (1 diff)
-
libcfa/src/concurrency/locks.cfa (modified) (19 diffs)
-
libcfa/src/concurrency/locks.hfa (modified) (5 diffs)
-
src/AST/Convert.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/Makefile.am
r0d4456b r6403ae5 96 96 concurrency/exception.hfa \ 97 97 concurrency/kernel.hfa \ 98 concurrency/locks.hfa \99 98 concurrency/monitor.hfa \ 100 99 concurrency/mutex.hfa \ -
libcfa/src/concurrency/locks.cfa
r0d4456b r6403ae5 51 51 } 52 52 53 void ?{}( single_acquisition_lock & this ) {53 void ?{}( mutex_lock & this ) { 54 54 ((blocking_lock &)this){ false, false }; 55 55 } 56 56 57 void ^?{}( single_acquisition_lock & this ) {57 void ^?{}( mutex_lock & this ) { 58 58 // default 59 59 } … … 67 67 } 68 68 69 void ?{}( multiple_acquisition_lock & this ) {69 void ?{}( recursive_mutex_lock & this ) { 70 70 ((blocking_lock &)this){ true, false }; 71 71 } 72 72 73 void ^?{}( multiple_acquisition_lock & this ) {73 void ^?{}( recursive_mutex_lock & this ) { 74 74 // default 75 75 } 76 76 77 77 void lock( blocking_lock & this ) with( this ) { 78 $thread * thrd = active_thread(); 78 79 lock( lock __cfaabi_dbg_ctx2 ); 79 if ( owner == active_thread()&& !multi_acquisition) {80 if ( owner == thrd && !multi_acquisition) { 80 81 fprintf(stderr, "A single acquisition lock holder attempted to reacquire the lock resulting in a deadlock."); // Possibly throw instead 81 82 exit(EXIT_FAILURE); 82 } else if ( owner != 0p && owner != active_thread()) {83 append( blocked_threads, active_thread());83 } else if ( owner != 0p && owner != thrd ) { 84 append( blocked_threads, thrd ); 84 85 wait_count++; 85 86 unlock( lock ); 86 87 park( ); 87 } else if ( owner == active_thread()&& multi_acquisition ) {88 } else if ( owner == thrd && multi_acquisition ) { 88 89 recursion_count++; 89 90 unlock( lock ); 90 91 } else { 91 owner = active_thread();92 owner = thrd; 92 93 recursion_count = 1; 93 94 unlock( lock ); … … 96 97 97 98 bool try_lock( blocking_lock & this ) with( this ) { 99 $thread * thrd = active_thread(); 98 100 bool ret = false; 99 101 lock( lock __cfaabi_dbg_ctx2 ); 100 102 if ( owner == 0p ) { 101 owner = active_thread();102 recursion_count = 1;103 owner = thrd; 104 if ( multi_acquisition ) recursion_count = 1; 103 105 ret = true; 104 } else if ( owner == active_thread()&& multi_acquisition ) {106 } else if ( owner == thrd && multi_acquisition ) { 105 107 recursion_count++; 106 108 ret = true; … … 113 115 lock( lock __cfaabi_dbg_ctx2 ); 114 116 if ( owner == 0p ){ // no owner implies lock isn't held 115 fprintf( stderr, "There was an attempt to release a lock that isn't held" ); 117 fprintf( stderr, "There was an attempt to release a lock that isn't held" ); 116 118 return; 117 } else if ( strict_owner && owner !=active_thread() ) {118 fprintf( stderr, "A thread other than the owner attempted to release an owner lock" ); 119 } else if ( strict_owner && active_thread() ) { 120 fprintf( stderr, "A thread other than the owner attempted to release an owner lock" ); 119 121 return; 120 122 } … … 123 125 $thread * thrd = pop_head( blocked_threads ); 124 126 owner = thrd; 125 recursion_count = ( thrd ? 1 : 0 );127 recursion_count = ( thrd && multi_acquisition ? 1 : 0 ); 126 128 wait_count--; 127 129 unpark( thrd ); … … 151 153 } else { 152 154 owner = t; 153 recursion_count = 1;155 if ( multi_acquisition ) recursion_count = 1; 154 156 #if !defined( __CFA_NO_STATISTICS__ ) 155 //kernelTLS.this_stats = t->curr_cluster->stats;157 kernelTLS.this_stats = t->curr_cluster->stats; 156 158 #endif 157 159 unpark( t ); … … 163 165 lock( lock __cfaabi_dbg_ctx2 ); 164 166 if ( owner == 0p ){ // no owner implies lock isn't held 165 fprintf( stderr, "A lock that is not held was passed to a synchronization lock" ); 166 } else if ( strict_owner && owner !=active_thread() ) {167 fprintf( stderr, "A thread other than the owner of a lock passed it to a synchronization lock" ); 167 fprintf( stderr, "A lock that is not held was passed to a synchronization lock" ); 168 } else if ( strict_owner && active_thread() ) { 169 fprintf( stderr, "A thread other than the owner of a lock passed it to a synchronization lock" ); 168 170 } else { 169 171 $thread * thrd = pop_head( blocked_threads ); 170 172 owner = thrd; 171 recursion_count = ( thrd ? 1 : 0 );173 recursion_count = ( thrd && multi_acquisition ? 1 : 0 ); 172 174 wait_count--; 173 175 unpark( thrd ); … … 182 184 // This is temporary until an inheritance bug is fixed 183 185 184 void lock( single_acquisition_lock & this ){186 void lock( mutex_lock & this ){ 185 187 lock( (blocking_lock &)this ); 186 188 } 187 189 188 void unlock( single_acquisition_lock & this ){190 void unlock( mutex_lock & this ){ 189 191 unlock( (blocking_lock &)this ); 190 192 } 191 193 192 void add_( single_acquisition_lock & this, struct $thread * t ){194 void add_( mutex_lock & this, struct $thread * t ){ 193 195 add_( (blocking_lock &)this, t ); 194 196 } 195 197 196 void remove_( single_acquisition_lock & this ){198 void remove_( mutex_lock & this ){ 197 199 remove_( (blocking_lock &)this ); 198 200 } 199 201 200 void set_recursion_count( single_acquisition_lock & this, size_t recursion ){202 void set_recursion_count( mutex_lock & this, size_t recursion ){ 201 203 set_recursion_count( (blocking_lock &)this, recursion ); 202 204 } 203 205 204 size_t get_recursion_count( single_acquisition_lock & this ){205 returnget_recursion_count( (blocking_lock &)this );206 } 207 208 void lock( owner_lock & this ){206 size_t get_recursion_count( mutex_lock & this ){ 207 get_recursion_count( (blocking_lock &)this ); 208 } 209 210 void lock( recursive_mutex_lock & this ){ 209 211 lock( (blocking_lock &)this ); 210 212 } 211 213 212 void unlock( owner_lock & this ){214 void unlock( recursive_mutex_lock & this ){ 213 215 unlock( (blocking_lock &)this ); 214 216 } 215 217 216 void add_( owner_lock & this, struct $thread * t ){218 void add_( recursive_mutex_lock & this, struct $thread * t ){ 217 219 add_( (blocking_lock &)this, t ); 218 220 } 219 221 220 void remove_( owner_lock & this ){222 void remove_( recursive_mutex_lock & this ){ 221 223 remove_( (blocking_lock &)this ); 222 224 } 223 225 224 void set_recursion_count( owner_lock & this, size_t recursion ){226 void set_recursion_count( recursive_mutex_lock & this, size_t recursion ){ 225 227 set_recursion_count( (blocking_lock &)this, recursion ); 226 228 } 227 229 228 size_t get_recursion_count( owner_lock & this ){ 229 return get_recursion_count( (blocking_lock &)this ); 230 } 231 232 void lock( multiple_acquisition_lock & this ){ 233 lock( (blocking_lock &)this ); 234 } 235 236 void unlock( multiple_acquisition_lock & this ){ 237 unlock( (blocking_lock &)this ); 238 } 239 240 void add_( multiple_acquisition_lock & this, struct $thread * t ){ 241 add_( (blocking_lock &)this, t ); 242 } 243 244 void remove_( multiple_acquisition_lock & this ){ 245 remove_( (blocking_lock &)this ); 246 } 247 248 void set_recursion_count( multiple_acquisition_lock & this, size_t recursion ){ 249 set_recursion_count( (blocking_lock &)this, recursion ); 250 } 251 252 size_t get_recursion_count( multiple_acquisition_lock & this ){ 253 return get_recursion_count( (blocking_lock &)this ); 230 size_t get_recursion_count( recursive_mutex_lock & this ){ 231 get_recursion_count( (blocking_lock &)this ); 254 232 } 255 233 … … 266 244 info_thread(L) * copy = *i; 267 245 remove( cond->blocked_threads, i ); //remove this thread O(1) 268 cond-> count--;246 cond->wait_count--; 269 247 if( !copy->lock ) { 248 unlock( cond->lock ); 270 249 #if !defined( __CFA_NO_STATISTICS__ ) 271 //kernelTLS.this_stats = copy->t->curr_cluster->stats; 250 #warning unprotected access to tls TODO discuss this 251 kernelTLS.this_stats = copy->t->curr_cluster->stats; 272 252 #endif 273 253 unpark( copy->t ); … … 305 285 bool ret = !!blocked_threads; 306 286 info_thread(L) * popped = pop_head( blocked_threads ); 287 popped->listed = false; 307 288 if(popped != 0p) { 308 popped->listed = false;309 289 count--; 310 290 if (popped->lock) { … … 323 303 while( blocked_threads ) { 324 304 info_thread(L) * popped = pop_head( blocked_threads ); 305 popped->listed = false; 325 306 if(popped != 0p){ 326 popped->listed = false;327 307 count--; 328 308 if (popped->lock) { … … 361 341 remove_( *i.lock ); 362 342 } 363 343 364 344 unlock( lock ); 365 345 park( ); // blocks here … … 405 385 queue_info_thread( this, i ); 406 386 } 407 387 408 388 void wait( condition_variable(L) & this, Duration duration ) with(this) { 409 389 info_thread( L ) i = { active_thread() }; … … 411 391 } 412 392 413 void wait( condition_variable(L) & this, uintptr_t info, Duration duration ) with(this) { 393 void wait( condition_variable(L) & this, uintptr_t info, Duration duration ) with(this) { 414 394 info_thread( L ) i = { active_thread(), info }; 415 395 queue_info_thread_timeout(this, i, __kernel_get_time() + duration ); … … 437 417 queue_info_thread( this, i ); 438 418 } 439 419 440 420 void wait( condition_variable(L) & this, L & l, Duration duration ) with(this) { 441 421 info_thread(L) i = { active_thread() }; … … 443 423 queue_info_thread_timeout(this, i, __kernel_get_time() + duration ); 444 424 } 445 425 446 426 void wait( condition_variable(L) & this, L & l, uintptr_t info, Duration duration ) with(this) { 447 427 info_thread(L) i = { active_thread(), info }; … … 449 429 queue_info_thread_timeout(this, i, __kernel_get_time() + duration ); 450 430 } 451 431 452 432 void wait( condition_variable(L) & this, L & l, Time time ) with(this) { 453 433 info_thread(L) i = { active_thread() }; … … 455 435 queue_info_thread_timeout(this, i, time ); 456 436 } 457 437 458 438 void wait( condition_variable(L) & this, L & l, uintptr_t info, Time time ) with(this) { 459 439 info_thread(L) i = { active_thread(), info }; … … 462 442 } 463 443 } 464 465 // thread T1 {};466 // thread T2 {};467 468 // multiple_acquisition_lock m;469 // condition_variable( multiple_acquisition_lock ) c;470 471 // void main( T1 & this ) {472 // printf("T1 start\n");473 // lock(m);474 // printf("%d\n", counter(c));475 // if(empty(c)) {476 // printf("T1 wait\n");477 // wait(c,m,12);478 // }else{479 // printf("%d\n", front(c));480 // notify_one(c);481 // }482 // unlock(m);483 // printf("curr thd in main %p \n", active_thread());484 // printf("T1 waits for 2s\n");485 // lock(m);486 // wait( c, m, 2`s );487 // unlock(m);488 // printf("T1 wakes\n");489 // printf("T1 done\n");490 // }491 492 // void main( T2 & this ) {493 // printf("T2 start\n");494 // lock(m);495 // printf("%d\n", counter(c));496 // if(empty(c)) {497 // printf("T2 wait\n");498 // wait(c,m,12);499 // }else{500 // printf("%d\n", front(c));501 // notify_one(c);502 // }503 // unlock(m);504 // printf("T2 done\n");505 // }506 507 // int main() {508 // printf("start\n");509 // processor p[2];510 // {511 // T1 t1;512 // T2 t2;513 // }514 // printf("done\n");515 // } -
libcfa/src/concurrency/locks.hfa
r0d4456b r6403ae5 49 49 //// Blocking Locks 50 50 /////////////////////////////////////////////////////////////////// 51 52 51 struct blocking_lock { 53 52 // Spin lock used for mutual exclusion … … 73 72 }; 74 73 75 struct single_acquisition_lock {74 struct mutex_lock { 76 75 inline blocking_lock; 77 76 }; … … 81 80 }; 82 81 83 struct multiple_acquisition_lock {82 struct recursive_mutex_lock { 84 83 inline blocking_lock; 85 84 }; … … 88 87 void ^?{}( blocking_lock & this ); 89 88 90 void ?{}( single_acquisition_lock & this );91 void ^?{}( single_acquisition_lock & this );89 void ?{}( mutex_lock & this ); 90 void ^?{}( mutex_lock & this ); 92 91 93 92 void ?{}( owner_lock & this ); 94 93 void ^?{}( owner_lock & this ); 95 94 96 void ?{}( multiple_acquisition_lock & this );97 void ^?{}( multiple_acquisition_lock & this );95 void ?{}( recursive_mutex_lock & this ); 96 void ^?{}( recursive_mutex_lock & this ); 98 97 99 98 void lock( blocking_lock & this ); … … 106 105 size_t get_recursion_count( blocking_lock & this ); 107 106 108 void lock( single_acquisition_lock & this );109 void unlock( single_acquisition_lock & this );110 void add_( single_acquisition_lock & this, struct $thread * t );111 void remove_( single_acquisition_lock & this );112 void set_recursion_count( single_acquisition_lock & this, size_t recursion );113 size_t get_recursion_count( single_acquisition_lock & this );107 void lock( mutex_lock & this ); 108 void unlock( mutex_lock & this ); 109 void add_( mutex_lock & this, struct $thread * t ); 110 void remove_( mutex_lock & this ); 111 void set_recursion_count( mutex_lock & this, size_t recursion ); 112 size_t get_recursion_count( mutex_lock & this ); 114 113 115 void lock( owner_lock & this ); 116 void unlock( owner_lock & this ); 117 void add_( owner_lock & this, struct $thread * t ); 118 void remove_( owner_lock & this ); 119 void set_recursion_count( owner_lock & this, size_t recursion ); 120 size_t get_recursion_count( owner_lock & this ); 121 122 void lock( multiple_acquisition_lock & this ); 123 void unlock( multiple_acquisition_lock & this ); 124 void add_( multiple_acquisition_lock & this, struct $thread * t ); 125 void remove_( multiple_acquisition_lock & this ); 126 void set_recursion_count( multiple_acquisition_lock & this, size_t recursion ); 127 size_t get_recursion_count( multiple_acquisition_lock & this ); 114 void lock( recursive_mutex_lock & this ); 115 void unlock( recursive_mutex_lock & this ); 116 void add_( recursive_mutex_lock & this, struct $thread * t ); 117 void remove_( recursive_mutex_lock & this ); 118 void set_recursion_count( recursive_mutex_lock & this, size_t recursion ); 119 size_t get_recursion_count( recursive_mutex_lock & this ); 128 120 129 121 /////////////////////////////////////////////////////////////////// -
src/AST/Convert.cpp
r0d4456b r6403ae5 9 9 // Author : Thierry Delisle 10 10 // Created On : Thu May 09 15::37::05 2019 11 // Last Modified By : Andrew Beach12 // Last Modified On : Thr Nov 12 10:07:00 202013 // Update Count : 3 411 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Dec 11 21:39:32 2019 13 // Update Count : 33 14 14 // 15 15 … … 187 187 auto init = get<Initializer>().accept1( node->init ); 188 188 decl->init = init; 189 189 190 190 this->node = decl; 191 191 return nullptr; … … 2812 2812 } 2813 2813 deleteAll(translationUnit); 2814 2815 // Load the local static varables into the global store.2816 unit.global.sizeType = ast::sizeType;2817 unit.global.dereference = ast::dereferenceOperator;2818 unit.global.dtorStruct = ast::dtorStruct;2819 unit.global.dtorDestroy = ast::dtorStructDestroy;2820 2821 2814 return unit; 2822 2815 }
Note:
See TracChangeset
for help on using the changeset viewer.