Lines Matching refs:Section
188 for (const auto &Section : COFF.sections()) { in getSectionContaining() local
189 uint64_t Address = Section.getAddress(); in getSectionContaining()
190 uint64_t Size = Section.getSize(); in getSectionContaining()
193 return Section; in getSectionContaining()
214 const SectionRef &Section, in getRelocatedSymbol() argument
216 for (const auto &Relocation : Section.relocations()) { in getRelocatedSymbol()
510 const SectionRef &Section, in dumpXDataRecord() argument
513 if (COFF.getSectionContents(COFF.getCOFFSection(Section), Contents)) in dumpXDataRecord()
516 uint64_t SectionVA = Section.getAddress(); in dumpXDataRecord()
566 getRelocatedSymbol(COFF, Section, HandlerOffset * sizeof(uint32_t)); in dumpXDataRecord()
583 const SectionRef Section, uint64_t Offset, in dumpUnpackedEntry() argument
588 ErrorOr<SymbolRef> Function = getRelocatedSymbol(COFF, Section, Offset); in dumpUnpackedEntry()
592 ErrorOr<SymbolRef> XDataRecord = getRelocatedSymbol(COFF, Section, Offset + 4); in dumpUnpackedEntry()
646 ErrorOr<SectionRef> Section = in dumpUnpackedEntry() local
648 if (!Section) in dumpUnpackedEntry()
651 return dumpXDataRecord(COFF, *Section, FunctionAddress, in dumpUnpackedEntry()
657 const SectionRef Section, uint64_t Offset, in dumpPackedEntry() argument
663 ErrorOr<SymbolRef> Function = getRelocatedSymbol(COFF, Section, Offset); in dumpPackedEntry()
698 const SectionRef Section, unsigned Index, in dumpProcedureDataEntry() argument
707 return dumpUnpackedEntry(COFF, Section, Offset, Index, Entry); in dumpProcedureDataEntry()
708 return dumpPackedEntry(COFF, Section, Offset, Index, Entry); in dumpProcedureDataEntry()
712 const SectionRef Section) { in dumpProcedureData() argument
714 if (COFF.getSectionContents(COFF.getCOFFSection(Section), Contents)) in dumpProcedureData()
723 if (!dumpProcedureDataEntry(COFF, Section, EI, Contents)) in dumpProcedureData()
728 for (const auto &Section : COFF.sections()) { in dumpProcedureData() local
731 COFF.getSectionName(COFF.getCOFFSection(Section), SectionName)) in dumpProcedureData()
735 dumpProcedureData(COFF, Section); in dumpProcedureData()