Home | History | Annotate | Download | only in AsmParser

Lines Matching defs:ShiftAmount

165     unsigned ShiftAmount;
271 if (ImmWithLSL.ShiftAmount != 0) return false;
290 if (ImmWithLSL.ShiftAmount != 12) return false;
566 if (ImmWithLSL.ShiftAmount % 16 != 0) return false;
567 if (ImmWithLSL.ShiftAmount >= RegWidth) return false;
760 unsigned ShiftAmount,
765 Op->ImmWithLSL.ShiftAmount = ShiftAmount;
1003 Inst.addOperand(MCOperand::CreateImm(ImmWithLSL.ShiftAmount / 16));
1421 int64_t ShiftAmount = Parser.getTok().getIntVal();
1423 if (ShiftAmount < 0) {
1430 Operands.push_back(AArch64Operand::CreateImmWithLSL(Imm, ShiftAmount,
2259 << ", shift=" << ImmWithLSL.ShiftAmount << ">";