Home
last modified time | relevance | path

Searched refs:Rela (Results 1 – 25 of 38) sorted by relevance

12

/openbsd-src/gnu/llvm/compiler-rt/lib/hwasan/
H A Dhwasan_dynamic_shadow.cpp86 extern __attribute((weak, visibility("hidden"))) ElfW(Rela) __rela_iplt_start[],
98 for (ElfW(Rela) *r = __rela_iplt_start; r != __rela_iplt_end; ++r) { in InitShadowGOT()
/openbsd-src/gnu/llvm/lld/ELF/
H A DMarkLive.cpp84 const typename ELFT::Rela &rel) { in getAddend()
309 for (const typename ELFT::Rela &rel : rels.relas) in mark()
H A DRelocations.h198 static inline int64_t getAddend(const typename ELFT::Rela &rel) { in getAddend()
H A DInputSection.cpp147 ret.relas = ArrayRef(reinterpret_cast<const typename ELFT::Rela *>( in relsOrRelas()
149 shdr.sh_size / sizeof(typename ELFT::Rela)); in relsOrRelas()
366 auto *p = reinterpret_cast<typename ELFT::Rela *>(buf); in copyRelocations()
1089 copyRelocations<ELFT>(buf, getDataAs<typename ELFT::Rela>()); in writeTo()
1163 SmallVector<typename ELFT::Rela, 0> storage; in split()
H A DInputSection.h39 ArrayRef<typename ELFT::Rela> relas;
H A DSyntheticSections.h566 using Elf_Rela = typename ELFT::Rela;
576 using Elf_Rela = typename ELFT::Rela;
/openbsd-src/lib/libelf/
H A Dlibelf_align.c75 [ELF_T_RELA] = MALIGN(Rela),
H A Delf_types.m452 `RELA, Rela',
/openbsd-src/gnu/llvm/llvm/lib/MC/
H A DELFObjectWriter.cpp819 bool Rela = usesRela(Sec); in createRelocationSection() local
820 std::string RelaSectionName = Rela ? ".rela" : ".rel"; in createRelocationSection()
824 if (Rela) in createRelocationSection()
834 RelaSectionName, Rela ? ELF::SHT_RELA : ELF::SHT_REL, Flags, EntrySize, in createRelocationSection()
942 const bool Rela = usesRela(Sec); in writeRelocations() local
961 if (Rela) in writeRelocations()
970 if (Rela) in writeRelocations()
/openbsd-src/gnu/llvm/llvm/include/llvm/BinaryFormat/
H A DDynamicTags.def51 DYNAMIC_TAG(RELA, 7) // Address of relocation table (Rela entries).
52 DYNAMIC_TAG(RELASZ, 8) // Size of Rela relocation table.
53 DYNAMIC_TAG(RELAENT, 9) // Size of a Rela relocation entry.
/openbsd-src/gnu/llvm/llvm/include/llvm/Object/
H A DELFObjectFile.h413 const Elf_Rela *getRela(DataRefImpl Rela) const;
1084 ELFObjectFile<ELFT>::getRela(DataRefImpl Rela) const { in getRela() argument
1085 assert(getRelSection(Rela)->sh_type == ELF::SHT_RELA); in getRela()
1086 auto Ret = EF.template getEntry<Elf_Rela>(Rela.d.a, Rela.d.b); in getRela()
H A DELFTypes.h64 using Rela = Elf_Rel_Impl<ELFType<E, Is64>, true>; member
82 using RelaRange = ArrayRef<Rela>;
119 using Elf_Rela = typename ELFT::Rela; \
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/JITLink/
H A DELF_loongarch.cpp91 Error addSingleRelocation(const typename ELFT::Rela &Rel, in addSingleRelocation()
H A DELF_x86_64.cpp177 Error addSingleRelocation(const typename ELFT::Rela &Rel, in addSingleRelocation()
H A DELF_aarch64.cpp139 Error addSingleRelocation(const typename ELFT::Rela &Rel, in addSingleRelocation()
H A DELFLinkGraphBuilder.h553 for (const typename ELFT::Rela &R : *RelEntries) in forEachRelaRelocation()
H A DELF_riscv.cpp551 Error addSingleRelocation(const typename ELFT::Rela &Rel, in addSingleRelocation()
/openbsd-src/gnu/llvm/llvm/tools/llvm-objdump/
H A DELFDump.cpp74 const typename ELFT::Rela *ERela = Obj->getRela(Rel); in getRelocationValueString()
/openbsd-src/gnu/llvm/llvm/lib/ObjCopy/ELF/
H A DELFObject.h133 using Elf_Rela = typename ELFT::Rela;
152 using Elf_Rela = typename ELFT::Rela;
H A DELFObject.cpp936 static void setAddend(Elf_Rel_Impl<ELFT, true> &Rela, uint64_t Addend) { in setAddend() argument
937 Rela.r_addend = Addend; in setAddend()
1607 static void getAddend(uint64_t &ToSet, const Elf_Rel_Impl<ELFT, true> &Rela) { in getAddend() argument
1608 ToSet = Rela.r_addend; in getAddend()
/openbsd-src/gnu/llvm/llvm/lib/Object/
H A DELF.cpp385 Expected<std::vector<typename ELFT::Rela>>
/openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/
H A DARMEHABIPrinter.h419 typename ET::Rela RelA; in FindExceptionTable()
H A DELFDumper.cpp195 Relocation(const typename ELFT::Rela &R, bool IsMips64EL) in Relocation()
3608 Expected<std::vector<typename ELFT::Rela>> RelasOrErr = in printRelocations()
4552 for (const Elf_Rela &Rela : in printDynamicRelocationsHelper()
4554 printDynamicReloc(Relocation<ELFT>(Rela, IsMips64EL)); in printDynamicRelocationsHelper()
4575 for (const Elf_Rela &Rela : in printDynamicRelocationsHelper()
4577 printDynamicReloc(Relocation<ELFT>(Rela, IsMips64EL)); in printDynamicRelocationsHelper()
7060 for (const typename ELFT::Rela &Rela : CGProfileRela) in getSymbolIndices() local
7061 SymbolIndices.push_back(Rela.getSymbol(Obj.isMips64EL())); in getSymbolIndices()
/openbsd-src/gnu/usr.bin/binutils-2.17/bfd/doc/
H A Dbfdint.texi1554 If the format should use @samp{Rel} rather than @samp{Rela} relocations,
1558 In the absence of a supplement, it's easier to work with @samp{Rela}
1559 relocations. @samp{Rela} relocations will require more space in object
1562 using @samp{Rela} relocations. With @samp{Rel} relocations, the addend
1580 @samp{Rela} relocations for a single target; @file{elf64-mips.c} does it
1591 If using @samp{Rela} relocations, define @samp{elf_info_to_howto}.
1593 takes an @samp{arelent} and a @samp{Rel} or @samp{Rela} structure, and
1595 @samp{Rel} or @samp{Rela} structure. This is normally uses
/openbsd-src/gnu/usr.bin/binutils/bfd/doc/
H A Dbfdint.texi1554 If the format should use @samp{Rel} rather than @samp{Rela} relocations,
1558 In the absence of a supplement, it's easier to work with @samp{Rela}
1559 relocations. @samp{Rela} relocations will require more space in object
1562 using @samp{Rela} relocations. With @samp{Rel} relocations, the addend
1580 @samp{Rela} relocations for a single target; @file{elf64-mips.c} does it
1591 If using @samp{Rela} relocations, define @samp{elf_info_to_howto}.
1593 takes an @samp{arelent} and a @samp{Rel} or @samp{Rela} structure, and
1595 @samp{Rel} or @samp{Rela} structure. This is normally uses

12