Home | History | Annotate | Download | only in AsmParser

Lines Matching full:amount

1487     // The sign, shift type, and shift amount are encoded in a single operand
2052 // RRX Doesn't have an explicit shift amount. The encoder expects
2652 // There must be a '#' and a shift amount.
2730 // A '#' and a shift amount.
2745 Error(E, "shift amount must be an immediate");
2751 // Shift amount must be in [1,32]
2753 Error(E, "'asr' shift amount must be in range [1,32]");
2758 Error(E, "'asr #32' shift amount not allowed in Thumb mode");
2763 // Shift amount must be in [1,32]
2765 Error(E, "'lsr' shift amount must be in range [0,31]");
2790 // A '#' and a rotate amount.
2805 Error(E, "rotate amount must be an immediate");
2810 // Shift amount must be in {0, 8, 16, 24} (0 is undocumented extension)
2814 Error(E, "'ror' rotate amount must be 8, 16, or 24");
3486 unsigned &Amount) {
3507 Amount = 0;
3510 // A '#' and a shift amount.
3524 return Error(Loc, "shift amount must be an immediate");
3530 Amount = Imm;