Lines Matching refs:Imm
570 unsigned Imm = MO.getImm(); in printPostIdxImm8Operand() local
572 << '#' << ((Imm & 256) ? "" : "-") << (Imm & 0xff) in printPostIdxImm8Operand()
589 unsigned Imm = MO.getImm(); in printPostIdxImm8s4Operand() local
591 << '#' << ((Imm & 256) ? "" : "-") << ((Imm & 0xff) << 2) in printPostIdxImm8s4Operand()
709 unsigned Imm = MI->getOperand(OpNum).getImm(); in printPKHLSLShiftImm() local
710 if (Imm == 0) in printPKHLSLShiftImm()
712 assert(Imm > 0 && Imm < 32 && "Invalid PKH shift immediate value!"); in printPKHLSLShiftImm()
713 O << ", lsl " << markup("<imm:") << "#" << Imm << markup(">"); in printPKHLSLShiftImm()
718 unsigned Imm = MI->getOperand(OpNum).getImm(); in printPKHASRShiftImm() local
720 if (Imm == 0) in printPKHASRShiftImm()
721 Imm = 32; in printPKHASRShiftImm()
722 assert(Imm > 0 && Imm <= 32 && "Invalid PKH shift immediate value!"); in printPKHASRShiftImm()
723 O << ", asr " << markup("<imm:") << "#" << Imm << markup(">"); in printPKHASRShiftImm()
934 unsigned Imm = MI->getOperand(OpNum).getImm(); in printThumbSRImm() local
936 << "#" << formatImm((Imm == 0 ? 32 : Imm)) in printThumbSRImm()
1236 unsigned Imm = MI->getOperand(OpNum).getImm(); in printImmPlusOneOperand() local
1238 << "#" << formatImm(Imm + 1) in printImmPlusOneOperand()
1244 unsigned Imm = MI->getOperand(OpNum).getImm(); in printRotImmOperand() local
1245 if (Imm == 0) in printRotImmOperand()
1250 switch (Imm) { in printRotImmOperand()