reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
360 O << markup("<imm:") << '$' << formatImm(Imm) << markup(">"); 368 if (CommentStream && !HasCustomInstComment && (Imm > 255 || Imm < -256)) { 368 if (CommentStream && !HasCustomInstComment && (Imm > 255 || Imm < -256)) { 370 if (Imm == (int16_t)(Imm)) 370 if (Imm == (int16_t)(Imm)) 371 *CommentStream << format("imm = 0x%" PRIX16 "\n", (uint16_t)Imm); 372 else if (Imm == (int32_t)(Imm)) 372 else if (Imm == (int32_t)(Imm)) 373 *CommentStream << format("imm = 0x%" PRIX32 "\n", (uint32_t)Imm); 375 *CommentStream << format("imm = 0x%" PRIX64 "\n", (uint64_t)Imm);