Lines Matching refs:rel
36 void relocate(uint8_t *loc, const Relocation &rel,
40 void relaxTlsGdToIe(uint8_t *loc, const Relocation &rel,
42 void relaxTlsGdToLe(uint8_t *loc, const Relocation &rel,
44 void relaxTlsIeToLe(uint8_t *loc, const Relocation &rel,
46 void relaxTlsLdToLe(uint8_t *loc, const Relocation &rel,
292 void X86::relocate(uint8_t *loc, const Relocation &rel, uint64_t val) const { in relocate() argument
293 switch (rel.type) { in relocate()
298 checkIntUInt(loc, val, 8, rel); in relocate()
302 checkInt(loc, val, 8, rel); in relocate()
306 checkIntUInt(loc, val, 16, rel); in relocate()
320 checkInt(loc, val, 17, rel); in relocate()
344 checkInt(loc, val, 32, rel); in relocate()
356 void X86::relaxTlsGdToLe(uint8_t *loc, const Relocation &rel, in relaxTlsGdToLe() argument
358 if (rel.type == R_386_TLS_GD) { in relaxTlsGdToLe()
371 } else if (rel.type == R_386_TLS_GOTDESC) { in relaxTlsGdToLe()
384 assert(rel.type == R_386_TLS_DESC_CALL); in relaxTlsGdToLe()
390 void X86::relaxTlsGdToIe(uint8_t *loc, const Relocation &rel, in relaxTlsGdToIe() argument
392 if (rel.type == R_386_TLS_GD) { in relaxTlsGdToIe()
405 } else if (rel.type == R_386_TLS_GOTDESC) { in relaxTlsGdToIe()
416 assert(rel.type == R_386_TLS_DESC_CALL); in relaxTlsGdToIe()
424 void X86::relaxTlsIeToLe(uint8_t *loc, const Relocation &rel, in relaxTlsIeToLe() argument
432 if (rel.type == R_386_TLS_IE) { in relaxTlsIeToLe()
448 assert(rel.type == R_386_TLS_GOTIE); in relaxTlsIeToLe()
462 void X86::relaxTlsLdToLe(uint8_t *loc, const Relocation &rel, in relaxTlsLdToLe() argument
464 if (rel.type == R_386_TLS_LDO_32) { in relaxTlsLdToLe()