[Lldb-commits] [lldb] [lldb] Fix broken pipe error (PR #127100)

2025-02-14 Thread Michał Górny via lldb-commits
https://github.com/mgorny approved this pull request. https://github.com/llvm/llvm-project/pull/127100 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb] Fix broken pipe error (PR #127100)

2025-02-13 Thread Michał Górny via lldb-commits
mgorny wrote: I'm thoroughly confused by this. The idea is that if the port is not yet open, then `Server` should fail to connect, and the test should retry, correct? If you need to explicitly check if the port is already open, then it sounds like the code doesn't work correctly. https://gith

[Lldb-commits] [lldb] [llvm] Define -DLLVM_BUILD_TELEMETRY to be used in ifdef (PR #126746)

2025-02-11 Thread Michał Górny via lldb-commits
https://github.com/mgorny approved this pull request. LGTM, thanks! https://github.com/llvm/llvm-project/pull/126746 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb] Use preprocessor guard for `LLVM_BUILD_TELEMETRY` (PR #126715)

2025-02-11 Thread Michał Górny via lldb-commits
https://github.com/mgorny closed https://github.com/llvm/llvm-project/pull/126715 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb] Use preprocessor guard for `LLVM_BUILD_TELEMETRY` (PR #126715)

2025-02-11 Thread Michał Górny via lldb-commits
https://github.com/mgorny created https://github.com/llvm/llvm-project/pull/126715 Use a preprocessor `#ifdef LLVM_BUILD_TELEMETRY` guard rather than `PARTIAL_SOURCES_INTENDED` for the `Telemetry.cpp` file, to fix building with telemetry disabled. `PARTIAL_SOURCES_INTENDED` does not currently

[Lldb-commits] [lldb] [lldb][telemetry] Implement LLDB Telemetry (part 1) (PR #119716)

2025-02-11 Thread Michał Górny via lldb-commits
mgorny wrote: Filed #126710 to fix passing `LLVM_BUILD_TELEMETRY` in standalone builds, and #126715 to fix building with telemetry disabled. https://github.com/llvm/llvm-project/pull/119716 ___ lldb-commits mailing list lldb-commits@lists.llvm.org htt

[Lldb-commits] [lldb] [lldb][telemetry] Implement LLDB Telemetry (part 1) (PR #119716)

2025-02-11 Thread Michał Górny via lldb-commits
mgorny wrote: `PARTIAL_SOURCES_INTENDED` doesn't work there since it isn't passed to `llvm_add_library()`, and `llvm_process_sources()` is called again there. That said, I would personally lean towards putting the whole file around an `#if` rather than disabling the QA check. In the end, `PAR

[Lldb-commits] [lldb] [llvm] Debuginfod cache use index cache settings and include real file name (PR #120814)

2025-01-11 Thread Michał Górny via lldb-commits
mgorny wrote: ``` $ ls /var/tmp/portage/llvm-core/llvm-20.0.0./work/llvm_build-abi_x86_64.amd64/test/tools/llvm-debuginfod-find/Output/cache.test.tmp/cache llvmcache-10192351353398627645 llvmcache-10846399329613630737 llvmcache.timestamp $ head /var/tmp/portage/llvm-core/llvm-20.0.0.

[Lldb-commits] [lldb] [llvm] Debuginfod cache use index cache settings and include real file name (PR #120814)

2025-01-11 Thread Michał Górny via lldb-commits
mgorny wrote: This is causing test failures for me: ``` FAIL: LLVM :: tools/llvm-debuginfod-find/cache.test (51115 of 57035) TEST 'LLVM :: tools/llvm-debuginfod-find/cache.test' FAILED Exit Code: 1 Command Output (stderr): -- RUN: at line 4: rm -rf /v

[Lldb-commits] [lldb] [lldb] Add timeout argument to Socket::Accept (PR #117691)

2024-11-26 Thread Michał Górny via lldb-commits
https://github.com/mgorny approved this pull request. Well, I don't see anything obviously wrong with it. https://github.com/llvm/llvm-project/pull/117691 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/

[Lldb-commits] [lldb] [lldb] Add timeout argument to Socket::Accept (PR #117691)

2024-11-26 Thread Michał Górny via lldb-commits
mgorny wrote: I'm not complaining, but wanted to point out it feels a bit backwards to be adding a callback to timeout, rather than having `Run()` accept a timeout. https://github.com/llvm/llvm-project/pull/117691 ___ lldb-commits mailing list lldb-co

[Lldb-commits] [lldb] [lldb] Unify/improve MainLoop signal handling (PR #115197)

2024-11-18 Thread Michał Górny via lldb-commits
@@ -295,26 +243,17 @@ MainLoopPosix::RegisterSignal(int signo, const Callback &callback, sigaddset(&new_action.sa_mask, signo); sigset_t old_set; - g_signal_flags[signo] = 0; + // Set signal info before installing the signal handler! + g_signal_info[signo].pipe_fd = m_

[Lldb-commits] [lldb] [lldb] Unify/improve MainLoop signal handling (PR #115197)

2024-11-18 Thread Michał Górny via lldb-commits
https://github.com/mgorny approved this pull request. https://github.com/llvm/llvm-project/pull/115197 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb] Unify/improve MainLoop signal handling (PR #115197)

2024-11-16 Thread Michał Górny via lldb-commits
@@ -295,26 +243,17 @@ MainLoopPosix::RegisterSignal(int signo, const Callback &callback, sigaddset(&new_action.sa_mask, signo); sigset_t old_set; - g_signal_flags[signo] = 0; + // Set signal info before installing the signal handler! + g_signal_info[signo].pipe_fd = m_

[Lldb-commits] [lldb] [lldb] Don't exit the main loop when in runs out of things to listen on (PR #112565)

2024-10-17 Thread Michał Górny via lldb-commits
https://github.com/mgorny approved this pull request. I guess LGTM but I haven't given it really deep thought. https://github.com/llvm/llvm-project/pull/112565 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mai

[Lldb-commits] [lldb] [lldb] Don't call AddRemoteRegisters if the target XML did not include any registers (PR #96907)

2024-06-27 Thread Michał Górny via lldb-commits
@@ -4879,7 +4879,9 @@ bool ProcessGDBRemote::GetGDBServerRegisterInfo(ArchSpec &arch_to_use) { m_registers_enum_types.clear(); std::vector registers; if (GetGDBServerRegisterInfoXMLAndProcess(arch_to_use, "target.xml", -registe

[Lldb-commits] [lldb] [lldb] Don't call AddRemoteRegisters if the target XML did not include any registers (PR #96907)

2024-06-27 Thread Michał Górny via lldb-commits
https://github.com/mgorny approved this pull request. Good catch, thanks! https://github.com/llvm/llvm-project/pull/96907 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb] Don't call AddRemoteRegisters if the target XML did not include any registers (PR #96907)

2024-06-27 Thread Michał Górny via lldb-commits
https://github.com/mgorny edited https://github.com/llvm/llvm-project/pull/96907 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb] [llgs] Fix assertion in Handle_qfThreadInfo (PR #88279)

2024-04-10 Thread Michał Górny via lldb-commits
https://github.com/mgorny approved this pull request. Sure, I suppose it makes sense. Thanks! https://github.com/llvm/llvm-project/pull/88279 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb

[Lldb-commits] [llvm] [lldb] DEBUGINFOD based DWP acquisition for LLDB (PR #70996)

2024-01-24 Thread Michał Górny via lldb-commits
mgorny wrote: I'm sorry for the complexity. I've finally gotten around to figuring it out, and it turns out it's a problem with CMake files: #79305 fixes it for me. https://github.com/llvm/llvm-project/pull/70996 ___ lldb-commits mailing list lldb-com

[Lldb-commits] [lldb] [llvm] DEBUGINFOD based DWP acquisition for LLDB (PR #70996)

2024-01-19 Thread Michał Górny via lldb-commits
mgorny wrote: `LLVM_DIR` and `Clang_DIR` are merely hints to `find_package()`. If you need to pass them, it simply means you haven't set `PATH` correctly and CMake can't find installed LLVM/Clang. However, that shouldn't make any difference as long as you provide paths to **installed** LLVM/Cl

[Lldb-commits] [llvm] [lldb] DEBUGINFOD based DWP acquisition for LLDB (PR #70996)

2024-01-06 Thread Michał Górny via lldb-commits
mgorny wrote: Ah, sorry, I didn't notice that. We're not passing `LLVM_DIR` at all. LLDB is able to find installed LLVM & Clang via `PATH`, and that's all it needed. https://github.com/llvm/llvm-project/pull/70996 ___ lldb-commits mailing list lldb-co

[Lldb-commits] [llvm] [lldb] DEBUGINFOD based DWP acquisition for LLDB (PR #70996)

2024-01-04 Thread Michał Górny via lldb-commits
mgorny wrote: Ping. https://github.com/llvm/llvm-project/pull/70996 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [llvm] [lldb] DEBUGINFOD based DWP acquisition for LLDB (PR #70996)

2023-12-15 Thread Michał Górny via lldb-commits
mgorny wrote: It's linking to `/home/freik/src/rel-llvm/lib/libLLVMDebuginfod.a`, i.e. the leftover build directory in your case. It doesn't exist anymore in our case. Try removing it, that should trigger the error. https://github.com/llvm/llvm-project/pull/70996 __

[Lldb-commits] [llvm] [lldb] DEBUGINFOD based DWP acquisition for LLDB (PR #70996)

2023-12-14 Thread Michał Górny via lldb-commits
mgorny wrote: I'm afraid that log's non-verbose (i.e. missing `-v`), so it doesn't tell me which libraries are being linked. Also, I don't think I'll be able to tell much without logs for all of cmake, build and install of both LLVM and LLDB. https://github.com/llvm/llvm-project/pull/70996 ___

[Lldb-commits] [llvm] [lldb] DEBUGINFOD based DWP acquisition for LLDB (PR #70996)

2023-12-12 Thread Michał Górny via lldb-commits
mgorny wrote: Did you `ninja install-distribution` rather than regular `install`? Did it pick the right installation? Could you attach the build logs? https://github.com/llvm/llvm-project/pull/70996 ___ lldb-commits mailing list lldb-commits@lists.llv

[Lldb-commits] [llvm] [lldb] DEBUGINFOD based DWP acquisition for LLDB (PR #70996)

2023-12-11 Thread Michał Górny via lldb-commits
mgorny wrote: "Dylib" is LLVM-speech for `libLLVM.so` ("shared libraries" refer to individual split libraries, while "dylib" refers to the monolith), as in `-DLLVM_BUILD_LLVM_DYLIB=ON -DLLVM_LINK_LLVM_DYLIB=ON`. And yes, that + standalone build with full *source* repository but linking against

[Lldb-commits] [lldb] [llvm] DEBUGINFOD based DWP acquisition for LLDB (PR #70996)

2023-12-10 Thread Michał Górny via lldb-commits
mgorny wrote: I've also confirmed that installing `LLVMDebuginfod` target won't help since it references other internal targets that are created at build-time and not included as part of the installed CMake configuration: ``` CMake Error at /usr/lib/llvm/18/lib64/cmake/llvm/LLVMExports.cmake:9

[Lldb-commits] [llvm] [lldb] DEBUGINFOD based DWP acquisition for LLDB (PR #70996)

2023-12-10 Thread Michał Górny via lldb-commits
mgorny wrote: I'm sorry for not getting back to you earlier. The log relevant to building LLVM itself is this (22M uncompressed): [sys-devel:llvm-18.0.0_pre20231206:20231206-072428.log.gz](https://github.com/llvm/llvm-project/files/13627566/sys-devel.llvm-18.0.0_pre20231206.20231206-072428.log.

[Lldb-commits] [llvm] [lldb] DEBUGINFOD based DWP acquisition for LLDB (PR #70996)

2023-12-06 Thread Michał Górny via lldb-commits
mgorny wrote: This change broke building against LLVM dylib: ``` /usr/lib/gcc/x86_64-pc-linux-gnu/13/../../../../x86_64-pc-linux-gnu/bin/ld: cannot find -lLLVMDebuginfod: No such file or directory collect2: error: ld returned 1 exit status samu: subcommand failed ``` Full build log: [dev-util

[Lldb-commits] [lldb] [lldb] Fix build on NetBSD (PR #74190)

2023-12-02 Thread Michał Górny via lldb-commits
https://github.com/mgorny approved this pull request. LGTM. Thanks! https://github.com/llvm/llvm-project/pull/74190 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb] Fix building on NetBSD 8.x (PR #74191)

2023-12-02 Thread Michał Górny via lldb-commits
https://github.com/mgorny approved this pull request. LGTM, though I don;t have an environment to test it. https://github.com/llvm/llvm-project/pull/74191 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/

[Lldb-commits] [lldb] e5f0f1d - [lldb] [NetBSD] getValue => operator* for Optional migration

2023-05-06 Thread Michał Górny via lldb-commits
Author: Nikita Ronja Gillmann Date: 2023-05-07T06:12:19+02:00 New Revision: e5f0f1d3ee9589caec4e3859a4e57d6ece473dbe URL: https://github.com/llvm/llvm-project/commit/e5f0f1d3ee9589caec4e3859a4e57d6ece473dbe DIFF: https://github.com/llvm/llvm-project/commit/e5f0f1d3ee9589caec4e3859a4e57d6ece473d

[Lldb-commits] [lldb] dfc2070 - [lldb] [utils] Fix linking lit-cpuid to LLVM dylib

2022-12-26 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-12-26T19:03:25+01:00 New Revision: dfc20708bcdf7b4c4bea8595fc4ac8674634d5e6 URL: https://github.com/llvm/llvm-project/commit/dfc20708bcdf7b4c4bea8595fc4ac8674634d5e6 DIFF: https://github.com/llvm/llvm-project/commit/dfc20708bcdf7b4c4bea8595fc4ac8674634d5e6.diff

[Lldb-commits] [lldb] c899b24 - [lldb] [cmake] Fix another typo in third-party/unittest path

2022-11-12 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-11-12T10:35:19+01:00 New Revision: c899b243f681fa75cb68144a4d599fdada764d78 URL: https://github.com/llvm/llvm-project/commit/c899b243f681fa75cb68144a4d599fdada764d78 DIFF: https://github.com/llvm/llvm-project/commit/c899b243f681fa75cb68144a4d599fdada764d78.diff

[Lldb-commits] [lldb] 2d2854c - [lldb] [cmake] Fix typo in unittest directory path

2022-11-11 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-11-11T20:40:37+01:00 New Revision: 2d2854c7d5f9c1723e7ecbe7e8b8f9a2a78941a9 URL: https://github.com/llvm/llvm-project/commit/2d2854c7d5f9c1723e7ecbe7e8b8f9a2a78941a9 DIFF: https://github.com/llvm/llvm-project/commit/2d2854c7d5f9c1723e7ecbe7e8b8f9a2a78941a9.diff

[Lldb-commits] [lldb] 88d7508 - Harmonize cmake_policy() across standalone builds of all projects

2022-10-27 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-10-27T13:46:56+02:00 New Revision: 88d7508dc479210f07abccb17f0194b66264b125 URL: https://github.com/llvm/llvm-project/commit/88d7508dc479210f07abccb17f0194b66264b125 DIFF: https://github.com/llvm/llvm-project/commit/88d7508dc479210f07abccb17f0194b66264b125.diff

[Lldb-commits] [lldb] 52f3985 - [lldb] Include gtest in standalone build only if LLDB_INCLUDE_TESTS

2022-10-24 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-10-24T15:51:43+02:00 New Revision: 52f39853abd46495a6d636c4b035e1b92cf4b833 URL: https://github.com/llvm/llvm-project/commit/52f39853abd46495a6d636c4b035e1b92cf4b833 DIFF: https://github.com/llvm/llvm-project/commit/52f39853abd46495a6d636c4b035e1b92cf4b833.diff

[Lldb-commits] [lldb] d152393 - [lldb] Add LLVM include dirs prior to gtest target in standalone build

2022-10-24 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-10-24T12:18:14+02:00 New Revision: d15239388cca8a5031119b4660e456c26ca5f379 URL: https://github.com/llvm/llvm-project/commit/d15239388cca8a5031119b4660e456c26ca5f379 DIFF: https://github.com/llvm/llvm-project/commit/d15239388cca8a5031119b4660e456c26ca5f379.diff

[Lldb-commits] [lldb] e8ee0f1 - [lldb] [MainLoopPosix] Fix crash upon adding lots of pending callbacks

2022-10-17 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-10-17T17:48:44+02:00 New Revision: e8ee0f121dbc2dc20a9de326531c4d4d061a20d8 URL: https://github.com/llvm/llvm-project/commit/e8ee0f121dbc2dc20a9de326531c4d4d061a20d8 DIFF: https://github.com/llvm/llvm-project/commit/e8ee0f121dbc2dc20a9de326531c4d4d061a20d8.diff

[Lldb-commits] [lldb] b6c24c1 - [lldb] [gdb-remote] Move ReadPacketWithOutputSupport() to client

2022-10-03 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-10-03T18:42:49+02:00 New Revision: b6c24c161900a035f5ea7193f4816b6d192d6ac8 URL: https://github.com/llvm/llvm-project/commit/b6c24c161900a035f5ea7193f4816b6d192d6ac8 DIFF: https://github.com/llvm/llvm-project/commit/b6c24c161900a035f5ea7193f4816b6d192d6ac8.diff

[Lldb-commits] [lldb] bdb4468 - [gdb-remote] Move broadcasting logic down to GDBRemoteClientBase

2022-09-09 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-09-09T17:13:08+02:00 New Revision: bdb4468d39496088fc05d8c5575647fac9c8062a URL: https://github.com/llvm/llvm-project/commit/bdb4468d39496088fc05d8c5575647fac9c8062a DIFF: https://github.com/llvm/llvm-project/commit/bdb4468d39496088fc05d8c5575647fac9c8062a.diff

[Lldb-commits] [lldb] 9823d42 - [lldb] [Core] Split read thread support into ThreadedCommunication

2022-09-06 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-09-06T13:09:42+02:00 New Revision: 9823d42557eb1da3ecf2f771ea2cbc84a988ef92 URL: https://github.com/llvm/llvm-project/commit/9823d42557eb1da3ecf2f771ea2cbc84a988ef92 DIFF: https://github.com/llvm/llvm-project/commit/9823d42557eb1da3ecf2f771ea2cbc84a988ef92.diff

[Lldb-commits] [lldb] 39e0a87 - [lldb] [Core] Pass error/status from Communication::ReadThread()

2022-09-01 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-09-01T14:16:38+02:00 New Revision: 39e0a87c26e0d2b7498186a446dda4ec3d9b709d URL: https://github.com/llvm/llvm-project/commit/39e0a87c26e0d2b7498186a446dda4ec3d9b709d DIFF: https://github.com/llvm/llvm-project/commit/39e0a87c26e0d2b7498186a446dda4ec3d9b709d.diff

[Lldb-commits] [lldb] 03b8f79 - [lldb] [gdb-remote] Use Communication::WriteAll() over Write()

2022-08-23 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-08-23T15:49:16+02:00 New Revision: 03b8f79048bfc32ade0404df3d3931266a06dc92 URL: https://github.com/llvm/llvm-project/commit/03b8f79048bfc32ade0404df3d3931266a06dc92 DIFF: https://github.com/llvm/llvm-project/commit/03b8f79048bfc32ade0404df3d3931266a06dc92.diff

[Lldb-commits] [lldb] d92f49f - Reland "[lldb] [test] Disable new CommunicationTests on Windows"

2022-08-19 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-08-20T08:32:55+02:00 New Revision: d92f49fc4b22a738bd39e4588543b0a23037bd69 URL: https://github.com/llvm/llvm-project/commit/d92f49fc4b22a738bd39e4588543b0a23037bd69 DIFF: https://github.com/llvm/llvm-project/commit/d92f49fc4b22a738bd39e4588543b0a23037bd69.diff

[Lldb-commits] [lldb] 2f50883 - [lldb] [gdb-remote] Include PID in vCont packets if multiprocess

2022-08-19 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-08-20T08:21:32+02:00 New Revision: 2f50883c132879395c2cb45c458a4ec132309b32 URL: https://github.com/llvm/llvm-project/commit/2f50883c132879395c2cb45c458a4ec132309b32 DIFF: https://github.com/llvm/llvm-project/commit/2f50883c132879395c2cb45c458a4ec132309b32.diff

[Lldb-commits] [lldb] d38985a - [lldb] [test] Disable new CommunicationTests on Windows

2022-08-19 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-08-19T16:23:39+02:00 New Revision: d38985a36be8b0165787f8893b3d2b0f831d1e83 URL: https://github.com/llvm/llvm-project/commit/d38985a36be8b0165787f8893b3d2b0f831d1e83 DIFF: https://github.com/llvm/llvm-project/commit/d38985a36be8b0165787f8893b3d2b0f831d1e83.diff

[Lldb-commits] [lldb] 7aadeca - [lldb] [test] Add synchronization to TestContinue

2022-08-19 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-08-19T15:49:35+02:00 New Revision: 7aadecae404b8d47aabdd874e9018a76fd4d1ffa URL: https://github.com/llvm/llvm-project/commit/7aadecae404b8d47aabdd874e9018a76fd4d1ffa DIFF: https://github.com/llvm/llvm-project/commit/7aadecae404b8d47aabdd874e9018a76fd4d1ffa.diff

[Lldb-commits] [lldb] d6e1e01 - [lldb] [Core] Harmonize Communication::Read() returns w/ thread

2022-08-19 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-08-19T15:36:03+02:00 New Revision: d6e1e01da949c8cb4b869cee1953cf19a6d072c0 URL: https://github.com/llvm/llvm-project/commit/d6e1e01da949c8cb4b869cee1953cf19a6d072c0 DIFF: https://github.com/llvm/llvm-project/commit/d6e1e01da949c8cb4b869cee1953cf19a6d072c0.diff

[Lldb-commits] [lldb] 8b50ffe - [lldb] [test] Remove test_step_multiprocess, it's unreliable

2022-08-19 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-08-19T10:08:11+02:00 New Revision: 8b50ffe9fdc3cd457796857d3661e34490ef0490 URL: https://github.com/llvm/llvm-project/commit/8b50ffe9fdc3cd457796857d3661e34490ef0490 DIFF: https://github.com/llvm/llvm-project/commit/8b50ffe9fdc3cd457796857d3661e34490ef0490.diff

[Lldb-commits] [lldb] 5815708 - [lldb] [test] Skip step packet test on non-amd64

2022-08-19 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-08-19T09:48:13+02:00 New Revision: 58157087b0a4fefeabd4cf6e4ee356d6152fd5a6 URL: https://github.com/llvm/llvm-project/commit/58157087b0a4fefeabd4cf6e4ee356d6152fd5a6 DIFF: https://github.com/llvm/llvm-project/commit/58157087b0a4fefeabd4cf6e4ee356d6152fd5a6.diff

[Lldb-commits] [lldb] ccb9d4d - [lldb] [gdb-remote] Include PID in vCont packets if multiprocess

2022-08-19 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-08-19T09:02:20+02:00 New Revision: ccb9d4d4addc2fb2aa94cf776d43d8be35365272 URL: https://github.com/llvm/llvm-project/commit/ccb9d4d4addc2fb2aa94cf776d43d8be35365272 DIFF: https://github.com/llvm/llvm-project/commit/ccb9d4d4addc2fb2aa94cf776d43d8be35365272.diff

[Lldb-commits] [lldb] 9ba71d0 - [lldb] [gdb-remote] Remove unimplemented ProcessIDIsValid() (NFC)

2022-08-12 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-08-12T11:17:15+02:00 New Revision: 9ba71d03b0f0ec82b7f74ec52818236237680348 URL: https://github.com/llvm/llvm-project/commit/9ba71d03b0f0ec82b7f74ec52818236237680348 DIFF: https://github.com/llvm/llvm-project/commit/9ba71d03b0f0ec82b7f74ec52818236237680348.diff

[Lldb-commits] [lldb] 9b031d5 - [lldb] Make Process and subclass constructors protected

2022-08-08 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-08-08T17:34:27+02:00 New Revision: 9b031d5e3a7b455308257a71116a603e76c8c679 URL: https://github.com/llvm/llvm-project/commit/9b031d5e3a7b455308257a71116a603e76c8c679 DIFF: https://github.com/llvm/llvm-project/commit/9b031d5e3a7b455308257a71116a603e76c8c679.diff

[Lldb-commits] [lldb] 3426fc7 - Revert "[lldb] [gdb-remote] Send interrupt packets from async thread"

2022-08-03 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-08-03T19:09:35+02:00 New Revision: 3426fc7318fe555ee37db14525e9bf024760fde2 URL: https://github.com/llvm/llvm-project/commit/3426fc7318fe555ee37db14525e9bf024760fde2 DIFF: https://github.com/llvm/llvm-project/commit/3426fc7318fe555ee37db14525e9bf024760fde2.diff

[Lldb-commits] [lldb] 446b61c - [lldb] [gdb-remote] Send interrupt packets from async thread

2022-08-03 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-08-03T18:40:25+02:00 New Revision: 446b61cff4ea0cb7e7fcc5e0fec7bc749d379b08 URL: https://github.com/llvm/llvm-project/commit/446b61cff4ea0cb7e7fcc5e0fec7bc749d379b08 DIFF: https://github.com/llvm/llvm-project/commit/446b61cff4ea0cb7e7fcc5e0fec7bc749d379b08.diff

[Lldb-commits] [lldb] f8603c1 - [lldb] [llgs] Support resuming multiple processes via vCont w/ nonstop

2022-08-01 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-08-01T18:52:47+02:00 New Revision: f8603c1f6d9eb90bc6a674111bd3441458006601 URL: https://github.com/llvm/llvm-project/commit/f8603c1f6d9eb90bc6a674111bd3441458006601 DIFF: https://github.com/llvm/llvm-project/commit/f8603c1f6d9eb90bc6a674111bd3441458006601.diff

[Lldb-commits] [lldb] 0806927 - [lldb] [test] Fix test_c_both_nonstop flakiness

2022-08-01 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-08-01T18:52:47+02:00 New Revision: 080692797724eefd15de00500d8d802e98230622 URL: https://github.com/llvm/llvm-project/commit/080692797724eefd15de00500d8d802e98230622 DIFF: https://github.com/llvm/llvm-project/commit/080692797724eefd15de00500d8d802e98230622.diff

[Lldb-commits] [lldb] 8068751 - [lldb] [gdb-remote] Refactor killing process and move it to client

2022-07-25 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-07-25T18:43:32+02:00 New Revision: 8068751189af3099d9abef8953a9639d6798535c URL: https://github.com/llvm/llvm-project/commit/8068751189af3099d9abef8953a9639d6798535c DIFF: https://github.com/llvm/llvm-project/commit/8068751189af3099d9abef8953a9639d6798535c.diff

[Lldb-commits] [lldb] b61b8ef - [lldb] [gdb-remote] Fix process ID after following forked child

2022-07-21 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-07-21T17:11:38+02:00 New Revision: b61b8efcf31b3d53377b9cf6cb3eb87742602ff6 URL: https://github.com/llvm/llvm-project/commit/b61b8efcf31b3d53377b9cf6cb3eb87742602ff6 DIFF: https://github.com/llvm/llvm-project/commit/b61b8efcf31b3d53377b9cf6cb3eb87742602ff6.diff

[Lldb-commits] [lldb] 09531ed - [lldb] [llgs] Improve stdio forwarding in multiprocess+nonstop

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

[Lldb-commits] [lldb] fc92f11 - [lldb] [test] Skip test_leave_nonstop on Windows

2022-07-15 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-07-15T21:48:03+02:00 New Revision: fc92f11441894e65f76a856cfc55a03e0df726a6 URL: https://github.com/llvm/llvm-project/commit/fc92f11441894e65f76a856cfc55a03e0df726a6 DIFF: https://github.com/llvm/llvm-project/commit/fc92f11441894e65f76a856cfc55a03e0df726a6.diff

[Lldb-commits] [lldb] c732afa - [lldb] [llgs] Fix disabling non-stop mode

2022-07-15 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-07-15T20:16:49+02:00 New Revision: c732afa2c2e8bf4c3d068af180c1e9daa25b03c1 URL: https://github.com/llvm/llvm-project/commit/c732afa2c2e8bf4c3d068af180c1e9daa25b03c1 DIFF: https://github.com/llvm/llvm-project/commit/c732afa2c2e8bf4c3d068af180c1e9daa25b03c1.diff

[Lldb-commits] [lldb] 5d66597 - [lldb] [test] Skip test_stop_reason_while_running on Windows

2022-07-15 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-07-15T20:14:55+02:00 New Revision: 5d6659739c4ed5f445dbdc5da499d84b5a8cebaa URL: https://github.com/llvm/llvm-project/commit/5d6659739c4ed5f445dbdc5da499d84b5a8cebaa DIFF: https://github.com/llvm/llvm-project/commit/5d6659739c4ed5f445dbdc5da499d84b5a8cebaa.diff

[Lldb-commits] [lldb] ab9f1e8 - [lldb] [llgs] Fix `?` packet response for running threads

2022-07-15 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-07-15T18:33:58+02:00 New Revision: ab9f1e88fd8a73a32914c18a52868d3a4b9e509e URL: https://github.com/llvm/llvm-project/commit/ab9f1e88fd8a73a32914c18a52868d3a4b9e509e DIFF: https://github.com/llvm/llvm-project/commit/ab9f1e88fd8a73a32914c18a52868d3a4b9e509e.diff

[lldb] 81e993f - [lldb] [test] Skip TestNonStop → test_stdio on Windows

2022-07-15 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-07-15T18:33:19+02:00 New Revision: 81e993f08d6cd8d1658e3843594449b6fa622a4f URL: https://github.com/llvm/llvm-project/commit/81e993f08d6cd8d1658e3843594449b6fa622a4f DIFF: https://github.com/llvm/llvm-project/commit/81e993f08d6cd8d1658e3843594449b6fa622a4f.diff

[Lldb-commits] [lldb] 1903f35 - [lldb] [llgs] Send process output asynchronously in non-stop mode

2022-07-15 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-07-15T17:20:39+02:00 New Revision: 1903f358bcc74fd96c65f0d1deba577c63238c86 URL: https://github.com/llvm/llvm-project/commit/1903f358bcc74fd96c65f0d1deba577c63238c86 DIFF: https://github.com/llvm/llvm-project/commit/1903f358bcc74fd96c65f0d1deba577c63238c86.diff

[Lldb-commits] [lldb] 5a6f1f3 - [lldb] [test] Skip new NonStop tests on Windows

2022-07-15 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-07-15T16:02:47+02:00 New Revision: 5a6f1f3271720fffd9f82827f593737e1af7f833 URL: https://github.com/llvm/llvm-project/commit/5a6f1f3271720fffd9f82827f593737e1af7f833 DIFF: https://github.com/llvm/llvm-project/commit/5a6f1f3271720fffd9f82827f593737e1af7f833.diff

[Lldb-commits] [lldb] eb43e43 - Reland "[lldb] [llgs] Fix multi-resume bugs with nonstop mode"

2022-07-15 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-07-15T15:24:00+02:00 New Revision: eb43e43bb5b2d19e14309e120cb8e66136ae7c82 URL: https://github.com/llvm/llvm-project/commit/eb43e43bb5b2d19e14309e120cb8e66136ae7c82 DIFF: https://github.com/llvm/llvm-project/commit/eb43e43bb5b2d19e14309e120cb8e66136ae7c82.diff

[Lldb-commits] [lldb] 7a2b09b - Revert "[lldb] [llgs] Fix multi-resume bugs with nonstop mode"

2022-07-15 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-07-15T13:43:34+02:00 New Revision: 7a2b09b4798dbd5ec69e934b595eab5afddf33c5 URL: https://github.com/llvm/llvm-project/commit/7a2b09b4798dbd5ec69e934b595eab5afddf33c5 DIFF: https://github.com/llvm/llvm-project/commit/7a2b09b4798dbd5ec69e934b595eab5afddf33c5.diff

[Lldb-commits] [lldb] f8605da - [lldb] [llgs] Fix multi-resume bugs with nonstop mode

2022-07-15 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-07-15T13:01:39+02:00 New Revision: f8605da8758fbae16410e4ed5493a39429fd73ec URL: https://github.com/llvm/llvm-project/commit/f8605da8758fbae16410e4ed5493a39429fd73ec DIFF: https://github.com/llvm/llvm-project/commit/f8605da8758fbae16410e4ed5493a39429fd73ec.diff

[Lldb-commits] [lldb] 06b3f27 - [lldb] [llgs] Remove not-really-used m_inferior_prev_state

2022-07-14 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-07-14T19:25:54+02:00 New Revision: 06b3f27fedd5a26ad571c093ccf47d0c11b1e913 URL: https://github.com/llvm/llvm-project/commit/06b3f27fedd5a26ad571c093ccf47d0c11b1e913 DIFF: https://github.com/llvm/llvm-project/commit/06b3f27fedd5a26ad571c093ccf47d0c11b1e913.diff

[Lldb-commits] [lldb] 355c791 - [lldb] [llgs] Convert m_debugged_processes into a map of structs

2022-07-14 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-07-14T15:32:19+02:00 New Revision: 355c7916336fb4922946a8cfc174dbdb514dddb5 URL: https://github.com/llvm/llvm-project/commit/355c7916336fb4922946a8cfc174dbdb514dddb5 DIFF: https://github.com/llvm/llvm-project/commit/355c7916336fb4922946a8cfc174dbdb514dddb5.diff

[Lldb-commits] [lldb] c164efb - [lldb] [gdb-remote] Remove stray GetSupportsThreadSuffix() method (NFC)

2022-07-14 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-07-14T12:18:17+02:00 New Revision: c164efb0064682893fc37d6c07e1e000861d7879 URL: https://github.com/llvm/llvm-project/commit/c164efb0064682893fc37d6c07e1e000861d7879 DIFF: https://github.com/llvm/llvm-project/commit/c164efb0064682893fc37d6c07e1e000861d7879.diff

[Lldb-commits] [lldb] 9790406 - Reland "[lldb] [test] Improve stability of llgs vCont-threads tests"

2022-07-11 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-07-11T18:05:14+02:00 New Revision: 9790406a9226e112e75eeeac1c326cff9b570264 URL: https://github.com/llvm/llvm-project/commit/9790406a9226e112e75eeeac1c326cff9b570264 DIFF: https://github.com/llvm/llvm-project/commit/9790406a9226e112e75eeeac1c326cff9b570264.diff

[Lldb-commits] [lldb] fad93cd - Revert "[lldb] [test] Improve stability of llgs vCont-threads tests"

2022-07-07 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-07-07T17:01:43+02:00 New Revision: fad93cd6821992baf0e1b5c45c1606aa5fde2938 URL: https://github.com/llvm/llvm-project/commit/fad93cd6821992baf0e1b5c45c1606aa5fde2938 DIFF: https://github.com/llvm/llvm-project/commit/fad93cd6821992baf0e1b5c45c1606aa5fde2938.diff

[Lldb-commits] [lldb] 86e4723 - [lldb] [test] Improve stability of llgs vCont-threads tests

2022-07-07 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-07-07T16:33:55+02:00 New Revision: 86e472317c8fd9309b76c32ca55fcdeaf63f853b URL: https://github.com/llvm/llvm-project/commit/86e472317c8fd9309b76c32ca55fcdeaf63f853b DIFF: https://github.com/llvm/llvm-project/commit/86e472317c8fd9309b76c32ca55fcdeaf63f853b.diff

[Lldb-commits] [lldb] 4a95861 - [lldb] [test] Avoid relying on signos in other fork tests

2022-06-29 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-06-29T17:48:36+02:00 New Revision: 4a95861d7394da7e7f33ff325c3b28159cb6aa77 URL: https://github.com/llvm/llvm-project/commit/4a95861d7394da7e7f33ff325c3b28159cb6aa77 DIFF: https://github.com/llvm/llvm-project/commit/4a95861d7394da7e7f33ff325c3b28159cb6aa77.diff

[Lldb-commits] [lldb] e60ed24 - [lldb] [test] Un-XFAIL fork tests on arm as well

2022-06-29 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-06-29T16:05:12+02:00 New Revision: e60ed2401b22074e02779081ca16fa93bd4cf244 URL: https://github.com/llvm/llvm-project/commit/e60ed2401b22074e02779081ca16fa93bd4cf244 DIFF: https://github.com/llvm/llvm-project/commit/e60ed2401b22074e02779081ca16fa93bd4cf244.diff

[Lldb-commits] [lldb] 251165b - [lldb] [test] Use raise(SIGSTOP) instead of trap in fork tests

2022-06-29 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-06-29T15:37:26+02:00 New Revision: 251165b2e48216f8fbeef1960711219afac406f4 URL: https://github.com/llvm/llvm-project/commit/251165b2e48216f8fbeef1960711219afac406f4 DIFF: https://github.com/llvm/llvm-project/commit/251165b2e48216f8fbeef1960711219afac406f4.diff

[Lldb-commits] [lldb] 3c16fb3 - [lldb] [test] Fix variable overwrite in non-stop fork tests

2022-06-29 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-06-29T13:34:50+02:00 New Revision: 3c16fb3ab34d51c0df9512c38093d1c5c8dd6e79 URL: https://github.com/llvm/llvm-project/commit/3c16fb3ab34d51c0df9512c38093d1c5c8dd6e79 DIFF: https://github.com/llvm/llvm-project/commit/3c16fb3ab34d51c0df9512c38093d1c5c8dd6e79.diff

[Lldb-commits] [lldb] 7fc12da - [lldb] [test] Split TestGdbRemoteFork in two

2022-06-28 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-06-29T06:57:38+02:00 New Revision: 7fc12da898e05e68ec59fbe852c4402378938efa URL: https://github.com/llvm/llvm-project/commit/7fc12da898e05e68ec59fbe852c4402378938efa DIFF: https://github.com/llvm/llvm-project/commit/7fc12da898e05e68ec59fbe852c4402378938efa.diff

[Lldb-commits] [lldb] 261d003 - [lldb] [llgs] Fix premature server exit if multiprocess+nonstop

2022-06-28 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-06-28T21:49:17+02:00 New Revision: 261d0033500eaa281b74c9d54ae240257a0ea00c URL: https://github.com/llvm/llvm-project/commit/261d0033500eaa281b74c9d54ae240257a0ea00c DIFF: https://github.com/llvm/llvm-project/commit/261d0033500eaa281b74c9d54ae240257a0ea00c.diff

[Lldb-commits] [lldb] e095cdd - [lldb] Add a NativeProcessProtocol::Threads() iterable

2022-06-28 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-06-28T21:49:16+02:00 New Revision: e095cddb763fde72b577f3fab5e039cea4c3 URL: https://github.com/llvm/llvm-project/commit/e095cddb763fde72b577f3fab5e039cea4c3 DIFF: https://github.com/llvm/llvm-project/commit/e095cddb763fde72b577f3fab5e039cea4c3.diff

[Lldb-commits] [lldb] b415f8e - [lldb] [llgs] Add base nonstop fork/vfork tests

2022-06-28 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-06-28T21:49:16+02:00 New Revision: b415f8e3dfb839a886b5290bbebbdd42344c07a9 URL: https://github.com/llvm/llvm-project/commit/b415f8e3dfb839a886b5290bbebbdd42344c07a9 DIFF: https://github.com/llvm/llvm-project/commit/b415f8e3dfb839a886b5290bbebbdd42344c07a9.diff

[Lldb-commits] [lldb] 25f4608 - [lldb] [test] XFAIL llgs tests failing on arm

2022-06-28 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-06-28T17:02:59+02:00 New Revision: 25f46084d8e11894edc0b71b737f45e0f9115b45 URL: https://github.com/llvm/llvm-project/commit/25f46084d8e11894edc0b71b737f45e0f9115b45 DIFF: https://github.com/llvm/llvm-project/commit/25f46084d8e11894edc0b71b737f45e0f9115b45.diff

[Lldb-commits] [lldb] a1df636 - [lldb] [test] Skip llgs tests broken due to #56268 on aarch64

2022-06-28 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-06-28T16:24:38+02:00 New Revision: a1df636a8b51a660d58708d82a5bc060ee5f57d3 URL: https://github.com/llvm/llvm-project/commit/a1df636a8b51a660d58708d82a5bc060ee5f57d3 DIFF: https://github.com/llvm/llvm-project/commit/a1df636a8b51a660d58708d82a5bc060ee5f57d3.diff

[Lldb-commits] [lldb] f1dcc6a - [lldb] [test] Mark test_vCont_supports_t llgs-only

2022-06-27 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-06-28T06:06:54+02:00 New Revision: f1dcc6af30d98cef6d0aa9579148fa223dbb5d7c URL: https://github.com/llvm/llvm-project/commit/f1dcc6af30d98cef6d0aa9579148fa223dbb5d7c DIFF: https://github.com/llvm/llvm-project/commit/f1dcc6af30d98cef6d0aa9579148fa223dbb5d7c.diff

[Lldb-commits] [lldb] fe80829 - [lldb] [llgs] Skip new vCont test on Windows

2022-06-27 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-06-27T18:22:38+02:00 New Revision: fe80829289bf5462bff5d6739603e7040d07a391 URL: https://github.com/llvm/llvm-project/commit/fe80829289bf5462bff5d6739603e7040d07a391 DIFF: https://github.com/llvm/llvm-project/commit/fe80829289bf5462bff5d6739603e7040d07a391.diff

[Lldb-commits] [lldb] b4f2d7c - [lldb] [llgs] Support "t" vCont action

2022-06-27 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-06-27T17:33:59+02:00 New Revision: b4f2d7cde54c301f591a8e2a16135bb113c5e7ed URL: https://github.com/llvm/llvm-project/commit/b4f2d7cde54c301f591a8e2a16135bb113c5e7ed DIFF: https://github.com/llvm/llvm-project/commit/b4f2d7cde54c301f591a8e2a16135bb113c5e7ed.diff

[Lldb-commits] [lldb] 1452e2e - Reland "[lldb] [llgs] Support multiprocess in qfThreadInfo"

2022-06-25 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-06-25T15:15:37+02:00 New Revision: 1452e2e5cbfe69cd6622a3c9e80dd485f1fb542b URL: https://github.com/llvm/llvm-project/commit/1452e2e5cbfe69cd6622a3c9e80dd485f1fb542b DIFF: https://github.com/llvm/llvm-project/commit/1452e2e5cbfe69cd6622a3c9e80dd485f1fb542b.diff

[Lldb-commits] [lldb] f609b54 - Revert "[lldb] [llgs] Support multiprocess in qfThreadInfo"

2022-06-25 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-06-25T09:46:28+02:00 New Revision: f609b54e249a4eb9b5f68a26b3fecba87d7324c0 URL: https://github.com/llvm/llvm-project/commit/f609b54e249a4eb9b5f68a26b3fecba87d7324c0 DIFF: https://github.com/llvm/llvm-project/commit/f609b54e249a4eb9b5f68a26b3fecba87d7324c0.diff

[Lldb-commits] [lldb] c1829e0 - [lldb] [test] Move part of fork tests to common helper

2022-06-24 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-06-24T17:20:25+02:00 New Revision: c1829e0ec58bd974e65639de0b9cbab736bb624f URL: https://github.com/llvm/llvm-project/commit/c1829e0ec58bd974e65639de0b9cbab736bb624f DIFF: https://github.com/llvm/llvm-project/commit/c1829e0ec58bd974e65639de0b9cbab736bb624f.diff

[Lldb-commits] [lldb] 4b485fc - [lldb] [llgs] Introduce an AppendThreadIDToResponse() helper

2022-06-24 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-06-24T17:20:24+02:00 New Revision: 4b485fc0ea4acf065c7992a5c9a1223f5565544e URL: https://github.com/llvm/llvm-project/commit/4b485fc0ea4acf065c7992a5c9a1223f5565544e DIFF: https://github.com/llvm/llvm-project/commit/4b485fc0ea4acf065c7992a5c9a1223f5565544e.diff

[Lldb-commits] [lldb] e827e51 - [lldb] [llgs] Implement the 'T' packet

2022-06-24 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-06-24T17:20:24+02:00 New Revision: e827e5186fb6991bc749eaaddf13f8a53ebb63c2 URL: https://github.com/llvm/llvm-project/commit/e827e5186fb6991bc749eaaddf13f8a53ebb63c2 DIFF: https://github.com/llvm/llvm-project/commit/e827e5186fb6991bc749eaaddf13f8a53ebb63c2.diff

[Lldb-commits] [lldb] 630da0e - [lldb] [llgs] Include PID in QC response in multiprocess mode

2022-06-24 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-06-24T17:20:24+02:00 New Revision: 630da0e309ef4764465dcaf559676633e948f5c0 URL: https://github.com/llvm/llvm-project/commit/630da0e309ef4764465dcaf559676633e948f5c0 DIFF: https://github.com/llvm/llvm-project/commit/630da0e309ef4764465dcaf559676633e948f5c0.diff

[Lldb-commits] [lldb] 14d6707 - [lldb] [llgs] Add a test for multiprocess register read/write

2022-06-24 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-06-24T17:20:24+02:00 New Revision: 14d67073359a86f1d2ae9e140f0b29aa4e63a3af URL: https://github.com/llvm/llvm-project/commit/14d67073359a86f1d2ae9e140f0b29aa4e63a3af DIFF: https://github.com/llvm/llvm-project/commit/14d67073359a86f1d2ae9e140f0b29aa4e63a3af.diff

[Lldb-commits] [lldb] 75757c8 - [lldb] [llgs] Support multiprocess in qfThreadInfo

2022-06-24 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-06-24T17:20:24+02:00 New Revision: 75757c86c695a6b4695458343637b3c4fe86def6 URL: https://github.com/llvm/llvm-project/commit/75757c86c695a6b4695458343637b3c4fe86def6 DIFF: https://github.com/llvm/llvm-project/commit/75757c86c695a6b4695458343637b3c4fe86def6.diff

[Lldb-commits] [lldb] 0481d8e - [lldb] [llgs] Add a test for multiprocess memory read/write

2022-06-24 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2022-06-24T17:20:24+02:00 New Revision: 0481d8efa92f4508e847046b748c17ace1813272 URL: https://github.com/llvm/llvm-project/commit/0481d8efa92f4508e847046b748c17ace1813272 DIFF: https://github.com/llvm/llvm-project/commit/0481d8efa92f4508e847046b748c17ace1813272.diff

  1   2   3   4   5   >