Home
last modified time | relevance | path

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

/external/llvm/lib/MC/
DWinCOFFObjectWriter.cpp62 class COFFSection;
74 COFFSection *Section;
101 class COFFSection { class
111 COFFSection(StringRef name);
118 typedef std::vector<std::unique_ptr<COFFSection>> sections;
121 typedef DenseMap<MCSection const *, COFFSection *> section_map;
152 COFFSection *createSection(StringRef Name);
162 void SetSectionName(COFFSection &S);
164 bool IsPhysicalSection(COFFSection *S);
220 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()
115 Obj.getSectionContents(COFFSection, sectionData); in dumpSections()