Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/tools/obj2yaml/
H A Dcoff2yaml.cpp122 const object::coff_section *COFFSection = Obj.getCOFFSection(S); in initializeFileAndStringTable() local
124 cantFail(Obj.getSectionContents(COFFSection, sectionData)); in initializeFileAndStringTable()
156 const object::coff_section *COFFSection = Obj.getCOFFSection(ObjSection); in dumpSections() local
164 NewYAMLSection.Header.Characteristics = COFFSection->Characteristics; in dumpSections()
165 NewYAMLSection.Header.VirtualAddress = COFFSection->VirtualAddress; in dumpSections()
166 NewYAMLSection.Header.VirtualSize = COFFSection->VirtualSize; in dumpSections()
168 COFFSection->NumberOfLinenumbers; in dumpSections()
170 COFFSection->NumberOfRelocations; in dumpSections()
172 COFFSection->PointerToLinenumbers; in dumpSections()
173 NewYAMLSection.Header.PointerToRawData = COFFSection->PointerToRawData; in dumpSections()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/MC/
H A DWinCOFFObjectWriter.cpp73 class COFFSection;
85 COFFSection *Section = nullptr;
113 class COFFSection { class
123 COFFSection(StringRef Name) : Name(std::string(Name)) {} in COFFSection() function in __anona3bc21060111::COFFSection
133 using sections = std::vector<std::unique_ptr<COFFSection>>;
136 using section_map = DenseMap<MCSection const *, COFFSection *>;
178 COFFSection *createSection(StringRef Name);
187 void SetSectionName(COFFSection &S);
189 bool IsPhysicalSection(COFFSection *S);
201 const COFFSection &Sec, const MCSection &MCSec);
[all …]