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
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
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
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
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:
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.
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
___
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
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
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:
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
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
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
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
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
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
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
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
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
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
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
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/
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
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
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
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
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
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
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
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
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
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
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.
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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 - 100 of 183 matches
Mail list logo