Lines Matching refs:RotateAmt
367 uint32_t Imm, uint32_t RotateAmt) in OperandARM32FlexImm() argument
368 : OperandARM32Flex(kFlexImm, Ty), Imm(Imm), RotateAmt(RotateAmt) { in OperandARM32FlexImm()
373 bool OperandARM32FlexImm::canHoldImm(uint32_t Immediate, uint32_t *RotateAmt, in canHoldImm() argument
377 *RotateAmt = 0; in canHoldImm()
385 *RotateAmt = Rot; in canHoldImm()
3364 uint32_t RotateAmt) { in create() argument
3369 while ((Imm & 0x03) == 0 && RotateAmt > 0) { in create()
3370 --RotateAmt; in create()
3374 OperandARM32FlexImm(Func, Ty, Imm, RotateAmt); in create()
3382 uint32_t RotateAmt = getRotateAmt(); in emit() local
3383 Str << "#" << Utils::rotateRight32(Imm, 2 * RotateAmt); in emit()
3390 uint32_t RotateAmt = getRotateAmt(); in dump() local
3391 Str << "#(" << Imm << " ror 2*" << RotateAmt << ")"; in dump()