================ @@ -115,6 +121,18 @@ extern int unw_set_reg(unw_cursor_t *, unw_regnum_t, unw_word_t) LIBUNWIND_AVAIL extern int unw_set_fpreg(unw_cursor_t *, unw_regnum_t, unw_fpreg_t) LIBUNWIND_AVAIL; extern int unw_resume(unw_cursor_t *) LIBUNWIND_AVAIL; +#ifdef LIBUNWIND_HAVE_MSAN +// unw_getcontext is implemented in assembly so it is rather difficult to +// mark the MSan shadow as initialized from within the function. Instead we +// use a macro wrapper when compiling with MSan to avoid false-positives. +#define unw_getcontext(context) \ ---------------- arichardson wrote:
I don't think we can since I _believe_ that having an exported symbol called unw_getcontext is required. But I'm not familiar with what level of compatibility with GNU libunwind is required. https://github.com/llvm/llvm-project/pull/67860 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits