[Lldb-commits] [PATCH] D17618: Improve looking up functions with equivalent mangled names.

Sean Callanan via lldb-commits lldb-commits at lists.llvm.org
Mon Jul 11 11:29:41 PDT 2016


spyffe requested changes to this revision.
spyffe added a comment.
This revision now requires changes to proceed.

I'm concerned about the performance implications here, because `FindBestAlternateMangledName` is invoked for every C++ symbol lookup, not just for ones that would fail unless we did this workaround.

We have a `ColectFallbackNames` function in IRExecutionUnit.cpp to try hackier approaches if the simple approaches don't work.  Would it be feasible to make this farily heavyweight search part of the fallback names mechanism?


http://reviews.llvm.org/D17618





More information about the lldb-commits mailing list