Home | History | Annotate | Download | only in InstPrinter

Lines Matching refs:Imm

74   int64_t Imm = MI->getOperand(Op).getImm();
75 switch (Imm) {
114 int64_t Imm = MI->getOperand(Op).getImm();
115 switch (Imm) {
130 int64_t Imm = MI->getOperand(Op).getImm() & 0x3;
131 switch (Imm) {
169 int64_t Imm = Op.getImm();
170 O << markup("<imm:") << '$' << formatImm(Imm) << markup(">");
178 if (CommentStream && !HasCustomInstComment && (Imm > 255 || Imm < -256)) {
180 if (Imm == (int16_t)(Imm))
181 *CommentStream << format("imm = 0x%" PRIX16 "\n", (uint16_t)Imm);
182 else if (Imm == (int32_t)(Imm))
183 *CommentStream << format("imm = 0x%" PRIX32 "\n", (uint32_t)Imm);
185 *CommentStream << format("imm = 0x%" PRIX64 "\n", (uint64_t)Imm);
189 O << markup("<imm:") << '$';
229 O << ',' << markup("<imm:") << ScaleVal // never printed in hex.
294 O << markup("<imm:") << '$' << formatImm(MI->getOperand(Op).getImm() & 0xff)