| /openbsd-src/gnu/llvm/compiler-rt/lib/hwasan/ |
| H A D | hwasan_dynamic_shadow.cpp | 86 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 D | MarkLive.cpp | 84 const typename ELFT::Rela &rel) { in getAddend() 309 for (const typename ELFT::Rela &rel : rels.relas) in mark()
|
| H A D | Relocations.h | 198 static inline int64_t getAddend(const typename ELFT::Rela &rel) { in getAddend()
|
| H A D | InputSection.cpp | 147 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 D | InputSection.h | 39 ArrayRef<typename ELFT::Rela> relas;
|
| H A D | SyntheticSections.h | 566 using Elf_Rela = typename ELFT::Rela; 576 using Elf_Rela = typename ELFT::Rela;
|
| /openbsd-src/lib/libelf/ |
| H A D | libelf_align.c | 75 [ELF_T_RELA] = MALIGN(Rela),
|
| H A D | elf_types.m4 | 52 `RELA, Rela',
|
| /openbsd-src/gnu/llvm/llvm/lib/MC/ |
| H A D | ELFObjectWriter.cpp | 819 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 D | DynamicTags.def | 51 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 D | ELFObjectFile.h | 413 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 D | ELFTypes.h | 64 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 D | ELF_loongarch.cpp | 91 Error addSingleRelocation(const typename ELFT::Rela &Rel, in addSingleRelocation()
|
| H A D | ELF_x86_64.cpp | 177 Error addSingleRelocation(const typename ELFT::Rela &Rel, in addSingleRelocation()
|
| H A D | ELF_aarch64.cpp | 139 Error addSingleRelocation(const typename ELFT::Rela &Rel, in addSingleRelocation()
|
| H A D | ELFLinkGraphBuilder.h | 553 for (const typename ELFT::Rela &R : *RelEntries) in forEachRelaRelocation()
|
| H A D | ELF_riscv.cpp | 551 Error addSingleRelocation(const typename ELFT::Rela &Rel, in addSingleRelocation()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-objdump/ |
| H A D | ELFDump.cpp | 74 const typename ELFT::Rela *ERela = Obj->getRela(Rel); in getRelocationValueString()
|
| /openbsd-src/gnu/llvm/llvm/lib/ObjCopy/ELF/ |
| H A D | ELFObject.h | 133 using Elf_Rela = typename ELFT::Rela; 152 using Elf_Rela = typename ELFT::Rela;
|
| H A D | ELFObject.cpp | 936 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 D | ELF.cpp | 385 Expected<std::vector<typename ELFT::Rela>>
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/ |
| H A D | ARMEHABIPrinter.h | 419 typename ET::Rela RelA; in FindExceptionTable()
|
| H A D | ELFDumper.cpp | 195 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 D | bfdint.texi | 1554 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 D | bfdint.texi | 1554 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
|