[Lldb-commits] [lldb] r309250 - [LLDB][MIPS] Fix emulation of Instruction for MIPS64R6 target.

2017-07-26 Thread Nitesh Jain via lldb-commits
Author: nitesh.jain Date: Wed Jul 26 22:34:33 2017 New Revision: 309250 URL: http://llvm.org/viewvc/llvm-project?rev=309250=rev Log: [LLDB][MIPS] Fix emulation of Instruction for MIPS64R6 target. Subscribers: jaydeep, bhushan, lldb-commits, slthakur Modified:

[Lldb-commits] [PATCH] D35881: Expose process instance info via SB API

2017-07-26 Thread Jim Ingham via Phabricator via lldb-commits
jingham accepted this revision. jingham added a comment. This revision is now accepted and ready to land. This is a useful addition. I don't have a problem with it going in as is. It is unfortunate that we don't have an LLDB_INVALID_{USER,GROUP}_ID we could use to tell us whether the ID was

[Lldb-commits] [lldb] r309238 - Fix the formatting for help on option value types.

2017-07-26 Thread Jim Ingham via lldb-commits
Author: jingham Date: Wed Jul 26 17:18:18 2017 New Revision: 309238 URL: http://llvm.org/viewvc/llvm-project?rev=309238=rev Log: Fix the formatting for help on option value types. Patch by Jessica Han https://reviews.llvm.org/D35525 Modified:

[Lldb-commits] [PATCH] D35760: Expose active and available platform lists via SBDebugger API

2017-07-26 Thread Vadim Macagon via Phabricator via lldb-commits
enlight updated this revision to Diff 108276. enlight added a comment. - Renamed `SBDebugger::GetAvailablePlatformAtIndex()` to `GetAvailablePlatformInfoAtIndex()`. - Changed `PlatformPythonTestCase.test_platform_list` to select one of the available platforms instead of hardcoding the

[Lldb-commits] [PATCH] D35784: [LLD][MIPS] Fix Address::GetAddressClass() to return correct AddressClass based on the load address

2017-07-26 Thread Nitesh Jain via Phabricator via lldb-commits
nitesh.jain added a comment. In https://reviews.llvm.org/D35784#820237, @clayborg wrote: > Looking at an ELF file with DWARF, I see: > > (lldb) image dump sections > Dumping sections for 1 modules. > Sections for >

[Lldb-commits] [PATCH] D33035: Tool for using Intel(R) Processor Trace hardware feature

2017-07-26 Thread Abhishek via Phabricator via lldb-commits
abhishek.aggarwal added a comment. In https://reviews.llvm.org/D33035#816337, @clayborg wrote: > I am not sure how sensitive typemaps are to the names of the arguments? Maybe > we can just have you use different names and then the two typemaps won't > collide? You can also write some manual

[Lldb-commits] [PATCH] D35881: Expose process instance info via SB API

2017-07-26 Thread Vadim Macagon via Phabricator via lldb-commits
enlight created this revision. Herald added a subscriber: mgorny. Implement `SBProcessInfo` to wrap `lldb_private::ProcessInstanceInfo`, and add `SBProcess::GetProcessInfo()` to retrieve info like parent ID, group ID, user ID etc. from a live process. Repository: rL LLVM