Skip to content
This repository was archived by the owner on Dec 16, 2022. It is now read-only.

Commit b1f3d37

Browse files
committed
reporting un-mangled function names
1 parent 3d4684e commit b1f3d37

File tree

4 files changed

+65
-32
lines changed

4 files changed

+65
-32
lines changed

src/codegen.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -1343,8 +1343,9 @@ static void emit_function(jl_lambda_info_t *lam, Function *f)
13431343
llvm::DIArray EltTypeArray = dbuilder->getOrCreateArray(NULL,0);
13441344
DIFile fil = dbuilder->createFile(filename, ".");
13451345
DISubprogram SP =
1346-
dbuilder->createFunction((DIDescriptor)dbuilder->getCU(), f->getName(),
1347-
f->getName(),
1346+
dbuilder->createFunction((DIDescriptor)dbuilder->getCU(),
1347+
lam->name->name,
1348+
lam->name->name,
13481349
fil,
13491350
0,
13501351
dbuilder->createSubroutineType(fil,EltTypeArray),

src/debuginfo.cpp

+12-9
Original file line numberDiff line numberDiff line change
@@ -36,41 +36,44 @@ class JuliaJITEventListener: public JITEventListener
3636

3737
extern JuliaJITEventListener *jl_jit_events;
3838

39-
extern "C" void getFunctionInfo(char **name, int *line, const char **filename,size_t pointer);
39+
extern "C" void getFunctionInfo(const char **name, int *line, const char **filename,size_t pointer);
4040

41-
void getFunctionInfo(char **name, int *line, const char **filename, size_t pointer)
41+
void getFunctionInfo(const char **name, int *line, const char **filename, size_t pointer)
4242
{
4343
map<size_t, FuncInfo> info = jl_jit_events->getMap();
4444
*name = NULL;
4545
*line = -1;
4646
*filename = "unknown";
4747
for (map<size_t, FuncInfo>::iterator it= info.begin(); it!= info.end(); it++) {
4848
if ((*it).first <= pointer) {
49-
if ( (size_t)(*it).first + (*it).second.lengthAdr >= pointer) {
49+
if ((size_t)(*it).first + (*it).second.lengthAdr >= pointer) {
5050
*name = &(*(*it).second.func).getNameStr()[0];
51+
5152
if ((*it).second.lines.size() == 0) {
5253
continue;
5354
}
5455

5556
std::vector<JITEvent_EmittedFunctionDetails::LineStart>::iterator vit = (*it).second.lines.begin();
5657
JITEvent_EmittedFunctionDetails::LineStart prev = *vit;
58+
59+
DISubprogram debugscope =
60+
DISubprogram(prev.Loc.getScope((*it).second.func->getContext()));
61+
*filename = debugscope.getFilename().data();
62+
// the DISubprogram has the un-mangled name, so use that if
63+
// available.
64+
*name = debugscope.getName().data();
65+
5766
vit++;
5867

5968
while (vit != (*it).second.lines.end()) {
6069
if (pointer < (*vit).Address) {
6170
*line = prev.Loc.getLine();
62-
DIScope debugscope =
63-
DIScope(prev.Loc.getScope((*it).second.func->getContext()));
64-
*filename = debugscope.getFilename().data();
6571
break;
6672
}
6773
prev = *vit;
6874
vit++;
6975
}
7076
if (*line == -1) {
71-
DIScope debugscope =
72-
DIScope(prev.Loc.getScope((*it).second.func->getContext()));
73-
*filename = debugscope.getFilename().data();
7477
*line = prev.Loc.getLine();
7578
}
7679

src/task.c

+49-21
Original file line numberDiff line numberDiff line change
@@ -430,41 +430,67 @@ static void init_task(jl_task_t *t)
430430
#endif
431431

432432
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()
436436
{
437437
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;
439444

440445
unw_getcontext(&uc);
441446
unw_init_local(&cursor, &uc);
442447
while (unw_step(&cursor)) {
443448
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);
446449
char *func_name;
447450
int line_num;
448451
const char *file_name;
449452
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+
}
458459
}
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;
459482
}
460-
*/
461483

462484
static jl_value_t *build_backtrace()
463485
{
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
465491
void *buf[100];
466492
void **tbuf = &buf[0];
467-
int n = backtrace(buf, 100);
493+
int n = _Unwind_Backtrace(buf, 100);
468494
if (n == 100) {
469495
int sz = 100;
470496
void **mbuf=NULL;
@@ -483,19 +509,21 @@ static jl_value_t *build_backtrace()
483509
char *func_name;
484510
int line_num;
485511
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]);
487513
if (func_name != NULL) {
488514
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++;
491517
jl_arrayset(a, j, jl_box_int32(line_num)); j++;
492518
}
493519
}
494520
if (tbuf != &buf[0])
495521
free(tbuf);
522+
#endif
496523
JL_GC_POP();
497524
return (jl_value_t*)a;
498525
}
526+
#endif
499527

500528
#if 0
501529
// Stacktrace manually
@@ -560,7 +588,7 @@ void jl_raise(jl_value_t *e)
560588
tracedata = build_backtrace();
561589
JL_GC_PUSH(&tracedata);
562590
bt = (jl_value_t*)alloc_3w();
563-
bt->type = jl_backtrace_type;
591+
bt->type = (jl_type_t*)jl_backtrace_type;
564592
((jl_value_t**)bt)[1] = jl_exception_in_transit;
565593
((jl_value_t**)bt)[2] = tracedata;
566594
jl_exception_in_transit = bt;

ui/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ MONGOOSE = $(JULIAHOME)/external/mongoose-3.0
99
READLINE = -lncurses -lreadline
1010

1111
FLAGS = -falign-functions -Wall -Wno-strict-aliasing \
12+
-fno-omit-frame-pointer \
1213
-I$(JULIAHOME)/src -I$(LLTDIR) -I$(EXTROOT)/include $(CFLAGS)
1314
DEBUGFLAGS = -ggdb3 -DDEBUG $(FLAGS)
1415
SHIPFLAGS = -O3 -DNDEBUG $(FLAGS)

0 commit comments

Comments
 (0)