Introduces core file support for Linux x86-64 using 'lldb a.out -c core'.
authorAshok Thirumurthi <ashok.thirumurthi@intel.com>
Fri, 12 Jul 2013 21:25:02 +0000 (21:25 +0000)
committerAshok Thirumurthi <ashok.thirumurthi@intel.com>
Fri, 12 Jul 2013 21:25:02 +0000 (21:25 +0000)
commitc037383aff81a61ed956858353ec003e970fb2ce
treee7897f7b95d446521a57490f2d30aeff44657375
parent04397c1e9c8e6663b02ddfcb2e9a9af4e6b54871
Introduces core file support for Linux x86-64 using 'lldb a.out -c core'.
  TODO: Support for RegisterContext_x86_64::ReadFPR.

Patch by Samuel Jacob!

llvm-svn: 186207
19 files changed:
lldb/lib/Makefile
lldb/source/CMakeLists.txt
lldb/source/Plugins/DynamicLoader/POSIX-DYLD/AuxVector.cpp
lldb/source/Plugins/Makefile
lldb/source/Plugins/Process/CMakeLists.txt
lldb/source/Plugins/Process/Linux/ProcessLinux.cpp
lldb/source/Plugins/Process/Linux/ProcessLinux.h
lldb/source/Plugins/Process/POSIX/RegisterContext_x86_64.cpp
lldb/source/Plugins/Process/elf-core/CMakeLists.txt [new file with mode: 0644]
lldb/source/Plugins/Process/elf-core/Makefile [new file with mode: 0644]
lldb/source/Plugins/Process/elf-core/ProcessElfCore.cpp [new file with mode: 0644]
lldb/source/Plugins/Process/elf-core/ProcessElfCore.h [new file with mode: 0644]
lldb/source/Plugins/Process/elf-core/RegisterContextCoreFreeBSD_x86_64.cpp [new file with mode: 0644]
lldb/source/Plugins/Process/elf-core/RegisterContextCoreFreeBSD_x86_64.h [new file with mode: 0644]
lldb/source/Plugins/Process/elf-core/RegisterContextCoreLinux_x86_64.cpp [new file with mode: 0644]
lldb/source/Plugins/Process/elf-core/RegisterContextCoreLinux_x86_64.h [new file with mode: 0644]
lldb/source/Plugins/Process/elf-core/ThreadElfCore.cpp [new file with mode: 0644]
lldb/source/Plugins/Process/elf-core/ThreadElfCore.h [new file with mode: 0644]
lldb/source/lldb.cpp