Lines Matching refs:m_sect_headers
417 m_dos_header(), m_coff_header(), m_coff_header_opt(), m_sect_headers(), in ObjectFilePECOFF()
426 m_dos_header(), m_coff_header(), m_coff_header_opt(), m_sect_headers(), in ObjectFilePECOFF()
436 m_sect_headers.clear(); in ParseHeader()
712 m_sect_headers.clear(); in ParseSectionHeaders()
722 m_sect_headers.resize(nsects); in ParseSectionHeaders()
727 memcpy(m_sect_headers[idx].name, name_data, 8); in ParseSectionHeaders()
728 m_sect_headers[idx].vmsize = section_header_data.GetU32(&offset); in ParseSectionHeaders()
729 m_sect_headers[idx].vmaddr = section_header_data.GetU32(&offset); in ParseSectionHeaders()
730 m_sect_headers[idx].size = section_header_data.GetU32(&offset); in ParseSectionHeaders()
731 m_sect_headers[idx].offset = section_header_data.GetU32(&offset); in ParseSectionHeaders()
732 m_sect_headers[idx].reloff = section_header_data.GetU32(&offset); in ParseSectionHeaders()
733 m_sect_headers[idx].lineoff = section_header_data.GetU32(&offset); in ParseSectionHeaders()
734 m_sect_headers[idx].nreloc = section_header_data.GetU16(&offset); in ParseSectionHeaders()
735 m_sect_headers[idx].nline = section_header_data.GetU16(&offset); in ParseSectionHeaders()
736 m_sect_headers[idx].flags = section_header_data.GetU32(&offset); in ParseSectionHeaders()
742 return !m_sect_headers.empty(); in ParseSectionHeaders()
993 const uint32_t nsects = m_sect_headers.size(); in CreateSections()
996 llvm::StringRef sect_name = GetSectionName(m_sect_headers[idx]); in CreateSections()
998 SectionType section_type = GetSectionType(sect_name, m_sect_headers[idx]); in CreateSections()
1007 m_sect_headers[idx].vmaddr, // File VM address == addresses as in CreateSections()
1009 m_sect_headers[idx].vmsize, // VM size in bytes of this section in CreateSections()
1010 m_sect_headers[idx] in CreateSections()
1012 m_sect_headers[idx] in CreateSections()
1015 m_sect_headers[idx].flags)); // Flags for this section in CreateSections()
1018 if (m_sect_headers[idx].flags & llvm::COFF::IMAGE_SCN_MEM_EXECUTE) in CreateSections()
1020 if (m_sect_headers[idx].flags & llvm::COFF::IMAGE_SCN_MEM_READ) in CreateSections()
1022 if (m_sect_headers[idx].flags & llvm::COFF::IMAGE_SCN_MEM_WRITE) in CreateSections()
1297 SectionHeaderCollIter pos, end = m_sect_headers.end(); in DumpSectionHeaders()
1299 for (pos = m_sect_headers.begin(); pos != end; ++pos, ++idx) { in DumpSectionHeaders()