Lines Matching refs:SectionEntry

108 struct SectionEntry {  struct
144 SectionEntry(StringRef N, int32_t Flags) in SectionEntry() function
161 virtual ~SectionEntry() = default;
169 struct CsectSectionEntry : public SectionEntry {
178 : SectionEntry(N, Flags), IsVirtual(IsVirtual), Groups(Groups) { in CsectSectionEntry()
184 SectionEntry::reset(); in reset()
193 struct DwarfSectionEntry : public SectionEntry {
216 : SectionEntry(N, Flags | XCOFF::STYP_DWARF), DwarfSect(std::move(Sect)), in DwarfSectionEntry()
245 struct ExceptionSectionEntry : public SectionEntry {
250 : SectionEntry(N, Flags | XCOFF::STYP_EXCEPT) { in ExceptionSectionEntry()
278 struct CInfoSymSectionEntry : public SectionEntry {
281 CInfoSymSectionEntry(StringRef N, int32_t Flags) : SectionEntry(N, Flags) {} in CInfoSymSectionEntry()
289 SectionEntry::reset(); in reset()
345 std::vector<SectionEntry> OverflowSections;
376 void writeSectionHeader(const SectionEntry *Sec);
422 void finalizeRelocationInfo(SectionEntry *Sec, uint64_t RelCount);
423 void calcOffsetToRelocations(SectionEntry *Sec, uint64_t &RawPointer);
1017 void XCOFFObjectWriter::writeSectionHeader(const SectionEntry *Sec) { in writeSectionHeader()
1021 if (Sec->Index == SectionEntry::UninitializedIndex) in writeSectionHeader()
1086 if (Section->Index == SectionEntry::UninitializedIndex) in writeRelocations()
1153 if (Section->Index == SectionEntry::UninitializedIndex) in writeSymbolTable()
1179 void XCOFFObjectWriter::finalizeRelocationInfo(SectionEntry *Sec, in finalizeRelocationInfo()
1185 SectionEntry SecEntry(".ovrflo", XCOFF::STYP_OVRFLO); in finalizeRelocationInfo()
1205 void XCOFFObjectWriter::calcOffsetToRelocations(SectionEntry *Sec, in calcOffsetToRelocations()
1239 if (Section->Index == SectionEntry::UninitializedIndex) in finalizeSectionInfo()
1268 if (Sec->Index == SectionEntry::UninitializedIndex || Sec->IsVirtual) in finalizeSectionInfo()
1288 if (Sec->Index != SectionEntry::UninitializedIndex) in finalizeSectionInfo()
1532 if (CsectEntry.Index == SectionEntry::UninitializedIndex) in writeSectionForControlSectionEntry()