Lines Matching refs:rel
86 virtual void relocate(uint8_t *loc, const Relocation &rel,
159 virtual void relaxGot(uint8_t *loc, const Relocation &rel,
161 virtual void relaxTlsGdToIe(uint8_t *loc, const Relocation &rel,
163 virtual void relaxTlsGdToLe(uint8_t *loc, const Relocation &rel,
165 virtual void relaxTlsIeToLe(uint8_t *loc, const Relocation &rel,
167 virtual void relaxTlsLdToLe(uint8_t *loc, const Relocation &rel,
207 bool tryRelaxPPC64TocIndirection(const Relocation &rel, uint8_t *bufLoc);
246 void reportRangeError(uint8_t *loc, const Relocation &rel, const Twine &v,
252 inline void checkInt(uint8_t *loc, int64_t v, int n, const Relocation &rel) { in checkInt() argument
254 reportRangeError(loc, rel, Twine(v), llvm::minIntN(n), llvm::maxIntN(n)); in checkInt()
258 inline void checkUInt(uint8_t *loc, uint64_t v, int n, const Relocation &rel) { in checkUInt() argument
260 reportRangeError(loc, rel, Twine(v), 0, llvm::maxUIntN(n)); in checkUInt()
265 const Relocation &rel) { in checkIntUInt() argument
269 reportRangeError(loc, rel, Twine((int64_t)v), llvm::minIntN(n), in checkIntUInt()
274 const Relocation &rel) { in checkAlignment() argument
277 lld::toString(rel.type) + ": 0x" + llvm::utohexstr(v) + in checkAlignment()