Lines Matching refs:Rel
89 using Elf_Rel = typename ELFT::Rel; \
472 void printRelocation(const ELFO *Obj, Elf_Rela Rel, const Elf_Shdr *SymTab);
473 void printDynamicRelocation(const ELFO *Obj, Elf_Rela Rel);
3441 for (const Elf_Rel &Rel : this->dumper()->dyn_rels()) { in printDynamicRelocations()
3443 Rela.r_offset = Rel.r_offset; in printDynamicRelocations()
3444 Rela.r_info = Rel.r_info; in printDynamicRelocations()
3473 for (const Elf_Rel &Rel : DynPLTRelRegion.getAsArrayRef<Elf_Rel>()) { in printDynamicRelocations() local
3475 Rela.r_offset = Rel.r_offset; in printDynamicRelocations()
3476 Rela.r_info = Rel.r_info; in printDynamicRelocations()
4248 void LLVMStyle<ELFT>::printRelocation(const ELFO *Obj, Elf_Rela Rel, in printRelocation() argument
4251 Obj->getRelocationTypeName(Rel.getType(Obj->isMips64EL()), RelocName); in printRelocation()
4253 const Elf_Sym *Sym = unwrapOrError(Obj->getRelocationSymbol(&Rel, SymTab)); in printRelocation()
4265 W.printHex("Offset", Rel.r_offset); in printRelocation()
4266 W.printNumber("Type", RelocName, (int)Rel.getType(Obj->isMips64EL())); in printRelocation()
4268 Rel.getSymbol(Obj->isMips64EL())); in printRelocation()
4269 W.printHex("Addend", Rel.r_addend); in printRelocation()
4272 OS << W.hex(Rel.r_offset) << " " << RelocName << " " in printRelocation()
4274 << W.hex(Rel.r_addend) << "\n"; in printRelocation()
4430 for (const Elf_Rel &Rel : this->dumper()->dyn_rels()) { in printDynamicRelocations()
4432 Rela.r_offset = Rel.r_offset; in printDynamicRelocations()
4433 Rela.r_info = Rel.r_info; in printDynamicRelocations()
4447 for (const Elf_Rel &Rel : DynPLTRelRegion.getAsArrayRef<Elf_Rel>()) { in printDynamicRelocations() local
4449 Rela.r_offset = Rel.r_offset; in printDynamicRelocations()
4450 Rela.r_info = Rel.r_info; in printDynamicRelocations()
4459 void LLVMStyle<ELFT>::printDynamicRelocation(const ELFO *Obj, Elf_Rela Rel) { in printDynamicRelocation() argument
4461 Obj->getRelocationTypeName(Rel.getType(Obj->isMips64EL()), RelocName); in printDynamicRelocation()
4463 uint32_t SymIndex = Rel.getSymbol(Obj->isMips64EL()); in printDynamicRelocation()
4469 W.printHex("Offset", Rel.r_offset); in printDynamicRelocation()
4470 W.printNumber("Type", RelocName, (int)Rel.getType(Obj->isMips64EL())); in printDynamicRelocation()
4472 W.printHex("Addend", Rel.r_addend); in printDynamicRelocation()
4475 OS << W.hex(Rel.r_offset) << " " << RelocName << " " in printDynamicRelocation()
4477 << W.hex(Rel.r_addend) << "\n"; in printDynamicRelocation()