Lines Matching refs:lopc
50 Dwarf_Unsigned lopc; member
63 Dwarf_Unsigned lopc; member
97 return (e1->lopc < e2->lopc ? -1 : e1->lopc > e2->lopc); in lopccmp()
150 handle_high_pc(Dwarf_Die die, Dwarf_Unsigned lopc, Dwarf_Unsigned *hipc) in handle_high_pc() argument
168 *hipc += lopc; in handle_high_pc()
177 Dwarf_Unsigned lopc, hipc, addr_base; in search_func() local
195 lopc = f->ranges[i].dwr_addr1 + addr_base; in search_func()
197 if (addr >= lopc && addr < hipc) { in search_func()
199 (lopc >= f0->lopc && in search_func()
202 f0->lopc = lopc; in search_func()
208 } else if (addr >= f->lopc && addr < f->hipc) { in search_func()
210 (f->lopc >= f0->lopc && f->hipc <= f0->hipc)) in search_func()
225 Dwarf_Unsigned lopc, hipc, ranges_off; in collect_func() local
266 if (dwarf_attrval_unsigned(die, DW_AT_low_pc, &lopc, in collect_func()
270 if (dwarf_attrval_unsigned(die, DW_AT_low_pc, &lopc, in collect_func()
274 if (handle_high_pc(die, lopc, &hipc) != DW_DLV_OK) in collect_func()
324 f->lopc = lopc; in collect_func()
410 find.lopc = addr; in culookup()
413 if (res->lopc != addr) in culookup()
415 if (res != NULL && addr >= res->lopc && addr < res->hipc) in culookup()
419 if (res != NULL && addr >= res->lopc && addr < res->hipc) in culookup()
439 Dwarf_Unsigned lopc, length; in check_labels() local
467 &lopc, &de) == DW_DLV_OK) in check_labels()
499 &lopc, &de) == DW_DLV_OK) { in check_labels()
500 if (curlopc == lopc) { in check_labels()
511 labelp->lopc = lopc; in check_labels()
534 if (labels[i]->lopc == (Dwarf_Unsigned)start) { in check_labels()
543 if (addr >= labels[i]->lopc && addr < labels[i]->hipc) { in check_labels()
546 curlopc = (*range)->lopc; in check_labels()
572 Dwarf_Unsigned addr_base, lopc, hipc; in check_range() local
605 lopc = ranges[i].dwr_addr1 + addr_base; in check_range()
608 if (lopc == curlopc) in check_range()
611 if (addr >= lopc && addr < hipc){ in check_range()
616 } else if (dwarf_attrval_unsigned(die, DW_AT_low_pc, &lopc, &de) == in check_range()
618 if (lopc == curlopc) in check_range()
626 if (handle_high_pc(die, lopc, &hipc) != DW_DLV_OK) in check_range()
633 if (addr >= lopc && addr < hipc) { in check_range()
645 (*range)->lopc = lopc; in check_range()
651 curlopc = lopc; in check_range()