Lines Matching refs:RelTy
471 template <class RelTy> RelType getMipsN32RelType(RelTy *&rel) const;
472 template <class ELFT, class RelTy>
473 int64_t computeMipsAddend(const RelTy &rel, RelExpr expr, bool isLocal) const;
478 template <class ELFT, class RelTy> void scanOne(RelTy *&i);
479 template <class ELFT, class RelTy> void scan(ArrayRef<RelTy> rels);
487 template <class ELFT, class RelTy>
488 int64_t RelocationScanner::computeMipsAddend(const RelTy &rel, RelExpr expr, in computeMipsAddend()
495 if (RelTy::IsRela) in computeMipsAddend()
508 for (const RelTy *ri = &rel; ri != static_cast<const RelTy *>(end); ++ri) in computeMipsAddend()
857 template <class RelTy>
858 RelType RelocationScanner::getMipsN32RelType(RelTy *&rel) const { in getMipsN32RelType()
863 while (rel != static_cast<const RelTy *>(end) && rel->r_offset == offset) in getMipsN32RelType()
1399 template <class ELFT, class RelTy> void RelocationScanner::scanOne(RelTy *&i) { in scanOne()
1400 const RelTy &rel = *i; in scanOne()
1416 int64_t addend = RelTy::IsRela in scanOne()
1502 template <class RelTy>
1503 static void checkPPC64TLSRelax(InputSectionBase &sec, ArrayRef<RelTy> rels) { in checkPPC64TLSRelax()
1508 for (const RelTy &rel : rels) { in checkPPC64TLSRelax()
1534 template <class ELFT, class RelTy>
1535 void RelocationScanner::scan(ArrayRef<RelTy> rels) { in scan()
1540 checkPPC64TLSRelax<RelTy>(*sec, rels); in scan()
1547 SmallVector<RelTy, 0> storage; in scan()