mirror of
https://github.com/torvalds/linux.git
synced 2024-11-28 07:01:32 +00:00
e9c4bcdd34
Add Java function descriptor demangling support. Something bfd cannot do. Use the JAVA_DEMANGLE_NORET flag to avoid decoding the return type of functions. Signed-off-by: Stephane Eranian <eranian@google.com> Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Andi Kleen <ak@linux.intel.com> Cc: Carl Love <cel@us.ibm.com> Cc: David Ahern <dsahern@gmail.com> Cc: Jiri Olsa <jolsa@redhat.com> Cc: John McCutchan <johnmccutchan@google.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Pawel Moll <pawel.moll@arm.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Sonny Rao <sonnyrao@chromium.org> Cc: Sukadev Bhattiprolu <sukadev@linux.vnet.ibm.com> Link: http://lkml.kernel.org/r/1448874143-7269-2-git-send-email-eranian@google.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
11 lines
249 B
C
11 lines
249 B
C
#ifndef __PERF_DEMANGLE_JAVA
|
|
#define __PERF_DEMANGLE_JAVA 1
|
|
/*
|
|
* demangle function flags
|
|
*/
|
|
#define JAVA_DEMANGLE_NORET 0x1 /* do not process return type */
|
|
|
|
char * java_demangle_sym(const char *str, int flags);
|
|
|
|
#endif /* __PERF_DEMANGLE_JAVA */
|