[libunwind] Add an interface for dynamic .eh_frame registration
authorPeter S. Housel <housel@acm.org>
Thu, 14 Oct 2021 20:31:05 +0000 (13:31 -0700)
committerPeter S. Housel <housel@acm.org>
Thu, 18 Nov 2021 16:06:46 +0000 (08:06 -0800)
commitbab39816085d715e52c2131fa249ccd10178764b
tree8b6fd0c4817a07ae5617618c4d7bf56cb96e496c
parent18ba57a53a818bc155aa7d1f65dca79879aa5683
[libunwind] Add an interface for dynamic .eh_frame registration

The libgcc runtime library provides __register_frame and
__deregister_frame functions, which can be used by dynamic code
generators to register an .eh_frame section, which contains one or
more Call Frame Information records, each consisting of a Common
Information Entry record followed by one or more Frame Description
Entry records. This libunwind library also provides __register_frame
and __deregister_frame functions, but they are aliases for
__unw_add_dynamic_fde and __unw_remove_dynamic_fde and thus can only
take a single FDE.

This patch adds __unw_add_dynamic_eh_frame_section and
__unw_remove_dynamic_eh_frame_section functions which explicitly use
the .eh_frame format. Clients such as the ORCv2 platform and runtime
can check for these functions and use them if unwinding is being
provided by libunwind, or fall back to __register_frame and
__deregister_frame if unwinding is provided by libgcc.

Reviewed By: lhames

Differential Revision: https://reviews.llvm.org/D111863
libunwind/src/DwarfParser.hpp
libunwind/src/libunwind.cpp
libunwind/src/libunwind_ext.h