Home | History | Annotate | Download | only in llvm-readobj

Lines Matching refs:Section

188   for (const auto &Section : COFF.sections()) {
189 uint64_t Address = Section.getAddress();
190 uint64_t Size = Section.getSize();
193 return Section;
214 const SectionRef &Section,
216 for (const auto &Relocation : Section.relocations()) {
510 const SectionRef &Section,
513 if (COFF.getSectionContents(COFF.getCOFFSection(Section), Contents))
516 uint64_t SectionVA = Section.getAddress();
566 getRelocatedSymbol(COFF, Section, HandlerOffset * sizeof(uint32_t));
583 const SectionRef Section, uint64_t Offset,
588 ErrorOr<SymbolRef> Function = getRelocatedSymbol(COFF, Section, Offset);
592 ErrorOr<SymbolRef> XDataRecord = getRelocatedSymbol(COFF, Section, Offset + 4);
647 ErrorOr<SectionRef> Section =
649 if (!Section)
652 return dumpXDataRecord(COFF, *Section, FunctionAddress,
658 const SectionRef Section, uint64_t Offset,
664 ErrorOr<SymbolRef> Function = getRelocatedSymbol(COFF, Section, Offset);
699 const SectionRef Section, unsigned Index,
708 return dumpUnpackedEntry(COFF, Section, Offset, Index, Entry);
709 return dumpPackedEntry(COFF, Section, Offset, Index, Entry);
713 const SectionRef Section) {
715 if (COFF.getSectionContents(COFF.getCOFFSection(Section), Contents))
724 if (!dumpProcedureDataEntry(COFF, Section, EI, Contents))
729 for (const auto &Section : COFF.sections()) {
732 COFF.getSectionName(COFF.getCOFFSection(Section), SectionName))
736 dumpProcedureData(COFF, Section);