perf callchain: Support x86 target platform
Support x86(32-bit) cross platform callchain unwind. Signed-off-by: He Kuang <hekuang@huawei.com> Acked-by: Jiri Olsa <jolsa@kernel.org> Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Andi Kleen <ak@linux.intel.com> Cc: David Ahern <dsahern@gmail.com> Cc: Ekaterina Tumanova <tumanova@linux.vnet.ibm.com> Cc: Josh Poimboeuf <jpoimboe@redhat.com> Cc: Kan Liang <kan.liang@intel.com> Cc: Masami Hiramatsu <mhiramat@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Pekka Enberg <penberg@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Stephane Eranian <eranian@google.com> Cc: Sukadev Bhattiprolu <sukadev@linux.vnet.ibm.com> Cc: Wang Nan <wangnan0@huawei.com> Link: http://lkml.kernel.org/r/1464924803-22214-14-git-send-email-hekuang@huawei.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:

committed by
Arnaldo Carvalho de Melo

parent
19473e7ba8
commit
52ffe0ff02
37
tools/perf/util/libunwind/x86_32.c
Normal file
37
tools/perf/util/libunwind/x86_32.c
Normal file
@@ -0,0 +1,37 @@
|
||||
/*
|
||||
* This file setups defines to compile arch specific binary from the
|
||||
* generic one.
|
||||
*
|
||||
* The function 'LIBUNWIND__ARCH_REG_ID' name is set according to arch
|
||||
* name and the defination of this function is included directly from
|
||||
* 'arch/x86/util/unwind-libunwind.c', to make sure that this function
|
||||
* is defined no matter what arch the host is.
|
||||
*
|
||||
* Finally, the arch specific unwind methods are exported which will
|
||||
* be assigned to each x86 thread.
|
||||
*/
|
||||
|
||||
#define REMOTE_UNWIND_LIBUNWIND
|
||||
#define LIBUNWIND__ARCH_REG_ID(regnum) libunwind__x86_reg_id(regnum)
|
||||
|
||||
#include "unwind.h"
|
||||
#include "debug.h"
|
||||
#include "libunwind-x86.h"
|
||||
#include <../../../../arch/x86/include/uapi/asm/perf_regs.h>
|
||||
|
||||
/* HAVE_ARCH_X86_64_SUPPORT is used in'arch/x86/util/unwind-libunwind.c'
|
||||
* for x86_32, we undef it to compile code for x86_32 only.
|
||||
*/
|
||||
#undef HAVE_ARCH_X86_64_SUPPORT
|
||||
#include "../../arch/x86/util/unwind-libunwind.c"
|
||||
|
||||
/* Explicitly define NO_LIBUNWIND_DEBUG_FRAME, because non-ARM has no
|
||||
* dwarf_find_debug_frame() function.
|
||||
*/
|
||||
#ifndef NO_LIBUNWIND_DEBUG_FRAME
|
||||
#define NO_LIBUNWIND_DEBUG_FRAME
|
||||
#endif
|
||||
#include "util/unwind-libunwind-local.c"
|
||||
|
||||
struct unwind_libunwind_ops *
|
||||
x86_32_unwind_libunwind_ops = &_unwind_libunwind_ops;
|
Reference in New Issue
Block a user