Searched refs:relas (Results 1 – 18 of 18) sorted by relevance
/external/llvm-project/lld/ELF/ |
D | ICF.cpp | 325 return constantEq(a, a->template relas<ELFT>(), b, in equalsConstant() 326 b->template relas<ELFT>()); in equalsConstant() 373 return variableEq(a, a->template relas<ELFT>(), b, in equalsVariable() 374 b->template relas<ELFT>()); in equalsVariable() 503 combineRelocHashes<ELFT>(cnt, s, s->template relas<ELFT>()); in run()
|
D | MarkLive.cpp | 259 scanEhFrameSection(*eh, eh->template relas<ELFT>()); in run() 284 for (const typename ELFT::Rela &rel : sec.template relas<ELFT>()) in mark()
|
D | DWARF.cpp | 141 return findAux(*sec.sec, pos, sec.sec->template relas<ELFT>()); in find()
|
D | InputSection.h | 180 template <class ELFT> ArrayRef<typename ELFT::Rela> relas() const { in relas() function
|
D | InputSection.cpp | 1000 sec->relocateNonAlloc<ELFT>(buf, sec->template relas<ELFT>()); in relocate() 1317 split<ELFT>(relas<ELFT>()); in split()
|
D | Relocations.cpp | 1552 scanRelocs<ELFT>(s, s.relas<ELFT>()); in scanRelocations()
|
D | InputFiles.cpp | 974 ArrayRef<Elf_Rela> rels = CHECK(getObj().relas(sec), this); in createInputSection()
|
D | SyntheticSections.cpp | 435 addRecords<ELFT>(sec, sec->template relas<ELFT>()); in addSectionAux() 487 iterateFDEWithLSDAAux<ELFT>(*sec, sec->template relas<ELFT>(), in iterateFDEWithLSDA()
|
D | Driver.cpp | 1800 sym = &s->getFile<ELFT>()->getRelocTargetSym(s->template relas<ELFT>()[0]); in readSymbolPartitionSection()
|
/external/llvm-project/lld/ELF/Arch/ |
D | PPC64.cpp | 294 ArrayRef<typename ELFT::Rela> relas = tocSec->template relas<ELFT>(); in getRelaTocSymAndAddend() local 295 uint64_t index = std::min<uint64_t>(offset / 8, relas.size() - 1); in getRelaTocSymAndAddend() 297 if (relas[index].r_offset == offset) { in getRelaTocSymAndAddend() 298 Symbol &sym = tocSec->getFile<ELFT>()->getRelocTargetSym(relas[index]); in getRelaTocSymAndAddend() 299 return {dyn_cast<Defined>(&sym), getAddend<ELFT>(relas[index])}; in getRelaTocSymAndAddend() 301 if (relas[index].r_offset < offset || index == 0) in getRelaTocSymAndAddend()
|
/external/llvm/include/llvm/Object/ |
D | ELF.h | 146 Elf_Rela_Range relas(const Elf_Shdr *Sec) const { in relas() function
|
/external/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
D | ELF_x86_64.cpp | 399 auto Relocations = Obj.relas(SecRef); in addRelocations()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
D | ELF.h | 176 Expected<Elf_Rela_Range> relas(const Elf_Shdr *Sec) const { in relas() function
|
/external/llvm-project/llvm/include/llvm/Object/ |
D | ELF.h | 194 Expected<Elf_Rela_Range> relas(const Elf_Shdr &Sec) const { in relas() function
|
/external/llvm/tools/llvm-readobj/ |
D | ELFDumper.cpp | 2541 for (const auto &R : Obj->relas(&Sec)) in printRelocations() 3279 for (const Elf_Rela &R : Obj->relas(Sec)) in printRelocations()
|
/external/llvm-project/llvm/tools/obj2yaml/ |
D | elf2yaml.cpp | 1087 auto Rels = Obj.relas(*Shdr); in dumpRelocSection()
|
/external/llvm-project/llvm/tools/llvm-objcopy/ELF/ |
D | Object.cpp | 1859 ElfFile.relas(*Shdr); in readSections()
|
/external/llvm-project/llvm/tools/llvm-readobj/ |
D | ELFDumper.cpp | 3230 Elf_Rela_Range Rels = unwrapOrError(FileName, Obj.relas(*PltRelSec)); in getPltSym() 5734 if (Expected<Elf_Rela_Range> RangeOrErr = Obj.relas(Sec)) { in forEachRelocationDo()
|