Lines Matching refs:rels
61 void scanEhFrameSection(EhInputSection &eh, ArrayRef<RelTy> rels);
151 ArrayRef<RelTy> rels) { in scanEhFrameSection() argument
154 resolveReloc(eh, rels[cie.firstRelocation], false); in scanEhFrameSection()
160 for (size_t j = firstRelI, end2 = rels.size(); in scanEhFrameSection()
161 j < end2 && rels[j].r_offset < pieceEnd; ++j) in scanEhFrameSection()
162 resolveReloc(eh, rels[j], true); in scanEhFrameSection()
249 const RelsOrRelas<ELFT> rels = in run() local
251 if (rels.areRelocsRel()) in run()
252 scanEhFrameSection(*eh, rels.rels); in run()
253 else if (rels.relas.size()) in run()
254 scanEhFrameSection(*eh, rels.relas); in run()
316 const RelsOrRelas<ELFT> rels = sec.template relsOrRelas<ELFT>(); in mark() local
317 for (const typename ELFT::Rel &rel : rels.rels) in mark()
319 for (const typename ELFT::Rela &rel : rels.relas) in mark()
321 for (const typename ELFT::Crel &rel : rels.crels) in mark()