[Lldb-commits] [PATCH] D53662: Give the SymbolFile plugin enough information to efficiently do exact match lookups

Jim Ingham via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Mon Oct 29 16:59:38 PDT 2018


jingham added a comment.

That depends on the definition of "fully qualified name".  If you can ensure that it means "name of C++ class" - or other ODR enforcing type system, then you could make that assumption.  In C you are free to redefine types on a per-function basis if you so desire; and sadly some interface generators (including MIG the one for generating Mach message handlers) do just this...)  So you would need to see a way to restrict the inputs to this function.  That doesn't seem like it would be straightforward to me.


https://reviews.llvm.org/D53662





More information about the lldb-commits mailing list