Home | History | Annotate | Download | only in Disassembler

Lines Matching refs:ImmR

477   unsigned ImmR = fieldFromInstruction(Insn, 16, 6);
486 // ImmR and ImmS must be between 0 and 31 for 32-bit instructions.
487 if (ImmR > 31 || ImmS > 31)
510 if (Opc == SBFM && ImmR == 0) {
513 } else if (Opc == UBFM && ImmR == 0) {
520 if (SF && (ImmS + 1) % 64 == ImmR) {
524 } else if (!SF && (ImmS + 1) % 32 == ImmR) {
532 // of ImmR or ImmS is larger.
551 Inst.addOperand(MCOperand::CreateImm(ImmR));
555 if (ImmS < ImmR)