Implement GetMemoryRegions() for Windows Minidumps and live processes.
authorHoward Hellyer <hhellyer@uk.ibm.com>
Mon, 18 Jul 2016 08:25:59 +0000 (08:25 +0000)
committerHoward Hellyer <hhellyer@uk.ibm.com>
Mon, 18 Jul 2016 08:25:59 +0000 (08:25 +0000)
commit97be487728c242feb197410872ca191fc5f5de0f
treee1f11eb6c69ee30bbc5ef57f8572e79c8a71ec24
parent6731f13458884f8fc8cf55706d5e4ac06daa6d5c
Implement GetMemoryRegions() for Windows Minidumps and live processes.

Summary:
This patch fills in the implementation of GetMemoryRegions() on the Windows live process and minidump implementations of lldb_private::Process (ProcessWindowsLive::GetMemoryRegionInfo and ProcessWinMiniDump::Impl::GetMemoryRegionInfo.) The GetMemoryRegions API was added under: http://reviews.llvm.org/D20565

The existing Windows implementations didn’t fill in the start and end addresses within MemoryRegionInfo. This patch fixes that and adds support for the new mapped flag on MemoryRegionInfo that says whether a memory range is mapped into the process address space or not.

The behaviour of both live and core implementations should match the behaviour documented on Process::GetMemoryRegionInfo (in Process.h) which in turn should match the behaviour of the qMemoryRegionInfo query documented in lldb-gdb-remote.txt.

Reviewers: clayborg, amccarth

Subscribers: amccarth, lldb-commits

Differential Revision: https://reviews.llvm.org/D22352

llvm-svn: 275778
lldb/source/Plugins/Process/Windows/Live/ProcessWindowsLive.cpp
lldb/source/Plugins/Process/Windows/MiniDump/ProcessWinMiniDump.cpp