Searched refs:highpc (Results 1 - 6 of 6) sorted by relevance
/third_party/elfutils/tests/ |
H A D | funcscopes.c | 149 Dwarf_Addr lowpc, highpc; in handle_function() local 151 && dwarf_highpc (die, &highpc) == 0) in handle_function() 154 highpc += a->dwbias; in handle_function() 156 Dwfl_Line *hiline = dwfl_getsrc (a->dwfl, highpc - 1); in handle_function() 158 if (highpc != lowpc) in handle_function() 159 paddr (" .. ", highpc - 1, hiline == loline ? NULL : hiline); in handle_function()
|
H A D | addrscopes.c | 121 Dwarf_Addr lowpc, highpc; in handle_address() local 123 && dwarf_highpc (die, &highpc) == 0) in handle_address() 126 highpc += cubias; in handle_address() 128 Dwfl_Line *hiline = dwfl_getsrc (dwfl, highpc - 1); in handle_address() 130 if (highpc != lowpc) in handle_address() 131 paddr (" .. ", highpc - 1, hiline == loline ? NULL : hiline); in handle_address()
|
H A D | low_high_pc.c | 62 Dwarf_Addr highpc = 0; in handle_die() local 65 if (dwarf_highpc (die, &highpc) != 0 && dwarf_hasattr (die, DW_AT_high_pc)) in handle_die() 68 /* GCC < 4.7 had a bug where no code CUs got a highpc == lowpc. in handle_die() 72 && highpc <= lowpc in handle_die() 73 && ! (dwarf_tag (die) == DW_TAG_compile_unit && highpc == lowpc)) in handle_die() 75 printf("lowpc: %" PRIx64 ", highpc: %" PRIx64 "\n", lowpc, highpc); in handle_die() 76 fail (off, name, "highpc <= lowpc"); in handle_die()
|
/third_party/elfutils/src/ |
H A D | nm.c | 554 Dwarf_Addr highpc; member 568 if (g1->lowpc <= g2->lowpc && g1->highpc >= g2->highpc) in local_compare() 572 g2->highpc = g1->highpc; in local_compare() 575 else if (g2->lowpc <= g1->lowpc && g2->highpc >= g1->highpc) in local_compare() 579 g1->highpc = g2->highpc; in local_compare() 591 get_var_range (Dwarf_Die *die, Dwarf_Word *lowpc, Dwarf_Word *highpc) in get_var_range() argument 675 Dwarf_Addr highpc; get_local_names() local 1402 Dwarf_Addr highpc; show_symbols() local [all...] |
H A D | readelf.c | 7603 /* When highpc is in constant form it is relative to lowpc. in attr_callback() 7605 Dwarf_Addr highpc; in attr_callback() local 7606 if (attr == DW_AT_high_pc && dwarf_highpc (die, &highpc) == 0) in attr_callback() 7611 print_dwarf_addr (cbargs->dwflmod, cbargs->addrsize, highpc, highpc); in attr_callback()
|
/third_party/elfutils/libdw/ |
H A D | dwarf_entry_breakpoints.c | 138 Dwarf_Addr highpc = (Dwarf_Addr) -1l; in dwarf_entry_breakpoints() local 149 highpc = end; in dwarf_entry_breakpoints() 160 : search_range (lowpc, highpc, false, true, in dwarf_entry_breakpoints()
|
Completed in 18 milliseconds