Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DELF.cpp412 std::vector<Elf_Rela> Relas; in decodeCrel() local
420 Relas.resize(Count); in decodeCrel()
426 Relas[I].r_offset = Crel.r_offset; in decodeCrel()
427 Relas[I].setSymbolAndType(Crel.r_symidx, Crel.r_type, false); in decodeCrel()
428 Relas[I++].r_addend = Crel.r_addend; in decodeCrel()
436 return std::make_pair(std::move(Rels), std::move(Relas)); in decodeCrel()
748 Expected<typename ELFFile<ELFT>::Elf_Rela_Range> Relas = EF.relas(*RelaSec); in decodeBBAddrMapImpl() local
749 if (!Relas) in decodeBBAddrMapImpl()
752 toString(Relas.takeError())); in decodeBBAddrMapImpl()
753 for (typename ELFFile<ELFT>::Elf_Rela Rela : *Relas) in decodeBBAddrMapImpl()
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObject.cpp1906 Expected<typename ELFFile<ELFT>::Elf_Rela_Range> Relas = in readSections() local
1908 if (!Relas) in readSections()
1909 return Relas.takeError(); in readSections()
1911 if (Error Err = initRelocations(RelSec, *Relas)) in readSections()