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

Lines Matching refs:Sec

67   void printRelocations(const Elf_Shdr *Sec);
68 void printRelocation(const Elf_Shdr *Sec, typename ELFO::Elf_Rela Rel);
159 const typename ELFO::Elf_Shdr *Sec = Obj.getSection(SectionIndex);
160 SectionName = errorOrDefault(Obj.getSectionName(Sec));
640 void ELFDumper<ELFT>::printRelocations(const Elf_Shdr *Sec) {
641 switch (Sec->sh_type) {
643 for (typename ELFO::Elf_Rel_Iter RI = Obj->begin_rel(Sec),
644 RE = Obj->end_rel(Sec);
650 printRelocation(Sec, Rela);
654 for (typename ELFO::Elf_Rela_Iter RI = Obj->begin_rela(Sec),
655 RE = Obj->end_rela(Sec);
657 printRelocation(Sec, *RI);
664 void ELFDumper<ELFT>::printRelocation(const Elf_Shdr *Sec,
670 Obj->getRelocationSymbol(Sec, &Rel);