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

Declarations

include/llvm/MC/MCInstPrinter.h
  103   format_object<int64_t> formatHex(int64_t Value) const;

References

include/llvm/MC/MCInstPrinter.h
   98     return PrintImmHex ? formatHex(Value) : formatDec(Value);
lib/Target/AMDGPU/MCTargetDesc/AMDGPUInstPrinter.cpp
   39   O << formatHex(MI->getOperand(OpNo).getImm() & 0xf);
   44   O << formatHex(MI->getOperand(OpNo).getImm() & 0xff);
   77   O << formatHex(MI->getOperand(OpNo).getImm() & 0xffffffff);
lib/Target/Lanai/MCTargetDesc/LanaiInstPrinter.cpp
  155     OS << formatHex(Op.getImm());
  166     OS << '[' << formatHex(Op.getImm()) << ']';
  180     OS << formatHex(Op.getImm() << 16);
  192     OS << formatHex((Op.getImm() << 16) | 0xffff);
  204     OS << formatHex(0xffff0000 | Op.getImm());
unittests/MC/MCInstPrinter.cpp
   54     OS << Printer->formatHex(i);