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

Commit 4c09718

Browse files
committed
hide wrapper functions in stack traces
1 parent 964d859 commit 4c09718

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/debuginfo.cpp

+5-2
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,14 @@ void getFunctionInfo(const char **name, int *line, const char **filename, size_t
4040
for (std::map<size_t, FuncInfo>::iterator it= info.begin(); it!= info.end(); it++) {
4141
if ((*it).first <= pointer) {
4242
if ((size_t)(*it).first + (*it).second.lengthAdr >= pointer) {
43+
// commenting these lines out skips functions that don't
44+
// have explicit debug info. this is useful for hiding
45+
// the jlcall wrapper functions we generate.
4346
#if LLVM_VERSION_MAJOR == 3
4447
#if LLVM_VERSION_MINOR == 0
45-
*name = &(*(*it).second.func).getNameStr()[0];
48+
//*name = &(*(*it).second.func).getNameStr()[0];
4649
#elif LLVM_VERSION_MINOR >= 1
47-
*name = (((*(*it).second.func).getName()).data());
50+
//*name = (((*(*it).second.func).getName()).data());
4851
#endif
4952
#endif
5053
if ((*it).second.lines.size() == 0) {

0 commit comments

Comments
 (0)