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

Lines Matching defs:Rela

1518   LLVM_READOBJ_TYPE_CASE(RELA);
1655 OS << "RELA";
2534 Elf_Rela Rela;
2535 Rela.r_offset = R.r_offset;
2536 Rela.r_info = R.r_info;
2537 Rela.r_addend = 0;
2538 printRelocation(Obj, SymTab, Rela, false);
2591 return "RELA";
3014 OS << "\n'RELA' relocation section at offset "
3019 for (const Elf_Rela &Rela : this->dumper()->dyn_relas())
3020 printDynamicRelocation(Obj, Rela, true);
3029 Elf_Rela Rela;
3030 Rela.r_offset = Rel.r_offset;
3031 Rela.r_info = Rel.r_info;
3032 Rela.r_addend = 0;
3033 printDynamicRelocation(Obj, Rela, false);
3044 for (const Elf_Rela &Rela : DynPLTRelRegion.getAsArrayRef<Elf_Rela>())
3045 printDynamicRelocation(Obj, Rela, true);
3049 Elf_Rela Rela;
3050 Rela.r_offset = Rel.r_offset;
3051 Rela.r_info = Rel.r_info;
3052 Rela.r_addend = 0;
3053 printDynamicRelocation(Obj, Rela, false);
3271 Elf_Rela Rela;
3272 Rela.r_offset = R.r_offset;
3273 Rela.r_info = R.r_info;
3274 Rela.r_addend = 0;
3275 printRelocation(Obj, Rela, SymTab);
3458 report_fatal_error("There are both REL and RELA dynamic relocations");
3462 for (const Elf_Rela &Rela : this->dumper()->dyn_relas())
3463 printDynamicRelocation(Obj, Rela);
3466 Elf_Rela Rela;
3467 Rela.r_offset = Rel.r_offset;
3468 Rela.r_info = Rel.r_info;
3469 Rela.r_addend = 0;
3470 printDynamicRelocation(Obj, Rela);
3473 for (const Elf_Rela &Rela : DynPLTRelRegion.getAsArrayRef<Elf_Rela>())
3474 printDynamicRelocation(Obj, Rela);
3477 Elf_Rela Rela;
3478 Rela.r_offset = Rel.r_offset;
3479 Rela.r_info = Rel.r_info;
3480 Rela.r_addend = 0;
3481 printDynamicRelocation(Obj, Rela);