x86_32.c 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * This file setups defines to compile arch specific binary from the
  4. * generic one.
  5. *
  6. * The function 'LIBUNWIND__ARCH_REG_ID' name is set according to arch
  7. * name and the defination of this function is included directly from
  8. * 'arch/x86/util/unwind-libunwind.c', to make sure that this function
  9. * is defined no matter what arch the host is.
  10. *
  11. * Finally, the arch specific unwind methods are exported which will
  12. * be assigned to each x86 thread.
  13. */
  14. #define REMOTE_UNWIND_LIBUNWIND
  15. /* Define arch specific functions & regs for libunwind, should be
  16. * defined before including "unwind.h"
  17. */
  18. #define LIBUNWIND__ARCH_REG_ID(regnum) libunwind__x86_reg_id(regnum)
  19. #define LIBUNWIND__ARCH_REG_IP PERF_REG_X86_IP
  20. #define LIBUNWIND__ARCH_REG_SP PERF_REG_X86_SP
  21. #include "unwind.h"
  22. #include "debug.h"
  23. #include "libunwind-x86.h"
  24. #include <../../../../arch/x86/include/uapi/asm/perf_regs.h>
  25. /* HAVE_ARCH_X86_64_SUPPORT is used in'arch/x86/util/unwind-libunwind.c'
  26. * for x86_32, we undef it to compile code for x86_32 only.
  27. */
  28. #undef HAVE_ARCH_X86_64_SUPPORT
  29. #include "../../arch/x86/util/unwind-libunwind.c"
  30. /* Explicitly define NO_LIBUNWIND_DEBUG_FRAME, because non-ARM has no
  31. * dwarf_find_debug_frame() function.
  32. */
  33. #ifndef NO_LIBUNWIND_DEBUG_FRAME
  34. #define NO_LIBUNWIND_DEBUG_FRAME
  35. #endif
  36. #include "util/unwind-libunwind-local.c"
  37. struct unwind_libunwind_ops *
  38. x86_32_unwind_libunwind_ops = &_unwind_libunwind_ops;