reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/llvm-readobj/MachODumper.cpp
  549   MachO::any_relocation_info RE = Obj->getRelocation(DR);
  550   bool IsScattered = Obj->isRelocationScattered(RE);
  551   bool IsExtern = !IsScattered && Obj->getPlainRelocationExternal(RE);
  556     if (Symbol != Obj->symbol_end()) {
  559         reportError(TargetNameOrErr.takeError(), Obj->getFileName());
  563     section_iterator SecI = Obj->getRelocationSection(DR);
  564     if (SecI != Obj->section_end())
  565       TargetName = unwrapOrError(Obj->getFileName(), SecI->getName());
  573     W.printNumber("PCRel", Obj->getAnyRelocationPCRel(RE));
  574     W.printNumber("Length", Obj->getAnyRelocationLength(RE));
  575     W.printNumber("Type", RelocName, Obj->getAnyRelocationType(RE));
  577       W.printHex("Value", Obj->getScatteredRelocationValue(RE));
  580       W.printNumber(Kind, TargetName, Obj->getPlainRelocationSymbolNum(RE));
  587       SymbolNameOrOffset += utohexstr(Obj->getScatteredRelocationValue(RE));
  594        << " " << Obj->getAnyRelocationPCRel(RE)
  595        << " " << Obj->getAnyRelocationLength(RE);
  599       OS << " " << Obj->getPlainRelocationExternal(RE);