Home
last modified time | relevance | path

Searched refs:RelA (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/llvm/tools/llvm-readobj/
H A DARMEHABIPrinter.h419 typename ET::Rela RelA; in FindExceptionTable() local
420 RelA.r_offset = R.r_offset; in FindExceptionTable()
421 RelA.r_info = R.r_info; in FindExceptionTable()
422 RelA.r_addend = 0; in FindExceptionTable()
425 unwrapOrError(FileName, ELF.getRelocationSymbol(RelA, SymTab)); in FindExceptionTable()
/llvm-project-15.0.7/bolt/lib/Rewrite/
H A DRewriteInstance.cpp1791 const Elf_Rela *RelA = Obj->getRela(Rel); in getRelocationAddend() local
1792 Addend = RelA->r_addend; in getRelocationAddend()
4930 auto writeRela = [&OS](const Elf_Rela *RelA, uint64_t &Offset) { in patchELFAllocatableRelaSections() argument
4931 OS.pwrite(reinterpret_cast<const char *>(RelA), sizeof(*RelA), Offset); in patchELFAllocatableRelaSections()
4932 Offset += sizeof(*RelA); in patchELFAllocatableRelaSections()
4994 typename ELFObjectFile<ELFT>::Elf_Rela RelA; in patchELFAllocatableRelaSections() local
4995 RelA.setSymbolAndType(0, Relocation::getNone(), EF.isMips64EL()); in patchELFAllocatableRelaSections()
4996 RelA.r_offset = 0; in patchELFAllocatableRelaSections()
4997 RelA.r_addend = 0; in patchELFAllocatableRelaSections()
4999 writeRela(&RelA, Offset); in patchELFAllocatableRelaSections()