@@ -430,41 +430,67 @@ static void init_task(jl_task_t *t)
430
430
#endif
431
431
432
432
void getFunctionInfo (char * * name , int * line , const char * * filename , size_t pointer );
433
- /*
434
- //stacktrace using libunwind
435
- void show_backtrace ()
433
+
434
+ // stacktrace using libunwind
435
+ static jl_value_t * build_backtrace ()
436
436
{
437
437
unw_cursor_t cursor ; unw_context_t uc ;
438
- unw_word_t ip, sp;
438
+ unw_word_t ip ;
439
+
440
+ jl_array_t * a ;
441
+ a = jl_alloc_cell_1d (0 );
442
+ JL_GC_PUSH (& a );
443
+ int j = 0 ;
439
444
440
445
unw_getcontext (& uc );
441
446
unw_init_local (& cursor , & uc );
442
447
while (unw_step (& cursor )) {
443
448
unw_get_reg (& cursor , UNW_REG_IP , & ip );
444
- unw_get_reg(&cursor, UNW_REG_SP, &sp);
445
- printf("rbp= %lx rip= %lx\n", sp, ip);
446
449
char * func_name ;
447
450
int line_num ;
448
451
const char * file_name ;
449
452
getFunctionInfo (& func_name , & line_num , & file_name , ip );
450
- if(func_name != NULL) {
451
- if (line_num == -1) {
452
- printf("%s in %s:line unknown\n", file_name, func_name);
453
- }
454
- else {
455
- printf("%s in %s:%d\n", func_name, file_name, line_num);
456
- }
457
- }
453
+ if (func_name != NULL ) {
454
+ jl_array_grow_end (a , 3 );
455
+ jl_arrayset (a , j , (jl_value_t * )jl_symbol (func_name )); j ++ ;
456
+ jl_arrayset (a , j , (jl_value_t * )jl_symbol (file_name )); j ++ ;
457
+ jl_arrayset (a , j , jl_box_int32 (line_num )); j ++ ;
458
+ }
458
459
}
460
+ JL_GC_POP ();
461
+ return (jl_value_t * )a ;
462
+ }
463
+
464
+ #if 0
465
+ static _Unwind_Reason_Code tracer (void * ctx , void * arg )
466
+ {
467
+ void * ip = (void * )_Unwind_GetIP (ctx );
468
+
469
+ char * func_name ;
470
+ int line_num ;
471
+ const char * file_name ;
472
+ getFunctionInfo (& func_name , & line_num , & file_name , (size_t )ip );
473
+ jl_array_t * a = (jl_array_t * )arg ;
474
+ if (func_name != NULL ) {
475
+ int j = a -> length ;
476
+ jl_array_grow_end (a , 3 );
477
+ jl_arrayset (a , j , (jl_value_t * )jl_symbol (func_name )); j ++ ;
478
+ jl_arrayset (a , j , (jl_value_t * )jl_symbol (file_name )); j ++ ;
479
+ jl_arrayset (a , j , jl_box_int32 (line_num ));
480
+ }
481
+ return _URC_NO_REASON ;
459
482
}
460
- */
461
483
462
484
static jl_value_t * build_backtrace ()
463
485
{
464
- jl_array_t * a = NULL ;
486
+ jl_array_t * a ;
487
+ a = jl_alloc_cell_1d (0 );
488
+ JL_GC_PUSH (& a );
489
+ _Unwind_Backtrace (tracer , a );
490
+ #if 0
465
491
void * buf [100 ];
466
492
void * * tbuf = & buf [0 ];
467
- int n = backtrace (buf , 100 );
493
+ int n = _Unwind_Backtrace (buf , 100 );
468
494
if (n == 100 ) {
469
495
int sz = 100 ;
470
496
void * * mbuf = NULL ;
@@ -483,19 +509,21 @@ static jl_value_t *build_backtrace()
483
509
char * func_name ;
484
510
int line_num ;
485
511
const char * file_name ;
486
- getFunctionInfo (& func_name , & line_num , & file_name , buf [i ]);
512
+ getFunctionInfo (& func_name , & line_num , & file_name , ( size_t ) buf [i ]);
487
513
if (func_name != NULL ) {
488
514
jl_array_grow_end (a , 3 );
489
- jl_arrayset (a , j , jl_symbol (func_name )); j ++ ;
490
- jl_arrayset (a , j , jl_symbol (file_name )); j ++ ;
515
+ jl_arrayset (a , j , ( jl_value_t * ) jl_symbol (func_name )); j ++ ;
516
+ jl_arrayset (a , j , ( jl_value_t * ) jl_symbol (file_name )); j ++ ;
491
517
jl_arrayset (a , j , jl_box_int32 (line_num )); j ++ ;
492
518
}
493
519
}
494
520
if (tbuf != & buf [0 ])
495
521
free (tbuf );
522
+ #endif
496
523
JL_GC_POP ();
497
524
return (jl_value_t * )a ;
498
525
}
526
+ #endif
499
527
500
528
#if 0
501
529
// Stacktrace manually
@@ -560,7 +588,7 @@ void jl_raise(jl_value_t *e)
560
588
tracedata = build_backtrace ();
561
589
JL_GC_PUSH (& tracedata );
562
590
bt = (jl_value_t * )alloc_3w ();
563
- bt -> type = jl_backtrace_type ;
591
+ bt -> type = ( jl_type_t * ) jl_backtrace_type ;
564
592
((jl_value_t * * )bt )[1 ] = jl_exception_in_transit ;
565
593
((jl_value_t * * )bt )[2 ] = tracedata ;
566
594
jl_exception_in_transit = bt ;
0 commit comments