Home
last modified time | relevance | path

Searched refs:SectionData (Results 1 – 9 of 9) sorted by relevance

/external/llvm/lib/MC/
DWinCOFFStreamer.cpp155 MCSectionData &SectionData = getAssembler().getOrCreateSectionData(*Section); in AddCommonSymbol() local
157 if (SectionData.getAlignment() < ByteAlignment) in AddCommonSymbol()
158 SectionData.setAlignment(ByteAlignment); in AddCommonSymbol()
165 new MCAlignFragment(ByteAlignment, 0, 0, ByteAlignment, &SectionData); in AddCommonSymbol()
167 SymbolData.setFragment(new MCFillFragment(0, 0, Size, &SectionData)); in AddCommonSymbol()
DWinCOFFObjectWriter.cpp153 void DefineSection(MCSectionData const &SectionData);
366 void WinCOFFObjectWriter::DefineSection(MCSectionData const &SectionData) { in DefineSection() argument
367 assert(SectionData.getSection().getVariant() == MCSection::SV_COFF in DefineSection()
371 static_cast<MCSectionCOFF const &>(SectionData.getSection()); in DefineSection()
389 switch (SectionData.getAlignment()) { in DefineSection()
409 coff_section->MCData = &SectionData; in DefineSection()
410 SectionMap[&SectionData.getSection()] = coff_section; in DefineSection()
642 MCSectionData const *SectionData = Fragment->getParent(); in RecordRelocation() local
645 assert(SectionMap.find(&SectionData->getSection()) != SectionMap.end() && in RecordRelocation()
650 COFFSection *coff_section = SectionMap[&SectionData->getSection()]; in RecordRelocation()
DMachObjectWriter.cpp393 cast<MCSectionMachO>(it->SectionData->getSection()); in BindIndirectSymbols()
399 IndirectSymBase.insert(std::make_pair(it->SectionData, IndirectIndex)); in BindIndirectSymbols()
409 cast<MCSectionMachO>(it->SectionData->getSection()); in BindIndirectSymbols()
416 IndirectSymBase.insert(std::make_pair(it->SectionData, IndirectIndex)); in BindIndirectSymbols()
819 static_cast<const MCSectionMachO&>(it->SectionData->getSection()); in WriteObject()
DMCMachOStreamer.cpp223 ISD.SectionData = getCurrentSectionData(); in EmitSymbolAttribute()
DMCELFStreamer.cpp231 ISD.SectionData = getCurrentSectionData(); in EmitSymbolAttribute()
/external/llvm/docs/
Dyaml2obj.rst32 SectionData:
157 SectionData: {type: str}
/external/llvm/test/MC/COFF/
Dmodule-asm.ll25 ; CHECK-NEXT: SectionData =
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyld.cpp114 StringRef SectionData; in loadObject() local
119 Check(si->getContents(SectionData)); in loadObject()
123 (const uint8_t*)SectionData.begin()); in loadObject()
/external/llvm/include/llvm/MC/
DMCAssembler.h659 MCSectionData *SectionData; member