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.cpp414 std::vector<Elf_Rela> Relas; in decodeCrel() local
422 Relas.resize(Count); in decodeCrel()
428 Relas[I].r_offset = Crel.r_offset; in decodeCrel()
429 Relas[I].setSymbolAndType(Crel.r_symidx, Crel.r_type, false); in decodeCrel()
430 Relas[I++].r_addend = Crel.r_addend; in decodeCrel()
438 return std::make_pair(std::move(Rels), std::move(Relas)); in decodeCrel()
751 Expected<typename ELFFile<ELFT>::RelsOrRelas> Relas = EF.crels(*RelaSec); in decodeBBAddrMapImpl() local
752 if (!Relas) in decodeBBAddrMapImpl()
755 toString(Relas.takeError())); in decodeBBAddrMapImpl()
756 for (typename ELFFile<ELFT>::Elf_Rela Rela : std::get<1>(*Relas)) { in decodeBBAddrMapImpl()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObject.cpp1903 Expected<typename ELFFile<ELFT>::Elf_Rela_Range> Relas = in readSections() local
1905 if (!Relas) in readSections()
1906 return Relas.takeError(); in readSections()
1908 if (Error Err = initRelocations(RelSec, *Relas)) in readSections()