diff options
author | Ian Munsie <imunsie@au.ibm.com> | 2010-04-20 16:58:32 +1000 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2010-04-22 13:48:31 +1000 |
commit | cd932c593995abee1d1a8a0bfe608f7d103d87ad (patch) | |
tree | be2af882f976f0f30ad9bb04b7189fcaffcf8475 /tools/perf/util/include | |
parent | 6eca8cc35b50af1037bc919106dd6dd332c959c2 (diff) |
perf: Move arch specific code into separate arch directory
The perf userspace tool included some architecture specific code to map
registers from the DWARF register number into the names used by the regs
and stack access API.
This moves the architecture specific code out into a separate
arch/x86 directory along with the infrastructure required to use it.
Signed-off-by: Ian Munsie <imunsie@au.ibm.com>
Acked-by: Masami Hiramatsu <mhiramat@redhat.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'tools/perf/util/include')
-rw-r--r-- | tools/perf/util/include/dwarf-regs.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/perf/util/include/dwarf-regs.h b/tools/perf/util/include/dwarf-regs.h new file mode 100644 index 00000000000..cf6727e99c4 --- /dev/null +++ b/tools/perf/util/include/dwarf-regs.h @@ -0,0 +1,8 @@ +#ifndef _PERF_DWARF_REGS_H_ +#define _PERF_DWARF_REGS_H_ + +#ifdef DWARF_SUPPORT +const char *get_arch_regstr(unsigned int n); +#endif + +#endif |