Lines Matching defs:lhs
138 static void JumpIfHelper(MacroAssembler* assm, Condition cc, Register lhs,
141 __ CmpS64(lhs, rhs);
143 __ CmpU64(lhs, rhs);
243 void BaselineAssembler::JumpIf(Condition cc, Register lhs, const Operand& rhs,
247 __ CmpS64(lhs, rhs);
249 __ CmpU64(lhs, rhs);
299 void BaselineAssembler::JumpIfSmi(Condition cc, Register lhs, Register rhs,
302 __ AssertSmi(lhs);
304 JumpIfHelper(masm_, cc, lhs, rhs, target);
579 void BaselineAssembler::AddSmi(Register lhs, Smi rhs) {
583 __ AddS32(lhs, lhs, r0);
585 __ AddS64(lhs, lhs, r0);
589 void BaselineAssembler::Word32And(Register output, Register lhs, int rhs) {
590 __ AndP(output, lhs, Operand(rhs));