[Lldb-commits] [lldb] r205329 - mips64: clean up register context storage

2014-04-01 Thread Ed Maste
Author: emaste Date: Tue Apr 1 12:27:25 2014 New Revision: 205329 URL: http://llvm.org/viewvc/llvm-project?rev=205329view=rev Log: mips64: clean up register context storage Store the gpr data in a DataBufferHeap and use a DataExtractor to extract register values with appropriate endianness.

Re: [Lldb-commits] [PATCH] Use DataBufferHeap to genericise elf-core RegisterContext gpr storage

2014-04-01 Thread Ed Maste
Sending source/Plugins/Process/elf-core/RegisterContextPOSIXCore_mips64.cpp Sending source/Plugins/Process/elf-core/RegisterContextPOSIXCore_mips64.h Transmitting file data .. Committed revision 205329. http://llvm-reviews.chandlerc.com/D2833

Re: [Lldb-commits] [PATCH] Use DataBufferHeap to genericise elf-core RegisterContext gpr storage

2014-04-01 Thread Ed Maste
Sending source/Plugins/Process/elf-core/RegisterContextPOSIXCore_mips64.cpp Sending source/Plugins/Process/elf-core/RegisterContextPOSIXCore_mips64.h Transmitting file data .. Committed revision 205329. http://llvm-reviews.chandlerc.com/D2833

Re: [Lldb-commits] [PATCH] Use DataBufferHeap to genericise elf-core RegisterContext gpr storage

2014-04-01 Thread Ed Maste
Sending source/Plugins/Process/elf-core/RegisterContextPOSIXCore_mips64.cpp Sending source/Plugins/Process/elf-core/RegisterContextPOSIXCore_mips64.h Transmitting file data .. Committed revision 205329. http://llvm-reviews.chandlerc.com/D2833

Re: [Lldb-commits] [PATCH] Fix debuggee termination from ProcessPOSIX::DoDestroy

2014-04-01 Thread Ed Maste
Closed by commit rL205337 (authored by @emaste). CHANGED PRIOR TO COMMIT http://llvm-reviews.chandlerc.com/D3159?vs=8270id=8277#toc http://llvm-reviews.chandlerc.com/D3159 COMMIT http://llvm-reviews.chandlerc.com/rL205337 ___ lldb-commits

[Lldb-commits] [lldb] r205337 - Implement ProcessMonitor::Kill for Linux

2014-04-01 Thread Ed Maste
Author: emaste Date: Tue Apr 1 13:14:06 2014 New Revision: 205337 URL: http://llvm.org/viewvc/llvm-project?rev=205337view=rev Log: Implement ProcessMonitor::Kill for Linux On FreeBSD ptrace(PT_KILL) is used to terminate the traced process (as if PT_CONTINUE had been used with SIGKILL as the

[Lldb-commits] [lldb] r205345 - Use libc++ on FreeBSD as on Darwin

2014-04-01 Thread Ed Maste
Author: emaste Date: Tue Apr 1 13:47:58 2014 New Revision: 205345 URL: http://llvm.org/viewvc/llvm-project?rev=205345view=rev Log: Use libc++ on FreeBSD as on Darwin Modified: lldb/trunk/test/lldbtest.py Modified: lldb/trunk/test/lldbtest.py URL:

[Lldb-commits] [lldb] r205381 - Test case for the previous commit.

2014-04-01 Thread Jim Ingham
Author: jingham Date: Tue Apr 1 20:05:27 2014 New Revision: 205381 URL: http://llvm.org/viewvc/llvm-project?rev=205381view=rev Log: Test case for the previous commit. Added: lldb/trunk/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommandsFromPython.py Added:

[Lldb-commits] [lldb] r205380 - Add the ability to set python breakpoint commands from the SBBreakpoint SBBreakpointLocation API's.

2014-04-01 Thread Jim Ingham
Author: jingham Date: Tue Apr 1 20:04:55 2014 New Revision: 205380 URL: http://llvm.org/viewvc/llvm-project?rev=205380view=rev Log: Add the ability to set python breakpoint commands from the SBBreakpoint SBBreakpointLocation API's. You can either provide the function name, or function body

[Lldb-commits] [lldb] r205389 - build: ignore pragma warnings with GCC

2014-04-01 Thread Saleem Abdulrasool
Author: compnerd Date: Tue Apr 1 22:51:16 2014 New Revision: 205389 URL: http://llvm.org/viewvc/llvm-project?rev=205389view=rev Log: build: ignore pragma warnings with GCC GCC does not support '#pragma mark'. Add -Wno-unknown-pragmas if the compiler supports it. Modified: