[Lldb-commits] [PATCH] D118473: [lldb] [Commands] Implement "thread siginfo"

2022-02-01 Thread Pavel Labath via Phabricator via lldb-commits
labath added a reviewer: jingham. labath added a comment. Seems reasonable to me, but let's get Jim's opinion too. CHANGES SINCE LAST ACTION https://reviews.llvm.org/D118473/new/ https://reviews.llvm.org/D118473 ___ lldb-commits mailing list lldb-c

[Lldb-commits] [lldb] b112775 - [lldb] Convert ProcessGDBRemoteLog to the new API

2022-02-01 Thread Pavel Labath via lldb-commits
Author: Pavel Labath Date: 2022-02-01T14:36:29+01:00 New Revision: b1127753b9dd9e76fa89e567345c0be0585b7498 URL: https://github.com/llvm/llvm-project/commit/b1127753b9dd9e76fa89e567345c0be0585b7498 DIFF: https://github.com/llvm/llvm-project/commit/b1127753b9dd9e76fa89e567345c0be0585b7498.diff

[Lldb-commits] [PATCH] D114639: Raise the minimum Visual Studio version to VS2019

2022-02-01 Thread Simon Pilgrim via Phabricator via lldb-commits
RKSimon added a comment. mlir-windows buildbot looks to be green now - thanks! Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D114639/new/ https://reviews.llvm.org/D114639 ___ lldb-commits mailing list lld

[Lldb-commits] [PATCH] D115960: Revert D109159 "[amdgpu] Enable selection of `s_cselect_b64`."

2022-02-01 Thread Fangrui Song via Phabricator via lldb-commits
MaskRay added a comment. Please abandon this revision. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D115960/new/ https://reviews.llvm.org/D115960 ___ lldb-commits mailing list lldb-commits@lists.llvm.org

[Lldb-commits] [PATCH] D118473: [lldb] [Commands] Implement "thread siginfo"

2022-02-01 Thread Jim Ingham via Phabricator via lldb-commits
jingham added a comment. I think it would help readability if you put the thread ID for the signinfo before printing the siginfo value, otherwise if I list multiple threads (or use "all") I have to count instances to figure out which thread goes with which siginfo. Otherwise this looks fine.

[Lldb-commits] [PATCH] D118473: [lldb] [Commands] Implement "thread siginfo"

2022-02-01 Thread Jonas Devlieghere via Phabricator via lldb-commits
JDevlieghere added inline comments. Comment at: lldb/source/Commands/CommandObjectThread.cpp:1323 +// CommandObjectThreadSiginfo + I know you're just being consistent with the rest of this file, but we've been slowly phasing out these kind of comments. CHAN