Lines Matching refs:sectionHeaders
341 void ObjFile::parseSections(ArrayRef<SectionHeader> sectionHeaders) { in parseSections() argument
342 sections.reserve(sectionHeaders.size()); in parseSections()
345 for (const SectionHeader &sec : sectionHeaders) { in parseSections()
533 void ObjFile::parseRelocations(ArrayRef<SectionHeader> sectionHeaders, in parseRelocations() argument
594 sectionHeaders[relInfo.r_symbolnum - 1]; in parseRelocations()
648 totalAddend - sectionHeaders[minuendInfo.r_symbolnum - 1].addr; in parseRelocations()
799 void ObjFile::parseSymbols(ArrayRef<typename LP::section> sectionHeaders, in parseSymbols() argument
834 uint64_t sectionAddr = sectionHeaders[i].addr; in parseSymbols()
835 uint32_t sectionAlign = 1u << sectionHeaders[i].align; in parseSymbols()
1007 ArrayRef<SectionHeader> sectionHeaders; in parse() local
1010 sectionHeaders = ArrayRef<SectionHeader>{ in parse()
1012 parseSections(sectionHeaders); in parse()
1022 parseSymbols<LP>(sectionHeaders, nList, strtab, subsectionsViaSymbols); in parse()
1029 parseRelocations(sectionHeaders, sectionHeaders[i], *sections[i]); in parse()