Searched defs:cu_die (Results 1 - 5 of 5) sorted by relevance

/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dprobe-finder.h66 Dwarf_Die cu_die; /* Current CU */ member in struct:probe_finder
103 Dwarf_Die cu_die; /* Current CU */ member in struct:line_finder
H A Ddwarf-aux.c27 * @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) argument
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) argument
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
81 cu_find_lineinfo(Dwarf_Die *cu_die, unsigned long addr, const char **fname, int *lineno) argument
111 cu_walk_functions_at(Dwarf_Die *cu_die, Dwarf_Addr addr, int (*callback)(Dwarf_Die *, void *), void *data) argument
345 Dwarf_Die cu_die; local
431 die_find_realfunc(Dwarf_Die *cu_die, Dwarf_Addr addr, Dwarf_Die *die_mem) argument
555 Dwarf_Die cu_die; local
671 Dwarf_Die die_mem, *cu_die; local
[all...]
H A Dprobe-finder.c671 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/qemu/tcg/
H A Dtcg.c2737 uint8_t cu_die; member in struct:DebugInfo
2839 .cu_die = 1,
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp924 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
1170 if (cu_die)
1172 const char * cu_comp_dir = cu_die->GetAttributeValueAsString(this, dwarf_cu, DW_AT_comp_dir, NULL);
1173 dw_offset_t stmt_list = cu_die->GetAttributeValueAsUnsigned(this, dwarf_cu, DW_AT_stmt_list, DW_INVALID_OFFSET);

Completed in 354 milliseconds