[Lldb-commits] [lldb] [lldb] Move GetVTableInfo to C++ language runtime (PR #207010)
via lldb-commits
lldb-commits at lists.llvm.org
Fri Jul 24 02:42:11 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;
----------------
Nerixyz wrote:
Yes!
https://github.com/llvm/llvm-project/pull/207010
More information about the lldb-commits
mailing list