/external/swiftshader/third_party/LLVM/include/llvm/MC/ |
D | MCAsmLayout.h | 18 class MCSectionData; variable 30 typedef llvm::SmallVectorImpl<MCSectionData*>::const_iterator const_iterator; 31 typedef llvm::SmallVectorImpl<MCSectionData*>::iterator iterator; 37 llvm::SmallVector<MCSectionData*, 16> SectionOrder; 42 mutable DenseMap<const MCSectionData*, MCFragment *> LastValidFragment; 68 llvm::SmallVectorImpl<MCSectionData*> &getSectionOrder() { in getSectionOrder() 71 const llvm::SmallVectorImpl<MCSectionData*> &getSectionOrder() const { in getSectionOrder() 89 uint64_t getSectionAddressSize(const MCSectionData *SD) const; 93 uint64_t getSectionFileSize(const MCSectionData *SD) const;
|
D | MCAssembler.h | 35 class MCSectionData; variable 63 MCSectionData *Parent; 85 MCFragment(FragmentType _Kind, MCSectionData *_Parent = 0); 94 MCSectionData *getParent() const { return Parent; } in getParent() 95 void setParent(MCSectionData *Value) { Parent = Value; } in setParent() 119 MCDataFragment(MCSectionData *SD = 0) : MCFragment(FT_Data, SD) {} in MCFragment() 177 MCInstFragment(MCInst _Inst, MCSectionData *SD = 0) 238 unsigned _MaxBytesToEmit, MCSectionData *SD = 0) 278 MCSectionData *SD = 0) 310 MCOrgFragment(const MCExpr &_Offset, int8_t _Value, MCSectionData *SD = 0) [all …]
|
D | MCMachObjectWriter.h | 24 class MCSectionData; variable 93 llvm::DenseMap<const MCSectionData*, 95 llvm::DenseMap<const MCSectionData*, unsigned> IndirectSymBase; 123 uint64_t getSectionAddress(const MCSectionData* SD) const { in getSectionAddress() 132 uint64_t getPaddingSize(const MCSectionData *SD, 164 const MCSectionData &SD, uint64_t FileOffset, 196 void addRelocation(const MCSectionData *SD, in addRelocation()
|
D | MCObjectStreamer.h | 18 class MCSectionData; variable 34 MCSectionData *CurSectionData; 46 MCSectionData *getCurrentSectionData() const { in getCurrentSectionData()
|
D | MCExpr.h | 23 class MCSectionData; variable 28 typedef DenseMap<const MCSectionData*, uint64_t> SectionAddrMap;
|
D | MCDwarf.h | 29 class MCSectionData; variable
|
/external/swiftshader/third_party/LLVM/lib/MC/ |
D | MCAssembler.cpp | 64 const MCSectionData &SD = *F->getParent(); in isFragmentUpToDate() 78 const MCSectionData &SD = *F->getParent(); in Invalidate() 83 MCSectionData &SD = *F->getParent(); in EnsureValid() 136 uint64_t MCAsmLayout::getSectionAddressSize(const MCSectionData *SD) const { in getSectionAddressSize() 142 uint64_t MCAsmLayout::getSectionFileSize(const MCSectionData *SD) const { in getSectionFileSize() 159 MCFragment::MCFragment(FragmentType _Kind, MCSectionData *_Parent) in MCFragment() 168 MCSectionData::MCSectionData() : Section(0) {} in MCSectionData() function in MCSectionData 170 MCSectionData::MCSectionData(const MCSection &_Section, MCAssembler *A) in MCSectionData() function in MCSectionData 496 void MCAssembler::WriteSectionData(const MCSectionData *SD, in WriteSectionData() 503 for (MCSectionData::const_iterator it = SD->begin(), in WriteSectionData() [all …]
|
D | ELFObjectWriter.h | 47 static bool IsELFMetaDataSection(const MCSectionData &SD); 48 static uint64_t DataSectionSize(const MCSectionData &SD); 50 const MCSectionData &SD); 52 const MCSectionData &SD); 114 llvm::DenseMap<const MCSectionData*, 330 const MCSectionData *SD);
|
D | ELFObjectWriter.cpp | 679 const MCSectionData &SD = *it; in CreateRelocationSections() 711 const MCSectionData &SD = *it; in WriteRelocations() 718 MCSectionData &RelaSD = Asm.getOrCreateSectionData(*RelaSection); in WriteRelocations() 746 const MCSectionData *SD) { in WriteRelocationsFragment() 813 MCSectionData &ShstrtabSD = Asm.getOrCreateSectionData(*ShstrtabSection); in CreateMetadataSections() 820 MCSectionData &SymtabSD = Asm.getOrCreateSectionData(*SymtabSection); in CreateMetadataSections() 823 MCSectionData *SymtabShndxSD = NULL; in CreateMetadataSections() 836 MCSectionData &StrtabSD = Asm.getOrCreateSectionData(*StrtabSection); in CreateMetadataSections() 923 MCSectionData &Data = Asm.getOrCreateSectionData(*Group); in CreateIndexedSections() 941 MCSectionData &Data = Asm.getOrCreateSectionData(*Group); in CreateIndexedSections() [all …]
|
D | MachObjectWriter.cpp | 97 uint64_t MachObjectWriter::getPaddingSize(const MCSectionData *SD, in getPaddingSize() 104 const MCSectionData &NextSD = *Layout.getSectionOrder()[Next]; in getPaddingSize() 184 const MCSectionData &SD, in WriteSection() 532 const SmallVectorImpl<MCSectionData*> &Order = Layout.getSectionOrder(); in computeSectionAddresses() 534 const MCSectionData *SD = Order[i]; in computeSectionAddresses() 659 const MCSectionData &SD = *it; in WriteObject()
|
D | MCMachOStreamer.cpp | 293 MCSectionData &SectData = getAssembler().getOrCreateSectionData(*Section); in EmitZerofill() 404 for (MCSectionData::iterator it2 = it->begin(), in Finish()
|
D | WinCOFFObjectWriter.cpp | 100 MCSectionData const *MCData; 152 void DefineSection(MCSectionData const &SectionData); 364 void WinCOFFObjectWriter::DefineSection(MCSectionData const &SectionData) { in DefineSection() 646 MCSectionData const *SectionData = Fragment->getParent(); in RecordRelocation()
|
D | MCExpr.cpp | 328 const MCSectionData &SecA = *AD.getFragment()->getParent(); in AttemptToFoldSymbolOffsetDifference() 329 const MCSectionData &SecB = *BD.getFragment()->getParent(); in AttemptToFoldSymbolOffsetDifference()
|
D | WinCOFFStreamer.cpp | 154 MCSectionData &SectionData = getAssembler().getOrCreateSectionData(*Section); in AddCommonSymbol()
|
D | MCELFStreamer.cpp | 364 MCSectionData &SectData = getAssembler().getOrCreateSectionData(Section); in Finish()
|
/external/swiftshader/third_party/LLVM/lib/Target/ARM/MCTargetDesc/ |
D | ARMMachObjectWriter.cpp | 357 const MCSectionData &SymSD = Asm.getSectionData( in RecordRelocation()
|
/external/swiftshader/third_party/LLVM/lib/Target/X86/MCTargetDesc/ |
D | X86MachObjectWriter.cpp | 524 const MCSectionData &SymSD = Asm.getSectionData( in RecordX86Relocation()
|