Searched refs:lowpc (Results 1 – 10 of 10) sorted by relevance
/external/google-breakpad/src/common/dwarf/ |
D | functioninfo.cc | 61 s.lowpc = ULLONG_MAX; in CULineInfoHandler() 82 s.lowpc = ULLONG_MAX; in DefineFile() 104 if (address < files_->at(file_num).lowpc) { in AddLine() 105 files_->at(file_num).lowpc = address; in AddLine() 131 current_function_info_->lowpc = current_function_info_->highpc = 0; in StartDIE() 176 current_function_info_->lowpc = data; in ProcessAttributeUnsigned() 226 if (current_function_info_ && current_function_info_->lowpc) in EndDIE() 227 address_to_funcinfo_->insert(std::make_pair(current_function_info_->lowpc, in EndDIE()
|
D | functioninfo.h | 58 uint64 lowpc; member 67 uint64 lowpc; member
|
/external/elfutils/tests/ |
D | low_high_pc.c | 60 Dwarf_Addr lowpc = 0; in handle_die() local 62 if (dwarf_lowpc (die, &lowpc) != 0 && dwarf_hasattr (die, DW_AT_low_pc)) in handle_die() 71 && highpc <= lowpc in handle_die() 72 && ! (dwarf_tag (die) == DW_TAG_compile_unit && highpc == lowpc)) in handle_die() 74 printf("lowpc: %" PRIx64 ", highpc: %" PRIx64 "lx\n", lowpc, highpc); in handle_die()
|
D | addrscopes.c | 121 Dwarf_Addr lowpc, highpc; in handle_address() local 122 if (dwarf_lowpc (die, &lowpc) == 0 in handle_address() 125 lowpc += cubias; in handle_address() 127 Dwfl_Line *loline = dwfl_getsrc (dwfl, lowpc); in handle_address() 129 paddr (": ", lowpc, loline); in handle_address() 130 if (highpc != lowpc) in handle_address()
|
D | funcscopes.c | 149 Dwarf_Addr lowpc, highpc; in handle_function() local 150 if (dwarf_lowpc (die, &lowpc) == 0 in handle_function() 153 lowpc += a->dwbias; in handle_function() 155 Dwfl_Line *loline = dwfl_getsrc (a->dwfl, lowpc); in handle_function() 157 paddr (": ", lowpc, loline); in handle_function() 158 if (highpc != lowpc) in handle_function()
|
D | run-dwarf-ranges.sh | 20 testfiles debug-ranges-no-lowpc.o 22 testrun_compare ${abs_builddir}/dwarf-ranges debug-ranges-no-lowpc.o 0xb <<\EOF
|
D | Makefile.am | 180 run-dwarf-ranges.sh debug-ranges-no-lowpc.o.bz2 \
|
D | ChangeLog | 370 debug-ranges-no-lowpc.o.bz2. 397 * debug-ranges-no-lowpc.s, debug-ranges-no-lowpc.o.bz2: New test case. 1411 * low_high_pc.c: Allow highpc == lowpc for CU DIEs for buggy GCC.
|
/external/elfutils/libdw/ |
D | dwarf_entry_breakpoints.c | 137 Dwarf_Addr lowpc = (Dwarf_Addr) -1l; in dwarf_entry_breakpoints() local 146 if (begin < lowpc) in dwarf_entry_breakpoints() 148 lowpc = begin; in dwarf_entry_breakpoints() 159 ?: (lowpc == (Dwarf_Addr) -1l ? 0 in dwarf_entry_breakpoints() 160 : search_range (lowpc, highpc, false, true, in dwarf_entry_breakpoints()
|
/external/elfutils/src/ |
D | nm.c | 568 Dwarf_Addr lowpc; member 583 if (g1->lowpc <= g2->lowpc && g1->highpc >= g2->highpc) in local_compare() 586 g2->lowpc = g1->lowpc; in local_compare() 590 else if (g2->lowpc <= g1->lowpc && g2->highpc >= g1->highpc) in local_compare() 593 g1->lowpc = g2->lowpc; in local_compare() 598 result = g1->lowpc < g2->lowpc ? -1 : 1; in local_compare() 606 get_var_range (Dwarf_Die *die, Dwarf_Word *lowpc, Dwarf_Word *highpc) in get_var_range() argument 622 *lowpc = *highpc = loc[0].number; in get_var_range() 689 Dwarf_Addr lowpc; in get_local_names() local 693 if (dwarf_lowpc (die, &lowpc) != 0 in get_local_names() [all …]
|