Home | History | Annotate | Download | only in libdw

Lines Matching defs:base

403   Dwarf_Addr base = (Dwarf_Addr) -1;
423 if (begin == (Elf64_Addr) -1l) /* Base address entry. */
425 base = end;
426 if (unlikely (base == (Dwarf_Addr) -1))
436 if (begin == (Elf32_Addr) -1) /* Base address entry. */
438 base = end;
457 if (base == (Dwarf_Addr) -1)
459 /* Fetch the CU's base address. */
462 /* Find the base address of the compilation unit. It will
464 the base address could be overridden by DW_AT_entry_pc. It's
468 if (unlikely (INTUSE(dwarf_lowpc) (&cudie, &base) != 0)
472 &base) != 0)
477 /* The compiler provided no base address when it should
480 base = 0;
484 if (address >= base + begin && address < base + end)