Lines Matching refs:shift_imm
1409 void ArmAssembler::Lsl(Register rd, Register rm, uint32_t shift_imm,
1411 CHECK_NE(shift_imm, 0u); // Do not use Lsl if no shift is wanted.
1412 mov(rd, ShifterOperand(rm, LSL, shift_imm), cond);
1415 void ArmAssembler::Lsr(Register rd, Register rm, uint32_t shift_imm,
1417 CHECK_NE(shift_imm, 0u); // Do not use Lsr if no shift is wanted.
1418 if (shift_imm == 32) shift_imm = 0; // Comply to UAL syntax.
1419 mov(rd, ShifterOperand(rm, LSR, shift_imm), cond);
1422 void ArmAssembler::Asr(Register rd, Register rm, uint32_t shift_imm,
1424 CHECK_NE(shift_imm, 0u); // Do not use Asr if no shift is wanted.
1425 if (shift_imm == 32) shift_imm = 0; // Comply to UAL syntax.
1426 mov(rd, ShifterOperand(rm, ASR, shift_imm), cond);
1429 void ArmAssembler::Ror(Register rd, Register rm, uint32_t shift_imm,
1431 CHECK_NE(shift_imm, 0u); // Use Rrx instruction.
1432 mov(rd, ShifterOperand(rm, ROR, shift_imm), cond);