[Lldb-commits] [lldb] r215345 - Also build lldb-gdbserver under KFreeBSD

2014-08-11 Thread Sylvestre Ledru
Author: sylvestre Date: Mon Aug 11 01:29:06 2014 New Revision: 215345 URL: http://llvm.org/viewvc/llvm-project?rev=215345view=rev Log: Also build lldb-gdbserver under KFreeBSD Modified: lldb/trunk/tools/Makefile Modified: lldb/trunk/tools/Makefile URL:

Re: [Lldb-commits] [PATCH]race condition calling PushProcessIOHandler

2014-08-11 Thread Todd Fiala
Just coming back to the world of LLDB. Looks like lots of healthy discussion on this one! On Aug 10, 2014 10:30 PM, Matthew Gardiner m...@csr.com wrote: Thanks Shawn, If Greg agrees that we need the SyncIOHandler() invocation in the Command object(s) (not the HandlePrivateEvent code) then

Re: [Lldb-commits] [lldb] r215223 - Add new MI commands, features and fixes to the lldb-mi driver.

2014-08-11 Thread Chandler Carruth
On Sat, Aug 9, 2014 at 4:33 AM, Deepak Panickal dee...@codeplay.com wrote: Yeah, I understand. The lldb-mi driver is a sub project which only we have been committing to and working on primarily. It’s separate from the core files of LLDB. Which is why I committed a bigger patch. I agree

[Lldb-commits] [lldb] r215367 - Fix some typos:

2014-08-11 Thread Sylvestre Ledru
Author: sylvestre Date: Mon Aug 11 13:06:28 2014 New Revision: 215367 URL: http://llvm.org/viewvc/llvm-project?rev=215367view=rev Log: Fix some typos: * transfered = transferred * unkown = unknown * sucessfully = successfully Modified: lldb/trunk/examples/summaries/cocoa/NSBundle.py

[Lldb-commits] [lldb] r215405 - Remove a few uses of LLDB_DISABLE_POSIX.

2014-08-11 Thread Zachary Turner
Author: zturner Date: Mon Aug 11 17:59:50 2014 New Revision: 215405 URL: http://llvm.org/viewvc/llvm-project?rev=215405view=rev Log: Remove a few uses of LLDB_DISABLE_POSIX. This all appears to have been dead, unnecessary code. Modified:

Re: [Lldb-commits] [PATCH] Check if certain stack frame exists before dereferencing it

2014-08-11 Thread jingham
Ah, my bad, thanks. Can you check this in? Otherwise I will... Jim On Aug 11, 2014, at 4:04 PM, Tong Shen endlessr...@google.com wrote: Hi, The patch fixes segfault for i386 on x86_64 when we are stepping in and only frame 0 is available. -- Best Regards, Tong Shen

[Lldb-commits] [lldb] r215411 - Fetching the parent frame may fail, handle that case. Patch from Tong Shen.

2014-08-11 Thread Jim Ingham
Author: jingham Date: Mon Aug 11 18:57:43 2014 New Revision: 215411 URL: http://llvm.org/viewvc/llvm-project?rev=215411view=rev Log: Fetching the parent frame may fail, handle that case. Patch from Tong Shen. Modified: lldb/trunk/source/Target/ThreadPlanStepRange.cpp

Re: [Lldb-commits] [PATCH] Check if certain stack frame exists before dereferencing it

2014-08-11 Thread Todd Fiala
Thanks, Jim! I was out of the office this afternoon so couldn't hit it. I'll get his check-ins done in the future. On Mon, Aug 11, 2014 at 5:06 PM, jing...@apple.com wrote: Done, thanks. Jim On Aug 11, 2014, at 4:39 PM, Tong Shen endlessr...@google.com wrote: I don't have commit

Re: [Lldb-commits] [PATCH] Fix assertion for i386 process on x86_64 linux host

2014-08-11 Thread Todd Fiala
Hey Tong, I think the intent here was simply a mistake of forgetting a reference. Let's go with a simpler fix: Index: source/Plugins/Process/Utility/RegisterContextLinux_x86_64.cpp === ---

Re: [Lldb-commits] [PATCH] Fix assertion for i386 process on x86_64 linux host

2014-08-11 Thread Todd Fiala
Okay, I'll get this in. We'll work on a regression test for this tomorrow. On Mon, Aug 11, 2014 at 9:20 PM, Tong Shen endlessr...@google.com wrote: Works like a charm :-) Confirmed, please merge. On Mon, Aug 11, 2014 at 8:01 PM, Todd Fiala tfi...@google.com wrote: Hey Tong, I think

[Lldb-commits] [lldb] r215424 - Fix incorrect Linux i386 register info initialization on x86_64.

2014-08-11 Thread Todd Fiala
Author: tfiala Date: Tue Aug 12 00:26:52 2014 New Revision: 215424 URL: http://llvm.org/viewvc/llvm-project?rev=215424view=rev Log: Fix incorrect Linux i386 register info initialization on x86_64. Fix by Tong Shen. Modified: