omjavaid updated this revision to Diff 88505.
omjavaid added a comment.
This patch has following updates:
1. Support for Arm hardware breakpoints
2. LLDBServer Test cases for testing Z1 z1 packets.
3. Test case to test hardware breakpoint command and multi-threaded hardware
breakpoints.
4. Get r
Author: bulasevich
Date: Wed Feb 15 05:42:47 2017
New Revision: 295168
URL: http://llvm.org/viewvc/llvm-project?rev=295168&view=rev
Log:
Bug 30863 - Step doesn't stop with conditional breakpoint on the next line
Differential Revisions:
https://reviews.llvm.org/D26497 (committed r290168, temporar
This revision was automatically updated to reflect the committed changes.
Closed by commit rL295170: Fix TestNameLookup for GCC (authored by labath).
Changed prior to commit:
https://reviews.llvm.org/D29932?vs=88347&id=88509#toc
Repository:
rL LLVM
https://reviews.llvm.org/D29932
Files:
Author: labath
Date: Wed Feb 15 06:27:19 2017
New Revision: 295171
URL: http://llvm.org/viewvc/llvm-project?rev=295171&view=rev
Log:
Fix unittests after r295088
This resurrects TestModule.so which got lost during the move and is
needed for the ModuleCache test.
Added:
lldb/trunk/unittests/Ta
Author: labath
Date: Wed Feb 15 06:27:16 2017
New Revision: 295170
URL: http://llvm.org/viewvc/llvm-project?rev=295170&view=rev
Log:
Fix TestNameLookup for GCC
Summary:
GCC emits also symbols for the __PRETTY_FUNCTION__ virtual variable,
which we accidentaly pick up when looking for functions for
mgorny created this revision.
mgorny added a project: LLDB.
Herald added a subscriber: aemerson.
Use both LLDB- and LLVM-specific tool/library directories when LLDB is
being built stand-alone. This ensures that the freshly-built tools
(and libraries) are used correctly.
Without this patch, the te
labath added inline comments.
Comment at: lldb/source/Utility/VASprintf.cpp:18
+ va_list args) {
+ llvm::SmallString<16> error("");
+
It doesn't look like you should need to allocate a stack object with the string
every time. Can't y
On Wed, Feb 15, 2017 at 5:54 AM Pavel Labath via Phabricator <
revi...@reviews.llvm.org> wrote:
> labath added inline comments.
>
>
>
> Comment at: lldb/source/Utility/VASprintf.cpp:18
> + va_list args) {
> + llvm::SmallString<16> error("");
> +
>
Author: labath
Date: Wed Feb 15 10:11:51 2017
New Revision: 295189
URL: http://llvm.org/viewvc/llvm-project?rev=295189&view=rev
Log:
Fix debug build of unit tests
Summary:
It turns out listing each library twice is not enough to resolve all
references in a debug build on linux - a number of execu
This revision was automatically updated to reflect the committed changes.
Closed by commit rL295189: Fix debug build of unit tests (authored by labath).
Changed prior to commit:
https://reviews.llvm.org/D29888?vs=88177&id=88544#toc
Repository:
rL LLVM
https://reviews.llvm.org/D29888
Files:
Author: labath
Date: Wed Feb 15 10:11:59 2017
New Revision: 295190
URL: http://llvm.org/viewvc/llvm-project?rev=295190&view=rev
Log:
Refactor log channel registration mechanism
Summary:
We currently have two log channel registration mechanisms. One uses a
set of function pointers and the other on
This revision was automatically updated to reflect the committed changes.
Closed by commit rL295190: Refactor log channel registration mechanism
(authored by labath).
Changed prior to commit:
https://reviews.llvm.org/D29895?vs=88395&id=88545#toc
Repository:
rL LLVM
https://reviews.llvm.org/
labath added a comment.
The test added by this batch is failing on windows
http://lab.llvm.org:8011/builders/lldb-windows7-android/builds/2499, for a very
prosaic reason - we cannot run a "make clean" as something is holding the
executable file open. Based on my debugging, it is not a problem i
Author: labath
Date: Wed Feb 15 11:13:19 2017
New Revision: 295201
URL: http://llvm.org/viewvc/llvm-project?rev=295201&view=rev
Log:
Revert "Refactor log channel registration mechanism"
The change breaks on Windows and NetBSD bots. Revert while I
investigate.
Modified:
lldb/trunk/include/lld
Author: labath
Date: Wed Feb 15 12:04:50 2017
New Revision: 295211
URL: http://llvm.org/viewvc/llvm-project?rev=295211&view=rev
Log:
Skip TestStepOverBreakpoint on windows
Modified:
lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/step_over_breakpoint/TestStepOverBreakpoi
Author: gclayton
Date: Wed Feb 15 12:24:44 2017
New Revision: 295212
URL: http://llvm.org/viewvc/llvm-project?rev=295212&view=rev
Log:
Fix Xcode project.
Modified:
lldb/trunk/lldb.xcodeproj/project.pbxproj
Modified: lldb/trunk/lldb.xcodeproj/project.pbxproj
URL:
http://llvm.org/viewvc/llvm
kubamracek created this revision.
kubamracek added a project: Sanitizers.
Herald added a subscriber: mgorny.
There is currently a single MemoryHistory plugin, which is for
AddressSanitizer. Let's merge the feature into InstrumentationRuntime plugins.
I'm thinking of implementing another provid
kubamracek created this revision.
kubamracek added a project: Sanitizers.
We can provide this via StopReason->GetValue(). This is important so that
users of SB API can treat various sanitizers differently (the extended stop
reason data is also structured differently for different sanitizers).
clayborg added a comment.
I am fine as long is Jim Ingham is fine. Jim, if you are good with this, just
put it into Accept Revision.
https://reviews.llvm.org/D30007
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi
zturner updated this revision to Diff 88626.
https://reviews.llvm.org/D29964
Files:
lldb/include/lldb/Host/PseudoTerminal.h
lldb/include/lldb/Utility/PseudoTerminal.h
lldb/include/lldb/Utility/VASPrintf.h
lldb/source/Host/CMakeLists.txt
lldb/source/Host/common/PseudoTerminal.cpp
lldb/
Author: jmolenda
Date: Wed Feb 15 20:08:33 2017
New Revision: 295271
URL: http://llvm.org/viewvc/llvm-project?rev=295271&view=rev
Log:
Fix a bug introduced in r235737 where code with important side
effects was passed as an expression to assert() calls. If lldb is
built without asserts, the expres
kubamracek created this revision.
TSan now has the ability to report races on "external" object, i.e. any library
class/object that has read-shared write-exclusive threading semantics. The
detection and reporting work almost out of the box, but TSan can now provide
the type of the object (as a
22 matches
Mail list logo