Home
last modified time | relevance | path

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

/external/llvm/lib/MC/
DWinCOFFStreamer.cpp160 MCSectionData &SectionData = getAssembler().getOrCreateSectionData(*Section); in AddCommonSymbol() local
162 if (SectionData.getAlignment() < ByteAlignment) in AddCommonSymbol()
163 SectionData.setAlignment(ByteAlignment); in AddCommonSymbol()
170 new MCAlignFragment(ByteAlignment, 0, 0, ByteAlignment, &SectionData); in AddCommonSymbol()
172 SymbolData.setFragment(new MCFillFragment(0, 0, Size, &SectionData)); in AddCommonSymbol()
DWinCOFFObjectWriter.cpp149 void DefineSection(MCSectionData const &SectionData);
364 void WinCOFFObjectWriter::DefineSection(MCSectionData const &SectionData) { in DefineSection() argument
365 assert(SectionData.getSection().getVariant() == MCSection::SV_COFF in DefineSection()
369 static_cast<MCSectionCOFF const &>(SectionData.getSection()); in DefineSection()
387 switch (SectionData.getAlignment()) { in DefineSection()
407 coff_section->MCData = &SectionData; in DefineSection()
408 SectionMap[&SectionData.getSection()] = coff_section; in DefineSection()
641 MCSectionData const *SectionData = Fragment->getParent(); in RecordRelocation() local
644 assert(SectionMap.find(&SectionData->getSection()) != SectionMap.end() && in RecordRelocation()
649 COFFSection *coff_section = SectionMap[&SectionData->getSection()]; in RecordRelocation()
DMachObjectWriter.cpp436 cast<MCSectionMachO>(it->SectionData->getSection()); in BindIndirectSymbols()
442 IndirectSymBase.insert(std::make_pair(it->SectionData, IndirectIndex)); in BindIndirectSymbols()
452 cast<MCSectionMachO>(it->SectionData->getSection()); in BindIndirectSymbols()
459 IndirectSymBase.insert(std::make_pair(it->SectionData, IndirectIndex)); in BindIndirectSymbols()
904 static_cast<const MCSectionMachO&>(it->SectionData->getSection()); in WriteObject()
DMCMachOStreamer.cpp229 ISD.SectionData = getCurrentSectionData(); in EmitSymbolAttribute()
DMCELFStreamer.cpp138 ISD.SectionData = getCurrentSectionData(); in EmitSymbolAttribute()
/external/llvm/docs/
Dyaml2obj.rst30 SectionData:
155 SectionData: {type: str}
/external/llvm/test/MC/COFF/
Dweak-symbol-section-specification.ll22 ; CHECK-NEXT: SectionData =
Dmodule-asm.ll25 ; CHECK-NEXT: SectionData =
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyld.cpp109 StringRef SectionData; in loadObject() local
115 Check(si->getContents(SectionData)); in loadObject()
120 (const uint8_t*)SectionData.begin()); in loadObject()
/external/llvm/include/llvm/MC/
DMCAssembler.h795 MCSectionData *SectionData; member