[Lldb-commits] [PATCH] D134873: [LLDB] Add "process status" as equivalent of GDB's "frame" command

2022-09-29 Thread David Spickett via Phabricator via lldb-commits
DavidSpickett created this revision. Herald added a project: All. DavidSpickett requested review of this revision. Herald added a project: LLDB. Herald added a subscriber: lldb-commits. This is useful for answering the question "where am I?" and is surprisingly difficult to figure out without just

[Lldb-commits] [PATCH] D134873: [LLDB] Add "process status" as equivalent of GDB's "frame" command

2022-09-29 Thread David Spickett via Phabricator via lldb-commits
DavidSpickett added a comment. https://lldb.llvm.org/use/map.html#examining-thread-state if you want to see the current page. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D134873/new/ https://reviews.llvm.org/D134873 _

[Lldb-commits] [PATCH] D134873: [LLDB] Add "process status" as equivalent of GDB's "frame" command

2022-09-29 Thread Andrzej Warzynski via Phabricator via lldb-commits
awarzynski accepted this revision. awarzynski added a comment. This revision is now accepted and ready to land. LGTM, thanks! Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D134873/new/ https://reviews.llvm.org/D134873 __

[Lldb-commits] [PATCH] D134873: [LLDB] Add "process status" as equivalent of GDB's "frame" command

2022-09-29 Thread Jim Ingham via Phabricator via lldb-commits
jingham added a comment. `f` with no input does this job: (lldb) f frame #1: 0x00013f70 callem`nothing at callem.c:3 1 int nothing(int input) { 2if (input < 10) { -> 3 return nothing(++input); ^ 4}

[Lldb-commits] [PATCH] D134873: [LLDB] Add "process status" as equivalent of GDB's "frame" command

2022-09-30 Thread David Spickett via Phabricator via lldb-commits
DavidSpickett updated this revision to Diff 464185. DavidSpickett added a comment. - Add "frame select" and short "f" version on the lldb side. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D134873/new/ https://reviews.llvm.org/D134873 Files: lld