Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
DELF.cpp261 Expected<std::vector<typename ELFT::Rela>>
293 Elf_Rela Rela; in decode_relrs() local
294 Rela.r_info = 0; in decode_relrs()
295 Rela.r_addend = 0; in decode_relrs()
296 Rela.setType(getRelrRelocationType(), false); in decode_relrs()
314 Rela.r_offset = Entry; in decode_relrs()
315 Relocs.push_back(Rela); in decode_relrs()
326 Rela.r_offset = Offset; in decode_relrs()
327 Relocs.push_back(Rela); in decode_relrs()
340 Expected<std::vector<typename ELFT::Rela>>
/external/swiftshader/third_party/subzero/src/
DIceELFSection.h373 Elf64_Rela Rela; in writeData() local
374 Rela.r_offset = Fixup.position(); in writeData()
375 Rela.setSymbolAndType(Symbol->getNumber(), Fixup.kind()); in writeData()
376 Rela.r_addend = Fixup.offset(); in writeData()
377 Str.writeAddrOrOffset<IsELF64>(Rela.r_offset); in writeData()
378 Str.writeELFXword<IsELF64>(Rela.r_info); in writeData()
379 Str.writeELFXword<IsELF64>(Rela.r_addend); in writeData()
/external/llvm/tools/llvm-readobj/
DELFDumper.cpp2534 Elf_Rela Rela; in printRelocations() local
2535 Rela.r_offset = R.r_offset; in printRelocations()
2536 Rela.r_info = R.r_info; in printRelocations()
2537 Rela.r_addend = 0; in printRelocations()
2538 printRelocation(Obj, SymTab, Rela, false); in printRelocations()
3019 for (const Elf_Rela &Rela : this->dumper()->dyn_relas()) in printDynamicRelocations()
3020 printDynamicRelocation(Obj, Rela, true); in printDynamicRelocations()
3029 Elf_Rela Rela; in printDynamicRelocations() local
3030 Rela.r_offset = Rel.r_offset; in printDynamicRelocations()
3031 Rela.r_info = Rel.r_info; in printDynamicRelocations()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/
DELFDumper.cpp88 using Elf_Rela = typename ELFT::Rela; \
2745 Elf_Rela Rela; in printRelocations() local
2746 Rela.r_offset = R.r_offset; in printRelocations()
2747 Rela.r_info = R.r_info; in printRelocations()
2748 Rela.r_addend = 0; in printRelocations()
2749 printRelocation(Obj, SymTab, Rela, false); in printRelocations()
3370 for (const Elf_Rela &Rela : this->dumper()->dyn_relas()) in printDynamicRelocations()
3371 printDynamicRelocation(Obj, Rela, true); in printDynamicRelocations()
3380 Elf_Rela Rela; in printDynamicRelocations() local
3381 Rela.r_offset = Rel.r_offset; in printDynamicRelocations()
[all …]
DARMEHABIPrinter.h413 typename ET::Rela RelA; in FindExceptionTable()
/external/elfutils/libelf/
Dabstract.h148 START (32, Rela, Ext##Rela) \
152 END (32, Ext##Rela)
154 START (64, Rela, Ext##Rela) \
158 END (64, Ext##Rela)
Dgelf_xlate.h46 TYPE (Rela, LIBELFBITS)
Delf_getdata.c94 [ELF_T_RELA] = __alignof__ (ElfW2(Bits,Rela)), \
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
DELFObjectFile.h218 using Elf_Rela = typename ELFT::Rela;
349 const Elf_Rela *getRela(DataRefImpl Rela) const;
883 ELFObjectFile<ELFT>::getRela(DataRefImpl Rela) const { in getRela() argument
884 assert(getRelSection(Rela)->sh_type == ELF::SHT_RELA); in getRela()
885 auto Ret = EF.template getEntry<Elf_Rela>(Rela.d.a, Rela.d.b); in getRela()
DELFTypes.h64 using Rela = Elf_Rel_Impl<ELFType<E, Is64>, true>; member
82 using RelaRange = ArrayRef<Rela>;
DELF.h63 using Elf_Rela = typename ELFT::Rela;
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/BinaryFormat/
DDynamicTags.def36 DYNAMIC_TAG(RELA, 7) // Address of relocation table (Rela entries).
37 DYNAMIC_TAG(RELASZ, 8) // Size of Rela relocation table.
38 DYNAMIC_TAG(RELAENT, 9) // Size of a Rela relocation entry.
/external/llvm/include/llvm/Object/
DELFObjectFile.h311 const Elf_Rela *getRela(DataRefImpl Rela) const;
746 ELFObjectFile<ELFT>::getRela(DataRefImpl Rela) const { in getRela() argument
747 assert(getRelSection(Rela)->sh_type == ELF::SHT_RELA); in getRela()
748 return EF.template getEntry<Elf_Rela>(Rela.d.a, Rela.d.b); in getRela()
DELFTypes.h55 typedef Elf_Rel_Impl<ELFType<E, Is64>, true> Rela; typedef
68 typedef ArrayRef<Rela> RelaRange;
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objcopy/
DObject.cpp405 static void setAddend(Elf_Rel_Impl<ELFT, true> &Rela, uint64_t Addend) { in setAddend() argument
406 Rela.r_addend = Addend; in setAddend()
753 static void getAddend(uint64_t &ToSet, const Elf_Rel_Impl<ELFT, true> &Rela) { in getAddend() argument
754 ToSet = Rela.r_addend; in getAddend()
DObject.h106 using Elf_Rela = typename ELFT::Rela;
/external/swiftshader/third_party/LLVM/lib/Object/
DELFObjectFile.cpp320 const Elf_Rela *getRela(DataRefImpl Rela) const;
1321 ELFObjectFile<target_endianness, is64Bits>::getRela(DataRefImpl Rela) const { in getRela()
1322 return getEntry<Elf_Rela>(Rela.w.b, Rela.w.c); in getRela()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/obj2yaml/
Delf2yaml.cpp28 typedef typename ELFT::Rela Elf_Rela;
/external/swiftshader/third_party/llvm-7.0/llvm/tools/yaml2obj/
Dyaml2elf.cpp116 typedef typename ELFT::Rela Elf_Rela;