nitesh.jain created this revision.
nitesh.jain added reviewers: clayborg, ovehakola, emaste.
nitesh.jain added subscribers: jaydeep, bhushan, sagar, mohit.bhakkad,
lldb-commits.
nitesh.jain set the repository for this revision to rL LLVM.
This patch adds check for the correctness of Disassembling
Author: bhushan.attarde
Date: Tue Jan 5 23:44:02 2016
New Revision: 256915
URL: http://llvm.org/viewvc/llvm-project?rev=256915&view=rev
Log:
[LLDB][MIPS32]Merge emulation of similar instructions
SUMMARY:
This patch merges emulation of similar instructions into a single function
(whe
Author: kate
Date: Tue Jan 5 18:33:07 2016
New Revision: 256888
URL: http://llvm.org/viewvc/llvm-project?rev=256888&view=rev
Log:
Addresses an unsigned underflow situation that can occur when dumping an empty
command history.
One example where this occurs in practice is starting the Swift REPL
dawn added a comment.
Amended patch was committed in svn r256877 (svn at lldb.org is back up now)
Repository:
rL LLVM
http://reviews.llvm.org/D15593
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/l
This revision was automatically updated to reflect the committed changes.
Closed by commit rL256877: Apply missed changes from svn r256863 "Add support
for "source info" and use⦠(authored by dperchik).
Changed prior to commit:
http://reviews.llvm.org/D15904?vs=44061&id=44067#toc
Repository:
Author: dperchik
Date: Tue Jan 5 18:03:43 2016
New Revision: 256877
URL: http://llvm.org/viewvc/llvm-project?rev=256877&view=rev
Log:
Apply missed changes from svn r256863 "Add support for "source info" and use it
to fix MI's -symbol-list-lines.".
Patch is part of Differential Revision: http://
dawn added a comment.
Amended patch was posted to http://reviews.llvm.org/D15593 - hopefully someone
who can get to llvm.org will commit.
Repository:
rL LLVM
http://reviews.llvm.org/D15593
___
lldb-commits mailing list
lldb-commits@lists.llvm.or
dawn created this revision.
dawn added a reviewer: lldb-commits.
dawn added a subscriber: lldb-commits.
dawn set the repository for this revision to rL LLVM.
This patch includes missed changes that should have gone in with r256863, but I
can't get to svn at lldb.org at the moment (is it down?), s
dawn added a comment.
I forgot to commit updated changes to the tests:
MiSymbolTestCase.test_lldbmi_symbol_list_lines_file
HelpCommandTestCase.test_help_image_du_line_should_work
so they are failing now, but svn at llvm.org appears to be down at the moment.
I'll commit those changes as soon
Author: dperchik
Date: Tue Jan 5 13:51:51 2016
New Revision: 256863
URL: http://llvm.org/viewvc/llvm-project?rev=256863&view=rev
Log:
Add support for "source info" and use it to fix MI's -symbol-list-lines.
This patch adds support the command 'source info' as follows:
(lldb) help source info
This revision was automatically updated to reflect the committed changes.
Closed by commit rL256863: Add support for "source info" and use it to fix MI's
-symbol-list-lines. (authored by dperchik).
Changed prior to commit:
http://reviews.llvm.org/D15593?vs=43429&id=44038#toc
Repository:
rL L
dawn added a comment.
In http://reviews.llvm.org/D15593#319670, @clayborg wrote:
> ... in the future when adding things for MI, please add an API in the
> lldb::SB layer to do what you need.
Thanks for not asking me to do that as part of this patch.
> Text scraping is really not the solution
clayborg requested changes to this revision.
clayborg added a comment.
This revision now requires changes to proceed.
Seems like it would be better to mimic how @expectedFailureAndroid works. See
inlined comments.
Comment at:
packages/Python/lldbsuite/test/functionalities/watc
clayborg accepted this revision.
clayborg added a comment.
This revision is now accepted and ready to land.
Looks fine.
Repository:
rL LLVM
http://reviews.llvm.org/D15886
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm
clayborg accepted this revision.
clayborg added a comment.
So I am going to let this through because you have done all we asked and I
really like the "source info" command!
But in the future when adding things for MI, please add an API in the lldb::SB
layer to do what you need. Text scraping is
Author: labath
Date: Tue Jan 5 11:55:29 2016
New Revision: 256851
URL: http://llvm.org/viewvc/llvm-project?rev=256851&view=rev
Log:
Fix a typo in lldbutil.py
Modified:
lldb/trunk/packages/Python/lldbsuite/test/lldbutil.py
Modified: lldb/trunk/packages/Python/lldbsuite/test/lldbutil.py
URL:
Author: labath
Date: Tue Jan 5 11:55:35 2016
New Revision: 256853
URL: http://llvm.org/viewvc/llvm-project?rev=256853&view=rev
Log:
Add logging to SBProcess::GetRestartedFromEvent
Modified:
lldb/trunk/source/API/SBProcess.cpp
Modified: lldb/trunk/source/API/SBProcess.cpp
URL:
http://llvm.o
Author: labath
Date: Tue Jan 5 11:55:32 2016
New Revision: 256852
URL: http://llvm.org/viewvc/llvm-project?rev=256852&view=rev
Log:
Fix a typo in Process.cpp
Modified:
lldb/trunk/source/Target/Process.cpp
Modified: lldb/trunk/source/Target/Process.cpp
URL:
http://llvm.org/viewvc/llvm-proje
omjavaid created this revision.
omjavaid added a reviewer: clayborg.
omjavaid added a subscriber: lldb-commits.
Herald added subscribers: rengolin, aemerson.
This patch adds a new expectedFailureArmLinux which marks arm-linux tests as
xfails.
Also marked a couple of failing tests to use expected
This revision was automatically updated to reflect the committed changes.
Closed by commit rL256847: Fix for undefined behavior while updating PC value
on arm-linux (authored by omjavaid).
Changed prior to commit:
http://reviews.llvm.org/D15877?vs=43941&id=44015#toc
Repository:
rL LLVM
http
Author: omjavaid
Date: Tue Jan 5 10:56:13 2016
New Revision: 256847
URL: http://llvm.org/viewvc/llvm-project?rev=256847&view=rev
Log:
Fix for undefined behavior while updating PC value on arm-linux
Differential revision: http://reviews.llvm.org/D15877
Modified:
lldb/trunk/source/Plugins/Pr
ldrumm added a subscriber: lldb-commits.
ldrumm updated this revision to Diff 44000.
ldrumm added a comment.
Addresses @clayborg's feedback in http://reviews.llvm.org/D15773
http://reviews.llvm.org/D15773
Files:
source/Core/StringList.cpp
Index: source/Core/StringList.cpp
===
Author: labath
Date: Tue Jan 5 08:21:15 2016
New Revision: 256835
URL: http://llvm.org/viewvc/llvm-project?rev=256835&view=rev
Log:
Mark a test_lldbmi_gdb_set_target_async_on as flaky on linux
Test fails in about 1% of buildbot runs. Marking as flaky to avoid the noise.
Modified:
lldb/trunk
sagar closed this revision.
sagar marked an inline comment as done.
sagar added a comment.
Committed in revision 256834
Repository:
rL LLVM
http://reviews.llvm.org/D15884
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm
Author: slthakur
Date: Tue Jan 5 08:03:45 2016
New Revision: 256834
URL: http://llvm.org/viewvc/llvm-project?rev=256834&view=rev
Log:
[LLDB][MIPS] Make register read/write to set/get the size of register according
to abi.
Summary:
For O32 abi register size should be 4 bytes.
For N32 and N64 abi
Author: ewancrawford
Date: Tue Jan 5 07:18:46 2016
New Revision: 256833
URL: http://llvm.org/viewvc/llvm-project?rev=256833&view=rev
Log:
Revert r256769
Reverts "Use correct format identifiers to print something meaningful."
Original format specifiers were correct.
Instead use void* casts to re
Author: labath
Date: Tue Jan 5 06:51:26 2016
New Revision: 256827
URL: http://llvm.org/viewvc/llvm-project?rev=256827&view=rev
Log:
Remove XTIMEOUT from TestEvents on linux
I'm getting rid of the expected timeouts. I'll XFAIL/skip any tests that show
up as failing after
this (I haven't seen any
This revision was automatically updated to reflect the committed changes.
Closed by commit rL256824: Remove old flaky test rerun logic (authored by
labath).
Changed prior to commit:
http://reviews.llvm.org/D15855?vs=43871&id=43974#toc
Repository:
rL LLVM
http://reviews.llvm.org/D15855
File
Author: labath
Date: Tue Jan 5 04:44:36 2016
New Revision: 256824
URL: http://llvm.org/viewvc/llvm-project?rev=256824&view=rev
Log:
Remove old flaky test rerun logic
Summary:
This removes the old logic for rerunning flaky tests. The new test runners will
take care of
rerunning failing tests.
R
tberghammer accepted this revision.
tberghammer added a comment.
This revision is now accepted and ready to land.
Looks good
Comment at:
source/Plugins/Process/Linux/NativeRegisterContextLinux_mips64.cpp:1391
@@ -1390,3 +1390,3 @@
if (m_thread.GetProcess()->GetArchitec
tberghammer accepted this revision.
tberghammer added a comment.
Looks good but please fix the indentation to match with the LLDB style (4 space)
http://reviews.llvm.org/D15877
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.l
bhushan created this revision.
bhushan added a reviewer: clayborg.
bhushan added subscribers: lldb-commits, nitesh.jain, mohit.bhakkad, sagar,
jaydeep.
bhushan set the repository for this revision to rL LLVM.
Herald added a subscriber: dsanders.
Currently there is a separate emulation function fo
labath added a comment.
I agree that the new test is better than the existing linux one, which can
therefore be removed. If you wish, I can do it after you get this in.
http://reviews.llvm.org/D15834
___
lldb-commits mailing list
lldb-commits@lists
33 matches
Mail list logo