[Lldb-commits] [lldb] r343726 - Fix buildbot regression by rL339929: NameError: global name 'test_directory' is not defined

2018-10-03 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Wed Oct 3 14:42:54 2018 New Revision: 343726 URL: http://llvm.org/viewvc/llvm-project?rev=343726&view=rev Log: Fix buildbot regression by rL339929: NameError: global name 'test_directory' is not defined With buildbot slave under test - I get after rL339929: http://la

Re: [Lldb-commits] [PATCH] D46810: Fix DWARFUnit::GetUnitDIEPtrOnly stale pointer

2018-10-14 Thread Jan Kratochvil via lldb-commits
On Thu, 27 Sep 2018 18:21:13 +0200, Greg Clayton via lldb-commits wrote: > One fix that would work it to make the DWARFDebugInfoEntry* inside the > DWARFDie to be mutable and allow it to "fix" itself when a call is made. So > the flow would be: > > auto CUDie = cu->GetUnitDIEOnly(); > for (auto

[Lldb-commits] [lldb] r344605 - Fix: Assertion failed: (!m_first_die || m_first_die == m_die_array.front()), function ExtractDIEsRWLocked

2018-10-16 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Tue Oct 16 04:38:22 2018 New Revision: 344605 URL: http://llvm.org/viewvc/llvm-project?rev=344605&view=rev Log: Fix: Assertion failed: (!m_first_die || m_first_die == m_die_array.front()), function ExtractDIEsRWLocked xbolva00 bugreported $subj in: https://reviews.llv

[Lldb-commits] [lldb] r344644 - Code cleanup: Remove DWARFDebugInfoEntry::m_empty_children

2018-10-16 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Tue Oct 16 13:49:15 2018 New Revision: 344644 URL: http://llvm.org/viewvc/llvm-project?rev=344644&view=rev Log: Code cleanup: Remove DWARFDebugInfoEntry::m_empty_children It merges DWARFDebugInfoEntry's m_empty_children into m_has_children. m_empty_children was impleme

[Lldb-commits] [lldb] r346089 - Fix duplicate testcase filename

2018-11-03 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Sat Nov 3 23:13:09 2018 New Revision: 346089 URL: http://llvm.org/viewvc/llvm-project?rev=346089&view=rev Log: Fix duplicate testcase filename dotest.py started reporting: Exception: Found multiple tests with the name TestSampleTest.py After the commit of:

[Lldb-commits] [lldb] r349607 - refactor testsuite spawnLldbMi args->exe+args

2018-12-19 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Wed Dec 19 00:57:10 2018 New Revision: 349607 URL: http://llvm.org/viewvc/llvm-project?rev=349607&view=rev Log: refactor testsuite spawnLldbMi args->exe+args Currently spawnLldbMi accepts both lldb-mi options and executable to debug as a single parameter. Split them.

[Lldb-commits] [lldb] r350368 - symbols.enable-external-lookup=false on all hosts (not just OSX)

2019-01-03 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Thu Jan 3 15:11:06 2019 New Revision: 350368 URL: http://llvm.org/viewvc/llvm-project?rev=350368&view=rev Log: symbols.enable-external-lookup=false on all hosts (not just OSX) There is already in use: lit/lit-lldb-init: settings set symbols.ena

[Lldb-commits] [lldb] r350479 - Fix symbols.enable-external-lookup description wording

2019-01-05 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Sat Jan 5 13:39:03 2019 New Revision: 350479 URL: http://llvm.org/viewvc/llvm-project?rev=350479&view=rev Log: Fix symbols.enable-external-lookup description wording D55859 changed "external tools or libraries" to "external sources" according to Pavel Labath. Now it

[Lldb-commits] [lldb] r332200 - Revert "Protect DWARFCompileUnit::m_die_array by a new mutex"

2018-05-13 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Sun May 13 11:38:28 2018 New Revision: 332200 URL: http://llvm.org/viewvc/llvm-project?rev=332200&view=rev Log: Revert "Protect DWARFCompileUnit::m_die_array by a new mutex" Pavel Labath found this patch is incomplete and racy. I think there needs to be some more mute

[Lldb-commits] [lldb] r332201 - Use const_iterator in DWARFUnit

2018-05-13 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Sun May 13 12:04:17 2018 New Revision: 332201 URL: http://llvm.org/viewvc/llvm-project?rev=332201&view=rev Log: Use const_iterator in DWARFUnit Function DWARFUnit::GetDIE is using m_die_array only for reading so it can use DWARFDebugInfoEntry::const_iterator. Modified

[Lldb-commits] [lldb] r333222 - DWARFDIE split out to DWARFBaseDIE

2018-05-24 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Thu May 24 13:44:48 2018 New Revision: 333222 URL: http://llvm.org/viewvc/llvm-project?rev=333222&view=rev Log: DWARFDIE split out to DWARFBaseDIE This new DWARFBaseDIE is going to be used for DWARFUnit::GetUnitDIEOnly() as other DIEs are unavailable that time so the c

[Lldb-commits] [lldb] r333224 - Use DWARFBaseDIE as a compile-time protection

2018-05-24 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Thu May 24 13:51:13 2018 New Revision: 333224 URL: http://llvm.org/viewvc/llvm-project?rev=333224&view=rev Log: Use DWARFBaseDIE as a compile-time protection As suggested by Pavel Labath in D46810 DWARFUnit::GetUnitDIEOnly() returning a pointer to m_first_die should no

[Lldb-commits] [lldb] r333287 - Remove DWARFUnit::ClearDIEs parameter keep_compile_unit_die

2018-05-25 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Fri May 25 09:11:45 2018 New Revision: 333287 URL: http://llvm.org/viewvc/llvm-project?rev=333287&view=rev Log: Remove DWARFUnit::ClearDIEs parameter keep_compile_unit_die It has been now always passed as true and during planned D46810 it would no longer make sense. M

[Lldb-commits] [lldb] r333437 - Fix DWARFUnit::GetUnitDIEPtrOnly stale pointer

2018-05-29 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Tue May 29 10:17:46 2018 New Revision: 333437 URL: http://llvm.org/viewvc/llvm-project?rev=333437&view=rev Log: Fix DWARFUnit::GetUnitDIEPtrOnly stale pointer GetUnitDIEPtrOnly() needs to return pointer to the first DIE. But the first element of m_die_array after Extra

[Lldb-commits] [lldb] r333449 - Fix compiler unused variable warning in DWARFUnit

2018-05-29 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Tue May 29 11:53:25 2018 New Revision: 333449 URL: http://llvm.org/viewvc/llvm-project?rev=333449&view=rev Log: Fix compiler unused variable warning in DWARFUnit Alex Langford has reported it from: https://reviews.llvm.org/D46810 Modified: lldb/trunk/source/Plugin

[Lldb-commits] [lldb] r333452 - Remove unused DWARFUnit::HasDIEsParsed()

2018-05-29 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Tue May 29 12:14:46 2018 New Revision: 333452 URL: http://llvm.org/viewvc/llvm-project?rev=333452&view=rev Log: Remove unused DWARFUnit::HasDIEsParsed() It was not implemented correctly after https://reviews.llvm.org/D46810 but then it has not been used anywhere anyway

[Lldb-commits] [lldb] r333517 - Fix return value of DWARFUnit::ExtractDIEsIfNeeded()

2018-05-30 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Wed May 30 01:54:46 2018 New Revision: 333517 URL: http://llvm.org/viewvc/llvm-project?rev=333517&view=rev Log: Fix return value of DWARFUnit::ExtractDIEsIfNeeded() This is a leftover regression from: https://reviews.llvm.org/D46810 Modified: lldb/trunk/source/Plu

[Lldb-commits] [lldb] r333636 - Simplify DWARFUnit::m_die_array swap() to use shrink_to_fit()

2018-05-31 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Thu May 31 01:55:40 2018 New Revision: 333636 URL: http://llvm.org/viewvc/llvm-project?rev=333636&view=rev Log: Simplify DWARFUnit::m_die_array swap() to use shrink_to_fit() rL145086 introduced m_die_array.shrink_to_fit() implemented by exact_size_die_array.swap, it wa

[Lldb-commits] [lldb] r333987 - Protect DWARFCompileUnit::m_die_array by new mutexes

2018-06-05 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Tue Jun 5 01:52:18 2018 New Revision: 333987 URL: http://llvm.org/viewvc/llvm-project?rev=333987&view=rev Log: Protect DWARFCompileUnit::m_die_array by new mutexes If BuildAddressRangeTable called ExtractDIEsIfNeeded(false), then another thread started processing data

[Lldb-commits] [lldb] r335431 - Make testcase classnames unique

2018-06-24 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Sun Jun 24 03:36:44 2018 New Revision: 335431 URL: http://llvm.org/viewvc/llvm-project?rev=335431&view=rev Log: Make testcase classnames unique Filenames with test results contain only the class name which makes it more difficult to find it if the same class name is pr

Re: [Lldb-commits] [lldb] r335431 - Make testcase classnames unique

2018-06-25 Thread Jan Kratochvil via lldb-commits
On Mon, 25 Jun 2018 10:52:57 +0200, Pavel Labath wrote: > BTW, the format of the test trace file names is configurable with a > command line option (--session-file-format). Since we already have > code which enforces that every test file name is unique, we might want > to swap the default format to

[Lldb-commits] [lldb] r338224 - Remove friend class declarations from DWARFUnit and DWARFCompileUnit

2018-07-29 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Sun Jul 29 12:32:36 2018 New Revision: 338224 URL: http://llvm.org/viewvc/llvm-project?rev=338224&view=rev Log: Remove friend class declarations from DWARFUnit and DWARFCompileUnit They are no longer needed since D45170. Modified: lldb/trunk/source/Plugins/SymbolF

[Lldb-commits] Linux fatal regression [Re: [lldb] r341487 - Modernize NativeProcessProtocol::GetSoftwareBreakpointTrapOpcode]

2018-09-08 Thread Jan Kratochvil via lldb-commits
Hi Pavel, OK to revert it? It completely broke testsuite on Linux. Jan Kratochvil On Wed, 05 Sep 2018 20:08:56 +0200, Pavel Labath via lldb-commits wrote: > Author: labath > Date: Wed Sep 5 11:08:56 2018 > New Revision: 341487 > > URL: http://llvm.org/viewvc/llvm-project?rev=341487&view=rev

Re: [Lldb-commits] Linux fatal regression [Re: [lldb] r341487 - Modernize NativeProcessProtocol::GetSoftwareBreakpointTrapOpcode]

2018-09-08 Thread Jan Kratochvil via lldb-commits
On Sat, 08 Sep 2018 10:25:11 +0200, Jan Kratochvil wrote: > OK to revert it? It completely broke testsuite on Linux. BTW it regressed when LLDB is built by clang-6.0.1-1.fc28.x86_64. When I build LLDB by gcc-8.1.1-5.fc28.x86_64 it still works. Jan ___

[Lldb-commits] [lldb] r318626 - Add comments to DWARFCompileUnit length fields/methods

2017-11-19 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Sun Nov 19 06:35:07 2017 New Revision: 318626 URL: http://llvm.org/viewvc/llvm-project?rev=318626&view=rev Log: Add comments to DWARFCompileUnit length fields/methods Differential revision: https://reviews.llvm.org/D40211 Modified: lldb/trunk/source/Plugins/Symbol

[Lldb-commits] [lldb] r318631 - Remove 2 unused methods DWARFDebugInfo::Find and their FindCallbackString

2017-11-19 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Sun Nov 19 11:04:24 2017 New Revision: 318631 URL: http://llvm.org/viewvc/llvm-project?rev=318631&view=rev Log: Remove 2 unused methods DWARFDebugInfo::Find and their FindCallbackString Differential revision: https://reviews.llvm.org/D40216 Modified: lldb/trunk/so

[Lldb-commits] [lldb] r318981 - Due to changes for DWZ I would need to update those such as renaming it to

2017-11-25 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Sat Nov 25 09:16:56 2017 New Revision: 318981 URL: http://llvm.org/viewvc/llvm-project?rev=318981&view=rev Log: Due to changes for DWZ I would need to update those such as renaming it to SetFileOffset. Differential revision: https://reviews.llvm.org/D40458 Modified:

[Lldb-commits] [lldb] r319359 - refactor: Unify+simplify DWARFCompileUnit ctor+Clear() into in-class initializers + Extract()

2017-11-29 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Wed Nov 29 13:13:11 2017 New Revision: 319359 URL: http://llvm.org/viewvc/llvm-project?rev=319359&view=rev Log: refactor: Unify+simplify DWARFCompileUnit ctor+Clear() into in-class initializers + Extract() It has no functionality effect. I was concerned about the wor

[Lldb-commits] [lldb] r319402 - refactor: Simplify loop with DWARFCompileUnit::Extract

2017-11-29 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Wed Nov 29 21:49:02 2017 New Revision: 319402 URL: http://llvm.org/viewvc/llvm-project?rev=319402&view=rev Log: refactor: Simplify loop with DWARFCompileUnit::Extract Forgotten small simplification in D40212. Differential revision: https://reviews.llvm.org/D40635 Mod

Re: [Lldb-commits] [PATCH] D40475: DWZ 12/12: DWZ test mode

2017-12-01 Thread Jan Kratochvil via lldb-commits
On Fri, 01 Dec 2017 13:02:42 +0100, Pavel Labath wrote: > > I expect because LLDB does not have any Linux DWARF index support, it has > > only some Apple OSX index support. GDB's `.debug_index` is not usable for > > LLDB as it does not contain DIE offsets. I would like to implement DWARF-5 > > `.de

[Lldb-commits] [lldb] r319580 - Prevent vain lldb::user_id_t 0xffffffff lookups

2017-12-01 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Fri Dec 1 12:14:09 2017 New Revision: 319580 URL: http://llvm.org/viewvc/llvm-project?rev=319580&view=rev Log: Prevent vain lldb::user_id_t 0x lookups I have found LLDB commonly looks up lldb::user_id_t 0x failing to find its DIE. One would rather expe

[Lldb-commits] [lldb] r323069 - Clean up #include "DWARFCompileUnit.h"

2018-01-21 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Sun Jan 21 10:03:17 2018 New Revision: 323069 URL: http://llvm.org/viewvc/llvm-project?rev=323069&view=rev Log: Clean up #include "DWARFCompileUnit.h" Clean up needless+missing #include "DWARFCompileUnit.h" for split of DWARFCompileUnit to DWARFUnit as discussed in D40

[Lldb-commits] [lldb] r323586 - Remove unused class declarations

2018-01-27 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Sat Jan 27 06:35:33 2018 New Revision: 323586 URL: http://llvm.org/viewvc/llvm-project?rev=323586&view=rev Log: Remove unused class declarations Simplification by removing excessive DWARFCompileUnit references for D40466 . Differential revision: https://reviews.llvm.o

[Lldb-commits] [lldb] r324222 - Fix upper->lower case for /usr/lib/debug/.build-id/**.debug

2018-02-05 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Mon Feb 5 02:46:56 2018 New Revision: 324222 URL: http://llvm.org/viewvc/llvm-project?rev=324222&view=rev Log: Fix upper->lower case for /usr/lib/debug/.build-id/**.debug I have found the lookup by build-id (when lookup by /usr/lib/debug/path/name/exec.debug failed) d

[Lldb-commits] [lldb] r324224 - Resolve binary symlinks before finding its separate .debug file

2018-02-05 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Mon Feb 5 02:50:38 2018 New Revision: 324224 URL: http://llvm.org/viewvc/llvm-project?rev=324224&view=rev Log: Resolve binary symlinks before finding its separate .debug file I have found LLDB cannot find separate debug info of Fedora /usr/bin/gdb. It is because: lrw

[Lldb-commits] [lldb] r324275 - refactor: DWARFCompileUnit::Producer -> DWARFProducer

2018-02-05 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Mon Feb 5 13:50:01 2018 New Revision: 324275 URL: http://llvm.org/viewvc/llvm-project?rev=324275&view=rev Log: refactor: DWARFCompileUnit::Producer -> DWARFProducer Differential revision: https://reviews.llvm.org/D42891 Modified: lldb/trunk/source/Plugins/SymbolF

[Lldb-commits] [lldb] r327809 - DWARFUnit split out of DWARFCompileUnit

2018-03-18 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Sun Mar 18 13:09:02 2018 New Revision: 327809 URL: http://llvm.org/viewvc/llvm-project?rev=327809&view=rev Log: DWARFUnit split out of DWARFCompileUnit DW_TAG_partial_unit for DWZ can be then presented by DWARFPartialUnit also inherited from DWARFUnit. Differential re

[Lldb-commits] [lldb] r327810 - Move the codebase to use: DWARFCompileUnit -> DWARFUnit

2018-03-18 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Sun Mar 18 13:11:02 2018 New Revision: 327810 URL: http://llvm.org/viewvc/llvm-project?rev=327810&view=rev Log: Move the codebase to use: DWARFCompileUnit -> DWARFUnit Now the codebase can use the DWARFUnit superclass. It will make it later seamlessly work also with DW

[Lldb-commits] [lldb] r329423 - Revert "Cleanup DWARFCompileUnit and DWARFUnit in preparation for adding DWARFTypeUnit"

2018-04-06 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Fri Apr 6 10:11:13 2018 New Revision: 329423 URL: http://llvm.org/viewvc/llvm-project?rev=329423&view=rev Log: Revert "Cleanup DWARFCompileUnit and DWARFUnit in preparation for adding DWARFTypeUnit" The reverted commit changed DWARFUnit from https://reviews.llvm.org/

Re: [Lldb-commits] [PATCH] D45170: Cleanup DWARFCompileUnit and DWARFUnit in preparation for adding DWARFTypeUnit

2018-04-06 Thread Jan Kratochvil via lldb-commits
On Fri, 06 Apr 2018 18:58:27 +0200, Davide Italiano wrote: > Yes, I definitely agree. It's clear this needs more discussion, so I > don't think it's reasonable if we revert this for now and > reconsider. I have reverted this https://reviews.llvm.org/D45170 by: https://reviews.llvm.org/rL32

Re: [Lldb-commits] [PATCH] D45170: Cleanup DWARFCompileUnit and DWARFUnit in preparation for adding DWARFTypeUnit

2018-04-06 Thread Jan Kratochvil via lldb-commits
On Fri, 06 Apr 2018 22:52:05 +0200, Greg Clayton wrote: > Switching over to the LLVM parser will require some detailed work and will > take some time. So should I continue pushing the DWZ patchset even before the reuse of LLVM DWARFUnit happens? > That being said, I am confused as to why this wa

Re: [Lldb-commits] [PATCH] D45170: Cleanup DWARFCompileUnit and DWARFUnit in preparation for adding DWARFTypeUnit

2018-04-07 Thread Jan Kratochvil via lldb-commits
On Sat, 07 Apr 2018 00:52:26 +0200, Greg Clayton wrote: > Take look at how LLVM does it. I believe my changes mirror that approach. LLVM does not support partial units so there is nothing to look at there. > DWARFUnit should be the base class for anything that needs to hand out DIEs. That's OK

Re: [Lldb-commits] [PATCH] D45170: Cleanup DWARFCompileUnit and DWARFUnit in preparation for adding DWARFTypeUnit

2018-04-09 Thread Jan Kratochvil via lldb-commits
On Mon, 09 Apr 2018 11:52:28 +0200, Pavel Labath wrote: > I'm hoping that I can stay clear of > the ongoing work on dwz&type units, as all of this happens in > SymbolFileDWARF, which you don't seem to touch that much. With excluded mass renaming ( https://reviews.llvm.org/D40467 ) and testcases (h

Re: [Lldb-commits] [PATCH] D45170: Cleanup DWARFCompileUnit and DWARFUnit in preparation for adding DWARFTypeUnit

2018-04-10 Thread Jan Kratochvil via lldb-commits
On Tue, 10 Apr 2018 17:46:55 +0200, Greg Clayton wrote: > > On Apr 7, 2018, at 2:04 AM, Jan Kratochvil > > wrote: > > DW_TAG_partial_unit gets read in (by > > DWARFDebugInfo::ParseCompileUnitHeadersIfNeeded) as DWARFCompileUnit because > > there is no quick enough way to find the difference. It

Re: [Lldb-commits] [PATCH] D45170: Cleanup DWARFCompileUnit and DWARFUnit in preparation for adding DWARFTypeUnit

2018-04-10 Thread Jan Kratochvil via lldb-commits
On Wed, 11 Apr 2018 00:22:45 +0200, Greg Clayton wrote: > > On Apr 10, 2018, at 2:38 PM, Jan Kratochvil > > wrote: > > Not only that. Even when DWZ does not use any external file then one > > DW_TAG_partial_unit is included into many DW_TAG_compile_unit and so DIEs > > from > > that DW_TAG_parti

Re: [Lldb-commits] [PATCH] D45170: Cleanup DWARFCompileUnit and DWARFUnit in preparation for adding DWARFTypeUnit

2018-04-10 Thread Jan Kratochvil via lldb-commits
On Wed, 11 Apr 2018 00:53:20 +0200, Jan Kratochvil wrote: > On Wed, 11 Apr 2018 00:22:45 +0200, Greg Clayton wrote: > > If this is all in the same file, then the offsets are all in the > > .debug_info? What am I missing? > > LLVM was asserting when I reported the same lldb::user_id_t referenced by

Re: [Lldb-commits] [PATCH] D45170: Cleanup DWARFCompileUnit and DWARFUnit in preparation for adding DWARFTypeUnit

2018-04-11 Thread Jan Kratochvil via lldb-commits
On Wed, 11 Apr 2018 01:24:53 +0200, Jan Kratochvil wrote: > On Wed, 11 Apr 2018 00:53:20 +0200, Jan Kratochvil wrote: > > On Wed, 11 Apr 2018 00:22:45 +0200, Greg Clayton wrote: > > > If this is all in the same file, then the offsets are all in the > > > .debug_info? What am I missing? > > > > LLV

[Lldb-commits] [lldb] r330084 - Reapply "Cleanup DWARFCompileUnit and DWARFUnit in preparation for adding DWARFTypeUnit".

2018-04-14 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Sat Apr 14 04:12:52 2018 New Revision: 330084 URL: http://llvm.org/viewvc/llvm-project?rev=330084&view=rev Log: Reapply "Cleanup DWARFCompileUnit and DWARFUnit in preparation for adding DWARFTypeUnit". This patch by Greg Clayton drops the virtualization for DWARFParti

Re: [Lldb-commits] [PATCH] D45170: Cleanup DWARFCompileUnit and DWARFUnit in preparation for adding DWARFTypeUnit

2018-04-14 Thread Jan Kratochvil via lldb-commits
On Wed, 11 Apr 2018 13:46:29 +0200, Jan Kratochvil wrote: > If you think it is workaroundable I can get deeper into it but this is why I > decided each effective (=imported) DIE should have its unique lldb::user_id_t. I have tested some proof of concept on top of my DWZ patchset and it passes the

[Lldb-commits] [lldb] r331148 - Support reading section ".gnu_debugaltlink"

2018-04-29 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Sun Apr 29 12:47:48 2018 New Revision: 331148 URL: http://llvm.org/viewvc/llvm-project?rev=331148&view=rev Log: Support reading section ".gnu_debugaltlink" Differential revision: https://reviews.llvm.org/D40468 Added: lldb/trunk/lit/Modules/dwarf-gnu-debugaltlink.

[Lldb-commits] [lldb] r331194 - Match also DW_TAG_partial_unit when DW_TAG_compile_unit is matched

2018-04-30 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Mon Apr 30 09:04:32 2018 New Revision: 331194 URL: http://llvm.org/viewvc/llvm-project?rev=331194&view=rev Log: Match also DW_TAG_partial_unit when DW_TAG_compile_unit is matched Code commonly checks if the parent DIE is DW_TAG_compile_unit. But DW_TAG_partial_unit als

[Lldb-commits] [lldb] r331229 - Protect DWARFCompileUnit::m_die_array by a new mutex

2018-04-30 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Mon Apr 30 14:37:30 2018 New Revision: 331229 URL: http://llvm.org/viewvc/llvm-project?rev=331229&view=rev Log: Protect DWARFCompileUnit::m_die_array by a new mutex Multiple DW_TAG_compile_unit being indexed in a multithreaded way can request reading of the same DW_TAG

[Lldb-commits] [lldb] r309581 - Fix LLDB crash accessing unknown DW_FORM_* attributes

2017-08-09 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Mon Jul 31 10:02:52 2017 New Revision: 309581 URL: http://llvm.org/viewvc/llvm-project?rev=309581&view=rev Log: Fix LLDB crash accessing unknown DW_FORM_* attributes Current LLDB (that is without DWZ support) crashes accessing Fedora debug info: READ of size 8 at 0x602

[Lldb-commits] [lldb] r312562 - Fix DW_FORM_strp parsing

2017-09-05 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Tue Sep 5 12:01:01 2017 New Revision: 312562 URL: http://llvm.org/viewvc/llvm-project?rev=312562&view=rev Log: Fix DW_FORM_strp parsing Differential revision: https://reviews.llvm.org/D37441 Modified: lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry

[Lldb-commits] [lldb] r353280 - Fix strlen() of unbound array undefined behavior

2019-02-06 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Wed Feb 6 00:44:13 2019 New Revision: 353280 URL: http://llvm.org/viewvc/llvm-project?rev=353280&view=rev Log: Fix strlen() of unbound array undefined behavior LLDB testsuite fails when built by GCC8 on: LLDB :: SymbolFile/DWARF/find-basic-namespace.cpp This is bec

[Lldb-commits] [lldb] r354225 - Remove unused extern declaration as removed by D32167

2019-02-17 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Sun Feb 17 09:12:37 2019 New Revision: 354225 URL: http://llvm.org/viewvc/llvm-project?rev=354225&view=rev Log: Remove unused extern declaration as removed by D32167 Modified: lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.cpp Modified: lldb/trunk/sou

Re: [Lldb-commits] [lldb] r354425 - [TestModuleCXX] Use UNSUPPORTED instead of REQUIRES

2019-02-20 Thread Jan Kratochvil via lldb-commits
On Wed, 20 Feb 2019 02:49:16 +0100, Jonas Devlieghere via lldb-commits wrote: > Author: jdevlieghere > Date: Tue Feb 19 17:49:16 2019 > New Revision: 354425 ... > --- lldb/trunk/lit/Reproducer/Modules/TestModuleCXX.test (original) > +++ lldb/trunk/lit/Reproducer/Modules/TestModuleCXX.test Tue Feb 1

[Lldb-commits] [lldb] r354556 - testsuite: Fix TestCompDirSymLink and TestSourceManager on Linux with symlinked build dir

2019-02-21 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Thu Feb 21 01:05:27 2019 New Revision: 354556 URL: http://llvm.org/viewvc/llvm-project?rev=354556&view=rev Log: testsuite: Fix TestCompDirSymLink and TestSourceManager on Linux with symlinked build dir Getting failure when building in a directory which is symlinked el

[Lldb-commits] [lldb] r355554 - Sanity check --max-gdbserver-port

2019-03-06 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Wed Mar 6 13:52:19 2019 New Revision: 34 URL: http://llvm.org/viewvc/llvm-project?rev=34&view=rev Log: Sanity check --max-gdbserver-port In mail [lldb-dev] Remote debugging a docker process https://lists.llvm.org/pipermail/lldb-dev/2019-March/0

[Lldb-commits] [lldb] r355579 - Skip TestGdbserverPort.test on Windows

2019-03-06 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Wed Mar 6 19:41:00 2019 New Revision: 355579 URL: http://llvm.org/viewvc/llvm-project?rev=355579&view=rev Log: Skip TestGdbserverPort.test on Windows lldb/cmake/modules/LLDBConfig.cmake does not build lldb-server on Windows: if (CMAKE_SYSTEM_NAME MATCHES "Android|Darw

[Lldb-commits] [lldb] r355611 - Fix TestDataFormatter.test uninitialized variable

2019-03-07 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Thu Mar 7 09:35:47 2019 New Revision: 355611 URL: http://llvm.org/viewvc/llvm-project?rev=355611&view=rev Log: Fix TestDataFormatter.test uninitialized variable After D55626 I see a failure in my Fedora buildbot. There is uninitialized variable as the Foo constructor

[Lldb-commits] [lldb] r357678 - Add dropped ManualDWARFIndex assert()

2019-04-04 Thread Jan Kratochvil via lldb-commits
Author: jankratochvil Date: Thu Apr 4 02:24:02 2019 New Revision: 357678 URL: http://llvm.org/viewvc/llvm-project?rev=357678&view=rev Log: Add dropped ManualDWARFIndex assert() D47253 dropped this assertion. Differential Revision: https://reviews.llvm.org/D60254 Modified: lldb/trunk/source

[Lldb-commits] [lldb] ff94f60 - [lldb] [testsuite] Fix false failures on "\n" regex match

2021-09-12 Thread Jan Kratochvil via lldb-commits
Author: Jan Kratochvil Date: 2021-09-13T07:35:12+02:00 New Revision: ff94f6024082ecd6b8a236b0953d3ce2d240cc64 URL: https://github.com/llvm/llvm-project/commit/ff94f6024082ecd6b8a236b0953d3ce2d240cc64 DIFF: https://github.com/llvm/llvm-project/commit/ff94f6024082ecd6b8a236b0953d3ce2d240cc64.diff

[Lldb-commits] [lldb] e93bade - [nfc] [lldb] Remove unused DIEPointerSet, DeclToDIEMap and m_decl_to_die

2021-09-17 Thread Jan Kratochvil via lldb-commits
Author: Jan Kratochvil Date: 2021-09-17T21:51:36+02:00 New Revision: e93baded39578d62139656833c9b926d5cf78ba5 URL: https://github.com/llvm/llvm-project/commit/e93baded39578d62139656833c9b926d5cf78ba5 DIFF: https://github.com/llvm/llvm-project/commit/e93baded39578d62139656833c9b926d5cf78ba5.diff

[Lldb-commits] [lldb] fffb975 - [lldb] Fix libstdc++ 11's std::unique_ptr affecting LLDB testsuite TestDataFormatterStdUniquePtr.py

2021-06-15 Thread Jan Kratochvil via lldb-commits
Author: Jan Kratochvil Date: 2021-06-15T11:19:20+02:00 New Revision: fffb975095119adb5f91be4e3c83ac0cb4b1602c URL: https://github.com/llvm/llvm-project/commit/fffb975095119adb5f91be4e3c83ac0cb4b1602c DIFF: https://github.com/llvm/llvm-project/commit/fffb975095119adb5f91be4e3c83ac0cb4b1602c.diff

[Lldb-commits] [lldb] e825c24 - [lldb] Fix Recognizer/assert.test with glibc-2.33.9000-31.fc35.x86_64

2021-07-01 Thread Jan Kratochvil via lldb-commits
Author: Jan Kratochvil Date: 2021-07-01T09:16:07+02:00 New Revision: e825c244b6063344ae726600d6a1225a05788dfa URL: https://github.com/llvm/llvm-project/commit/e825c244b6063344ae726600d6a1225a05788dfa DIFF: https://github.com/llvm/llvm-project/commit/e825c244b6063344ae726600d6a1225a05788dfa.diff

[Lldb-commits] [lldb] 7274848 - [lldb] Fix editline unicode on Linux

2021-07-13 Thread Jan Kratochvil via lldb-commits
Author: Jan Kratochvil Date: 2021-07-13T12:37:53+02:00 New Revision: 72748488addd651beb7b60da462c721f3e175357 URL: https://github.com/llvm/llvm-project/commit/72748488addd651beb7b60da462c721f3e175357 DIFF: https://github.com/llvm/llvm-project/commit/72748488addd651beb7b60da462c721f3e175357.diff

[Lldb-commits] [lldb] 278df28 - [nfc] [lldb] Rename GetRnglist() to GetRnglistTable()

2021-07-21 Thread Jan Kratochvil via lldb-commits
Author: Jan Kratochvil Date: 2021-07-21T10:45:37+02:00 New Revision: 278df28557f138481ac852d2d064d4c27626048a URL: https://github.com/llvm/llvm-project/commit/278df28557f138481ac852d2d064d4c27626048a DIFF: https://github.com/llvm/llvm-project/commit/278df28557f138481ac852d2d064d4c27626048a.diff

[Lldb-commits] [lldb] 2e9853e - [DWARF5] Only fallback to manual index if no entry was found

2021-07-29 Thread Jan Kratochvil via lldb-commits
Author: Kim-Anh Tran Date: 2021-07-29T16:16:42+02:00 New Revision: 2e9853e0e9ff263a948ebef70221fd0cec9c4830 URL: https://github.com/llvm/llvm-project/commit/2e9853e0e9ff263a948ebef70221fd0cec9c4830 DIFF: https://github.com/llvm/llvm-project/commit/2e9853e0e9ff263a948ebef70221fd0cec9c4830.diff

[Lldb-commits] [lldb] e7b8ba1 - [lldb] [DWARF-5] Be lazier about loading .dwo files

2021-07-30 Thread Jan Kratochvil via lldb-commits
Author: Eric Leese Date: 2021-07-30T13:34:51+02:00 New Revision: e7b8ba103a8411fb25237727c3822d4c431e4814 URL: https://github.com/llvm/llvm-project/commit/e7b8ba103a8411fb25237727c3822d4c431e4814 DIFF: https://github.com/llvm/llvm-project/commit/e7b8ba103a8411fb25237727c3822d4c431e4814.diff LO

[Lldb-commits] [lldb] d0e6d94 - Revert "[lldb] [DWARF-5] Be lazier about loading .dwo files"

2021-07-30 Thread Jan Kratochvil via lldb-commits
Author: Jan Kratochvil Date: 2021-07-30T14:54:27+02:00 New Revision: d0e6d946b6db87a6310c43aac1788345c8990182 URL: https://github.com/llvm/llvm-project/commit/d0e6d946b6db87a6310c43aac1788345c8990182 DIFF: https://github.com/llvm/llvm-project/commit/d0e6d946b6db87a6310c43aac1788345c8990182.diff

[Lldb-commits] [lldb] 8dfd6ca - [lldb] [DWARF-5] Be lazier about loading .dwo files

2021-07-30 Thread Jan Kratochvil via lldb-commits
Author: Eric Leese Date: 2021-07-30T23:17:06+02:00 New Revision: 8dfd6cae9bd62ae5ef056b994ece2e98f1558830 URL: https://github.com/llvm/llvm-project/commit/8dfd6cae9bd62ae5ef056b994ece2e98f1558830 DIFF: https://github.com/llvm/llvm-project/commit/8dfd6cae9bd62ae5ef056b994ece2e98f1558830.diff LO

[Lldb-commits] [lldb] fb09f36 - [lldb] [DWARF-5] Be lazier about loading .dwo files

2021-07-31 Thread Jan Kratochvil via lldb-commits
Author: Eric Leese Date: 2021-07-31T10:45:31+02:00 New Revision: fb09f365ae28920666ddfd466fb09b44b9cb7be1 URL: https://github.com/llvm/llvm-project/commit/fb09f365ae28920666ddfd466fb09b44b9cb7be1 DIFF: https://github.com/llvm/llvm-project/commit/fb09f365ae28920666ddfd466fb09b44b9cb7be1.diff LO

[Lldb-commits] [lldb] 6ef6616 - [nfc] [lldb] Removed unused DWARFDebugInfo::GetDIEForDIEOffset

2021-07-31 Thread Jan Kratochvil via lldb-commits
Author: Jan Kratochvil Date: 2021-08-01T00:38:01+02:00 New Revision: 6ef6616e07f5be69557e744fc28459d6051cfa9c URL: https://github.com/llvm/llvm-project/commit/6ef6616e07f5be69557e744fc28459d6051cfa9c DIFF: https://github.com/llvm/llvm-project/commit/6ef6616e07f5be69557e744fc28459d6051cfa9c.diff

[Lldb-commits] [lldb] ea97066 - [test] [lldb] Use filename instead of index in test

2021-08-02 Thread Jan Kratochvil via lldb-commits
Author: Eric Leese Date: 2021-08-02T21:12:57+02:00 New Revision: ea9706626ce3f83b8433849049cc3c64b6b7297c URL: https://github.com/llvm/llvm-project/commit/ea9706626ce3f83b8433849049cc3c64b6b7297c DIFF: https://github.com/llvm/llvm-project/commit/ea9706626ce3f83b8433849049cc3c64b6b7297c.diff LO

[Lldb-commits] [lldb] 437e37d - [nfc] [lldb] Support moving support files instead of copy

2021-08-02 Thread Jan Kratochvil via lldb-commits
Author: Eric Leese Date: 2021-08-02T21:43:34+02:00 New Revision: 437e37dd553917ef890821d5045f898f065e4d47 URL: https://github.com/llvm/llvm-project/commit/437e37dd553917ef890821d5045f898f065e4d47 DIFF: https://github.com/llvm/llvm-project/commit/437e37dd553917ef890821d5045f898f065e4d47.diff LO

[Lldb-commits] [lldb] 14f4430 - [nfc] [lldb] Prevent needless copies of DataExtractor

2021-08-04 Thread Jan Kratochvil via lldb-commits
Author: Jan Kratochvil Date: 2021-08-04T20:35:53+02:00 New Revision: 14f443030c1acc4346589aee3c1c532dc00eae3a URL: https://github.com/llvm/llvm-project/commit/14f443030c1acc4346589aee3c1c532dc00eae3a DIFF: https://github.com/llvm/llvm-project/commit/14f443030c1acc4346589aee3c1c532dc00eae3a.diff

[Lldb-commits] [lldb] f3932b9 - [nfc] [lldb] Assertions for D106270 - [DWARF5] Fix offset check when using .debug_names

2021-08-10 Thread Jan Kratochvil via lldb-commits
Author: Jan Kratochvil Date: 2021-08-10T20:43:24+02:00 New Revision: f3932b9a0b0b7787ccd3572bad134acc4146acaa URL: https://github.com/llvm/llvm-project/commit/f3932b9a0b0b7787ccd3572bad134acc4146acaa DIFF: https://github.com/llvm/llvm-project/commit/f3932b9a0b0b7787ccd3572bad134acc4146acaa.diff

[Lldb-commits] [lldb] e21a21a - [lldb] Fix#2 of DW_AT_ranges DW_FORM_sec_offset not using DW_AT_rnglists_base (used by GCC)

2021-08-17 Thread Jan Kratochvil via lldb-commits
Author: Jan Kratochvil Date: 2021-08-17T22:19:16+02:00 New Revision: e21a21a977b492cc7172779d080db146e3c39e06 URL: https://github.com/llvm/llvm-project/commit/e21a21a977b492cc7172779d080db146e3c39e06 DIFF: https://github.com/llvm/llvm-project/commit/e21a21a977b492cc7172779d080db146e3c39e06.diff

[Lldb-commits] [lldb] cf1046c - [lldb] Fix+re-enable Assert StackFrame Recognizer on Linux

2020-02-07 Thread Jan Kratochvil via lldb-commits
Author: Jan Kratochvil Date: 2020-02-07T22:24:56+01:00 New Revision: cf1046c716b33ed449aa8fc26376864917c63c25 URL: https://github.com/llvm/llvm-project/commit/cf1046c716b33ed449aa8fc26376864917c63c25 DIFF: https://github.com/llvm/llvm-project/commit/cf1046c716b33ed449aa8fc26376864917c63c25.diff

[Lldb-commits] [lldb] 6ef4786 - Revert "[lldb] Fix+re-enable Assert StackFrame Recognizer on Linux"

2020-02-07 Thread Jan Kratochvil via lldb-commits
Author: Jan Kratochvil Date: 2020-02-08T05:08:48+01:00 New Revision: 6ef4786dbcd47cfe346ee8679ba0b4d320da797d URL: https://github.com/llvm/llvm-project/commit/6ef4786dbcd47cfe346ee8679ba0b4d320da797d DIFF: https://github.com/llvm/llvm-project/commit/6ef4786dbcd47cfe346ee8679ba0b4d320da797d.diff

[Lldb-commits] [lldb] 420a518 - [lldb] [testsuite] TestGdbRemoteLibrariesSvr4Support: Fix symlinked builddir

2020-02-09 Thread Jan Kratochvil via lldb-commits
Author: Jan Kratochvil Date: 2020-02-09T14:49:38+01:00 New Revision: 420a51806850a20ebf4144699457de84513f6abc URL: https://github.com/llvm/llvm-project/commit/420a51806850a20ebf4144699457de84513f6abc DIFF: https://github.com/llvm/llvm-project/commit/420a51806850a20ebf4144699457de84513f6abc.diff

[Lldb-commits] [lldb] 8b37e1e - [lldb] [doc] Testing: Fix typos

2020-02-09 Thread Jan Kratochvil via lldb-commits
Author: Jan Kratochvil Date: 2020-02-09T15:11:38+01:00 New Revision: 8b37e1e5ac090a498eb4940be3264e9d5ba8c97c URL: https://github.com/llvm/llvm-project/commit/8b37e1e5ac090a498eb4940be3264e9d5ba8c97c DIFF: https://github.com/llvm/llvm-project/commit/8b37e1e5ac090a498eb4940be3264e9d5ba8c97c.diff

[Lldb-commits] [lldb] 74857b4 - [lldb] [doc] Status: Debugserver (remote debugging) is OK now

2020-02-09 Thread Jan Kratochvil via lldb-commits
Author: Jan Kratochvil Date: 2020-02-09T15:22:36+01:00 New Revision: 74857b4260ec9db8d688c2d377a5f370efc150b4 URL: https://github.com/llvm/llvm-project/commit/74857b4260ec9db8d688c2d377a5f370efc150b4 DIFF: https://github.com/llvm/llvm-project/commit/74857b4260ec9db8d688c2d377a5f370efc150b4.diff

[Lldb-commits] [lldb] 9d223a0 - [lldb] [doc] Status: Linux: Update the paragraph

2020-02-09 Thread Jan Kratochvil via lldb-commits
Author: Jan Kratochvil Date: 2020-02-09T18:13:04+01:00 New Revision: 9d223a0106d0bde18aa6e353ec338206b235e3f2 URL: https://github.com/llvm/llvm-project/commit/9d223a0106d0bde18aa6e353ec338206b235e3f2 DIFF: https://github.com/llvm/llvm-project/commit/9d223a0106d0bde18aa6e353ec338206b235e3f2.diff

[Lldb-commits] [lldb] d2e0fee - [lldb] [doc] Change sample commands prefix from > to $

2020-02-10 Thread Jan Kratochvil via lldb-commits
Author: Jan Kratochvil Date: 2020-02-10T09:50:37+01:00 New Revision: d2e0fee77bc82a54bcc11ce778ce12f068f9e326 URL: https://github.com/llvm/llvm-project/commit/d2e0fee77bc82a54bcc11ce778ce12f068f9e326 DIFF: https://github.com/llvm/llvm-project/commit/d2e0fee77bc82a54bcc11ce778ce12f068f9e326.diff

[Lldb-commits] [lldb] 1a39f1b - [lldb] Fix+re-enable Assert StackFrame Recognizer on Linux

2020-02-10 Thread Jan Kratochvil via lldb-commits
Author: Jan Kratochvil Date: 2020-02-10T10:29:32+01:00 New Revision: 1a39f1b966a8d8f15ed0d5a832d5097cccefe93b URL: https://github.com/llvm/llvm-project/commit/1a39f1b966a8d8f15ed0d5a832d5097cccefe93b DIFF: https://github.com/llvm/llvm-project/commit/1a39f1b966a8d8f15ed0d5a832d5097cccefe93b.diff

[Lldb-commits] [lldb] 98c940b - [NFC] [lldb] Remove unused declaration

2020-02-11 Thread Jan Kratochvil via lldb-commits
Author: Jan Kratochvil Date: 2020-02-11T14:59:52+01:00 New Revision: 98c940bf515831420b8b53489dd4f9a4fc8a40ad URL: https://github.com/llvm/llvm-project/commit/98c940bf515831420b8b53489dd4f9a4fc8a40ad DIFF: https://github.com/llvm/llvm-project/commit/98c940bf515831420b8b53489dd4f9a4fc8a40ad.diff

[Lldb-commits] [lldb] 516ba15 - [lldb] [nfc] Simplify user_id_t -> size_t

2020-02-17 Thread Jan Kratochvil via lldb-commits
Author: Jan Kratochvil Date: 2020-02-17T10:24:19+01:00 New Revision: 516ba158b6890bbcca71527ae0719de151b9de5f URL: https://github.com/llvm/llvm-project/commit/516ba158b6890bbcca71527ae0719de151b9de5f DIFF: https://github.com/llvm/llvm-project/commit/516ba158b6890bbcca71527ae0719de151b9de5f.diff

[Lldb-commits] [lldb] 2178088 - Separate DIERef vs. user_id_t: m_function_scope_qualified_name_map

2020-02-17 Thread Jan Kratochvil via lldb-commits
Author: Jan Kratochvil Date: 2020-02-17T16:35:42+01:00 New Revision: 21780888791837b575d227a9a69c1afee9e4c29d URL: https://github.com/llvm/llvm-project/commit/21780888791837b575d227a9a69c1afee9e4c29d DIFF: https://github.com/llvm/llvm-project/commit/21780888791837b575d227a9a69c1afee9e4c29d.diff

[Lldb-commits] [lldb] aa3e99d - [lldb] [nfc] Separate DIERef vs. user_id_t: GetForwardDeclClangTypeToDie()

2020-02-18 Thread Jan Kratochvil via lldb-commits
Author: Jan Kratochvil Date: 2020-02-18T18:09:39+01:00 New Revision: aa3e99dc859febba398925afeefb118403e15ab9 URL: https://github.com/llvm/llvm-project/commit/aa3e99dc859febba398925afeefb118403e15ab9 DIFF: https://github.com/llvm/llvm-project/commit/aa3e99dc859febba398925afeefb118403e15ab9.diff

[Lldb-commits] [lldb] 3481062 - [lldb] [testsuite] Enable forgotten -gsplit-dwarf for 2 testfiles

2020-03-18 Thread Jan Kratochvil via lldb-commits
Author: Jan Kratochvil Date: 2020-03-18T15:49:24+01:00 New Revision: 3481062bc688e21eac175aae0142adcaae361c1c URL: https://github.com/llvm/llvm-project/commit/3481062bc688e21eac175aae0142adcaae361c1c DIFF: https://github.com/llvm/llvm-project/commit/3481062bc688e21eac175aae0142adcaae361c1c.diff

[Lldb-commits] [lldb] 8023752 - [nfc] [lldb] Unindent code - obvious part

2020-04-03 Thread Jan Kratochvil via lldb-commits
Author: Jan Kratochvil Date: 2020-04-03T21:58:11+02:00 New Revision: 80237523193d1311e8744b84faa077a1295d80da URL: https://github.com/llvm/llvm-project/commit/80237523193d1311e8744b84faa077a1295d80da DIFF: https://github.com/llvm/llvm-project/commit/80237523193d1311e8744b84faa077a1295d80da.diff

[Lldb-commits] [lldb] fcab66d - [lldb] Findtypes -gmodules fix for too many matches

2020-04-03 Thread Jan Kratochvil via lldb-commits
Author: Jan Kratochvil Date: 2020-04-04T00:15:06+02:00 New Revision: fcab66d5fe53fc3c318b0d0c4ef1bb4a43a7744f URL: https://github.com/llvm/llvm-project/commit/fcab66d5fe53fc3c318b0d0c4ef1bb4a43a7744f DIFF: https://github.com/llvm/llvm-project/commit/fcab66d5fe53fc3c318b0d0c4ef1bb4a43a7744f.diff

Re: [Lldb-commits] [lldb] b6cd964 - Fix typo in xfail decorator for lldb thread plan list tests

2020-04-06 Thread Jan Kratochvil via lldb-commits
Hi, I get XPASSes now on Fedora 31 x86_64: http://lab.llvm.org:8014/builders/lldb-x86_64-fedora/builds/7169 http://lab.llvm.org:8014/builders/lldb-x86_64-fedora?numbuilds=1000 So maybe to remove the expected failure? Jan On Sun, 05 Apr 2020 17:18:54 +0200, Muhammad Omair Javaid via lldb-com

[Lldb-commits] [lldb] 8fbac4e - [nfc] [lldb] Unindent code

2020-04-09 Thread Jan Kratochvil via lldb-commits
Author: Jan Kratochvil Date: 2020-04-09T20:43:00+02:00 New Revision: 8fbac4e1a2f2506671ca06226e4513a5965bdbf5 URL: https://github.com/llvm/llvm-project/commit/8fbac4e1a2f2506671ca06226e4513a5965bdbf5 DIFF: https://github.com/llvm/llvm-project/commit/8fbac4e1a2f2506671ca06226e4513a5965bdbf5.diff

[Lldb-commits] [lldb] 0833128 - [lldb/Commands] Fix help text typo for 'breakpoint set' -a|--address.

2021-02-19 Thread Jan Kratochvil via lldb-commits
Author: Jan Kratochvil Date: 2021-02-19T14:33:42+01:00 New Revision: 08331281af7bebf76d541cfb33d01dca22ed4d79 URL: https://github.com/llvm/llvm-project/commit/08331281af7bebf76d541cfb33d01dca22ed4d79 DIFF: https://github.com/llvm/llvm-project/commit/08331281af7bebf76d541cfb33d01dca22ed4d79.diff

[Lldb-commits] [lldb] 011e7bc - Revert "[lldb] Fix handling of `DW_AT_decl_file` according to D91014"

2021-03-01 Thread Jan Kratochvil via lldb-commits
Author: Jan Kratochvil Date: 2021-03-01T20:45:30+01:00 New Revision: 011e7bcaa3194ed4ca3fec48263f5ef69fc1813c URL: https://github.com/llvm/llvm-project/commit/011e7bcaa3194ed4ca3fec48263f5ef69fc1813c DIFF: https://github.com/llvm/llvm-project/commit/011e7bcaa3194ed4ca3fec48263f5ef69fc1813c.diff

[Lldb-commits] [lldb] 4096ae0 - [lldb] Support DWARF-5 DW_FORM_line_strp (used by GCC)

2021-03-02 Thread Jan Kratochvil via lldb-commits
Author: Jan Kratochvil Date: 2021-03-02T15:17:23+01:00 New Revision: 4096ae06f47af9db2c2550a2c34979edfbd91b8d URL: https://github.com/llvm/llvm-project/commit/4096ae06f47af9db2c2550a2c34979edfbd91b8d DIFF: https://github.com/llvm/llvm-project/commit/4096ae06f47af9db2c2550a2c34979edfbd91b8d.diff

[Lldb-commits] [lldb] 61c2932 - [lldb] DWARFDebugInfoEntry::Extract(): Print an error for unsupported DW_FORM_*

2021-03-02 Thread Jan Kratochvil via lldb-commits
Author: Jan Kratochvil Date: 2021-03-02T16:39:04+01:00 New Revision: 61c29321b3dffa3ae45483dd7678faedaef535a7 URL: https://github.com/llvm/llvm-project/commit/61c29321b3dffa3ae45483dd7678faedaef535a7 DIFF: https://github.com/llvm/llvm-project/commit/61c29321b3dffa3ae45483dd7678faedaef535a7.diff

  1   2   >