LLVM include/llvm/MC/MCAsmInfo.h includes:
enum ExceptionsType { None, DwarfCFI, SjLj, ARM, Win64 };
ARM seems to have its own unwinding format. Here is ARM documentation. LLVM may handle this for us, but it may not. At least, currently, unwinding is broken on ARM.
At the very least, ARM morestack.S needs to have manual unwinding information as it was done for i386 and x86_64.
See also #908 (for Windows) and #4489 (morestack for ARM).
LLVM
include/llvm/MC/MCAsmInfo.hincludes:enum ExceptionsType { None, DwarfCFI, SjLj, ARM, Win64 };ARM seems to have its own unwinding format. Here is ARM documentation. LLVM may handle this for us, but it may not. At least, currently, unwinding is broken on ARM.
At the very least, ARM
morestack.Sneeds to have manual unwinding information as it was done for i386 and x86_64.See also #908 (for Windows) and #4489 (morestack for ARM).