[Lldb-commits] [PATCH] D105389: [lldb] Add AllocateMemory/DeallocateMemory to the SBProcess API

2021-07-02 Thread Peter S. Housel via Phabricator via lldb-commits
housel updated this revision to Diff 356324. CHANGES SINCE LAST ACTION https://reviews.llvm.org/D105389/new/ https://reviews.llvm.org/D105389 Files: lldb/bindings/interface/SBProcess.i lldb/include/lldb/API/SBProcess.h lldb/source/API/SBProcess.cpp lldb/test/API/python_api/process/Test

[Lldb-commits] [PATCH] D105389: [lldb] Add AllocateMemory/DeallocateMemory to the SBProcess API

2021-07-02 Thread Peter S. Housel via Phabricator via lldb-commits
housel created this revision. housel added a reviewer: clayborg. housel requested review of this revision. Herald added a project: LLDB. Herald added a subscriber: lldb-commits. This change adds AllocateMemory and DeallocateMemory methods to the SBProcess API, so that clients can allocate and dea

[Lldb-commits] [lldb] 6b0d266 - Revert "Create synthetic symbol names on demand to improve memory consumption and startup times."

2021-07-02 Thread Jonas Devlieghere via lldb-commits
Author: Jonas Devlieghere Date: 2021-07-02T16:21:47-07:00 New Revision: 6b0d266036f73f5ee9556d211a7d0946091ff3b2 URL: https://github.com/llvm/llvm-project/commit/6b0d266036f73f5ee9556d211a7d0946091ff3b2 DIFF: https://github.com/llvm/llvm-project/commit/6b0d266036f73f5ee9556d211a7d0946091ff3b2.d

[Lldb-commits] [PATCH] D105160: Create synthetic symbol names on demand to improve memory consumption and startup times.

2021-07-02 Thread Jonas Devlieghere via Phabricator via lldb-commits
JDevlieghere added a comment. I'm sorry to be the bearer of bad news but this breaks `macosx/dyld-trie-symbols/TestDyldTrieSymbols.py`. Given that it's Friday I'm going to revert to turn the bot green for the (holiday) weekend. https://green.lab.llvm.org/green/view/LLDB/job/lldb-cmake/33379/tes

[Lldb-commits] [lldb] a5c3f10 - [lldb] Update shebang in heap.py and crashlog.py

2021-07-02 Thread Jonas Devlieghere via lldb-commits
Author: Jonas Devlieghere Date: 2021-07-02T15:33:57-07:00 New Revision: a5c3f10b7527e1aa020d5d05703bb816a3e936fb URL: https://github.com/llvm/llvm-project/commit/a5c3f10b7527e1aa020d5d05703bb816a3e936fb DIFF: https://github.com/llvm/llvm-project/commit/a5c3f10b7527e1aa020d5d05703bb816a3e936fb.d

[Lldb-commits] [PATCH] D105366: [lldb/test] Fix failure caused by synthetic symbol name changes

2021-07-02 Thread Med Ismail Bennani via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rG707bda6e6c95: [lldb/test] Fix failure caused by synthetic symbol name refactoring (authored by mib). Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D105366/new

[Lldb-commits] [lldb] 707bda6 - [lldb/test] Fix failure caused by synthetic symbol name refactoring

2021-07-02 Thread Med Ismail Bennani via lldb-commits
Author: Med Ismail Bennani Date: 2021-07-02T22:26:30+02:00 New Revision: 707bda6e6c958d7a4d50aac23a15a253364a1f69 URL: https://github.com/llvm/llvm-project/commit/707bda6e6c958d7a4d50aac23a15a253364a1f69 DIFF: https://github.com/llvm/llvm-project/commit/707bda6e6c958d7a4d50aac23a15a253364a1f69.

[Lldb-commits] [PATCH] D105366: [lldb/test] Fix failure caused by synthetic symbol name changes

2021-07-02 Thread Jonas Devlieghere via Phabricator via lldb-commits
JDevlieghere accepted this revision. JDevlieghere added a comment. This revision is now accepted and ready to land. I see this is failing on GreenDragon. We should go ahead and land this and deal with potential post-commit review feedback if there is any. LGTM. Repository: rG LLVM Github Mono

[Lldb-commits] [PATCH] D100262: [lldb] [gdb-remote client] Support switching PID along with TID

2021-07-02 Thread Michał Górny via Phabricator via lldb-commits
This revision was landed with ongoing or failed builds. This revision was automatically updated to reflect the committed changes. mgorny marked an inline comment as done. Closed by commit rGaa319f544ad4: [lldb] [gdb-remote client] Support switching PID along with TID (authored by mgorny). Herald a

[Lldb-commits] [lldb] aa319f5 - [lldb] [gdb-remote client] Support switching PID along with TID

2021-07-02 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2021-07-02T21:33:50+02:00 New Revision: aa319f544ad41ecc46f79e67fbbb361cd9036f16 URL: https://github.com/llvm/llvm-project/commit/aa319f544ad41ecc46f79e67fbbb361cd9036f16 DIFF: https://github.com/llvm/llvm-project/commit/aa319f544ad41ecc46f79e67fbbb361cd9036f16.diff

[Lldb-commits] [PATCH] D105366: [lldb/test] Fix failure caused by synthetic symbol name changes

2021-07-02 Thread Med Ismail Bennani via Phabricator via lldb-commits
mib created this revision. mib added reviewers: clayborg, Jim, JDevlieghere. mib added a project: LLDB. mib requested review of this revision. Herald added a subscriber: lldb-commits. This patch fixes a failure in `TestFunctionStarts.py` that appeared following a change of implementation for synth

[Lldb-commits] [PATCH] D100262: [lldb] [gdb-remote client] Support switching PID along with TID

2021-07-02 Thread Michał Górny via Phabricator via lldb-commits
mgorny marked an inline comment as done. mgorny added a comment. I'll do one more test run and push, thanks! Comment at: lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h:588-590 + lldb::pid_t m_curr_pid = + LLDB_INVALID_PROCESS_ID; // Current gdb rem

[Lldb-commits] [PATCH] D100262: [lldb] [gdb-remote client] Support switching PID along with TID

2021-07-02 Thread Jonas Devlieghere via Phabricator via lldb-commits
JDevlieghere accepted this revision. JDevlieghere added a comment. This revision is now accepted and ready to land. Thanks! LGTM Comment at: lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h:588-590 + lldb::pid_t m_curr_pid = + LLDB_INVALID_PROCESS_ID

[Lldb-commits] [PATCH] D100262: [lldb] [gdb-remote client] Support switching PID along with TID

2021-07-02 Thread Michał Górny via Phabricator via lldb-commits
mgorny updated this revision to Diff 356199. mgorny marked 2 inline comments as done. mgorny added a comment. Rebase. Use a `struct` for the PID+TID return value. CHANGES SINCE LAST ACTION https://reviews.llvm.org/D100262/new/ https://reviews.llvm.org/D100262 Files: lldb/source/Plugins/Pro

[Lldb-commits] [PATCH] D100459: [lldb] [gdb-remote client] Refactor SetCurrentThread*()

2021-07-02 Thread Michał Górny via Phabricator via lldb-commits
This revision was landed with ongoing or failed builds. This revision was automatically updated to reflect the committed changes. Closed by commit rG02ef0f5ab483: [lldb] [gdb-remote client] Refactor SetCurrentThread*() (authored by mgorny). Herald added a project: LLDB. Repository: rG LLVM Gith

[Lldb-commits] [lldb] 02ef0f5 - [lldb] [gdb-remote client] Refactor SetCurrentThread*()

2021-07-02 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2021-07-02T14:36:17+02:00 New Revision: 02ef0f5ab483875b7b6b38e24b245e4fd4053959 URL: https://github.com/llvm/llvm-project/commit/02ef0f5ab483875b7b6b38e24b245e4fd4053959 DIFF: https://github.com/llvm/llvm-project/commit/02ef0f5ab483875b7b6b38e24b245e4fd4053959.diff

[Lldb-commits] [lldb] 4d2503c - [lldb] [test] Add missing category to test_detach_current

2021-07-02 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2021-07-02T11:44:41+02:00 New Revision: 4d2503cd5443ef7697465ab1ba199e9e69c497e9 URL: https://github.com/llvm/llvm-project/commit/4d2503cd5443ef7697465ab1ba199e9e69c497e9 DIFF: https://github.com/llvm/llvm-project/commit/4d2503cd5443ef7697465ab1ba199e9e69c497e9.diff

[Lldb-commits] [PATCH] D100261: [lldb] [gdb-remote server] Support selecting process via Hg

2021-07-02 Thread Michał Górny via Phabricator via lldb-commits
This revision was landed with ongoing or failed builds. This revision was automatically updated to reflect the committed changes. Closed by commit rGb7c140335beb: [lldb] [gdb-remote server] Support selecting process via Hg (authored by mgorny). Herald added a project: LLDB. Repository: rG LLVM

[Lldb-commits] [lldb] b7c1403 - [lldb] [gdb-remote server] Support selecting process via Hg

2021-07-02 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2021-07-02T10:23:11+02:00 New Revision: b7c140335beb11bcbb2abe51222d7a300cd365e5 URL: https://github.com/llvm/llvm-project/commit/b7c140335beb11bcbb2abe51222d7a300cd365e5 DIFF: https://github.com/llvm/llvm-project/commit/b7c140335beb11bcbb2abe51222d7a300cd365e5.diff