[Lldb-commits] [lldb] [lldb] Move GetVTableInfo to C++ language runtime (PR #207010)
Michael Buch via lldb-commits
lldb-commits at lists.llvm.org
Fri Jul 24 01:26:33 PDT 2026
================
@@ -144,6 +144,16 @@ class CPPLanguageRuntime : public LanguageRuntime {
lldb::BreakpointSP m_cxx_exception_bp_sp;
ItaniumABIRuntime m_itanium_runtime;
+
+ struct VTableInfoEntry {
+ VTableInfo info;
+ };
+
+ llvm::Expected<VTableInfoEntry> GetVTableInfoEntry(ValueObject &in_value,
+ bool check_type);
+
+ std::map<Address, VTableInfoEntry> m_vtable_info_map;
----------------
Michael137 wrote:
Can the corresponding member on the `ItaniumABIRuntime` be removed?
https://github.com/llvm/llvm-project/pull/207010
More information about the lldb-commits
mailing list