[Lldb-commits] [PATCH] D109876: [lldb] [ABI/AArch64] Add pseudo-regs if missing

2021-10-10 Thread Michał Górny via Phabricator via lldb-commits
mgorny updated this revision to Diff 378515. mgorny added a comment. Remove unused `next_regnum_lldb` arg. CHANGES SINCE LAST ACTION https://reviews.llvm.org/D109876/new/ https://reviews.llvm.org/D109876 Files: lldb/source/Plugins/ABI/AArch64/ABIAArch64.cpp lldb/test/API/functionalities/

[Lldb-commits] [PATCH] D109876: [lldb] [ABI/AArch64] Add pseudo-regs if missing

2021-10-10 Thread Michał Górny via Phabricator via lldb-commits
mgorny updated this revision to Diff 378526. mgorny added a comment. Rename the set to 'supplementary registers'. CHANGES SINCE LAST ACTION https://reviews.llvm.org/D109876/new/ https://reviews.llvm.org/D109876 Files: lldb/source/Plugins/ABI/AArch64/ABIAArch64.cpp lldb/test/API/functiona

[Lldb-commits] [PATCH] D109281: [lldb] [gdb-remote] Extend x86 pseudo-regs to i386

2021-10-10 Thread Michał Górny via Phabricator via lldb-commits
mgorny abandoned this revision. mgorny added a comment. In the new version of the patch, both 32-bit and 64-bit x86 systems are handled immediately. CHANGES SINCE LAST ACTION https://reviews.llvm.org/D109281/new/ https://reviews.llvm.org/D109281 _

[Lldb-commits] [PATCH] D108831: [lldb] [ABI/X86] Add pseudo-registers if missing

2021-10-10 Thread Michał Górny via Phabricator via lldb-commits
mgorny updated this revision to Diff 378533. mgorny retitled this revision from "[lldb] [gdb-remote] Add x86_64 pseudo-registers when using gdbserver" to "[lldb] [ABI/X86] Add pseudo-registers if missing". mgorny edited the summary of this revision. mgorny added a comment. Rewritten for the new

[Lldb-commits] [PATCH] D109738: [lldb] Fix bug 38317 - Address breakpoints don't work if set before the process launches

2021-10-10 Thread Vadim Chugunov via Phabricator via lldb-commits
vadimcn added a comment. > Is it possible to get your IDE to record the module & the address? I don't control the definition of the protocol (FWIW it's Microsoft's Debug Adapter Protocol), but I'll look into that, maybe there's a way to sneak in extra information. In which case, what is the c

[Lldb-commits] [PATCH] D94997: [lldb][lldb-vscode] Updated implementation of 'launch' and 'attach' requests to not create auxiliary target in case "launchCommands" and "attachCommands" are provided.

2021-10-10 Thread Serhiy Redko via Phabricator via lldb-commits
serhiy.redko updated this revision to Diff 378575. serhiy.redko added a comment. - added printing of unused target related fields from launch.json in case launchCommands/attachCommands fields are provided. - updated help info in for launch/attach fields according to review request. CHANGES SINC