[Lldb-commits] [lldb] Improve type lookup using .debug_names parent chain (PR #108907)

via lldb-commits lldb-commits at lists.llvm.org
Thu Sep 26 13:46:36 PDT 2024


================
@@ -115,6 +122,11 @@ class DWARFIndex {
   bool
   GetFullyQualifiedTypeImpl(const DWARFDeclContext &context, DWARFDIE die,
                             llvm::function_ref<bool(DWARFDIE die)> callback);
+
+  /// Check if the type \a die can meet the requirements of \a query.
+  bool
+  ProcessTypeDieMatchQuery(TypeQuery &query, DWARFDIE die,
----------------
kusmour wrote:

Looks like other function names use all cap for DIE
```suggestion
  ProcessTypeDIEMatchQuery(TypeQuery &query, DWARFDIE die,
```

https://github.com/llvm/llvm-project/pull/108907


More information about the lldb-commits mailing list