Lines Matching defs:rhs
157 void BaselineAssembler::JumpIf(Condition cc, Register lhs, const Operand& rhs,
159 __ cmpq(lhs, rhs);
193 void BaselineAssembler::JumpIfSmi(Condition cc, Register lhs, Register rhs,
195 __ SmiCompare(lhs, rhs);
405 void BaselineAssembler::AddSmi(Register lhs, Smi rhs) {
406 if (rhs.value() == 0) return;
408 __ addl(lhs, Immediate(rhs));
412 __ Move(rhs_reg, rhs);
417 void BaselineAssembler::Word32And(Register output, Register lhs, int rhs) {
419 __ andq(output, Immediate(rhs));