Home | History | Annotate | Download | only in libdw

Lines Matching full:address

132 	 address range.  That is odd.  Ignore this FDE.  And just use
175 binary_search_fde (Dwarf_CFI *cache, Dwarf_Addr address)
211 if (address < start)
228 /* Look at the start address in the following entry. */
234 if (address >= end)
247 __libdw_find_fde (Dwarf_CFI *cache, Dwarf_Addr address)
249 /* Look for a cached FDE covering this address. */
251 const struct dwarf_fde fde_key = { .start = address, .end = 0 };
259 Dwarf_Off offset = binary_search_fde (cache, address);
265 /* Sanity check the address range. */
266 if (unlikely (address < fde->start))
272 if (unlikely (address >= fde->end))
316 if (fde->start <= address && fde->end > address)
321 /* We found no FDE covering this address. */