diff options
author | David Spickett <david.spickett@linaro.org> | 2023-03-15 09:56:39 +0000 |
---|---|---|
committer | David Spickett <david.spickett@linaro.org> | 2023-03-15 10:15:44 +0000 |
commit | 6db766aa1a079085a3952f62c769cad16a1cbf3e (patch) | |
tree | 5c2369019dd4d4ad4207057066a29a73d195d947 /lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp | |
parent | 13a0b48f37250ad2f8cb72c04e72600874112037 (diff) | |
download | llvm-6db766aa1a079085a3952f62c769cad16a1cbf3e.zip llvm-6db766aa1a079085a3952f62c769cad16a1cbf3e.tar.gz llvm-6db766aa1a079085a3952f62c769cad16a1cbf3e.tar.bz2 |
Reland "[lldb] Refactor CrashReason"
This reverts commit 71c4d186f1cf247f1aa45f4fd1b38f350b68d123.
The reinterpret casts were not needed.
Diffstat (limited to 'lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp b/lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp index 9b9dfe5..b62e9f64 100644 --- a/lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp +++ b/lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp @@ -294,19 +294,19 @@ void NativeThreadLinux::SetStoppedBySignal(uint32_t signo, case SIGBUS: case SIGFPE: case SIGILL: - const auto reason = GetCrashReason(*info); - m_stop_description = GetCrashReasonString(reason, *info); - - if (reason == CrashReason::eSyncTagCheckFault) { - AnnotateSyncTagCheckFault(info); - } - + m_stop_description = GetCrashReasonString(*info); +#ifndef SEGV_MTESERR +#define SEGV_MTESERR 9 +#endif + if (info->si_signo == SIGSEGV && info->si_code == SEGV_MTESERR) + AnnotateSyncTagCheckFault( + reinterpret_cast<lldb::addr_t>(info->si_addr)); break; } } } -void NativeThreadLinux::AnnotateSyncTagCheckFault(const siginfo_t *info) { +void NativeThreadLinux::AnnotateSyncTagCheckFault(lldb::addr_t fault_addr) { int32_t allocation_tag_type = 0; switch (GetProcess().GetArchitecture().GetMachine()) { // aarch64_32 deliberately not here because there's no 32 bit MTE @@ -331,7 +331,6 @@ void NativeThreadLinux::AnnotateSyncTagCheckFault(const siginfo_t *info) { m_stop_description.pop_back(); std::stringstream ss; - lldb::addr_t fault_addr = reinterpret_cast<uintptr_t>(info->si_addr); std::unique_ptr<MemoryTagManager> manager(std::move(details->manager)); ss << " logical tag: 0x" << std::hex << manager->GetLogicalTag(fault_addr); |