Lines Matching defs:Reloc
67 template <typename RelTy> void printRelocation(RelTy Reloc);
461 template <typename RelTy> void XCOFFDumper::printRelocation(RelTy Reloc) {
463 Obj.getSymbolNameByIndex(Reloc.SymbolIndex);
469 StringRef RelocName = XCOFF::getRelocationTypeString(Reloc.Type);
472 W.printHex("Virtual Address", Reloc.VirtualAddress);
474 Reloc.SymbolIndex);
475 W.printString("IsSigned", Reloc.isRelocationSigned() ? "Yes" : "No");
476 W.printNumber("FixupBitValue", Reloc.isFixupIndicated() ? 1 : 0);
477 W.printNumber("Length", Reloc.getRelocatedLength());
478 W.printEnum("Type", (uint8_t)Reloc.Type, ArrayRef(RelocationTypeNameclass));
481 OS << W.hex(Reloc.VirtualAddress) << " " << RelocName << " "
483 << Reloc.SymbolIndex << ") " << W.hex(Reloc.Info) << "\n";
511 for (const RelTy Reloc : Relocations)
512 printRelocation(Reloc);