Home
last modified time | relevance | path

Searched refs:PHdr (Results 1 – 1 of 1) sorted by relevance

/external/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
DObjectFileELF.cpp1777 const ELFProgramHeader &PHdr = EnumPHdr.value(); in CreateSections() local
1778 if (PHdr.p_type != PT_LOAD && PHdr.p_type != PT_TLS) in CreateSections()
1782 PHdr.p_type == PT_TLS ? tls_provider : regular_provider; in CreateSections()
1783 auto InfoOr = provider.GetAddressInfo(PHdr); in CreateSections()
1787 uint32_t Log2Align = llvm::Log2_64(std::max<elf_xword>(PHdr.p_align, 1)); in CreateSections()
1791 InfoOr->GetRangeBase(), InfoOr->GetByteSize(), PHdr.p_offset, in CreateSections()
1792 PHdr.p_filesz, Log2Align, /*flags*/ 0); in CreateSections()
1793 Segment->SetPermissions(GetPermissions(PHdr)); in CreateSections()
1794 Segment->SetIsThreadSpecific(PHdr.p_type == PT_TLS); in CreateSections()