mirror of
https://github.com/jerryscript-project/jerryscript.git
synced 2025-12-15 16:29:21 +00:00
This patch adds several small features: - Support right shift with negative numbers - Support exponentation operator - BigInts can be enabled in ES5.1 mode - Remove dead code from ecma_deref_bigint - Support longer BigInt literals in the parser - Fix various BigInt comparison issues - Do not discard unary plus for BigInt constants JerryScript-DCO-1.0-Signed-off-by: Zoltan Herczeg zherczeg.u-szeged@partner.samsung.com
324 lines
8.1 KiB
C
324 lines
8.1 KiB
C
/* Copyright JS Foundation and other contributors, http://js.foundation
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#include "ecma-alloc.h"
|
|
#include "ecma-bigint.h"
|
|
#include "ecma-conversion.h"
|
|
#include "ecma-exceptions.h"
|
|
#include "ecma-helpers.h"
|
|
#include "ecma-number-arithmetic.h"
|
|
#include "ecma-objects.h"
|
|
#include "ecma-try-catch-macro.h"
|
|
#include "opcodes.h"
|
|
#include "jrt-libc-includes.h"
|
|
|
|
/** \addtogroup vm Virtual machine
|
|
* @{
|
|
*
|
|
* \addtogroup vm_opcodes Opcodes
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* Perform ECMA number arithmetic operation.
|
|
*
|
|
* The algorithm of the operation is following:
|
|
* leftNum = ToNumber (leftValue);
|
|
* rightNum = ToNumber (rightValue);
|
|
* result = leftNum ArithmeticOp rightNum;
|
|
*
|
|
* @return ecma value
|
|
* Returned value must be freed with ecma_free_value
|
|
*/
|
|
ecma_value_t
|
|
do_number_arithmetic (number_arithmetic_op op, /**< number arithmetic operation */
|
|
ecma_value_t left_value, /**< left value */
|
|
ecma_value_t right_value) /**< right value */
|
|
{
|
|
ecma_number_t left_number;
|
|
left_value = ecma_op_to_numeric (left_value, &left_number, ECMA_TO_NUMERIC_ALLOW_BIGINT);
|
|
|
|
if (ECMA_IS_VALUE_ERROR (left_value))
|
|
{
|
|
return left_value;
|
|
}
|
|
|
|
ecma_value_t ret_value = ECMA_VALUE_EMPTY;
|
|
|
|
#if ENABLED (JERRY_BUILTIN_BIGINT)
|
|
if (JERRY_LIKELY (!ecma_is_value_bigint (left_value)))
|
|
{
|
|
#endif /* ENABLED (JERRY_BUILTIN_BIGINT) */
|
|
ECMA_OP_TO_NUMBER_TRY_CATCH (right_number, right_value, ret_value);
|
|
|
|
ecma_number_t result = ECMA_NUMBER_ZERO;
|
|
|
|
switch (op)
|
|
{
|
|
case NUMBER_ARITHMETIC_SUBTRACTION:
|
|
{
|
|
result = left_number - right_number;
|
|
break;
|
|
}
|
|
case NUMBER_ARITHMETIC_MULTIPLICATION:
|
|
{
|
|
result = left_number * right_number;
|
|
break;
|
|
}
|
|
case NUMBER_ARITHMETIC_DIVISION:
|
|
{
|
|
result = left_number / right_number;
|
|
break;
|
|
}
|
|
case NUMBER_ARITHMETIC_REMAINDER:
|
|
{
|
|
result = ecma_op_number_remainder (left_number, right_number);
|
|
break;
|
|
}
|
|
#if ENABLED (JERRY_ESNEXT)
|
|
case NUMBER_ARITHMETIC_EXPONENTIATION:
|
|
{
|
|
result = ecma_number_pow (left_number, right_number);
|
|
break;
|
|
}
|
|
#endif /* ENABLED (JERRY_ESNEXT) */
|
|
}
|
|
|
|
ret_value = ecma_make_number_value (result);
|
|
|
|
ECMA_OP_TO_NUMBER_FINALIZE (right_number);
|
|
#if ENABLED (JERRY_BUILTIN_BIGINT)
|
|
}
|
|
else
|
|
{
|
|
bool free_right_value;
|
|
right_value = ecma_bigint_get_bigint (right_value, &free_right_value);
|
|
|
|
if (ECMA_IS_VALUE_ERROR (right_value))
|
|
{
|
|
ecma_free_value (left_value);
|
|
return right_value;
|
|
}
|
|
|
|
switch (op)
|
|
{
|
|
case NUMBER_ARITHMETIC_SUBTRACTION:
|
|
{
|
|
ret_value = ecma_bigint_add_sub (left_value, right_value, false);
|
|
break;
|
|
}
|
|
case NUMBER_ARITHMETIC_MULTIPLICATION:
|
|
{
|
|
ret_value = ecma_bigint_mul (left_value, right_value);
|
|
break;
|
|
}
|
|
case NUMBER_ARITHMETIC_DIVISION:
|
|
{
|
|
ret_value = ecma_bigint_div_mod (left_value, right_value, false);
|
|
break;
|
|
}
|
|
case NUMBER_ARITHMETIC_REMAINDER:
|
|
{
|
|
ret_value = ecma_bigint_div_mod (left_value, right_value, true);
|
|
break;
|
|
}
|
|
#if ENABLED (JERRY_ESNEXT)
|
|
case NUMBER_ARITHMETIC_EXPONENTIATION:
|
|
{
|
|
ret_value = ecma_bigint_pow (left_value, right_value);
|
|
break;
|
|
}
|
|
#endif /* ENABLED (JERRY_ESNEXT) */
|
|
}
|
|
|
|
ecma_free_value (left_value);
|
|
if (free_right_value)
|
|
{
|
|
ecma_free_value (right_value);
|
|
}
|
|
}
|
|
#endif /* ENABLED (JERRY_BUILTIN_BIGINT) */
|
|
return ret_value;
|
|
} /* do_number_arithmetic */
|
|
|
|
/**
|
|
* 'Addition' opcode handler.
|
|
*
|
|
* See also: ECMA-262 v5, 11.6.1
|
|
*
|
|
* @return ecma value
|
|
* Returned value must be freed with ecma_free_value
|
|
*/
|
|
ecma_value_t
|
|
opfunc_addition (ecma_value_t left_value, /**< left value */
|
|
ecma_value_t right_value) /**< right value */
|
|
{
|
|
bool free_left_value = false;
|
|
bool free_right_value = false;
|
|
|
|
if (ecma_is_value_object (left_value))
|
|
{
|
|
ecma_object_t *obj_p = ecma_get_object_from_value (left_value);
|
|
left_value = ecma_op_object_default_value (obj_p, ECMA_PREFERRED_TYPE_NO);
|
|
free_left_value = true;
|
|
|
|
if (ECMA_IS_VALUE_ERROR (left_value))
|
|
{
|
|
return left_value;
|
|
}
|
|
}
|
|
|
|
if (ecma_is_value_object (right_value))
|
|
{
|
|
ecma_object_t *obj_p = ecma_get_object_from_value (right_value);
|
|
right_value = ecma_op_object_default_value (obj_p, ECMA_PREFERRED_TYPE_NO);
|
|
free_right_value = true;
|
|
|
|
if (ECMA_IS_VALUE_ERROR (right_value))
|
|
{
|
|
if (free_left_value)
|
|
{
|
|
ecma_free_value (left_value);
|
|
}
|
|
return right_value;
|
|
}
|
|
}
|
|
|
|
ecma_value_t ret_value = ECMA_VALUE_EMPTY;
|
|
|
|
if (ecma_is_value_string (left_value)
|
|
|| ecma_is_value_string (right_value))
|
|
{
|
|
ecma_string_t *string1_p = ecma_op_to_string (left_value);
|
|
|
|
if (JERRY_UNLIKELY (string1_p == NULL))
|
|
{
|
|
if (free_left_value)
|
|
{
|
|
ecma_free_value (left_value);
|
|
}
|
|
if (free_right_value)
|
|
{
|
|
ecma_free_value (right_value);
|
|
}
|
|
return ECMA_VALUE_ERROR;
|
|
}
|
|
|
|
ecma_string_t *string2_p = ecma_op_to_string (right_value);
|
|
|
|
if (JERRY_UNLIKELY (string2_p == NULL))
|
|
{
|
|
if (free_right_value)
|
|
{
|
|
ecma_free_value (right_value);
|
|
}
|
|
if (free_left_value)
|
|
{
|
|
ecma_free_value (left_value);
|
|
}
|
|
ecma_deref_ecma_string (string1_p);
|
|
return ECMA_VALUE_ERROR;
|
|
}
|
|
|
|
string1_p = ecma_concat_ecma_strings (string1_p, string2_p);
|
|
ret_value = ecma_make_string_value (string1_p);
|
|
|
|
ecma_deref_ecma_string (string2_p);
|
|
}
|
|
#if ENABLED (JERRY_BUILTIN_BIGINT)
|
|
else if (JERRY_UNLIKELY (ecma_is_value_bigint (left_value))
|
|
&& JERRY_UNLIKELY (ecma_is_value_bigint (right_value)))
|
|
{
|
|
ret_value = ecma_bigint_add_sub (left_value, right_value, true);
|
|
}
|
|
#endif /* ENABLED (JERRY_BUILTIN_BIGINT) */
|
|
else
|
|
{
|
|
ECMA_OP_TO_NUMBER_TRY_CATCH (num_left, left_value, ret_value);
|
|
ECMA_OP_TO_NUMBER_TRY_CATCH (num_right, right_value, ret_value);
|
|
|
|
ret_value = ecma_make_number_value (num_left + num_right);
|
|
|
|
ECMA_OP_TO_NUMBER_FINALIZE (num_right);
|
|
ECMA_OP_TO_NUMBER_FINALIZE (num_left);
|
|
}
|
|
|
|
if (free_left_value)
|
|
{
|
|
ecma_free_value (left_value);
|
|
}
|
|
|
|
if (free_right_value)
|
|
{
|
|
ecma_free_value (right_value);
|
|
}
|
|
|
|
return ret_value;
|
|
} /* opfunc_addition */
|
|
|
|
/**
|
|
* Unary operation opcode handler.
|
|
*
|
|
* See also: ECMA-262 v5, 11.4, 11.4.6, 11.4.7
|
|
*
|
|
* @return ecma value
|
|
* Returned value must be freed with ecma_free_value
|
|
*/
|
|
ecma_value_t
|
|
opfunc_unary_operation (ecma_value_t left_value, /**< left value */
|
|
bool is_plus) /**< unary plus flag */
|
|
{
|
|
ecma_number_t left_number;
|
|
left_value = ecma_op_to_numeric (left_value, &left_number, ECMA_TO_NUMERIC_ALLOW_BIGINT);
|
|
|
|
if (ECMA_IS_VALUE_ERROR (left_value))
|
|
{
|
|
return left_value;
|
|
}
|
|
|
|
#if ENABLED (JERRY_BUILTIN_BIGINT)
|
|
if (JERRY_LIKELY (!ecma_is_value_bigint (left_value)))
|
|
{
|
|
return ecma_make_number_value (is_plus ? left_number : -left_number);
|
|
}
|
|
|
|
ecma_value_t ret_value;
|
|
|
|
if (is_plus)
|
|
{
|
|
ret_value = ecma_raise_type_error (ECMA_ERR_MSG ("Unary operation plus is not allowed for BigInt numbers"));
|
|
}
|
|
else
|
|
{
|
|
ret_value = left_value;
|
|
|
|
if (left_value != ECMA_BIGINT_ZERO)
|
|
{
|
|
ret_value = ecma_bigint_negate (ecma_get_extended_primitive_from_value (left_value));
|
|
}
|
|
}
|
|
|
|
ecma_free_value (left_value);
|
|
return ret_value;
|
|
#else /* !ENABLED (JERRY_BUILTIN_BIGINT) */
|
|
return ecma_make_number_value (is_plus ? left_number : -left_number);
|
|
#endif /* ENABLED (JERRY_BUILTIN_BIGINT) */
|
|
} /* opfunc_unary_operation */
|
|
|
|
/**
|
|
* @}
|
|
* @}
|
|
*/
|