Lines Matching defs:sectionNumber
295 SectionChunk *ObjFile::readSection(uint32_t sectionNumber,
298 const coff_section *sec = getSection(sectionNumber);
304 Fatal(symtab.ctx) << "getSectionName failed: #" << sectionNumber << ": "
391 int32_t sectionNumber = sym.getSectionNumber();
401 << " (sec " << sectionNumber
417 SectionChunk *c = readSection(sectionNumber, def, "");
418 sparseChunks[sectionNumber] = c;
424 sparseChunks[sectionNumber] = nullptr;
437 int32_t sectionNumber = sym.getSectionNumber();
438 SectionChunk *sc = sparseChunks[sectionNumber];
441 prevailingSectionMap[name] = sectionNumber;
766 int32_t sectionNumber = sym.getSectionNumber();
767 if (sectionNumber == llvm::COFF::IMAGE_SYM_DEBUG)
798 if (llvm::COFF::isReservedSectionNumber(sectionNumber))
801 << Twine(sectionNumber);
803 if ((uint32_t)sectionNumber >= sparseChunks.size())
806 << Twine(sectionNumber);
819 if (const coff_aux_section_definition *def = comdatDefs[sectionNumber]) {
820 comdatDefs[sectionNumber] = nullptr;
846 SectionChunk *c = readSection(sectionNumber, def, getName());
847 sparseChunks[sectionNumber] = c;
854 sparseChunks[sectionNumber] = nullptr;
861 if (sparseChunks[sectionNumber] == pendingComdat) {
864 comdatDefs[sectionNumber] = def;