HomeSort by relevance Sort by last modified time
    Searched defs:SectionData (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/MC/
WinCOFFStreamer.cpp 154 MCSectionData &SectionData = getAssembler().getOrCreateSectionData(*Section);
156 if (SectionData.getAlignment() < ByteAlignment)
157 SectionData.setAlignment(ByteAlignment);
164 new MCAlignFragment(ByteAlignment, 0, 0, ByteAlignment, &SectionData);
166 SymbolData.setFragment(new MCFillFragment(0, 0, Size, &SectionData));
WinCOFFObjectWriter.cpp 152 void DefineSection(MCSectionData const &SectionData);
364 void WinCOFFObjectWriter::DefineSection(MCSectionData const &SectionData) {
365 assert(SectionData.getSection().getVariant() == MCSection::SV_COFF
369 static_cast<MCSectionCOFF const &>(SectionData.getSection());
387 switch (SectionData.getAlignment()) {
407 coff_section->MCData = &SectionData;
408 SectionMap[&SectionData.getSection()] = coff_section;
640 MCSectionData const *SectionData = Fragment->getParent();
643 assert(SectionMap.find(&SectionData->getSection()) != SectionMap.end() &&
648 COFFSection *coff_section = SectionMap[&SectionData->getSection()]
    [all...]
  /external/llvm/include/llvm/MC/
MCAssembler.h 511 // FIXME: Same concerns as with SectionData.
637 MCSectionData *SectionData;

Completed in 32 milliseconds