blob: 07c644ed64c4ecd9809bf322297e5a3876e83aad [file] [log] [blame]
#ifndef _PERF_DWARF_REGS_H_
#define _PERF_DWARF_REGS_H_
#ifdef HAVE_DWARF_SUPPORT
const char *get_arch_regstr(unsigned int n);
#endif
#ifdef HAVE_ARCH_REGS_QUERY_REGISTER_OFFSET
/*
* Arch should support fetching the offset of a register in pt_regs
* by its name. See kernel's regs_query_register_offset in
* arch/xxx/kernel/ptrace.c.
*/
int regs_query_register_offset(const char *name);
#endif
#endif