Lines Matching refs:RotateAmt
362 uint32_t Imm, uint32_t RotateAmt) in OperandARM32FlexImm() argument
363 : OperandARM32Flex(kFlexImm, Ty), Imm(Imm), RotateAmt(RotateAmt) { in OperandARM32FlexImm()
368 bool OperandARM32FlexImm::canHoldImm(uint32_t Immediate, uint32_t *RotateAmt, in canHoldImm() argument
372 *RotateAmt = 0; in canHoldImm()
380 *RotateAmt = Rot; in canHoldImm()
3367 uint32_t RotateAmt) { in create() argument
3372 while ((Imm & 0x03) == 0 && RotateAmt > 0) { in create()
3373 --RotateAmt; in create()
3377 OperandARM32FlexImm(Func, Ty, Imm, RotateAmt); in create()
3385 uint32_t RotateAmt = getRotateAmt(); in emit() local
3386 Str << "#" << Utils::rotateRight32(Imm, 2 * RotateAmt); in emit()
3393 uint32_t RotateAmt = getRotateAmt(); in dump() local
3394 Str << "#(" << Imm << " ror 2*" << RotateAmt << ")"; in dump()