2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License, version 2, as
4 * published by the Free Software Foundation.
6 * Copyright (C) 2015 Naveen N. Rao, IBM Corporation
12 #include "probe-event.h"
14 #ifdef HAVE_LIBELF_SUPPORT
15 bool elf__needs_adjust_symbols(GElf_Ehdr ehdr
)
17 return ehdr
.e_type
== ET_EXEC
||
18 ehdr
.e_type
== ET_REL
||
19 ehdr
.e_type
== ET_DYN
;
24 #if !defined(_CALL_ELF) || _CALL_ELF != 2
25 int arch__choose_best_symbol(struct symbol
*syma
,
26 struct symbol
*symb __maybe_unused
)
28 char *sym
= syma
->name
;
30 /* Skip over any initial dot */
34 /* Avoid "SyS" kernel syscall aliases */
35 if (strlen(sym
) >= 3 && !strncmp(sym
, "SyS", 3))
37 if (strlen(sym
) >= 10 && !strncmp(sym
, "compat_SyS", 10))
43 /* Allow matching against dot variants */
44 int arch__compare_symbol_names(const char *namea
, const char *nameb
)
46 /* Skip over initial dot */
52 return strcmp(namea
, nameb
);
56 #if defined(_CALL_ELF) && _CALL_ELF == 2
58 #ifdef HAVE_LIBELF_SUPPORT
59 void arch__sym_update(struct symbol
*s
, GElf_Sym
*sym
)
61 s
->arch_sym
= sym
->st_other
;
65 #define PPC64LE_LEP_OFFSET 8
67 void arch__fix_tev_from_maps(struct perf_probe_event
*pev
,
68 struct probe_trace_event
*tev
, struct map
*map
,
74 * When probing at a function entry point, we normally always want the
75 * LEP since that catches calls to the function through both the GEP and
76 * the LEP. Hence, we would like to probe at an offset of 8 bytes if
77 * the user only specified the function entry.
79 * However, if the user specifies an offset, we fall back to using the
80 * GEP since all userspace applications (objdump/readelf) show function
81 * disassembly with offsets from the GEP.
83 * In addition, we shouldn't specify an offset for kretprobes.
85 if (pev
->point
.offset
|| (!pev
->uprobes
&& pev
->point
.retprobe
) ||
89 lep_offset
= PPC64_LOCAL_ENTRY_OFFSET(sym
->arch_sym
);
91 if (map
->dso
->symtab_type
== DSO_BINARY_TYPE__KALLSYMS
)
92 tev
->point
.offset
+= PPC64LE_LEP_OFFSET
;
93 else if (lep_offset
) {
95 tev
->point
.address
+= lep_offset
;
97 tev
->point
.offset
+= lep_offset
;
101 #ifdef HAVE_LIBELF_SUPPORT
102 void arch__post_process_probe_trace_events(struct perf_probe_event
*pev
,
105 struct probe_trace_event
*tev
;
107 struct symbol
*sym
= NULL
;
111 map
= get_target_map(pev
->target
, pev
->uprobes
);
112 if (!map
|| map__load(map
) < 0)
115 for (i
= 0; i
< ntevs
; i
++) {
117 map__for_each_symbol(map
, sym
, tmp
) {
118 if (map
->unmap_ip(map
, sym
->start
) == tev
->point
.address
)
119 arch__fix_tev_from_maps(pev
, tev
, map
, sym
);
123 #endif /* HAVE_LIBELF_SUPPORT */