aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util/demangle-ocaml.h
diff options
context:
space:
mode:
authorFabian Hemmer <copy@copy.sh>2021-02-03 16:15:37 -0500
committerArnaldo Carvalho de Melo <acme@redhat.com>2021-02-17 15:15:06 -0300
commitcef7af25c9d3a7ea5d0c82424dc8bf93a95b6fc3 (patch)
treec55d0626aaa0f3dfdf360a476599b64b73453032 /tools/perf/util/demangle-ocaml.h
parenttools api fs: Cache cgroupfs mount point (diff)
downloadlinux-dev-cef7af25c9d3a7ea5d0c82424dc8bf93a95b6fc3.tar.xz
linux-dev-cef7af25c9d3a7ea5d0c82424dc8bf93a95b6fc3.zip
perf tools: Add OCaml demangling
Detect symbols generated by the OCaml compiler based on their prefix. Demangle OCaml symbols, returning a newly allocated string (like the existing Java demangling functionality). Move a helper function (hex) from tests/code-reading.c to util/string.c To test: echo 'Printf.printf "%d\n" (Random.int 42)' > test.ml perf record ocamlopt.opt test.ml perf report -d ocamlopt.opt Signed-off-by: Fabian Hemmer <copy@copy.sh> Acked-by: Namhyung Kim <namhyung@kernel.org> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Peter Zijlstra <peterz@infradead.org> LPU-Reference: 20210203211537.b25ytjb6dq5jfbwx@nyu Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/demangle-ocaml.h')
-rw-r--r--tools/perf/util/demangle-ocaml.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/perf/util/demangle-ocaml.h b/tools/perf/util/demangle-ocaml.h
new file mode 100644
index 000000000000..843cc4fa10a6
--- /dev/null
+++ b/tools/perf/util/demangle-ocaml.h
@@ -0,0 +1,7 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+#ifndef __PERF_DEMANGLE_OCAML
+#define __PERF_DEMANGLE_OCAML 1
+
+char * ocaml_demangle_sym(const char *str);
+
+#endif /* __PERF_DEMANGLE_OCAML */