[lldb] [test] Add tests for coredumps with multiple threadsDifferential Revision: https://reviews.llvm.org/D101157
[lldb] [Process/elf-core] Fix reading NetBSD/i386 core dumpsAdd support for extracting basic data from NetBSD/i386 core dumps.FPU registers are not supported at the moment.Differential Revision:
[lldb] [Process/elf-core] Fix reading NetBSD/i386 core dumpsAdd support for extracting basic data from NetBSD/i386 core dumps.FPU registers are not supported at the moment.Differential Revision: https://reviews.llvm.org/D101091
show more ...
[lldb] [Process/elf-core] Fix reading FPRs from FreeBSD/i386 coresThe FreeBSD coredumps from i386 systems contain only FSAVE-styleNT_FPREGSET. Since we do not really support reading that kind of
[lldb] [Process/elf-core] Fix reading FPRs from FreeBSD/i386 coresThe FreeBSD coredumps from i386 systems contain only FSAVE-styleNT_FPREGSET. Since we do not really support reading that kind of dataanymore, just use NT_X86_XSTATE to get FXSAVE-style data when available.Differential Revision: https://reviews.llvm.org/D101086
[lldb] [test/Register] Initial tests for regsets in core dumpsAdd initial tests for reading register sets from core dumps. Thisincludes a C++ program to write registers and dump core, resulting c
[lldb] [test/Register] Initial tests for regsets in core dumpsAdd initial tests for reading register sets from core dumps. Thisincludes a C++ program to write registers and dump core, resulting coredumps for Linux, FreeBSD and NetBSD, and the tests to verify them.The tests are split into generic part, verifying user-specified registervalues, and coredump-specific tests that verify memory addresses thatdiffer for every dump.At this moment, all platforms support GPRs and FPRs up to XMM for amd64target. The i386 target does not work on NetBSD at all, and is missingFPRs entirely on FreeBSD.Differential Revision: https://reviews.llvm.org/D91963