Lines Matching refs:image_base
377 Elf_Addr image_base = pinfo->dlpi_addr; in calculateImageBase() local
379 if (image_base == 0) { in calculateImageBase()
388 image_base = reinterpret_cast<Elf_Addr>(pinfo->dlpi_phdr) - in calculateImageBase()
395 return image_base; in calculateImageBase()
412 static bool checkAddrInSegment(const Elf_Phdr *phdr, size_t image_base, in checkAddrInSegment() argument
415 uintptr_t begin = image_base + phdr->p_vaddr; in checkAddrInSegment()
426 static bool checkForUnwindInfoSegment(const Elf_Phdr *phdr, size_t image_base, in checkForUnwindInfoSegment() argument
431 uintptr_t eh_frame_hdr_start = image_base + phdr->p_vaddr; in checkForUnwindInfoSegment()
447 uintptr_t exidx_start = image_base + phdr->p_vaddr; in checkForUnwindInfoSegment()
471 Elf_Addr image_base = calculateImageBase(pinfo); in findUnwindSectionsByPhdr() local
478 if (checkAddrInSegment(&pinfo->dlpi_phdr[i], image_base, cbdata)) { in findUnwindSectionsByPhdr()
491 if (checkForUnwindInfoSegment(phdr, image_base, cbdata)) { in findUnwindSectionsByPhdr()