Home | History | Annotate | Download | only in AsmParser

Lines Matching refs:getImm

361   int64_t getImm() const {
408 bool isU2Imm() const { return Kind == Immediate && isUInt<2>(getImm()); }
409 bool isU5Imm() const { return Kind == Immediate && isUInt<5>(getImm()); }
410 bool isS5Imm() const { return Kind == Immediate && isInt<5>(getImm()); }
411 bool isU6Imm() const { return Kind == Immediate && isUInt<6>(getImm()); }
413 (Kind == Immediate && isUInt<16>(getImm())); }
415 (Kind == Immediate && isInt<16>(getImm())); }
417 (Kind == Immediate && isInt<16>(getImm()) &&
418 (getImm() & 3) == 0); }
420 (Kind == Immediate && isInt<17>(getImm())); }
423 (Kind == Immediate && isInt<26>(getImm()) &&
424 (getImm() & 3) == 0); }
426 (Kind == Immediate && isInt<16>(getImm()) &&
427 (getImm() & 3) == 0); }
428 bool isRegNumber() const { return Kind == Immediate && isUInt<5>(getImm()); }
429 bool isVSRegNumber() const { return Kind == Immediate && isUInt<6>(getImm()); }
433 && isUInt<3>(getImm())); }
437 && isUInt<5>(getImm())); }
438 bool isCRBitMask() const { return Kind == Immediate && isUInt<8>(getImm()) &&
439 isPowerOf2_32(getImm()); }
524 Inst.addOperand(MCOperand::CreateImm(getImm()));
532 Inst.addOperand(MCOperand::CreateImm(getImm() / 4));
630 OS << getImm();
656 int64_t N = Inst.getOperand(2).getImm();
666 int64_t N = Inst.getOperand(2).getImm();
676 int64_t N = Inst.getOperand(2).getImm();
686 int64_t N = Inst.getOperand(2).getImm();
697 int64_t N = Inst.getOperand(2).getImm();
698 int64_t B = Inst.getOperand(3).getImm();
711 int64_t N = Inst.getOperand(2).getImm();
712 int64_t B = Inst.getOperand(3).getImm();
725 int64_t N = Inst.getOperand(2).getImm();
726 int64_t B = Inst.getOperand(3).getImm();
740 int64_t N = Inst.getOperand(2).getImm();
741 int64_t B = Inst.getOperand(3).getImm();
755 int64_t N = Inst.getOperand(2).getImm();
768 int64_t N = Inst.getOperand(2).getImm();
781 int64_t N = Inst.getOperand(2).getImm();
794 int64_t N = Inst.getOperand(2).getImm();
807 int64_t B = Inst.getOperand(2).getImm();
808 int64_t N = Inst.getOperand(3).getImm();
821 int64_t N = Inst.getOperand(2).getImm();
822 int64_t B = Inst.getOperand(3).getImm();
834 int64_t N = Inst.getOperand(2).getImm();
835 int64_t B = Inst.getOperand(3).getImm();
847 int64_t N = Inst.getOperand(2).getImm();
848 int64_t B = Inst.getOperand(3).getImm();
861 int64_t N = Inst.getOperand(2).getImm();
873 int64_t N = Inst.getOperand(2).getImm();
885 int64_t N = Inst.getOperand(2).getImm();
897 int64_t N = Inst.getOperand(2).getImm();
909 int64_t B = Inst.getOperand(2).getImm();
910 int64_t N = Inst.getOperand(3).getImm();
1565 if (Op.isImm() && Op.getImm() == ImmVal)