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

References

include/llvm/MC/MCInstPrinter.h
   72   void setCommentStream(raw_ostream &OS) { CommentStream = &OS; }
lib/MC/MCInstPrinter.cpp
   49     if (CommentStream) {
   50       (*CommentStream) << Annot;
   54         (*CommentStream) << '\n';
lib/Target/AArch64/MCTargetDesc/AArch64InstPrinter.cpp
  939     if (CommentStream)
  940       *CommentStream << '=' << formatImm(Val << Shift) << '\n';
 1502   if (CommentStream) {
 1505       *CommentStream << '=' << formatDec(HexValue) << '\n';
 1507       *CommentStream << '=' << formatHex((uint64_t)Value) << '\n';
lib/Target/WebAssembly/MCTargetDesc/WebAssemblyInstPrinter.cpp
   73   if (CommentStream) {
lib/Target/X86/MCTargetDesc/X86ATTInstPrinter.cpp
   44   if (CommentStream)
   45     HasCustomInstComment = EmitAnyX86InstComments(MI, *CommentStream, MII);
  368     if (CommentStream && !HasCustomInstComment && (Imm > 255 || Imm < -256)) {
  371         *CommentStream << format("imm = 0x%" PRIX16 "\n", (uint16_t)Imm);
  373         *CommentStream << format("imm = 0x%" PRIX32 "\n", (uint32_t)Imm);
  375         *CommentStream << format("imm = 0x%" PRIX64 "\n", (uint64_t)Imm);
lib/Target/X86/MCTargetDesc/X86IntelInstPrinter.cpp
   56   if (CommentStream)
   57     EmitAnyX86InstComments(MI, *CommentStream, MII);