diff options
author | Ian Munsie <imunsie@au.ibm.com> | 2010-04-20 08:58:32 +0200 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2010-04-22 05:48:31 +0200 |
commit | cd932c593995abee1d1a8a0bfe608f7d103d87ad (patch) | |
tree | be2af882f976f0f30ad9bb04b7189fcaffcf8475 /tools/perf/arch/x86/Makefile | |
parent | perf: Fix perf probe build error (diff) | |
download | linux-cd932c593995abee1d1a8a0bfe608f7d103d87ad.tar.xz linux-cd932c593995abee1d1a8a0bfe608f7d103d87ad.zip |
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/arch/x86/Makefile')
-rw-r--r-- | tools/perf/arch/x86/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/perf/arch/x86/Makefile b/tools/perf/arch/x86/Makefile new file mode 100644 index 000000000000..15130b50dfe3 --- /dev/null +++ b/tools/perf/arch/x86/Makefile @@ -0,0 +1,4 @@ +ifndef NO_DWARF +PERF_HAVE_DWARF_REGS := 1 +LIB_OBJS += $(OUTPUT)arch/$(ARCH)/util/dwarf-regs.o +endif |