Searched refs:PHdr (Results 1 – 1 of 1) sorted by relevance
1881 const ELFProgramHeader &PHdr = EnumPHdr.value(); in CreateSections() local1882 if (PHdr.p_type != PT_LOAD && PHdr.p_type != PT_TLS) in CreateSections()1886 PHdr.p_type == PT_TLS ? tls_provider : regular_provider; in CreateSections()1887 auto InfoOr = provider.GetAddressInfo(PHdr); in CreateSections()1891 uint32_t Log2Align = llvm::Log2_64(std::max<elf_xword>(PHdr.p_align, 1)); in CreateSections()1895 InfoOr->GetRangeBase(), InfoOr->GetByteSize(), PHdr.p_offset, in CreateSections()1896 PHdr.p_filesz, Log2Align, /*flags*/ 0); in CreateSections()1897 Segment->SetPermissions(GetPermissions(PHdr)); in CreateSections()1898 Segment->SetIsThreadSpecific(PHdr.p_type == PT_TLS); in CreateSections()