[Lldb-commits] [lldb] r218594 - Included cstdarg for compilation of va_start and va_end.

2014-09-29 Thread Matthew Gardiner
Author: mg11 Date: Mon Sep 29 02:12:47 2014 New Revision: 218594 URL: http://llvm.org/viewvc/llvm-project?rev=218594view=rev Log: Included cstdarg for compilation of va_start and va_end. Modified: lldb/trunk/source/Plugins/Process/Linux/ThreadStateCoordinator.cpp Modified:

[Lldb-commits] [lldb] r218596 - Very minimal support 24-bit kalimbas. Vanilla memory read for data sections

2014-09-29 Thread Matthew Gardiner
Author: mg11 Date: Mon Sep 29 03:02:24 2014 New Revision: 218596 URL: http://llvm.org/viewvc/llvm-project?rev=218596view=rev Log: Very minimal support 24-bit kalimbas. Vanilla memory read for data sections works, as do breakpoints, run and pause, display zeroth frame. See

[Lldb-commits] [lldb] r218629 - thread state coordinator: add exec reset support, remove empty virtual destructors.

2014-09-29 Thread Todd Fiala
Author: tfiala Date: Mon Sep 29 16:45:21 2014 New Revision: 218629 URL: http://llvm.org/viewvc/llvm-project?rev=218629view=rev Log: thread state coordinator: add exec reset support, remove empty virtual destructors. Also added a test for the reset handling. The reset/state clearing happens as

Re: [Lldb-commits] [PATCH] Add maximum_operations_per_instruction to DWARFDebugLine.

2014-09-29 Thread Jason Molenda
Looks good; one small suggestion, otherwise please commit. Comment at: source/Plugins/SymbolFile/DWARF/DWARFDebugLine.cpp:427 @@ -426,1 +426,3 @@ prologue-min_inst_length = debug_line_data.GetU8(offset_ptr); +if (prologue-version = 4) +

Re: [Lldb-commits] [PATCH] Add maximum_operations_per_instruction to DWARFDebugLine.

2014-09-29 Thread Tong Shen
Address Jason's comment http://reviews.llvm.org/D5533 Files: source/Plugins/SymbolFile/DWARF/DWARFDebugLine.cpp source/Plugins/SymbolFile/DWARF/DWARFDebugLine.h Index: source/Plugins/SymbolFile/DWARF/DWARFDebugLine.cpp === ---

Re: [Lldb-commits] [PATCH] Add maximum_operations_per_instruction to DWARFDebugLine.

2014-09-29 Thread Todd Fiala
Thanks, Jason! Just running a few tests over here. If it comes up clean, I'll get it in. http://reviews.llvm.org/D5533 ___ lldb-commits mailing list lldb-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits

Re: [Lldb-commits] [PATCH] Add maximum_operations_per_instruction to DWARFDebugLine.

2014-09-29 Thread Todd Fiala
``` $ svn commit Sendingsource/Plugins/SymbolFile/DWARF/DWARFDebugLine.cpp Sendingsource/Plugins/SymbolFile/DWARF/DWARFDebugLine.h Transmitting file data .. Committed revision 218641. ``` http://reviews.llvm.org/D5533 ___ lldb-commits

Re: [Lldb-commits] [PATCH] Add maximum_operations_per_instruction to DWARFDebugLine.

2014-09-29 Thread Todd Fiala
Passed tests on Ubuntu Linux and MacOSX. http://reviews.llvm.org/D5533 ___ lldb-commits mailing list lldb-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] r218642 - This checkin is the first step in making the lldb thread stepping mechanism more accessible from

2014-09-29 Thread Jim Ingham
Author: jingham Date: Mon Sep 29 18:17:18 2014 New Revision: 218642 URL: http://llvm.org/viewvc/llvm-project?rev=218642view=rev Log: This checkin is the first step in making the lldb thread stepping mechanism more accessible from the user level. It adds the ability to invent new stepping modes

[Lldb-commits] [lldb] r218656 - Fix some errors that crept in when I cut pasted into emacs.

2014-09-29 Thread Jim Ingham
Author: jingham Date: Mon Sep 29 20:37:52 2014 New Revision: 218656 URL: http://llvm.org/viewvc/llvm-project?rev=218656view=rev Log: Fix some errors that crept in when I cut pasted into emacs. Modified: lldb/trunk/examples/python/scripted_step.py Modified:

Re: [Lldb-commits] [lldb] r218650 - Add a very trivial example for scripted stepping.

2014-09-29 Thread jingham
Huh, I had edited this in /tmp, playing around to get it right, and then cut pasted that into emacs in place to finish it up. The python mode seems to have really mangled the text in the process. I'll know not to try that again! Should be better now. Thanks for noticing this. Jim On Sep