[Lldb-commits] [PATCH] D145580: [lldb] Show register fields using bitfield struct types
David Spickett via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Mar 22 09:28:46 PDT 2023
DavidSpickett added inline comments.
================
Comment at: lldb/source/Commands/CommandObjectRegister.cpp:229
+ if (!DumpRegister(m_exe_ctx, strm, reg_ctx, reg_info,
+ /*print_flags=*/true, type_system))
strm.Printf("%-12s = error: unavailable\n", reg_info->name);
----------------
aprantl wrote:
> Do we need to pass this in explicitly or could the implementation do the `Target::GetScratchTypeSystemForLanguage::GetForTarget(m_exe_ctx.GetTargetRef())`? That would avoid introducing a plugin dependence at least in this file?
Yes I could do that. Though I think even `Core/DumpRegisterValue.cpp` using it isn't good.
Is that right @bulbazord ?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D145580/new/
https://reviews.llvm.org/D145580
More information about the lldb-commits
mailing list