[libunwind] [libunwind] fix unwinding from signal handler (PR #92291)
Saleem Abdulrasool via cfe-commits
cfe-commits at lists.llvm.org
Mon Jul 8 07:42:31 PDT 2024
================
@@ -365,7 +365,12 @@ int DwarfInstructions<A, R>::stepWithDwarf(A &addressSpace, pint_t pc,
// Return address is address after call site instruction, so setting IP to
// that does simulates a return.
- newRegisters.setIP(returnAddress);
+ //
+ // In case of this is frame of signal handler, the IP should be
+ // incremented, because the IP saved in the signal handler points to
+ // first non-executed instruction, while FDE/CIE expects IP to be after
+ // the first non-executed instruction.
+ newRegisters.setIP(returnAddress + cieInfo.isSignalFrame);
----------------
compnerd wrote:
Right, I think that part is reasonable. When you unwind from a signal, the IP should point to the next instruction vs unwinding from a regular context.
https://github.com/llvm/llvm-project/pull/92291
More information about the cfe-commits
mailing list