Changeset 8ca26d5
- Timestamp:
- Nov 12, 2020, 1:26:38 PM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 0989e79, 9d264e18, f2ccbfd
- Parents:
- 3746f777 (diff), 0b996a1 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Files:
-
- 1 added
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
benchmark/rmit.py
r3746f777 r8ca26d5 12 12 import datetime 13 13 import itertools 14 import json 14 15 import os 15 16 import random … … 117 118 # ================================================================================ 118 119 # parse command line arguments 119 formats = ['raw', 'csv' ]120 formats = ['raw', 'csv', 'json'] 120 121 parser = argparse.ArgumentParser(description='Python Script to implement R.M.I.T. testing : Randomized Multiple Interleaved Trials') 121 122 parser.add_argument('--list', help='List all the commands that would be run', action='store_true') 122 parser.add_argument('--format', help='How to print the result', choices=formats, default=' csv')123 parser.add_argument('--format', help='How to print the result', choices=formats, default='json') 123 124 parser.add_argument('--file', nargs='?', type=argparse.FileType('w'), default=sys.stdout) 124 125 parser.add_argument('-t', '--trials', help='Number of trials to run per combinaison', type=int, default=3) … … 203 204 204 205 # ================================================================================ 205 # Print csv206 # Print raw 206 207 if options.format == 'raw': 207 208 for r in result: 208 209 print(r, file=options.file) 210 sys.exit(0) 211 212 # ================================================================================ 213 # Print json 214 if options.format == 'json': 215 json.dump(result, options.file) 209 216 sys.exit(0) 210 217 -
libcfa/src/Makefile.am
r3746f777 r8ca26d5 96 96 concurrency/exception.hfa \ 97 97 concurrency/kernel.hfa \ 98 concurrency/locks.hfa \ 98 99 concurrency/monitor.hfa \ 99 100 concurrency/mutex.hfa \ -
libcfa/src/concurrency/locks.cfa
r3746f777 r8ca26d5 51 51 } 52 52 53 void ?{}( mutex_lock & this ) {53 void ?{}( single_acquisition_lock & this ) { 54 54 ((blocking_lock &)this){ false, false }; 55 55 } 56 56 57 void ^?{}( mutex_lock & this ) {57 void ^?{}( single_acquisition_lock & this ) { 58 58 // default 59 59 } … … 67 67 } 68 68 69 void ?{}( recursive_mutex_lock & this ) {69 void ?{}( multiple_acquisition_lock & this ) { 70 70 ((blocking_lock &)this){ true, false }; 71 71 } 72 72 73 void ^?{}( recursive_mutex_lock & this ) {73 void ^?{}( multiple_acquisition_lock & this ) { 74 74 // default 75 75 } 76 76 77 77 void lock( blocking_lock & this ) with( this ) { 78 $thread * thrd = active_thread();79 78 lock( lock __cfaabi_dbg_ctx2 ); 80 if ( owner == thrd&& !multi_acquisition) {79 if ( owner == active_thread() && !multi_acquisition) { 81 80 fprintf(stderr, "A single acquisition lock holder attempted to reacquire the lock resulting in a deadlock."); // Possibly throw instead 82 81 exit(EXIT_FAILURE); 83 } else if ( owner != 0p && owner != thrd) {84 append( blocked_threads, thrd);82 } else if ( owner != 0p && owner != active_thread() ) { 83 append( blocked_threads, active_thread() ); 85 84 wait_count++; 86 85 unlock( lock ); 87 86 park( ); 88 } else if ( owner == thrd&& multi_acquisition ) {87 } else if ( owner == active_thread() && multi_acquisition ) { 89 88 recursion_count++; 90 89 unlock( lock ); 91 90 } else { 92 owner = thrd;91 owner = active_thread(); 93 92 recursion_count = 1; 94 93 unlock( lock ); … … 97 96 98 97 bool try_lock( blocking_lock & this ) with( this ) { 99 $thread * thrd = active_thread();100 98 bool ret = false; 101 99 lock( lock __cfaabi_dbg_ctx2 ); 102 100 if ( owner == 0p ) { 103 owner = thrd;104 if ( multi_acquisition )recursion_count = 1;101 owner = active_thread(); 102 recursion_count = 1; 105 103 ret = true; 106 } else if ( owner == thrd&& multi_acquisition ) {104 } else if ( owner == active_thread() && multi_acquisition ) { 107 105 recursion_count++; 108 106 ret = true; … … 115 113 lock( lock __cfaabi_dbg_ctx2 ); 116 114 if ( owner == 0p ){ // no owner implies lock isn't held 117 fprintf( stderr, "There was an attempt to release a lock that isn't held" ); 115 fprintf( stderr, "There was an attempt to release a lock that isn't held" ); 118 116 return; 119 } else if ( strict_owner && active_thread() ) {120 fprintf( stderr, "A thread other than the owner attempted to release an owner lock" ); 117 } else if ( strict_owner && owner != active_thread() ) { 118 fprintf( stderr, "A thread other than the owner attempted to release an owner lock" ); 121 119 return; 122 120 } … … 125 123 $thread * thrd = pop_head( blocked_threads ); 126 124 owner = thrd; 127 recursion_count = ( thrd && multi_acquisition? 1 : 0 );125 recursion_count = ( thrd ? 1 : 0 ); 128 126 wait_count--; 129 127 unpark( thrd ); … … 153 151 } else { 154 152 owner = t; 155 if ( multi_acquisition )recursion_count = 1;153 recursion_count = 1; 156 154 #if !defined( __CFA_NO_STATISTICS__ ) 157 kernelTLS.this_stats = t->curr_cluster->stats;155 //kernelTLS.this_stats = t->curr_cluster->stats; 158 156 #endif 159 157 unpark( t ); … … 165 163 lock( lock __cfaabi_dbg_ctx2 ); 166 164 if ( owner == 0p ){ // no owner implies lock isn't held 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" ); 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" ); 170 168 } else { 171 169 $thread * thrd = pop_head( blocked_threads ); 172 170 owner = thrd; 173 recursion_count = ( thrd && multi_acquisition? 1 : 0 );171 recursion_count = ( thrd ? 1 : 0 ); 174 172 wait_count--; 175 173 unpark( thrd ); … … 184 182 // This is temporary until an inheritance bug is fixed 185 183 186 void lock( mutex_lock & this ){184 void lock( single_acquisition_lock & this ){ 187 185 lock( (blocking_lock &)this ); 188 186 } 189 187 190 void unlock( mutex_lock & this ){188 void unlock( single_acquisition_lock & this ){ 191 189 unlock( (blocking_lock &)this ); 192 190 } 193 191 194 void add_( mutex_lock & this, struct $thread * t ){192 void add_( single_acquisition_lock & this, struct $thread * t ){ 195 193 add_( (blocking_lock &)this, t ); 196 194 } 197 195 198 void remove_( mutex_lock & this ){196 void remove_( single_acquisition_lock & this ){ 199 197 remove_( (blocking_lock &)this ); 200 198 } 201 199 202 void set_recursion_count( mutex_lock & this, size_t recursion ){200 void set_recursion_count( single_acquisition_lock & this, size_t recursion ){ 203 201 set_recursion_count( (blocking_lock &)this, recursion ); 204 202 } 205 203 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 ){204 size_t get_recursion_count( single_acquisition_lock & this ){ 205 return get_recursion_count( (blocking_lock &)this ); 206 } 207 208 void lock( owner_lock & this ){ 211 209 lock( (blocking_lock &)this ); 212 210 } 213 211 214 void unlock( recursive_mutex_lock & this ){212 void unlock( owner_lock & this ){ 215 213 unlock( (blocking_lock &)this ); 216 214 } 217 215 218 void add_( recursive_mutex_lock & this, struct $thread * t ){216 void add_( owner_lock & this, struct $thread * t ){ 219 217 add_( (blocking_lock &)this, t ); 220 218 } 221 219 222 void remove_( recursive_mutex_lock & this ){220 void remove_( owner_lock & this ){ 223 221 remove_( (blocking_lock &)this ); 224 222 } 225 223 226 void set_recursion_count( recursive_mutex_lock & this, size_t recursion ){224 void set_recursion_count( owner_lock & this, size_t recursion ){ 227 225 set_recursion_count( (blocking_lock &)this, recursion ); 228 226 } 229 227 230 size_t get_recursion_count( recursive_mutex_lock & this ){ 231 get_recursion_count( (blocking_lock &)this ); 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 ); 232 254 } 233 255 … … 244 266 info_thread(L) * copy = *i; 245 267 remove( cond->blocked_threads, i ); //remove this thread O(1) 246 cond-> wait_count--;268 cond->count--; 247 269 if( !copy->lock ) { 248 unlock( cond->lock );249 270 #if !defined( __CFA_NO_STATISTICS__ ) 250 #warning unprotected access to tls TODO discuss this 251 kernelTLS.this_stats = copy->t->curr_cluster->stats; 271 //kernelTLS.this_stats = copy->t->curr_cluster->stats; 252 272 #endif 253 273 unpark( copy->t ); … … 285 305 bool ret = !!blocked_threads; 286 306 info_thread(L) * popped = pop_head( blocked_threads ); 287 popped->listed = false;288 307 if(popped != 0p) { 308 popped->listed = false; 289 309 count--; 290 310 if (popped->lock) { … … 303 323 while( blocked_threads ) { 304 324 info_thread(L) * popped = pop_head( blocked_threads ); 305 popped->listed = false;306 325 if(popped != 0p){ 326 popped->listed = false; 307 327 count--; 308 328 if (popped->lock) { … … 341 361 remove_( *i.lock ); 342 362 } 343 363 344 364 unlock( lock ); 345 365 park( ); // blocks here … … 385 405 queue_info_thread( this, i ); 386 406 } 387 407 388 408 void wait( condition_variable(L) & this, Duration duration ) with(this) { 389 409 info_thread( L ) i = { active_thread() }; … … 391 411 } 392 412 393 void wait( condition_variable(L) & this, uintptr_t info, Duration duration ) with(this) { 413 void wait( condition_variable(L) & this, uintptr_t info, Duration duration ) with(this) { 394 414 info_thread( L ) i = { active_thread(), info }; 395 415 queue_info_thread_timeout(this, i, __kernel_get_time() + duration ); … … 417 437 queue_info_thread( this, i ); 418 438 } 419 439 420 440 void wait( condition_variable(L) & this, L & l, Duration duration ) with(this) { 421 441 info_thread(L) i = { active_thread() }; … … 423 443 queue_info_thread_timeout(this, i, __kernel_get_time() + duration ); 424 444 } 425 445 426 446 void wait( condition_variable(L) & this, L & l, uintptr_t info, Duration duration ) with(this) { 427 447 info_thread(L) i = { active_thread(), info }; … … 429 449 queue_info_thread_timeout(this, i, __kernel_get_time() + duration ); 430 450 } 431 451 432 452 void wait( condition_variable(L) & this, L & l, Time time ) with(this) { 433 453 info_thread(L) i = { active_thread() }; … … 435 455 queue_info_thread_timeout(this, i, time ); 436 456 } 437 457 438 458 void wait( condition_variable(L) & this, L & l, uintptr_t info, Time time ) with(this) { 439 459 info_thread(L) i = { active_thread(), info }; … … 442 462 } 443 463 } 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
r3746f777 r8ca26d5 49 49 //// Blocking Locks 50 50 /////////////////////////////////////////////////////////////////// 51 51 52 struct blocking_lock { 52 53 // Spin lock used for mutual exclusion … … 72 73 }; 73 74 74 struct mutex_lock {75 struct single_acquisition_lock { 75 76 inline blocking_lock; 76 77 }; … … 80 81 }; 81 82 82 struct recursive_mutex_lock {83 struct multiple_acquisition_lock { 83 84 inline blocking_lock; 84 85 }; … … 87 88 void ^?{}( blocking_lock & this ); 88 89 89 void ?{}( mutex_lock & this );90 void ^?{}( mutex_lock & this );90 void ?{}( single_acquisition_lock & this ); 91 void ^?{}( single_acquisition_lock & this ); 91 92 92 93 void ?{}( owner_lock & this ); 93 94 void ^?{}( owner_lock & this ); 94 95 95 void ?{}( recursive_mutex_lock & this );96 void ^?{}( recursive_mutex_lock & this );96 void ?{}( multiple_acquisition_lock & this ); 97 void ^?{}( multiple_acquisition_lock & this ); 97 98 98 99 void lock( blocking_lock & this ); … … 105 106 size_t get_recursion_count( blocking_lock & this ); 106 107 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 );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 ); 113 114 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 ); 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 ); 120 128 121 129 /////////////////////////////////////////////////////////////////// -
libcfa/src/stdlib.cfa
r3746f777 r8ca26d5 10 10 // Created On : Thu Jan 28 17:10:29 2016 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sun Jul 19 15:05:28202013 // Update Count : 50 112 // Last Modified On : Thu Nov 12 07:46:09 2020 13 // Update Count : 503 14 14 // 15 15 … … 26 26 //--------------------------------------- 27 27 28 // allocation/deallocation and constructor/destructor, non-array types 29 forall( dtype T | sized(T), ttype Params | { void ?{}( T &, Params ); } ) 30 T * new( Params p ) { 31 return &(*malloc()){ p }; // run constructor 32 } // new 33 34 forall( dtype T | { void ^?{}( T & ); } ) 35 void delete( T * ptr ) { 36 if ( ptr ) { // ignore null 37 ^(*ptr){}; // run destructor 38 free( ptr ); 39 } // if 40 } // delete 41 42 forall( dtype T, ttype Params | { void ^?{}( T & ); void delete( Params ); } ) 43 void delete( T * ptr, Params rest ) { 44 delete( ptr ); 45 delete( rest ); 46 } // delete 47 48 49 // allocation/deallocation and constructor/destructor, array types 50 forall( dtype T | sized(T), ttype Params | { void ?{}( T &, Params ); } ) 51 T * anew( size_t dim, Params p ) { 28 // Cforall allocation/deallocation and constructor/destructor, array types 29 30 forall( dtype T | sized(T), ttype TT | { void ?{}( T &, TT ); } ) 31 T * anew( size_t dim, TT p ) { 52 32 T * arr = alloc( dim ); 53 33 for ( unsigned int i = 0; i < dim; i += 1 ) { … … 68 48 } // adelete 69 49 70 forall( dtype T | sized(T) | { void ^?{}( T & ); }, ttype Params | { void adelete( Params); } )71 void adelete( T arr[], Paramsrest ) {50 forall( dtype T | sized(T) | { void ^?{}( T & ); }, ttype TT | { void adelete( TT ); } ) 51 void adelete( T arr[], TT rest ) { 72 52 if ( arr ) { // ignore null 73 53 size_t dim = malloc_size( arr ) / sizeof( T ); -
libcfa/src/stdlib.hfa
r3746f777 r8ca26d5 10 10 // Created On : Thu Jan 28 17:12:35 2016 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : T ue Sep 1 20:32:34202013 // Update Count : 5 0512 // Last Modified On : Thu Nov 12 08:12:08 2020 13 // Update Count : 515 14 14 // 15 15 16 16 #pragma once 17 17 18 #include "bits/defs.hfa" 19 #include "bits/align.hfa" 18 #include "bits/defs.hfa" // OPTIONAL_THREAD 19 #include "bits/align.hfa" // libAlign 20 20 21 21 #include <stdlib.h> // *alloc, strto*, ato* … … 104 104 void free( T * addr ) { 105 105 free( (void *) addr ); // C free 106 } // free107 } // distribution108 109 static inline forall( ttype TT | { void free( TT ); } ) {110 // T* does not take void* and vice-versa111 112 void free( void * addr, TT rest ) {113 free( addr );114 free( rest );115 } // free116 117 forall( dtype T | sized(T) )118 void free( T * addr, TT rest ) {119 free( addr );120 free( rest );121 106 } // free 122 107 } // distribution … … 177 162 static inline T_align ?`align ( size_t a ) { return (T_align){a}; } 178 163 static inline T_resize ?`resize ( void * a ) { return (T_resize){a}; } 164 179 165 static inline forall( dtype T | sized(T) ) { 180 181 166 S_fill(T) ?`fill ( T t ) { 182 167 S_fill(T) ret = { 't' }; … … 250 235 251 236 } // distribution TT 252 253 237 } // distribution T 254 238 … … 262 246 return (T *)memcpy( dest, src, sizeof(T) ); 263 247 } // memcpy 264 } // distribution 265 266 static inline forall( dtype T | sized(T) ) { 248 267 249 // Cforall safe initialization/copy, i.e., implicit size specification, array types 268 250 T * amemset( T dest[], char fill, size_t dim ) { … … 275 257 } // distribution 276 258 259 // Cforall deallocation for multiple objects 260 static inline forall( dtype T, ttype TT | { void free( TT ); } ) 261 void free( T * addr, TT rest ) { 262 free( addr ); 263 free( rest ); 264 } // free 265 277 266 // Cforall allocation/deallocation and constructor/destructor, non-array types 278 forall( dtype T | sized(T), ttype Params | { void ?{}( T &, Params ); } ) T * new( Params p ); 279 forall( dtype T | { void ^?{}( T & ); } ) void delete( T * ptr ); 280 forall( dtype T, ttype Params | { void ^?{}( T & ); void delete( Params ); } ) void delete( T * ptr, Params rest ); 267 static inline forall( dtype T | sized(T), ttype TT | { void ?{}( T &, TT ); } ) 268 T * new( TT p ) { 269 return &(*malloc()){ p }; // run constructor 270 } // new 271 272 static inline forall( dtype T | { void ^?{}( T & ); } ) 273 void delete( T * ptr ) { 274 if ( ptr ) { // ignore null 275 ^(*ptr){}; // run destructor 276 free( ptr ); 277 } // if 278 } // delete 279 280 static inline forall( dtype T, ttype TT | { void ^?{}( T & ); void delete( TT ); } ) 281 void delete( T * ptr, TT rest ) { 282 delete( ptr ); 283 delete( rest ); 284 } // delete 281 285 282 286 // Cforall allocation/deallocation and constructor/destructor, array types 283 forall( dtype T | sized(T), ttype Params | { void ?{}( T &, Params ); } ) T * anew( size_t dim, Paramsp );287 forall( dtype T | sized(T), ttype TT | { void ?{}( T &, TT ); } ) T * anew( size_t dim, TT p ); 284 288 forall( dtype T | sized(T) | { void ^?{}( T & ); } ) void adelete( T arr[] ); 285 forall( dtype T | sized(T) | { void ^?{}( T & ); }, ttype Params | { void adelete( Params ); } ) void adelete( T arr[], Paramsrest );289 forall( dtype T | sized(T) | { void ^?{}( T & ); }, ttype TT | { void adelete( TT ); } ) void adelete( T arr[], TT rest ); 286 290 287 291 //--------------------------------------- … … 379 383 //--------------------------------------- 380 384 381 extern bool threading_enabled( void) OPTIONAL_THREAD;385 extern bool threading_enabled( void ) OPTIONAL_THREAD; 382 386 383 387 // Local Variables: // -
src/AST/Convert.cpp
r3746f777 r8ca26d5 9 9 // Author : Thierry Delisle 10 10 // Created On : Thu May 09 15::37::05 2019 11 // Last Modified By : Peter A. Buhr12 // Last Modified On : Wed Dec 11 21:39:32 201913 // Update Count : 3 311 // Last Modified By : Andrew Beach 12 // Last Modified On : Thr Nov 12 10:07:00 2020 13 // Update Count : 34 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 2814 2821 return unit; 2815 2822 } -
tests/.expect/alloc-ERROR.txt
r3746f777 r8ca26d5 1 alloc.cfa:3 61:1 error: No reasonable alternatives for expression Applying untyped:1 alloc.cfa:382:1 error: No reasonable alternatives for expression Applying untyped: 2 2 Name: ?=? 3 3 ...to: … … 19 19 20 20 21 alloc.cfa:3 62:1 error: No reasonable alternatives for expression Applying untyped:21 alloc.cfa:383:1 error: No reasonable alternatives for expression Applying untyped: 22 22 Name: ?=? 23 23 ...to: … … 30 30 31 31 32 alloc.cfa:3 63:1 error: No reasonable alternatives for expression Applying untyped:32 alloc.cfa:384:1 error: No reasonable alternatives for expression Applying untyped: 33 33 Name: ?=? 34 34 ...to: -
tests/alloc.cfa
r3746f777 r8ca26d5 10 10 // Created On : Wed Feb 3 07:56:22 2016 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri Oct 9 23:03:11202013 // Update Count : 43 112 // Last Modified On : Thu Nov 12 10:02:18 2020 13 // Update Count : 432 14 14 // 15 15 … … 375 375 dp = alloc(5.0`fill); // just for testing multiple free 376 376 assert(*dp == 5.0); 377 free( ip, dp );377 free( ip, dp, 0p ); 378 378 379 379 #ifdef ERR1 -
tests/malloc.cfa
r3746f777 r8ca26d5 319 319 free(ip); 320 320 321 free( (void *) 0p ); // sanity check321 free( (void *) 0p ); // sanity check 322 322 free( NULL ); // sanity check 323 323 … … 605 605 return 0; 606 606 } 607 608 // Local Variables: // 609 // tab-width: 4 // 610 // compile-command: "cfa malloc.cfa" // 611 // End: // -
tests/manipulatorsOutput3.cfa
r3746f777 r8ca26d5 156 156 sout | nl; 157 157 158 ui128 = 0x7fffffffffffffff;159 ui128 <<= 64;160 ui128 += 0xffffffffffffffff;161 158 sout | left( wd( 160, i128 ) ); 162 159 sout | left( sign( wd( 0, i128 ) ) ); … … 177 174 sout | left( wd( 160, bin( i128 ) ) ); 178 175 sout | left( sign( wd( 160, i128 ) ) ); 179 sout | left( wd( 160, upcase( hex( i128 )) ) );180 sout | left( wd( 160, upcase( oct( i128 ) )) );181 sout | left( wd( 160, upcase( bin( i128 )) ) );176 sout | left( wd( 160, upcase( hex( i128 ) ) ) ); 177 sout | left( wd( 160, upcase( oct( i128 ) ) ) ); 178 sout | left( wd( 160, upcase( bin( i128 ) ) ) ); 182 179 183 180 x = 1234; … … 316 313 } 317 314 318 319 315 // int128 constants (and printing) 320 316 int128 v = 0xffff_ffffffff_ffffffff_L128 + 0xffffffff_ffffffff_ffffffff_ffffffff_L128;
Note: See TracChangeset
for help on using the changeset viewer.