Lines Matching defs:lhs
1125 void InterpreterAssembler::JumpIfTaggedEqual(TNode<Object> lhs,
1128 JumpConditional(TaggedEqual(lhs, rhs), jump_offset);
1131 void InterpreterAssembler::JumpIfTaggedEqual(TNode<Object> lhs,
1134 JumpConditionalByImmediateOperand(TaggedEqual(lhs, rhs), operand_index);
1137 void InterpreterAssembler::JumpIfTaggedEqualConstant(TNode<Object> lhs,
1140 JumpConditionalByConstantOperand(TaggedEqual(lhs, rhs), operand_index);
1143 void InterpreterAssembler::JumpIfTaggedNotEqual(TNode<Object> lhs,
1146 JumpConditional(TaggedNotEqual(lhs, rhs), jump_offset);
1149 void InterpreterAssembler::JumpIfTaggedNotEqual(TNode<Object> lhs,
1152 JumpConditionalByImmediateOperand(TaggedNotEqual(lhs, rhs), operand_index);
1155 void InterpreterAssembler::JumpIfTaggedNotEqualConstant(TNode<Object> lhs,
1158 JumpConditionalByConstantOperand(TaggedNotEqual(lhs, rhs), operand_index);
1329 void InterpreterAssembler::AbortIfWordNotEqual(TNode<WordT> lhs,
1333 Branch(WordEqual(lhs, rhs), &ok, &abort);