Lines Matching defs:def
296 const coff_aux_section_definition *def,
345 if (def)
346 c->checksum = def->CheckSum;
383 COFFSymbolRef sym, const coff_aux_section_definition *def) {
384 readAssociativeDefinition(sym, def, def->getNumber(sym.isBigObj()));
388 const coff_aux_section_definition *def,
417 SectionChunk *c = readSection(sectionNumber, def, "");
446 COFFSymbolRef sym, const coff_aux_section_definition *def,
455 readAssociativeDefinition(sym, def, parentSym->second);
556 if (const coff_aux_section_definition *def = sym.getSectionDefinition()) {
557 if (def->Selection == IMAGE_COMDAT_SELECT_ASSOCIATIVE)
558 readAssociativeDefinition(sym, def);
560 maybeAssociateSEHForMingw(sym, def, prevailingSectionMap);
610 if (const coff_aux_section_definition *def = sym.getSectionDefinition())
611 return def;
619 const llvm::object::coff_aux_section_definition *def) {
692 if (!leaderDef || leaderDef->Length != def->Length)
819 if (const coff_aux_section_definition *def = comdatDefs[sectionNumber]) {
832 if (def->Selection < (int)IMAGE_COMDAT_SELECT_NODUPLICATES ||
835 def->Selection > (int)IMAGE_COMDAT_SELECT_LARGEST) {
837 << std::to_string((int)def->Selection) << " for " << getName()
840 COMDATType selection = (COMDATType)def->Selection;
843 handleComdatSelection(sym, selection, prevailing, leader, def);
846 SectionChunk *c = readSection(sectionNumber, def, getName());
862 if (const coff_aux_section_definition *def = sym.getSectionDefinition()) {
863 if (def->Selection != IMAGE_COMDAT_SELECT_ASSOCIATIVE)
864 comdatDefs[sectionNumber] = def;