[Lldb-commits] [lldb] r221677 - Add an operator== to the RegisterNumber class; it simplifies

2014-11-11 Thread Jason Molenda
Author: jmolenda Date: Tue Nov 11 02:26:44 2014 New Revision: 221677 URL: http://llvm.org/viewvc/llvm-project?rev=221677view=rev Log: Add an operator== to the RegisterNumber class; it simplifies RegisterContextLLDB a bit more in a few places. Modified:

[Lldb-commits] [lldb] r221682 - Put the current pc arrow back into the default disassembly format.

2014-11-11 Thread Jason Molenda
Author: jmolenda Date: Tue Nov 11 04:32:04 2014 New Revision: 221682 URL: http://llvm.org/viewvc/llvm-project?rev=221682view=rev Log: Put the current pc arrow back into the default disassembly format. I went back and forth on removing this - and tried dropping it for a few weeks. But when you're

[Lldb-commits] [lldb] r221683 - Add support for 32-bit core file dumping. Add support for i386 process core file dumping.

2014-11-11 Thread Jason Molenda
Author: jmolenda Date: Tue Nov 11 04:59:15 2014 New Revision: 221683 URL: http://llvm.org/viewvc/llvm-project?rev=221683view=rev Log: Add support for 32-bit core file dumping. Add support for i386 process core file dumping. Modified:

[Lldb-commits] [lldb] r221692 - Substitute cc with c++ when compiling c++ test files for Siva Chandra : http://reviews.llvm.org/D6199

2014-11-11 Thread Shawn Best
Author: sbest Date: Tue Nov 11 11:34:58 2014 New Revision: 221692 URL: http://llvm.org/viewvc/llvm-project?rev=221692view=rev Log: Substitute cc with c++ when compiling c++ test files for Siva Chandra : http://reviews.llvm.org/D6199 Modified: lldb/trunk/test/make/Makefile.rules Modified:

[Lldb-commits] [lldb] r221694 - Add -std=c99 for building the test case of TestValueVarUpdate - for Siva Chandra : http://reviews.llvm.org/D6201

2014-11-11 Thread Shawn Best
Author: sbest Date: Tue Nov 11 11:45:00 2014 New Revision: 221694 URL: http://llvm.org/viewvc/llvm-project?rev=221694view=rev Log: Add -std=c99 for building the test case of TestValueVarUpdate - for Siva Chandra : http://reviews.llvm.org/D6201 Modified:

Re: [Lldb-commits] [PATCH] Apply SOCK_CLOEXEC flag to socket API functions in order to avoid handle leakage to a forked child process.

2014-11-11 Thread Greg Clayton
On Nov 10, 2014, at 8:03 PM, Oleksiy Vyalov ovya...@google.com wrote: ! In D6204#10, @zturner wrote: Can I also request that the variable *not* be called close_on_exec?. It is possible to implement an equivalent on Windows, but calling it close on exec will be confusing to people on

[Lldb-commits] [PATCH] Donot use -std=libstdc++ option if $(CC)=cc.

2014-11-11 Thread Siva Chandra
Hi emaste, After D6199 (http://reviews.llvm.org/D6199) landed, this test is erroring out because of incompatible -std=libstdc++ when building on stock Ubuntu. http://reviews.llvm.org/D6218 Files: test/functionalities/data-formatter/data-formatter-skip-summary/Makefile Index:

Re: [Lldb-commits] [PATCH] Mark 9 lldb unit tests for ubuntu as XFAIL

2014-11-11 Thread Vince Harron
Siva, I think it would be super helpful if you could add comments to these xfail/skips that describe the cause and/or recommended fix? http://reviews.llvm.org/D6205 ___ lldb-commits mailing list lldb-commits@cs.uiuc.edu

Re: [Lldb-commits] [PATCH] Apply SOCK_CLOEXEC flag to socket API functions in order to avoid handle leakage to a forked child process.

2014-11-11 Thread Greg Clayton
I would vote to define the options struct in ConnectionFileDescriptor and have it not be an argument to the constructor, but to the connect method: ConnectionFileDescriptor::Connect(const char *s, Error *error_ptr, const Options options); Make sure there is a default constructor for the

Re: [Lldb-commits] [PATCH] Apply SOCK_CLOEXEC flag to socket API functions in order to avoid handle leakage to a forked child process.

2014-11-11 Thread Zachary Turner
! In D6204#18, @clayborg wrote: I would vote to define the options struct in ConnectionFileDescriptor and have it not be an argument to the constructor, but to the connect method: ConnectionFileDescriptor::Connect(const char *s, Error *error_ptr, const Options options); Make sure there

[Lldb-commits] [PATCH] [ProcessWindows] Improve support for launching processes.

2014-11-11 Thread Zachary Turner
Hi xen2, Because I structured the core debug loop differently from your original patch, I'm mostly re-writing your patch rather than doing a straight merge, although I'm heavily referring to your patch in the process. I do plan to credit your original patch when I commit though. Would

[Lldb-commits] [lldb] r221752 - Update for llvm API change.

2014-11-11 Thread Rafael Espindola
Author: rafael Date: Tue Nov 11 20:04:31 2014 New Revision: 221752 URL: http://llvm.org/viewvc/llvm-project?rev=221752view=rev Log: Update for llvm API change. Modified: lldb/trunk/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.cpp Modified:

[Lldb-commits] [lldb] r221760 - Enable armv7 core file writing for Mach-O binaries.

2014-11-11 Thread Jason Molenda
Author: jmolenda Date: Tue Nov 11 20:39:14 2014 New Revision: 221760 URL: http://llvm.org/viewvc/llvm-project?rev=221760view=rev Log: Enable armv7 core file writing for Mach-O binaries. The problems with the dyld all image infos struct seems to be specific to arm64. Modified: