[Lldb-commits] [PATCH] D112069: [lldb][AArch64] Add UnwindPlan for Linux sigreturn
David Spickett via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Tue Oct 19 06:13:47 PDT 2021
DavidSpickett added a reviewer: omjavaid.
DavidSpickett added inline comments.
Herald added a subscriber: JDevlieghere.
================
Comment at: lldb/source/Symbol/AArch64UnwindInfo.cpp:40
+ // [1]
+ // https://github.com/torvalds/linux/blob/master/arch/arm64/kernel/signal.c
+ int32_t offset = 128 + 8 + 8 + 24 + 128 + 8;
----------------
This comment comes from the libunwind change.
================
Comment at: lldb/source/Symbol/AArch64UnwindInfo.cpp:58
+ unwind_plan_sp->SetSourcedFromCompiler(eLazyBoolYes);
+ unwind_plan_sp->SetUnwindPlanValidAtAllInstructions(eLazyBoolNo);
+ unwind_plan_sp->SetUnwindPlanForSignalTrap(eLazyBoolYes);
----------------
If this means "at all instructions within that function" this could be yes, but no one seems to read this field anyway.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D112069/new/
https://reviews.llvm.org/D112069
More information about the lldb-commits
mailing list