Home
last modified time | relevance | path

Searched refs:COFFSection (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/MC/
DWinCOFFObjectWriter.cpp59 class COFFSection;
71 COFFSection *Section;
94 class COFFSection { class
104 COFFSection(llvm::StringRef name);
126 typedef std::vector<COFFSection*> sections;
129 typedef DenseMap<MCSection const *, COFFSection *> section_map;
147 COFFSection *createSection(StringRef Name);
156 void MakeSectionReal(COFFSection &S, size_t Number);
158 bool ExportSection(COFFSection const *S);
161 bool IsPhysicalSection(COFFSection *S);
[all …]
DMCWin64EH.cpp208 const MCSectionCOFF *COFFSection; in GetSectionSuffix() local
209 if ((COFFSection = dyn_cast<MCSectionCOFF>(section))) { in GetSectionSuffix()
210 StringRef name = COFFSection->getSectionName(); in GetSectionSuffix()
/external/llvm/lib/MC/
DWinCOFFObjectWriter.cpp62 class COFFSection;
74 COFFSection *Section;
101 class COFFSection { class
111 COFFSection(StringRef name);
117 typedef std::vector<std::unique_ptr<COFFSection>> sections;
120 typedef DenseMap<MCSection const *, COFFSection *> section_map;
151 COFFSection *createSection(StringRef Name);
163 void SetSectionName(COFFSection &S);
165 bool IsPhysicalSection(COFFSection *S);
221 COFFSection::COFFSection(StringRef name) in COFFSection() function in COFFSection
[all …]
/external/llvm/tools/obj2yaml/
Dcoff2yaml.cpp105 const object::coff_section *COFFSection = Obj.getCOFFSection(ObjSection); in dumpSections() local
108 NewYAMLSection.Header.Characteristics = COFFSection->Characteristics; in dumpSections()
110 NewYAMLSection.Header.VirtualSize = COFFSection->VirtualSize; in dumpSections()
116 Obj.getSectionContents(COFFSection, sectionData); in dumpSections()