Lines Matching refs:Rel
1140 const coff_relocation *COFFObjectFile::toRel(DataRefImpl Rel) const { in toRel()
1141 return reinterpret_cast<const coff_relocation*>(Rel.p); in toRel()
1144 void COFFObjectFile::moveRelocationNext(DataRefImpl &Rel) const { in moveRelocationNext()
1145 Rel.p = reinterpret_cast<uintptr_t>( in moveRelocationNext()
1146 reinterpret_cast<const coff_relocation*>(Rel.p) + 1); in moveRelocationNext()
1149 uint64_t COFFObjectFile::getRelocationOffset(DataRefImpl Rel) const { in getRelocationOffset()
1150 const coff_relocation *R = toRel(Rel); in getRelocationOffset()
1154 symbol_iterator COFFObjectFile::getRelocationSymbol(DataRefImpl Rel) const { in getRelocationSymbol()
1155 const coff_relocation *R = toRel(Rel); in getRelocationSymbol()
1168 uint64_t COFFObjectFile::getRelocationType(DataRefImpl Rel) const { in getRelocationType()
1169 const coff_relocation* R = toRel(Rel); in getRelocationType()
1299 DataRefImpl Rel, SmallVectorImpl<char> &Result) const { in getRelocationTypeName() argument
1300 const coff_relocation *Reloc = toRel(Rel); in getRelocationTypeName()