Home | History | Annotate | Download | only in llvm-readobj

Lines Matching refs:Reloc

44   void printRelocation(const RelocationRef &Reloc);
46 void printRelocation(const MachOObjectFile *Obj, const RelocationRef &Reloc);
253 for (const RelocationRef &Reloc : Section.relocations())
254 printRelocation(Reloc);
288 for (const RelocationRef &Reloc : Section.relocations()) {
295 printRelocation(Reloc);
305 void MachODumper::printRelocation(const RelocationRef &Reloc) {
306 return printRelocation(Obj, Reloc);
310 const RelocationRef &Reloc) {
313 if (error(Reloc.getOffset(Offset)))
315 if (error(Reloc.getTypeName(RelocName)))
318 DataRefImpl DR = Reloc.getRawDataRefImpl();
327 symbol_iterator Symbol = Reloc.getSymbol();