[Lldb-commits] [lldb] aa88161 - [lldb] Use value_or instead of getValueOr (NFC)

2022-06-19 Thread Kazu Hirata via lldb-commits
Author: Kazu Hirata Date: 2022-06-19T09:12:01-07:00 New Revision: aa88161b378ecb49388eefc28abe2926a229bcfc URL: https://github.com/llvm/llvm-project/commit/aa88161b378ecb49388eefc28abe2926a229bcfc DIFF: https://github.com/llvm/llvm-project/commit/aa88161b378ecb49388eefc28abe2926a229bcfc.diff L

[Lldb-commits] [lldb] 30c6758 - Use value_or instead of getValueOr (NFC)

2022-06-19 Thread Kazu Hirata via lldb-commits
Author: Kazu Hirata Date: 2022-06-19T10:34:41-07:00 New Revision: 30c675878c21be9973faabddc38ebf1b4c603b7d URL: https://github.com/llvm/llvm-project/commit/30c675878c21be9973faabddc38ebf1b4c603b7d DIFF: https://github.com/llvm/llvm-project/commit/30c675878c21be9973faabddc38ebf1b4c603b7d.diff L

[Lldb-commits] [PATCH] D128150: [lldb] [llgs] Add a test for multiprocess memory read/write

2022-06-19 Thread Michał Górny via Phabricator via lldb-commits
mgorny created this revision. mgorny added reviewers: labath, emaste, jingham, krytarowski. Herald added a subscriber: arichardson. Herald added a project: All. mgorny requested review of this revision. Sponsored by: The FreeBSD Foundation https://reviews.llvm.org/D128150 Files: lldb/test/API

[Lldb-commits] [PATCH] D128152: [lldb] [llgs] Support multiprocess in qfThreadInfo

2022-06-19 Thread Michał Górny via Phabricator via lldb-commits
mgorny created this revision. mgorny added reviewers: labath, krytarowski, emaste, jingham. Herald added a subscriber: arichardson. Herald added a project: All. mgorny requested review of this revision. Update the `qfThreadInfo` handler to report threads of all debugged processes and include PIDs

[Lldb-commits] [PATCH] D128153: [lldb] [llgs] Add a test for multiprocess register read/write

2022-06-19 Thread Michał Górny via Phabricator via lldb-commits
mgorny created this revision. mgorny added reviewers: labath, emaste, jingham, krytarowski. Herald added a subscriber: arichardson. Herald added a project: All. mgorny requested review of this revision. Sponsored by: The FreeBSD Foundation https://reviews.llvm.org/D128153 Files: lldb/test/API

[Lldb-commits] [PATCH] D128126: Support expressions in the context of a reference

2022-06-19 Thread Pavel Labath via Phabricator via lldb-commits
labath accepted this revision. labath added inline comments. This revision is now accepted and ready to land. Comment at: lldb/test/API/commands/expression/context-object/TestContextObject.py:22 obj_val = frame.FindVariable("cpp_struct") self.assertTrue(obj_v

[Lldb-commits] [PATCH] D127999: [lldb] fix stepping through POSIX trampolines

2022-06-19 Thread Pavel Labath via Phabricator via lldb-commits
labath accepted this revision. labath added inline comments. This revision is now accepted and ready to land. Comment at: lldb/test/API/lang/cpp/step-into-namespace/TestStepIntoNamespace.py:5 + +class StepIntoNamespace(TestBase): +mydir = TestBase.compute_mydir(__file__) ---