[Lldb-commits] [PATCH] D36804: Add initial support to PowerPC64 little endian (POWER8)

2017-08-23 Thread Gustavo Serra Scalet via Phabricator via lldb-commits
gut added a comment. @labath could you please commit this? I don't have commit access. Thanks everyone for the review. https://reviews.llvm.org/D36804 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/l

[Lldb-commits] [lldb] r311577 - ObjC: fix some -Wpedantic warnings by removing '; '

2017-08-23 Thread Saleem Abdulrasool via lldb-commits
Author: compnerd Date: Wed Aug 23 10:00:14 2017 New Revision: 311577 URL: http://llvm.org/viewvc/llvm-project?rev=311577&view=rev Log: ObjC: fix some -Wpedantic warnings by removing ';' Remove some stray ';' that were in the source code. NFC. Modified: lldb/trunk/source/Plugins/Language/Obj

[Lldb-commits] [lldb] r311579 - Process: fix FXSAVE on x86

2017-08-23 Thread Saleem Abdulrasool via lldb-commits
Author: compnerd Date: Wed Aug 23 10:23:12 2017 New Revision: 311579 URL: http://llvm.org/viewvc/llvm-project?rev=311579&view=rev Log: Process: fix FXSAVE on x86 The FXSAVE member `ftw` (FPU Tag Word) was given the wrong size (8-bit) instead of the correct width (16-bit) as per the x87 Programmer

Re: [Lldb-commits] [lldb] r311579 - Process: fix FXSAVE on x86

2017-08-23 Thread Saleem Abdulrasool via lldb-commits
This would be nice to merge to 5.0 IMO. It fixes reading the x87 FPU state. What do you think Greg? On Wed, Aug 23, 2017 at 10:24 AM Saleem Abdulrasool via lldb-commits < lldb-commits@lists.llvm.org> wrote: > Author: compnerd > Date: Wed Aug 23 10:23:12 2017 > New Revision: 311579 > > URL: http

Re: [Lldb-commits] [lldb] r311579 - Process: fix FXSAVE on x86

2017-08-23 Thread Greg Clayton via lldb-commits
Fine with me. > On Aug 23, 2017, at 10:47 AM, Saleem Abdulrasool > wrote: > > This would be nice to merge to 5.0 IMO. It fixes reading the x87 FPU state. > What do you think Greg? > > On Wed, Aug 23, 2017 at 10:24 AM Saleem Abdulrasool via lldb-commits > mailto:lldb-commits@lists.llvm.org>

[Lldb-commits] [lldb] r311582 - test: fix missed test

2017-08-23 Thread Saleem Abdulrasool via lldb-commits
Author: compnerd Date: Wed Aug 23 11:05:19 2017 New Revision: 311582 URL: http://llvm.org/viewvc/llvm-project?rev=311582&view=rev Log: test: fix missed test I had built without python bindings and did not find this in the grep output. Adjust the test output for the printing format update. Modif

Re: [Lldb-commits] [lldb] r311579 - Process: fix FXSAVE on x86

2017-08-23 Thread Hans Wennborg via lldb-commits
Merged in r311585. Thanks! On Wed, Aug 23, 2017 at 11:02 AM, Greg Clayton wrote: > Fine with me. > > On Aug 23, 2017, at 10:47 AM, Saleem Abdulrasool > wrote: > > This would be nice to merge to 5.0 IMO. It fixes reading the x87 FPU state. > What do you think Greg? > > On Wed, Aug 23, 2017 at 10

[Lldb-commits] [lldb] r311590 - Log whether we found a step out plan or not.

2017-08-23 Thread Jim Ingham via lldb-commits
Author: jingham Date: Wed Aug 23 12:40:21 2017 New Revision: 311590 URL: http://llvm.org/viewvc/llvm-project?rev=311590&view=rev Log: Log whether we found a step out plan or not. Modified: lldb/trunk/source/Target/ThreadPlanStepInRange.cpp Modified: lldb/trunk/source/Target/ThreadPlanStepInR

[Lldb-commits] [lldb] r311622 - When parsing the DBGSourcePathRemapping plist entries

2017-08-23 Thread Jason Molenda via lldb-commits
Author: jmolenda Date: Wed Aug 23 17:58:14 2017 New Revision: 311622 URL: http://llvm.org/viewvc/llvm-project?rev=311622&view=rev Log: When parsing the DBGSourcePathRemapping plist entries in a dSYM, and it's a version 2 DBGSourcePathRemapping, in addition to the build/source paths specified, add

[Lldb-commits] [lldb] r311627 - Change the ftag x87 register from being 8-bits wide to 16-bits wide

2017-08-23 Thread Jason Molenda via lldb-commits
Author: jmolenda Date: Wed Aug 23 20:22:08 2017 New Revision: 311627 URL: http://llvm.org/viewvc/llvm-project?rev=311627&view=rev Log: Change the ftag x87 register from being 8-bits wide to 16-bits wide to match the changes Saleem Abdulrasool committed in r311579. Fixes a testsuite failure now th