Searched refs:Assoc (Results 1 - 7 of 7) sorted by relevance

/external/llvm/include/llvm/MC/
H A DMCSectionCOFF.h39 /// Assoc - This is name of the associated section, if it is a COMDAT
42 mutable const MCSectionCOFF *Assoc; member in class:llvm::MCSectionCOFF
47 int Selection, const MCSectionCOFF *Assoc, SectionKind K)
49 Characteristics(Characteristics), Selection(Selection), Assoc(Assoc) {
53 (Assoc != 0) &&
72 const MCSectionCOFF *getAssocSection() const { return Assoc; }
74 void setSelection(int Selection, const MCSectionCOFF *Assoc = 0) const;
46 MCSectionCOFF(StringRef Section, unsigned Characteristics, int Selection, const MCSectionCOFF *Assoc, SectionKind K) argument
H A DMCContext.h262 const MCSectionCOFF *Assoc = 0);
/external/llvm/lib/MC/
H A DMCSectionCOFF.cpp32 const MCSectionCOFF *Assoc) const {
35 (Assoc != 0) &&
38 this->Assoc = Assoc;
78 OS << "\t.linkonce associative " << Assoc->getSectionName() << "\n";
H A DMCContext.cpp280 const MCSectionCOFF *Assoc) {
291 Selection, Assoc, Kind);
277 getCOFFSection(StringRef Section, unsigned Characteristics, SectionKind Kind, int Selection, const MCSectionCOFF *Assoc) argument
H A DWinCOFFObjectWriter.cpp775 COFFSection *Assoc = SectionMap.lookup(MCSec.getAssocSection()); local
776 if (!Assoc) {
783 if (Assoc->Number == -1)
786 (*i)->Symbol->Aux[0].Aux.SectionDefinition.Number = SectionIndices[Assoc];
/external/llvm/lib/MC/MCParser/
H A DCOFFAsmParser.cpp439 const MCSectionCOFF *Assoc = 0; local
446 Assoc = static_cast<const MCSectionCOFF*>(
448 if (!Assoc)
450 if (Assoc == Current)
452 if (!(Assoc->getCharacteristics() & COFF::IMAGE_SCN_LNK_COMDAT))
454 if (Assoc->getSelection() == COFF::IMAGE_COMDAT_SELECT_ASSOCIATIVE)
462 Current->setSelection(Type, Assoc);
/external/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp897 const coff_section *Assoc; local
900 if ((EC = Obj->getSection(Aux->Number, Assoc)) ||
901 (EC = Obj->getSectionName(Assoc, AssocName))) {

Completed in 133 milliseconds