Home | History | Annotate | Download | only in MC

Lines Matching refs:COFFSection

59 class COFFSection;
71 COFFSection *Section;
94 class COFFSection {
104 COFFSection(llvm::StringRef name);
126 typedef std::vector<COFFSection*> sections;
129 typedef DenseMap<MCSection const *, COFFSection *> section_map;
148 COFFSection *createSection(StringRef Name);
157 void MakeSectionReal(COFFSection &S, size_t Number);
159 bool ExportSection(COFFSection const *S);
162 bool IsPhysicalSection(COFFSection *S);
261 COFFSection::COFFSection(llvm::StringRef name)
268 size_t COFFSection::size() {
348 COFFSection *WinCOFFObjectWriter::createSection(llvm::StringRef Name) {
349 return createCOFFEntity<COFFSection>(Name, Sections);
373 COFFSection *coff_section = createSection(Sec.getSectionName());
476 void WinCOFFObjectWriter::MakeSectionReal(COFFSection &S, size_t Number) {
508 bool WinCOFFObjectWriter::ExportSection(COFFSection const *S) {
524 bool WinCOFFObjectWriter::IsPhysicalSection(COFFSection *S) {
650 COFFSection *coff_section = SectionMap[&SectionData->getSection()];
772 COFFSection *Sec = SectionMap[&i->getSection()];