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

Declarations

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

References

include/llvm/MC/MCInstPrinter.h
   98     return PrintImmHex ? formatHex(Value) : formatDec(Value);
lib/Target/AArch64/MCTargetDesc/AArch64InstPrinter.cpp
 1500     O << '#' << formatDec(Value);
 1505       *CommentStream << '=' << formatDec(HexValue) << '\n';
lib/Target/AMDGPU/MCTargetDesc/AMDGPUInstPrinter.cpp
   61   O << formatDec(MI->getOperand(OpNo).getImm() & 0xf);
   66   O << formatDec(MI->getOperand(OpNo).getImm() & 0xff);
   71   O << formatDec(MI->getOperand(OpNo).getImm() & 0xffff);
  134         O << formatDec(SignExtend32<12>(MI->getOperand(OpNo).getImm()));
  136         O << formatDec(SignExtend32<13>(MI->getOperand(OpNo).getImm()));
  560       O << formatDec(Op.getImm());
  688   O << " dpp8:[" << formatDec(Imm & 0x7);
  690     O << ',' << formatDec((Imm >> (3 * i)) & 0x7);
  703     O << formatDec(Imm & 0x3)         << ',';
  704     O << formatDec((Imm & 0xc)  >> 2) << ',';
  705     O << formatDec((Imm & 0x30) >> 4) << ',';
  706     O << formatDec((Imm & 0xc0) >> 6) << ']';
 1223       O << formatDec(Imm & LANE_MASK);
 1240       O << formatDec(XorMask);
 1249       O << formatDec(XorMask + 1);
 1262         O << formatDec(GroupSize);
 1264         O << formatDec(OrMask);
 1340   O << ' ' << formatDec(Imm);