Lines Matching refs:result
125 TNode<HeapNumber> result = AllocateHeapNumberWithValue(value);
126 var_result = result;
435 TNode<Object> result;
438 result = CallBuiltin(Builtin::kSubtract, context(), lhs, rhs);
441 result = CallBuiltin(Builtin::kMultiply, context(), lhs, rhs);
444 result = CallBuiltin(Builtin::kDivide, context(), lhs, rhs);
447 result = CallBuiltin(Builtin::kModulus, context(), lhs, rhs);
450 result = CallBuiltin(Builtin::kExponentiate, context(), lhs, rhs);
455 var_result = result;
505 TNode<Number> result = SmiMul(lhs, rhs);
507 TaggedIsSmi(result), BinaryOperationFeedback::kSignedSmall,
509 return result;
563 TNode<Number> result = SmiMod(lhs, rhs);
565 TaggedIsSmi(result), BinaryOperationFeedback::kSignedSmall,
567 return result;
602 TVARIABLE(Object, result);
641 result = BitwiseOp(var_left_word32.value(), var_right_word32.value(),
646 TaggedIsSmi(result.value()), BinaryOperationFeedback::kSignedSmall,
677 result = CallRuntime(
684 return result.value();
694 TVARIABLE(Object, result);
708 result = BitwiseSmiOp(left_smi, right_smi, bitwise_op);
713 feedback = SelectSmiConstant(TaggedIsSmi(result.value()),
729 result =
733 TaggedIsSmi(result.value()), BinaryOperationFeedback::kSignedSmall,
755 return result.value();