Lines Matching full:section
63 ElfSection section = ElfSection(s.first); in DumpSection() local
64 if (!section.ShouldDumpToAOTFile()) { in DumpSection()
138 uint32_t ElfBuilder::GetShIndex(ElfSecName section) const in GetShIndex()
143 if (sec == section) { in GetShIndex()
153 return sections_.size() + 1; // add first empty section. in GetSecNum()
170 Start of section headers: 64 (bytes into file)
175 Size of section headers: 64 (bytes)
176 Number of section headers: 7
177 Section header string table index: 3
209 // start of section headers in PackELFHeader()
213 // size of section headers in PackELFHeader()
215 // number of section headers in PackELFHeader()
217 // section header string table index in PackELFHeader()
219 // section header stub sec info index in PackELFHeader()
231 ElfSection section = ElfSection(s.first); in GetSegmentNum() local
232 if (!section.ShouldDumpToAOTFile()) { in GetSegmentNum()
247 ElfSection section = ElfSection(s.first); in SetLastSection() local
248 if (!section.ShouldDumpToAOTFile()) { in SetLastSection()
454 section of aot.an layout as follows:
455 There are 7 section headers, starting at offset 0x40:
457 Section Headers:
467 section of stub.an layout as follows:
468 There are 7 section headers, starting at offset 0x40:
489 uint32_t secNum = sections.size() + 1; // 1 : section id = 0 is null section in PackELFSections()
501 ElfSection section = ElfSection(secName); in PackELFSections() local
502 if (!section.ShouldDumpToAOTFile()) { in PackELFSections()
511 // text section address needs 16 bytes alignment in PackELFSections()
519 curShdr.sh_type = section.Type(); in PackELFSections()
520 curShdr.sh_flags = section.Flag(); in PackELFSections()
524 curShdr.sh_link = static_cast<uint32_t>(section.Link()); in PackELFSections()
570 LOG_ECMA(FATAL) << "this section should not dump to an file"; in PackELFSections()
578 curShdr.sh_entsize = static_cast<uint64_t>(section.Entsize()); in PackELFSections()
605 Section to Segment mapping:
619 Section to Segment mapping:
642 ElfSection section = ElfSection(s.first); in PackELFSegment() local
643 if (!section.ShouldDumpToAOTFile()) { in PackELFSegment()