Lines Matching refs:getImm

317   int64_t getImm() const {
359 bool isU5Imm() const { return Kind == Immediate && isUInt<5>(getImm()); }
360 bool isS5Imm() const { return Kind == Immediate && isInt<5>(getImm()); }
361 bool isU6Imm() const { return Kind == Immediate && isUInt<6>(getImm()); }
363 (Kind == Immediate && isUInt<16>(getImm())); }
365 (Kind == Immediate && isInt<16>(getImm())); }
367 (Kind == Immediate && isInt<16>(getImm()) &&
368 (getImm() & 3) == 0); }
370 (Kind == Immediate && isInt<17>(getImm())); }
373 (Kind == Immediate && isInt<26>(getImm()) &&
374 (getImm() & 3) == 0); }
376 (Kind == Immediate && isInt<16>(getImm()) &&
377 (getImm() & 3) == 0); }
378 bool isRegNumber() const { return Kind == Immediate && isUInt<5>(getImm()); }
382 && isUInt<3>(getImm())); }
386 && isUInt<5>(getImm())); }
387 bool isCRBitMask() const { return Kind == Immediate && isUInt<8>(getImm()) &&
388 isPowerOf2_32(getImm()); }
463 Inst.addOperand(MCOperand::CreateImm(getImm()));
471 Inst.addOperand(MCOperand::CreateImm(getImm() / 4));
563 OS << getImm();
591 int64_t N = Inst.getOperand(2).getImm();
601 int64_t N = Inst.getOperand(2).getImm();
611 int64_t N = Inst.getOperand(2).getImm();
621 int64_t N = Inst.getOperand(2).getImm();
632 int64_t N = Inst.getOperand(2).getImm();
633 int64_t B = Inst.getOperand(3).getImm();
646 int64_t N = Inst.getOperand(2).getImm();
647 int64_t B = Inst.getOperand(3).getImm();
660 int64_t N = Inst.getOperand(2).getImm();
661 int64_t B = Inst.getOperand(3).getImm();
675 int64_t N = Inst.getOperand(2).getImm();
676 int64_t B = Inst.getOperand(3).getImm();
690 int64_t N = Inst.getOperand(2).getImm();
703 int64_t N = Inst.getOperand(2).getImm();
716 int64_t N = Inst.getOperand(2).getImm();
729 int64_t N = Inst.getOperand(2).getImm();
742 int64_t B = Inst.getOperand(2).getImm();
743 int64_t N = Inst.getOperand(3).getImm();
756 int64_t N = Inst.getOperand(2).getImm();
757 int64_t B = Inst.getOperand(3).getImm();
769 int64_t N = Inst.getOperand(2).getImm();
770 int64_t B = Inst.getOperand(3).getImm();
782 int64_t N = Inst.getOperand(2).getImm();
783 int64_t B = Inst.getOperand(3).getImm();
796 int64_t N = Inst.getOperand(2).getImm();
808 int64_t N = Inst.getOperand(2).getImm();
820 int64_t N = Inst.getOperand(2).getImm();
832 int64_t N = Inst.getOperand(2).getImm();
844 int64_t B = Inst.getOperand(2).getImm();
845 int64_t N = Inst.getOperand(3).getImm();
1369 if (Op->isImm() && Op->getImm() == ImmVal)