/external/linux-tools-perf/perf-3.12.0/tools/perf/util/ |
dwarf-aux.h | 28 extern const char *cu_find_realpath(Dwarf_Die *cu_die, const char *fname); 31 extern const char *cu_get_comp_dir(Dwarf_Die *cu_die); 38 extern int cu_walk_functions_at(Dwarf_Die *cu_die, Dwarf_Addr addr, 79 extern Dwarf_Die *die_find_realfunc(Dwarf_Die *cu_die, Dwarf_Addr addr,
|
dwarf-aux.c | 27 * @cu_die: A DIE(dwarf information entry) of CU(compilation Unit) 30 * Find the real(long) path of @fname in @cu_die. 32 const char *cu_find_realpath(Dwarf_Die *cu_die, const char *fname) 42 ret = dwarf_getsrcfiles(cu_die, &files, &nfiles); 58 * @cu_die: a CU DIE 60 * Get the path of compilation directory of given @cu_die. 64 const char *cu_get_comp_dir(Dwarf_Die *cu_die) 67 if (dwarf_attr(cu_die, DW_AT_comp_dir, &attr) == NULL) 74 * @cu_die: a CU DIE 79 * Find a line number and file name for @addr in @cu_die 345 Dwarf_Die cu_die; local 555 Dwarf_Die cu_die; local 671 Dwarf_Die die_mem, *cu_die; local [all...] |
probe-finder.h | 66 Dwarf_Die cu_die; /* Current CU */ member in struct:probe_finder 103 Dwarf_Die cu_die; /* Current CU */ member in struct:line_finder
|
probe-finder.c | 671 if (!die_find_variable_at(&pf->cu_die, pf->pvar->var, 0, &vr_die)) 748 if (!die_find_realfunc(&pf->cu_die, pf->addr, &pf->sp_die)) { 836 cu_walk_functions_at(&pf->cu_die, pf->addr, find_best_scope_cb, &fsp); 867 return die_walk_lines(&pf->cu_die, probe_point_line_walker, pf); 1035 dwarf_getfuncs(&pf->cu_die, probe_point_search_cb, &_param, 0); 1042 Dwarf_Die *cu_die; member in struct:pubname_callback_param 1056 if (!dwarf_offdie(dbg, gl->cu_offset, param->cu_die)) 1094 .cu_die = &pf->cu_die, 1114 diep = dwarf_offdie(self->dbg, off + cuhl, &pf->cu_die); [all...] |
/external/lldb/source/Plugins/SymbolFile/DWARF/ |
DWARFDebugInfoEntry.cpp | [all...] |
SymbolFileDWARF.cpp | 924 const DWARFDebugInfoEntry * cu_die = dwarf_cu->GetCompileUnitDIEOnly (); local 925 if (cu_die) 927 const char * cu_die_name = cu_die->GetName(this, dwarf_cu); 928 const char * cu_comp_dir = cu_die->GetAttributeValueAsString(this, dwarf_cu, DW_AT_comp_dir, NULL); 929 LanguageType cu_language = (LanguageType)cu_die->GetAttributeValueAsUnsigned(this, dwarf_cu, DW_AT_language, 0); 1168 const DWARFDebugInfoEntry * cu_die = dwarf_cu->GetCompileUnitDIEOnly(); local [all...] |