Re: [Lldb-commits] [PATCH] D23882: Replace uses of MIUtilParse::CRegexParser with llvm::Regex

2016-09-02 Thread Michał Górny via lldb-commits
mgorny added a comment. In https://reviews.llvm.org/D23882#527682, @ki.stfu wrote: > lgtm if tests are passed I can't say tests pass for me right now, but the results (failures, errors and unexpected passes) are the same with and without the patch. https://reviews.llvm.org/D23882

Re: [Lldb-commits] [PATCH] D23882: Replace uses of MIUtilParse::CRegexParser with llvm::Regex

2016-09-05 Thread Michał Górny via lldb-commits
mgorny added a comment. In https://reviews.llvm.org/D23882#534038, @labath wrote: > Tests run clean when I apply this locally. Do you want me to put that in for > you? I'd appreciate that. Thanks a lot! https://reviews.llvm.org/D23882 ___

Re: [Lldb-commits] [PATCH] D23883: Remove MIUtilParse (no longer used)

2016-09-12 Thread Michał Górny via lldb-commits
mgorny updated this revision to Diff 70997. Herald added subscribers: mgorny, beanz. https://reviews.llvm.org/D23883 Files: tools/lldb-mi/CMakeLists.txt tools/lldb-mi/MIUtilParse.cpp tools/lldb-mi/MIUtilParse.h Index: tools/lldb-mi/MIUtilParse.h

Re: [Lldb-commits] [PATCH] D23883: Remove MIUtilParse (no longer used)

2016-09-12 Thread Michał Górny via lldb-commits
mgorny added a comment. In https://reviews.llvm.org/D23883#539611, @ki.stfu wrote: > You forgot to remove its header file Thanks for noticing. Fixed now. https://reviews.llvm.org/D23883 ___ lldb-commits mailing list lldb-commits@lists.llvm.org

Re: [Lldb-commits] [PATCH] D23883: Remove MIUtilParse (no longer used)

2016-09-11 Thread Michał Górny via lldb-commits
mgorny added a comment. In https://reviews.llvm.org/D23883#539442, @krytarowski wrote: > It looks good. Remaining TODO for standalone builds: > > - sanitize six.py usage (it's installed into system-wide directory, where > standard py-six lands) How would you prefer handling it? Can we just

Re: [Lldb-commits] [PATCH] D23883: Remove MIUtilParse (no longer used)

2016-09-13 Thread Michał Górny via lldb-commits
mgorny added a comment. Yes, thanks a lot. https://reviews.llvm.org/D23883 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Re: [Lldb-commits] [PATCH] D23881: [LLDB] [cmake]: Add local module directory to search path for standalone build

2016-08-25 Thread Michał Górny via lldb-commits
mgorny added a comment. That won't work since it would require source dir to be still available when building LLDB. The point of stand-alone build is to avoid that, and after applying this patch (and the regex fix), I'm able to achieve that. Using LLVM_MAIN_SRC_DIR would be a regression.

Re: [Lldb-commits] [PATCH] D23881: [LLDB] [cmake]: Add local module directory to search path for standalone build

2016-08-25 Thread Michał Górny via lldb-commits
mgorny added a comment. In https://reviews.llvm.org/D23881#525411, @krytarowski wrote: > In https://reviews.llvm.org/D23881#525405, @mgorny wrote: > > > In https://reviews.llvm.org/D23881#525401, @krytarowski wrote: > > > > > The proper way to fix it is to install CheckAtomic from LLVM/Clang. >

Re: [Lldb-commits] [PATCH] D23881: [LLDB] [cmake]: Add local module directory to search path for standalone build

2016-08-25 Thread Michał Górny via lldb-commits
mgorny added a comment. In https://reviews.llvm.org/D23881#525401, @krytarowski wrote: > The proper way to fix it is to install CheckAtomic from LLVM/Clang. > > See https://reviews.llvm.org/D22999 Wasn't that rejected? Repository: rL LLVM https://reviews.llvm.org/D23881

[Lldb-commits] [PATCH] D23882: Replace uses of MIUtilParse::CRegexParser with llvm::Regex

2016-08-25 Thread Michał Górny via lldb-commits
mgorny created this revision. mgorny added a reviewer: dawn. mgorny added a subscriber: lldb-commits. Herald added a subscriber: ki.stfu. Replace uses of the local MIUtilParse::CRegexParser class with the LLVM support class llvm::Regex. This reduces duplication of code, and makes it possible to

[Lldb-commits] [PATCH] D23881: cmake: Add local module directory to search path for standalone build

2016-08-25 Thread Michał Górny via lldb-commits
mgorny created this revision. mgorny added reviewers: krytarowski, Eugene.Zelenko. mgorny added a subscriber: lldb-commits. Add cmake/modules directory to cmake module search path as otherwise CMake fails to find CheckAtomic module when performing standalone build. // Note: I don't have commit

[Lldb-commits] [PATCH] D23883: Remove MIUtilParse (no longer used)

2016-08-25 Thread Michał Górny via lldb-commits
mgorny created this revision. mgorny added a reviewer: dawn. mgorny added a subscriber: lldb-commits. Herald added a subscriber: ki.stfu. Remove MIUtilParse once https://reviews.llvm.org/D23882 is accepted. https://reviews.llvm.org/D23883 Files: tools/lldb-mi/CMakeLists.txt

[Lldb-commits] [PATCH] D25830: Search for llvm-config in LLDB_PATH_TO_LLVM_BUILD first

2016-10-20 Thread Michał Górny via lldb-commits
mgorny added a comment. I agree. Don't introduce redundant variables when the same result can be achieved using existing means. (note that `find_program` makes `LLVM_CONFIG` a cache variable implicity, so you don't need to have any explicit support for altering it) Repository: rL LLVM

[Lldb-commits] [PATCH] D25668: [cmake] Respect LLVM_CMAKE_PATH in stand-alone builds for GetSVN.cmake

2016-10-17 Thread Michał Górny via lldb-commits
mgorny created this revision. mgorny added reviewers: beanz, krytarowski. mgorny added a subscriber: lldb-commits. Use LLVM_CMAKE_PATH to spawn GetSVN.cmake rather than the source path when stand-alone build is performed, to remove the unnecessary dependency on LLVM sources and use the installed

[Lldb-commits] [PATCH] D25668: [cmake] Respect LLVM_CMAKE_PATH in stand-alone builds for GetSVN.cmake

2016-10-18 Thread Michał Górny via lldb-commits
mgorny planned changes to this revision. mgorny added a comment. `LLVM_CMAKE_PATH` posted as https://reviews.llvm.org/D25724. https://reviews.llvm.org/D25668 ___ lldb-commits mailing list lldb-commits@lists.llvm.org

[Lldb-commits] [PATCH] D25668: [cmake] Respect LLVM_CMAKE_PATH in stand-alone builds for GetSVN.cmake

2016-10-19 Thread Michał Górny via lldb-commits
mgorny abandoned this revision. mgorny added a comment. Now handled as a followup of https://reviews.llvm.org/D25724. https://reviews.llvm.org/D25668 ___ lldb-commits mailing list lldb-commits@lists.llvm.org

[Lldb-commits] [PATCH] D26249: [unittests] Avoid the dependency on private LLVM headers outside MSVC

2016-11-02 Thread Michał Górny via lldb-commits
mgorny added a comment. I can't say it wouldn't work but I think exposing that as part of public API would be ugly-ish. So I'd rather go for either exposing it in llvm-config.h, or LLVMConfig.cmake (and then redeclaring inside LLDB) -- with preference on the former as requiring least work.

[Lldb-commits] [PATCH] D26249: [unittests] Split DWARF tests out of PDB, fix standalone build

2016-11-02 Thread Michał Górny via lldb-commits
mgorny retitled this revision from "[unittests] Avoid the dependency on private LLVM headers outside MSVC" to "[unittests] Split DWARF tests out of PDB, fix standalone build". mgorny updated the summary for this revision. mgorny updated this revision to Diff 76766. mgorny added a comment. Herald

[Lldb-commits] [PATCH] D26245: [cmake] Build gtest from LLVM when building standalone

2016-11-02 Thread Michał Górny via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL285865: [cmake] Build gtest from LLVM when building standalone (authored by mgorny). Changed prior to commit: https://reviews.llvm.org/D26245?vs=76709=76801#toc Repository: rL LLVM

[Lldb-commits] [PATCH] D26249: [unittests] Avoid the dependency on private LLVM headers outside MSVC

2016-11-02 Thread Michał Górny via lldb-commits
mgorny created this revision. mgorny added reviewers: zturner, labath, k8stone. mgorny added a subscriber: lldb-commits. Avoid including private LLVM config.h when not using MSVC. The file is used only to determine whether DIA SDK is available, and this can be true only when using MSVC.

[Lldb-commits] [PATCH] D26249: [unittests] Avoid the dependency on private LLVM headers outside MSVC

2016-11-02 Thread Michał Górny via lldb-commits
mgorny added a comment. In https://reviews.llvm.org/D26249#585869, @zturner wrote: > Is this necessary because of a standalone build, or for some other reason? > If this is to get Standalone build working, then it seems like this isn't > really a complete solution, because standalone build

Re: [Lldb-commits] [PATCH] D31367: Expression: add missing linkage to RuntimeDyld component

2017-03-30 Thread Michał Górny via lldb-commits
On czw, 2017-03-30 at 21:37 +0200, Joerg Sonnenberger wrote: > On Thu, Mar 30, 2017 at 06:00:15PM +, Chris Bieneman via Phabricator > wrote: > > ExecutionEngine headers directly reference symbols from RuntimeDyld, > > so we should enforce a requirement that anyone using ExeuctionEngine > >

Re: [Lldb-commits] [PATCH] D31367: Expression: add missing linkage to RuntimeDyld component

2017-03-30 Thread Michał Górny via lldb-commits
On czw, 2017-03-30 at 13:55 -0700, Chris Bieneman wrote: > I had a talk with Lang about the ExecutionEngine library structuring, and it > sounds like there are some problems there that need to be worked out. > > Luckily for this specific case, I think the solution is actually quite simple: > >

Re: [Lldb-commits] [PATCH] D31367: Expression: add missing linkage to RuntimeDyld component

2017-03-31 Thread Michał Górny via lldb-commits
On czw, 2017-03-30 at 13:55 -0700, Chris Bieneman wrote: > I had a talk with Lang about the ExecutionEngine library structuring, and it > sounds like there are some problems there that need to be worked out. > > Luckily for this specific case, I think the solution is actually quite simple: > >

Re: [Lldb-commits] [PATCH] D36358: [lldb] [cmake] Add explicit linkage from Core to curses

2017-08-05 Thread Michał Górny via lldb-commits
Dnia 5 sierpnia 2017 19:33:57 CEST, Zachary Turner napisał(a): >Does this evaluate to nothing if curses is not present? I will test to confirm in a minute but it should since the find_package call responsible for defining it is conditional to the disable var. However, it

Re: [Lldb-commits] [lldb] r354466 - [lldb] [ObjectFile/ELF] Fix recognizing NetBSD images

2019-02-20 Thread Michał Górny via lldb-commits
On Wed, 2019-02-20 at 08:39 -0800, Davide Italiano wrote: > This broke the bots, link: > > http://green.lab.llvm.org/green/job/lldb-cmake/20047/ > > Can you please take a look and see what's needed to fix (and revert > otherwise)? > Thanks for the ping. I've just committed the update for

Re: [Lldb-commits] [lldb] r359575 - XFAIL x86-64-zmm-read on Darwin

2019-04-30 Thread Michał Górny via lldb-commits
On Tue, 2019-04-30 at 21:00 +0200, Pavel Labath wrote: > On 30/04/2019 20:24, Jonas Devlieghere wrote: > > Hey Pavel, > > > > Apologies if I was too hasty, given the number of XFAILs I assumed the > > test was a WIP and the missing darwin was an oversight. > > > > Here's the output on my

Re: [Lldb-commits] [lldb] e3a7c77 - [lldb/Lit] Change the lldbtest format to behave more like shell test.

2020-01-30 Thread Michał Górny via lldb-commits
On Thu, 2020-01-30 at 21:24 -0800, Jonas Devlieghere wrote: > commit 196b31f9f19d743f55fa70744ddfd2f85d6ad117 (HEAD -> master, > origin/master) > Author: Jonas Devlieghere > Date: Thu Jan 30 21:23:58 2020 -0800 > > [lldb/Lit] Fix UnboundLocalError when reaching a timeout. > > Fixes

[Lldb-commits] [lldb] 172d564 - [lldb] Un-XFAIL two tests on NetBSD

2020-03-07 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-03-07T18:35:22+01:00 New Revision: 172d564c73810777e51b953dc7f73d5a3ca9aad0 URL: https://github.com/llvm/llvm-project/commit/172d564c73810777e51b953dc7f73d5a3ca9aad0 DIFF: https://github.com/llvm/llvm-project/commit/172d564c73810777e51b953dc7f73d5a3ca9aad0.diff

[Lldb-commits] [lldb] 06489ea - [lldb] [Host/NetBSD] Rename Host.cpp to HostNetBSD.cpp

2020-03-17 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-03-17T11:42:39+01:00 New Revision: 06489eaa92162c6b01a767124f3fcdada99bb2f1 URL: https://github.com/llvm/llvm-project/commit/06489eaa92162c6b01a767124f3fcdada99bb2f1 DIFF: https://github.com/llvm/llvm-project/commit/06489eaa92162c6b01a767124f3fcdada99bb2f1.diff

[Lldb-commits] [lldb] 1a60026 - [lldb] Initial version of FreeBSD remote process plugin

2020-10-08 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-10-08T16:03:00+02:00 New Revision: 1a600266c3ad1193d41ebb08a5a87c00cf726b1b URL: https://github.com/llvm/llvm-project/commit/1a600266c3ad1193d41ebb08a5a87c00cf726b1b DIFF: https://github.com/llvm/llvm-project/commit/1a600266c3ad1193d41ebb08a5a87c00cf726b1b.diff

[Lldb-commits] [lldb] caedbc3 - [lldb] [test/Register] Add read/write tests for multithreaded process

2020-10-14 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-10-14T11:08:36+02:00 New Revision: caedbc317a5a4f046c345c136387e3ca199d8503 URL: https://github.com/llvm/llvm-project/commit/caedbc317a5a4f046c345c136387e3ca199d8503 DIFF: https://github.com/llvm/llvm-project/commit/caedbc317a5a4f046c345c136387e3ca199d8503.diff

[Lldb-commits] [lldb] 87d3883 - [lldb] [Process/FreeBSDRemote] Initial multithreading support

2020-10-15 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-10-15T17:37:37+02:00 New Revision: 87d38831d909bf937039a97aa63220929d498047 URL: https://github.com/llvm/llvm-project/commit/87d38831d909bf937039a97aa63220929d498047 DIFF: https://github.com/llvm/llvm-project/commit/87d38831d909bf937039a97aa63220929d498047.diff

[Lldb-commits] [lldb] a825eaa - [lldb] [Platform] Move common ::DebugProcess() to PlatformPOSIX

2020-10-06 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-10-06T14:38:54+02:00 New Revision: a825eaa90e2419e3e9ae64ec047440ce98e7bacb URL: https://github.com/llvm/llvm-project/commit/a825eaa90e2419e3e9ae64ec047440ce98e7bacb DIFF: https://github.com/llvm/llvm-project/commit/a825eaa90e2419e3e9ae64ec047440ce98e7bacb.diff

[Lldb-commits] [lldb] d83cd73 - [lldb] [Process/FreeBSD] Mark methods override in RegisterContext*

2020-10-10 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-10-10T18:52:23+02:00 New Revision: d83cd73e9ddf9ba4cc5754560ef9a2abaaa30749 URL: https://github.com/llvm/llvm-project/commit/d83cd73e9ddf9ba4cc5754560ef9a2abaaa30749 DIFF: https://github.com/llvm/llvm-project/commit/d83cd73e9ddf9ba4cc5754560ef9a2abaaa30749.diff

[Lldb-commits] [lldb] 9a37587 - [lldb] [Process/FreeBSDRemote] Kill process via PT_KILL

2020-10-10 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-10-10T18:54:05+02:00 New Revision: 9a37587ee33bcf2fe27b49f48c9ddd8128f8ac13 URL: https://github.com/llvm/llvm-project/commit/9a37587ee33bcf2fe27b49f48c9ddd8128f8ac13 DIFF: https://github.com/llvm/llvm-project/commit/9a37587ee33bcf2fe27b49f48c9ddd8128f8ac13.diff

[Lldb-commits] [lldb] 8dc2faf - [lldb] [Process/FreeBSDRemote] Fix double semicolon

2020-10-10 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-10-10T18:54:52+02:00 New Revision: 8dc2faf642b720c7abad06fd4cea51e6b4333cfe URL: https://github.com/llvm/llvm-project/commit/8dc2faf642b720c7abad06fd4cea51e6b4333cfe DIFF: https://github.com/llvm/llvm-project/commit/8dc2faf642b720c7abad06fd4cea51e6b4333cfe.diff

[Lldb-commits] [lldb] ff30bff - [lldb] [Process/FreeBSDRemote] Support YMM reg via PT_*XSTATE

2020-10-14 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-10-14T19:56:46+02:00 New Revision: ff30bff136743817dae66029f512cdb3a009937f URL: https://github.com/llvm/llvm-project/commit/ff30bff136743817dae66029f512cdb3a009937f DIFF: https://github.com/llvm/llvm-project/commit/ff30bff136743817dae66029f512cdb3a009937f.diff

[Lldb-commits] [lldb] 762e8f9 - [lldb] [Process/NetBSD] Fix operating on ftag register

2020-09-30 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-09-30T15:39:31+02:00 New Revision: 762e8f9bbdaf43300dbc75637a8bce1ce643cc06 URL: https://github.com/llvm/llvm-project/commit/762e8f9bbdaf43300dbc75637a8bce1ce643cc06 DIFF: https://github.com/llvm/llvm-project/commit/762e8f9bbdaf43300dbc75637a8bce1ce643cc06.diff

[Lldb-commits] [lldb] 80b108f - [lldb] [Process/NetBSD] Fix reading FIP/FDP registers

2020-10-03 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-10-03T19:54:38+02:00 New Revision: 80b108f404fc9e9df7247f6ae9697083cbda URL: https://github.com/llvm/llvm-project/commit/80b108f404fc9e9df7247f6ae9697083cbda DIFF: https://github.com/llvm/llvm-project/commit/80b108f404fc9e9df7247f6ae9697083cbda.diff

[Lldb-commits] [lldb] 381bdc7 - [lldb] [test/Register] Add read/write tests for x87 regs

2020-10-03 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-10-03T19:54:38+02:00 New Revision: 381bdc75ee2ca2fb9784ffb2f6b90accd8eab3b6 URL: https://github.com/llvm/llvm-project/commit/381bdc75ee2ca2fb9784ffb2f6b90accd8eab3b6 DIFF: https://github.com/llvm/llvm-project/commit/381bdc75ee2ca2fb9784ffb2f6b90accd8eab3b6.diff

[Lldb-commits] [lldb] 9821632 - [lldb] [Process/NetBSD] Fix crash on unsupported i386 regs

2020-10-03 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-10-03T19:54:38+02:00 New Revision: 9821632056dce9e2150bab9c0fbd9b2c7da64258 URL: https://github.com/llvm/llvm-project/commit/9821632056dce9e2150bab9c0fbd9b2c7da64258 DIFF: https://github.com/llvm/llvm-project/commit/9821632056dce9e2150bab9c0fbd9b2c7da64258.diff

[Lldb-commits] [lldb] 508ac0e - [lldb] [test/Register] Mark new FP reg tests XFAIL on Windows

2020-10-03 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-10-03T22:16:29+02:00 New Revision: 508ac0ec13c1c56029fd2390a2e14c1b2ea84b73 URL: https://github.com/llvm/llvm-project/commit/508ac0ec13c1c56029fd2390a2e14c1b2ea84b73 DIFF: https://github.com/llvm/llvm-project/commit/508ac0ec13c1c56029fd2390a2e14c1b2ea84b73.diff

[Lldb-commits] [lldb] dae7b10 - [lldb] Split out NetBSD/x86 watchpoint impl for unification

2020-10-23 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-10-23T12:20:15+02:00 New Revision: dae7b10034a515a34aca593fee24d5b73dc0785f URL: https://github.com/llvm/llvm-project/commit/dae7b10034a515a34aca593fee24d5b73dc0785f DIFF: https://github.com/llvm/llvm-project/commit/dae7b10034a515a34aca593fee24d5b73dc0785f.diff

[Lldb-commits] [lldb] d96cb52 - [lldb] [Process/NetBSD] Use XStateRegSet for all FPU registers

2020-10-24 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-10-24T09:17:53+02:00 New Revision: d96cb52830fd7109cead60956a9b108935988e5c URL: https://github.com/llvm/llvm-project/commit/d96cb52830fd7109cead60956a9b108935988e5c DIFF: https://github.com/llvm/llvm-project/commit/d96cb52830fd7109cead60956a9b108935988e5c.diff

[Lldb-commits] [lldb] 37d4d3b - [lldb] [test/Register] Use initial state for write tests

2020-10-26 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-10-26T11:54:00+01:00 New Revision: 37d4d3bb4daf409102237132ae8e1db250da83be URL: https://github.com/llvm/llvm-project/commit/37d4d3bb4daf409102237132ae8e1db250da83be DIFF: https://github.com/llvm/llvm-project/commit/37d4d3bb4daf409102237132ae8e1db250da83be.diff

[Lldb-commits] [lldb] 7acf2e2 - [lldb] [Process/FreeBSDRemote] Fix #include for i386 compat

2020-10-26 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-10-26T11:53:26+01:00 New Revision: 7acf2e2e1e8f7e2eac2dd5bbf7d752ba7ad4e79c URL: https://github.com/llvm/llvm-project/commit/7acf2e2e1e8f7e2eac2dd5bbf7d752ba7ad4e79c DIFF: https://github.com/llvm/llvm-project/commit/7acf2e2e1e8f7e2eac2dd5bbf7d752ba7ad4e79c.diff

[Lldb-commits] [lldb] f5ca275 - [lldb] [Process/Linux] Reuse NativeRegisterContextWatchpoint_x86

2020-10-26 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-10-26T11:55:22+01:00 New Revision: f5ca27569eacc398f0e4fc63a9b55cafac398c04 URL: https://github.com/llvm/llvm-project/commit/f5ca27569eacc398f0e4fc63a9b55cafac398c04 DIFF: https://github.com/llvm/llvm-project/commit/f5ca27569eacc398f0e4fc63a9b55cafac398c04.diff

[Lldb-commits] [lldb] a890237 - [lldb] [Process/NetBSD] Set xs_xstate_bv correctly when setting regs

2020-10-26 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-10-26T11:54:40+01:00 New Revision: a8902376651a7adbacd0c1934d9f70bdb9fad7f0 URL: https://github.com/llvm/llvm-project/commit/a8902376651a7adbacd0c1934d9f70bdb9fad7f0 DIFF: https://github.com/llvm/llvm-project/commit/a8902376651a7adbacd0c1934d9f70bdb9fad7f0.diff

[Lldb-commits] [lldb] 8e7ea99 - [lldb] [Process/FreeBSDRemote] Enable watchpoint support

2020-10-27 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-10-27T15:38:00+01:00 New Revision: 8e7ea99c382300439486e562ba507d4a1bd6cc89 URL: https://github.com/llvm/llvm-project/commit/8e7ea99c382300439486e562ba507d4a1bd6cc89 DIFF: https://github.com/llvm/llvm-project/commit/8e7ea99c382300439486e562ba507d4a1bd6cc89.diff

[Lldb-commits] [lldb] 4ba8ea4 - [lldb] [Process/FreeBSD] Fix missing namespace qualifier

2020-10-27 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-10-27T15:38:00+01:00 New Revision: 4ba8ea4cb06758cb80dfa3d0409f7aab3d3f8e93 URL: https://github.com/llvm/llvm-project/commit/4ba8ea4cb06758cb80dfa3d0409f7aab3d3f8e93 DIFF: https://github.com/llvm/llvm-project/commit/4ba8ea4cb06758cb80dfa3d0409f7aab3d3f8e93.diff

[Lldb-commits] [lldb] b9bfe8a - [lldb] [debugserver] Add stN aliases for stmmN for compatibility

2021-01-06 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2021-01-07T02:10:38+01:00 New Revision: b9bfe8a75306b211dc53291d28a31c0f37be2a2c URL: https://github.com/llvm/llvm-project/commit/b9bfe8a75306b211dc53291d28a31c0f37be2a2c DIFF: https://github.com/llvm/llvm-project/commit/b9bfe8a75306b211dc53291d28a31c0f37be2a2c.diff

[Lldb-commits] [lldb] 09b0883 - [lldb] [POSIX-DYLD] Add libraries from initial eTakeSnapshot action

2020-12-07 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-12-07T09:56:51+01:00 New Revision: 09b08833f301ea375137931d26b7193101f82ceb URL: https://github.com/llvm/llvm-project/commit/09b08833f301ea375137931d26b7193101f82ceb DIFF: https://github.com/llvm/llvm-project/commit/09b08833f301ea375137931d26b7193101f82ceb.diff

[Lldb-commits] [lldb] 1a1cc0b - [lldb] [Platform/POSIX] Use gdb-remote plugin when attaching

2020-12-07 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-12-07T09:56:51+01:00 New Revision: 1a1cc0ba7db549025ab1a504633ae4554042fd60 URL: https://github.com/llvm/llvm-project/commit/1a1cc0ba7db549025ab1a504633ae4554042fd60 DIFF: https://github.com/llvm/llvm-project/commit/1a1cc0ba7db549025ab1a504633ae4554042fd60.diff

[Lldb-commits] [lldb] 276638e - [lldb] [Process/FreeBSDRemote] Implement GetLoadedModuleFileSpec() and GetFileLoadAddress()

2020-12-07 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-12-07T09:56:51+01:00 New Revision: 276638ecaf226a9931c55e835f18b592bdfbea86 URL: https://github.com/llvm/llvm-project/commit/276638ecaf226a9931c55e835f18b592bdfbea86 DIFF: https://github.com/llvm/llvm-project/commit/276638ecaf226a9931c55e835f18b592bdfbea86.diff

[Lldb-commits] [lldb] 77f0ea4 - [lldb] [test] Fix continue_to_breakpoint() args in TestThreadStepOut

2020-12-07 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-12-07T09:56:51+01:00 New Revision: 77f0ea4b5b978c7caa0788ae8b1a2429089021bd URL: https://github.com/llvm/llvm-project/commit/77f0ea4b5b978c7caa0788ae8b1a2429089021bd DIFF: https://github.com/llvm/llvm-project/commit/77f0ea4b5b978c7caa0788ae8b1a2429089021bd.diff

[Lldb-commits] [lldb] 266c90f - [lldb] [test] Link FreeBSD test failures to bugs

2020-12-07 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-12-07T09:56:50+01:00 New Revision: 266c90fec899356aa2c88f1e614d40d554db6fb3 URL: https://github.com/llvm/llvm-project/commit/266c90fec899356aa2c88f1e614d40d554db6fb3 DIFF: https://github.com/llvm/llvm-project/commit/266c90fec899356aa2c88f1e614d40d554db6fb3.diff

[Lldb-commits] [lldb] cf884c1 - [lldb] [test] Remove duplicate xfail for Testtypedef

2020-12-07 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-12-07T11:22:06+01:00 New Revision: cf884c1035c79973e7297fcd13495b78e00ef919 URL: https://github.com/llvm/llvm-project/commit/cf884c1035c79973e7297fcd13495b78e00ef919 DIFF: https://github.com/llvm/llvm-project/commit/cf884c1035c79973e7297fcd13495b78e00ef919.diff

[Lldb-commits] [lldb] 733e2ae - Revert "[lldb] [POSIX-DYLD] Add libraries from initial eTakeSnapshot action"

2020-12-07 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-12-07T15:58:49+01:00 New Revision: 733e2ae8cdf3d13e0a1ef9878e8500f446ffa699 URL: https://github.com/llvm/llvm-project/commit/733e2ae8cdf3d13e0a1ef9878e8500f446ffa699 DIFF: https://github.com/llvm/llvm-project/commit/733e2ae8cdf3d13e0a1ef9878e8500f446ffa699.diff

[Lldb-commits] [lldb] a8f6f4e - [lldb] [test] Restore Windows-skip on 'process connect' tests

2020-11-23 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-11-23T14:27:32+01:00 New Revision: a8f6f4e8733cd601246ddc3e391cd82236231846 URL: https://github.com/llvm/llvm-project/commit/a8f6f4e8733cd601246ddc3e391cd82236231846 DIFF: https://github.com/llvm/llvm-project/commit/a8f6f4e8733cd601246ddc3e391cd82236231846.diff

[Lldb-commits] [lldb] 25c40a4 - [lldb] [docs] Add a manpage for lldb-server

2020-12-10 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-12-10T15:02:25+01:00 New Revision: 25c40a45999e59e3b2902cd91373cd47e7a93488 URL: https://github.com/llvm/llvm-project/commit/25c40a45999e59e3b2902cd91373cd47e7a93488 DIFF: https://github.com/llvm/llvm-project/commit/25c40a45999e59e3b2902cd91373cd47e7a93488.diff

[Lldb-commits] [lldb] e1f613c - [lldb] [test] Reenable two passing tests on FreeBSD

2020-12-01 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-12-01T23:25:45+01:00 New Revision: e1f613ce3c61d0664fd3cff663f290cf1c2b9696 URL: https://github.com/llvm/llvm-project/commit/e1f613ce3c61d0664fd3cff663f290cf1c2b9696 DIFF: https://github.com/llvm/llvm-project/commit/e1f613ce3c61d0664fd3cff663f290cf1c2b9696.diff

[Lldb-commits] [lldb] 5644035 - [lldb] [unittests] Add tests for NetBSD register offsets/sizes

2020-12-17 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-12-17T13:55:42+01:00 New Revision: 56440359d093ea6f8e9c91064fdd47928cf07092 URL: https://github.com/llvm/llvm-project/commit/56440359d093ea6f8e9c91064fdd47928cf07092 DIFF: https://github.com/llvm/llvm-project/commit/56440359d093ea6f8e9c91064fdd47928cf07092.diff

[Lldb-commits] [lldb] 37f99a5 - [lldb] [unittests] Filter FreeBSD through CMake rather than #ifdef

2020-12-17 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-12-17T13:55:42+01:00 New Revision: 37f99a56065209627020428cecb78f55dfa90580 URL: https://github.com/llvm/llvm-project/commit/37f99a56065209627020428cecb78f55dfa90580 DIFF: https://github.com/llvm/llvm-project/commit/37f99a56065209627020428cecb78f55dfa90580.diff

[Lldb-commits] [lldb] 9ead4e7 - [lldb] [Process/FreeBSDRemote] Replace GetRegisterSetCount()

2020-12-17 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-12-17T18:01:14+01:00 New Revision: 9ead4e7b4a68d162122d861f5d5b6a3baf8d23c1 URL: https://github.com/llvm/llvm-project/commit/9ead4e7b4a68d162122d861f5d5b6a3baf8d23c1 DIFF: https://github.com/llvm/llvm-project/commit/9ead4e7b4a68d162122d861f5d5b6a3baf8d23c1.diff

[Lldb-commits] [lldb] 835f8de - [lldb] [Process/FreeBSDRemote] Use RegSetKind consistently [NFC]

2020-12-17 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-12-17T18:01:46+01:00 New Revision: 835f8de8508953f4624534e36d54cd256e8800c9 URL: https://github.com/llvm/llvm-project/commit/835f8de8508953f4624534e36d54cd256e8800c9 DIFF: https://github.com/llvm/llvm-project/commit/835f8de8508953f4624534e36d54cd256e8800c9.diff

[Lldb-commits] [lldb] 0cd8686 - [lldb] [Process/FreeBSD] Add more 'override' keywords

2020-12-13 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-12-13T09:59:32+01:00 New Revision: 0cd8686043f962d20395fde382af3af14042d4ed URL: https://github.com/llvm/llvm-project/commit/0cd8686043f962d20395fde382af3af14042d4ed DIFF: https://github.com/llvm/llvm-project/commit/0cd8686043f962d20395fde382af3af14042d4ed.diff

[Lldb-commits] [lldb] bd2e833 - [lldb] [Process/FreeBSDRemote] Remove anonymous namespace

2020-12-21 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-12-21T22:26:54+01:00 New Revision: bd2e8ece6afa8a6c1975d19d403d63349414 URL: https://github.com/llvm/llvm-project/commit/bd2e8ece6afa8a6c1975d19d403d63349414 DIFF: https://github.com/llvm/llvm-project/commit/bd2e8ece6afa8a6c1975d19d403d63349414.diff

[Lldb-commits] [lldb] 9956233 - [lldb] [test] Update test status for NetBSD

2020-12-20 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-12-20T11:32:43+01:00 New Revision: 99562332e3de19da9da1714a58b5cc2d24724ef5 URL: https://github.com/llvm/llvm-project/commit/99562332e3de19da9da1714a58b5cc2d24724ef5 DIFF: https://github.com/llvm/llvm-project/commit/99562332e3de19da9da1714a58b5cc2d24724ef5.diff

[Lldb-commits] [lldb] dbfdb13 - [lldb] [POSIX-DYLD] Update the cached exe path after attach

2020-12-17 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-12-17T09:31:22+01:00 New Revision: dbfdb139f75470a9abc78e7c9faf743fdd963c2d URL: https://github.com/llvm/llvm-project/commit/dbfdb139f75470a9abc78e7c9faf743fdd963c2d DIFF: https://github.com/llvm/llvm-project/commit/dbfdb139f75470a9abc78e7c9faf743fdd963c2d.diff

[Lldb-commits] [lldb] 8666b90 - [lldb] [POSIX-DYLD] Add libraries from initial rendezvous brkpt hit

2020-12-17 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-12-17T09:31:10+01:00 New Revision: 8666b9057f23badfe90548297f3c01937daa4a9c URL: https://github.com/llvm/llvm-project/commit/8666b9057f23badfe90548297f3c01937daa4a9c DIFF: https://github.com/llvm/llvm-project/commit/8666b9057f23badfe90548297f3c01937daa4a9c.diff

[Lldb-commits] [lldb] ed3ac6c - [lldb] [Process/NetBSD] Correct DS/ES/FS/GS register sizes

2020-11-09 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-11-09T22:14:58+01:00 New Revision: ed3ac6c110a53b332f490f1c5ddcd2b7c30d5189 URL: https://github.com/llvm/llvm-project/commit/ed3ac6c110a53b332f490f1c5ddcd2b7c30d5189 DIFF: https://github.com/llvm/llvm-project/commit/ed3ac6c110a53b332f490f1c5ddcd2b7c30d5189.diff

[Lldb-commits] [lldb] a852cf6 - [lldb] [test] Skip ObjC-based tests via 'objc' category

2020-11-10 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-11-10T12:02:38+01:00 New Revision: a852cf66ea5d130a09cd796b97b15c18059e95cd URL: https://github.com/llvm/llvm-project/commit/a852cf66ea5d130a09cd796b97b15c18059e95cd DIFF: https://github.com/llvm/llvm-project/commit/a852cf66ea5d130a09cd796b97b15c18059e95cd.diff

[Lldb-commits] [lldb] 311cca8 - [lldb] [test] Rename '.categories' to 'categories'

2020-11-10 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-11-10T12:02:38+01:00 New Revision: 311cca8bbf882cd93124d5ee9f40ee47f5e1f57d URL: https://github.com/llvm/llvm-project/commit/311cca8bbf882cd93124d5ee9f40ee47f5e1f57d DIFF: https://github.com/llvm/llvm-project/commit/311cca8bbf882cd93124d5ee9f40ee47f5e1f57d.diff

[Lldb-commits] [lldb] 4c54399 - [lldb] [Process/FreeBSDRemote] Explicitly copy dbregs to new threads

2020-11-10 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-11-10T14:18:03+01:00 New Revision: 4c54399b7eaa487e91c32a0d9c2537611c25aee7 URL: https://github.com/llvm/llvm-project/commit/4c54399b7eaa487e91c32a0d9c2537611c25aee7 DIFF: https://github.com/llvm/llvm-project/commit/4c54399b7eaa487e91c32a0d9c2537611c25aee7.diff

[Lldb-commits] [lldb] e637602 - [lldb] [Process/FreeBSDRemote] Fix handling user-generated SIGTRAP

2020-11-10 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-11-10T14:18:03+01:00 New Revision: e637602e7ac9bb5721dbe079fa783cee891139b4 URL: https://github.com/llvm/llvm-project/commit/e637602e7ac9bb5721dbe079fa783cee891139b4 DIFF: https://github.com/llvm/llvm-project/commit/e637602e7ac9bb5721dbe079fa783cee891139b4.diff

[Lldb-commits] [lldb] 194c5ac - [lldb] [Process/FreeBSDRemote] Correct DS/ES/FS/GS register sizes

2020-11-10 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-11-10T14:18:03+01:00 New Revision: 194c5accb2be0dab75085f8f5c9c488d1cee7606 URL: https://github.com/llvm/llvm-project/commit/194c5accb2be0dab75085f8f5c9c488d1cee7606 DIFF: https://github.com/llvm/llvm-project/commit/194c5accb2be0dab75085f8f5c9c488d1cee7606.diff

[Lldb-commits] [lldb] f21e704 - [lldb] [Process/NetBSD] Copy the recent improvements from FreeBSD

2020-11-10 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-11-10T20:20:44+01:00 New Revision: f21e704d4a2cc992faff46665b31daad290cc8b8 URL: https://github.com/llvm/llvm-project/commit/f21e704d4a2cc992faff46665b31daad290cc8b8 DIFF: https://github.com/llvm/llvm-project/commit/f21e704d4a2cc992faff46665b31daad290cc8b8.diff

[Lldb-commits] [lldb] 68ca01e - [lldb] [Process/FreeBSDRemote] Modernize and simplify YMM logic

2020-11-16 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-11-16T13:03:01+01:00 New Revision: 68ca01eb50af0a4aca06c90a4ce1eb78029603f6 URL: https://github.com/llvm/llvm-project/commit/68ca01eb50af0a4aca06c90a4ce1eb78029603f6 DIFF: https://github.com/llvm/llvm-project/commit/68ca01eb50af0a4aca06c90a4ce1eb78029603f6.diff

[Lldb-commits] [lldb] e520487 - [lldb] [Process/FreeBSDRemote] Access FPR via RegisterInfo offsets

2020-11-16 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-11-16T13:03:01+01:00 New Revision: e520487bf4bf1efc83e1f8175c6fd8356495bb5d URL: https://github.com/llvm/llvm-project/commit/e520487bf4bf1efc83e1f8175c6fd8356495bb5d DIFF: https://github.com/llvm/llvm-project/commit/e520487bf4bf1efc83e1f8175c6fd8356495bb5d.diff

[Lldb-commits] [lldb] b9734c6 - [lldb] [Process/FreeBSDRemote] Optimize regset pointer logic

2020-11-16 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-11-16T13:03:02+01:00 New Revision: b9734c6b44e52fd94f9fe19f8ce60f55c4d3819c URL: https://github.com/llvm/llvm-project/commit/b9734c6b44e52fd94f9fe19f8ce60f55c4d3819c DIFF: https://github.com/llvm/llvm-project/commit/b9734c6b44e52fd94f9fe19f8ce60f55c4d3819c.diff

[Lldb-commits] [lldb] 6adb558 - [lldb] [Process/FreeBSDRemote] Access debug registers via offsets

2020-11-16 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-11-16T13:03:01+01:00 New Revision: 6adb55877c4bae6c75ab0d2c0374fab6787bff2d URL: https://github.com/llvm/llvm-project/commit/6adb55877c4bae6c75ab0d2c0374fab6787bff2d DIFF: https://github.com/llvm/llvm-project/commit/6adb55877c4bae6c75ab0d2c0374fab6787bff2d.diff

[Lldb-commits] [lldb] 58abbf8 - [lldb] [Process/FreeBSDRemote] Access GPR via reginfo offsets

2020-11-16 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-11-16T12:19:37+01:00 New Revision: 58abbf821ce88f4d35cdfa36cdb486e2d56a04e2 URL: https://github.com/llvm/llvm-project/commit/58abbf821ce88f4d35cdfa36cdb486e2d56a04e2 DIFF: https://github.com/llvm/llvm-project/commit/58abbf821ce88f4d35cdfa36cdb486e2d56a04e2.diff

[Lldb-commits] [lldb] f0e2c51 - [lldb] [test/Register] XFAIL x86-fp-write on Darwin

2020-11-20 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-11-20T09:43:08+01:00 New Revision: f0e2c5131eda0cb77a1ab0e3f1a666a3b8860591 URL: https://github.com/llvm/llvm-project/commit/f0e2c5131eda0cb77a1ab0e3f1a666a3b8860591 DIFF: https://github.com/llvm/llvm-project/commit/f0e2c5131eda0cb77a1ab0e3f1a666a3b8860591.diff

[Lldb-commits] [lldb] 3a23010 - Revert "[LLDB] Fixing lldb/test/Shell/Register/x86-fp-write.test"

2020-11-20 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-11-20T09:42:13+01:00 New Revision: 3a230101fee6bb1d6ddc1aa094f2a35d57912a15 URL: https://github.com/llvm/llvm-project/commit/3a230101fee6bb1d6ddc1aa094f2a35d57912a15 DIFF: https://github.com/llvm/llvm-project/commit/3a230101fee6bb1d6ddc1aa094f2a35d57912a15.diff

[Lldb-commits] [lldb] 3e1f1b4 - [lldb] [test] Pass -mmmx to x86-gp-write test explicitly

2020-11-18 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-11-18T12:08:24+01:00 New Revision: 3e1f1b406e92115f2a36294c2084a8b3a5d6a651 URL: https://github.com/llvm/llvm-project/commit/3e1f1b406e92115f2a36294c2084a8b3a5d6a651 DIFF: https://github.com/llvm/llvm-project/commit/3e1f1b406e92115f2a36294c2084a8b3a5d6a651.diff

[Lldb-commits] [lldb] b48ace0 - [lldb] [test] Un-XFAIL TestMultipleDebuggers.py

2020-11-18 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-11-18T12:09:04+01:00 New Revision: b48ace051c4bd0a51152ace717bb3f7104f70433 URL: https://github.com/llvm/llvm-project/commit/b48ace051c4bd0a51152ace717bb3f7104f70433 DIFF: https://github.com/llvm/llvm-project/commit/b48ace051c4bd0a51152ace717bb3f7104f70433.diff

[Lldb-commits] [lldb] 5a75512 - [lldb] [test] Mark command-process-connect.test XFAIL

2020-11-18 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-11-18T12:08:59+01:00 New Revision: 5a75512eba7ef351dab6f699b45c8bef37cb60b7 URL: https://github.com/llvm/llvm-project/commit/5a75512eba7ef351dab6f699b45c8bef37cb60b7 DIFF: https://github.com/llvm/llvm-project/commit/5a75512eba7ef351dab6f699b45c8bef37cb60b7.diff

[Lldb-commits] [lldb] 97a2eac - [lldb] [test] Un-XFAIL tests on freebsd/i386

2020-11-18 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-11-18T12:09:11+01:00 New Revision: 97a2eac3a924f3081bf80ee69ce59bc89257b857 URL: https://github.com/llvm/llvm-project/commit/97a2eac3a924f3081bf80ee69ce59bc89257b857 DIFF: https://github.com/llvm/llvm-project/commit/97a2eac3a924f3081bf80ee69ce59bc89257b857.diff

[Lldb-commits] [lldb] d8ff269 - [lldb] Add explicit 64-bit fip/fdp registers on x86_64

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

[Lldb-commits] [lldb] c43abf0 - [lldb] Use translated full ftag values

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

[Lldb-commits] [lldb] afcdd43 - [llvm] [Support] Fix segv if argv0 is null in getMainExecutable()

2020-11-09 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-11-09T11:35:11+01:00 New Revision: afcdd43bf71d9503dbd2b700710818daafa0cb00 URL: https://github.com/llvm/llvm-project/commit/afcdd43bf71d9503dbd2b700710818daafa0cb00 DIFF: https://github.com/llvm/llvm-project/commit/afcdd43bf71d9503dbd2b700710818daafa0cb00.diff

[Lldb-commits] [lldb] 9e1409a - [lldb] [Process/FreeBSDRemote] Handle exec() from inferior

2020-11-09 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-11-09T11:35:11+01:00 New Revision: 9e1409aa1e0bb1963757941cf4db539147614fbf URL: https://github.com/llvm/llvm-project/commit/9e1409aa1e0bb1963757941cf4db539147614fbf DIFF: https://github.com/llvm/llvm-project/commit/9e1409aa1e0bb1963757941cf4db539147614fbf.diff

[Lldb-commits] [lldb] 7e2ef84 - [lldb] [test] Extend watchpoint test to wait for thread to start

2020-11-09 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-11-09T11:35:11+01:00 New Revision: 7e2ef84fe7232368f92ec0835c3eda869c85a445 URL: https://github.com/llvm/llvm-project/commit/7e2ef84fe7232368f92ec0835c3eda869c85a445 DIFF: https://github.com/llvm/llvm-project/commit/7e2ef84fe7232368f92ec0835c3eda869c85a445.diff

[Lldb-commits] [lldb] fce8e75 - [lldb] [Host/freebsd] Set Arg0 for 'platform process list -v'

2020-11-09 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-11-09T11:35:11+01:00 New Revision: fce8e758892f0b650762513680adc06cea53d6e3 URL: https://github.com/llvm/llvm-project/commit/fce8e758892f0b650762513680adc06cea53d6e3 DIFF: https://github.com/llvm/llvm-project/commit/fce8e758892f0b650762513680adc06cea53d6e3.diff

[Lldb-commits] [lldb] bc12566 - [lldb] [Host/freebsd] Set Arg0 for 'platform process list -v'

2020-11-09 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-11-09T12:09:12+01:00 New Revision: bc125665c5e633df103d3a41d8f46afd781ea304 URL: https://github.com/llvm/llvm-project/commit/bc125665c5e633df103d3a41d8f46afd781ea304 DIFF: https://github.com/llvm/llvm-project/commit/bc125665c5e633df103d3a41d8f46afd781ea304.diff

[Lldb-commits] [lldb] 2384c4f - Revert "[lldb] [Host/freebsd] Set Arg0 for 'platform process list -v'"

2020-11-09 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-11-09T12:09:12+01:00 New Revision: 2384c4f9713a19874821c0f290227680a7bcf283 URL: https://github.com/llvm/llvm-project/commit/2384c4f9713a19874821c0f290227680a7bcf283 DIFF: https://github.com/llvm/llvm-project/commit/2384c4f9713a19874821c0f290227680a7bcf283.diff

[Lldb-commits] [lldb] 1ba9ced - [lldb] [test] Un-skip one of TestRaise signals on fbsd

2020-11-07 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-11-07T19:26:42+01:00 New Revision: 1ba9cedd0af241ed515ecd4eed3c1a241bd4813d URL: https://github.com/llvm/llvm-project/commit/1ba9cedd0af241ed515ecd4eed3c1a241bd4813d DIFF: https://github.com/llvm/llvm-project/commit/1ba9cedd0af241ed515ecd4eed3c1a241bd4813d.diff

[Lldb-commits] [lldb] 93c9110 - [lldb] [test] Use skipUnlessDarwin for tests specific to Darwin

2020-11-07 Thread Michał Górny via lldb-commits
Author: Michał Górny Date: 2020-11-07T19:26:42+01:00 New Revision: 93c9110c980c9fc4bd72fb307c18f79afa0381e3 URL: https://github.com/llvm/llvm-project/commit/93c9110c980c9fc4bd72fb307c18f79afa0381e3 DIFF: https://github.com/llvm/llvm-project/commit/93c9110c980c9fc4bd72fb307c18f79afa0381e3.diff

[Lldb-commits] [lldb] 8aea95f - [lldb] Reland "Use translated full ftag values"

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

  1   2   3   4   5   >