[Lldb-commits] [PATCH] D107297: [RFC/WIP] Only look at the symbol table when resolving JIT symbols

Greg Clayton via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Mon Aug 2 12:07:12 PDT 2021


clayborg added a comment.

Yeah, any symbol that isn't exported might not be in the symbol table, but it might have a mangled name in the debug info that we can easily lookup. Static function, non-exported classes/functions, static variables, etc.

That being said, in the IRExecutionUnit do we currently try and lookup using symbols only first? If we find something do we avoid touching debug info completely? If not, we should make a patch to do this.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D107297/new/

https://reviews.llvm.org/D107297



More information about the lldb-commits mailing list