Lines Matching defs:def
234 const coff_aux_section_definition *def,
283 if (def)
284 c->checksum = def->CheckSum;
321 COFFSymbolRef sym, const coff_aux_section_definition *def) {
322 readAssociativeDefinition(sym, def, def->getNumber(sym.isBigObj()));
326 const coff_aux_section_definition *def,
354 SectionChunk *c = readSection(sectionNumber, def, "");
383 COFFSymbolRef sym, const coff_aux_section_definition *def,
392 readAssociativeDefinition(sym, def, parentSym->second);
460 if (const coff_aux_section_definition *def = sym.getSectionDefinition()) {
461 if (def->Selection == IMAGE_COMDAT_SELECT_ASSOCIATIVE)
462 readAssociativeDefinition(sym, def);
464 maybeAssociateSEHForMingw(sym, def, prevailingSectionMap);
497 if (const coff_aux_section_definition *def = sym.getSectionDefinition())
498 return def;
506 const llvm::object::coff_aux_section_definition *def) {
579 if (!leaderDef || leaderDef->Length != def->Length)
675 if (const coff_aux_section_definition *def = comdatDefs[sectionNumber]) {
688 if (def->Selection < (int)IMAGE_COMDAT_SELECT_NODUPLICATES ||
691 def->Selection > (int)IMAGE_COMDAT_SELECT_LARGEST) {
692 fatal("unknown comdat type " + std::to_string((int)def->Selection) +
695 COMDATType selection = (COMDATType)def->Selection;
698 handleComdatSelection(sym, selection, prevailing, leader, def);
701 SectionChunk *c = readSection(sectionNumber, def, getName());
717 if (const coff_aux_section_definition *def = sym.getSectionDefinition()) {
718 if (def->Selection != IMAGE_COMDAT_SELECT_ASSOCIATIVE)
719 comdatDefs[sectionNumber] = def;