• Home
  • Raw
  • Download

Lines Matching full:section

93         ElfSection section = ElfSection(s.first);  in DumpSection()  local
94 if (!section.ShouldDumpToAOTFile()) { in DumpSection()
168 uint32_t ElfBuilder::GetShIndex(ElfSecName section) const in GetShIndex()
173 if (sec == section) { in GetShIndex()
183 return sections_.size() + 1; // add first empty section. in GetSecNum()
200 Start of section headers: 64 (bytes into file)
205 Size of section headers: 64 (bytes)
206 Number of section headers: 7
207 Section header string table index: 3
239 // start of section headers in PackELFHeader()
243 // size of section headers in PackELFHeader()
245 // number of section headers in PackELFHeader()
247 // section header string table index in PackELFHeader()
249 // section header stub sec info index in PackELFHeader()
261 ElfSection section = ElfSection(s.first); in GetSegmentNum() local
262 if (!section.ShouldDumpToAOTFile()) { in GetSegmentNum()
277 ElfSection section = ElfSection(s.first); in SetLastSection() local
278 if (!section.ShouldDumpToAOTFile()) { in SetLastSection()
515 section of aot.an layout as follows:
516 There are 7 section headers, starting at offset 0x40:
518 Section Headers:
528 section of stub.an layout as follows:
529 There are 7 section headers, starting at offset 0x40:
550 uint32_t secNum = sections.size() + 1; // 1 : section id = 0 is null section in PackELFSections()
562 ElfSection section = ElfSection(secName); in PackELFSections() local
563 if (!section.ShouldDumpToAOTFile()) { in PackELFSections()
572 // text section address needs 16 bytes alignment in PackELFSections()
580 curShdr.sh_type = section.Type(); in PackELFSections()
581 curShdr.sh_flags = section.Flag(); in PackELFSections()
585 curShdr.sh_link = static_cast<uint32_t>(section.Link()); in PackELFSections()
632 LOG_ECMA(FATAL) << "this section should not dump to an file"; in PackELFSections()
640 curShdr.sh_entsize = static_cast<uint64_t>(section.Entsize()); in PackELFSections()
667 Section to Segment mapping:
681 Section to Segment mapping:
704 ElfSection section = ElfSection(s.first); in PackELFSegment() local
705 if (!section.ShouldDumpToAOTFile()) { in PackELFSegment()