mirror of
https://github.com/jerryscript-project/jerryscript.git
synced 2025-12-15 16:29:21 +00:00
The ecma_typedarray_create_object_with_typedarray function is fully rewritten. JerryScript-DCO-1.0-Signed-off-by: Zoltan Herczeg zherczeg.u-szeged@partner.samsung.com
164 lines
5.0 KiB
C
164 lines
5.0 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-arraybuffer-object.h"
|
|
#include "ecma-try-catch-macro.h"
|
|
#include "ecma-objects.h"
|
|
#include "ecma-builtins.h"
|
|
#include "ecma-exceptions.h"
|
|
#include "ecma-gc.h"
|
|
#include "ecma-globals.h"
|
|
#include "ecma-helpers.h"
|
|
#include "jmem.h"
|
|
|
|
#ifndef CONFIG_DISABLE_ES2015_TYPEDARRAY_BUILTIN
|
|
|
|
/** \addtogroup ecma ECMA
|
|
* @{
|
|
*
|
|
* \addtogroup ecmaarraybufferobject ECMA ArrayBuffer object related routines
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* Helper function: create arraybuffer object based on the array length
|
|
*
|
|
* The struct of arraybuffer object:
|
|
* ecma_object_t
|
|
* extend_part
|
|
* data buffer
|
|
*
|
|
* @return ecma_object_t *
|
|
*/
|
|
ecma_object_t *
|
|
ecma_arraybuffer_new_object (ecma_length_t length) /**< length of the arraybuffer */
|
|
{
|
|
ecma_object_t *prototype_obj_p = ecma_builtin_get (ECMA_BUILTIN_ID_ARRAYBUFFER_PROTOTYPE);
|
|
ecma_object_t *object_p = ecma_create_object (prototype_obj_p,
|
|
sizeof (ecma_extended_object_t) + length,
|
|
ECMA_OBJECT_TYPE_CLASS);
|
|
ecma_deref_object (prototype_obj_p);
|
|
ecma_extended_object_t *ext_object_p = (ecma_extended_object_t *) object_p;
|
|
ext_object_p->u.class_prop.class_id = LIT_MAGIC_STRING_ARRAY_BUFFER_UL;
|
|
ext_object_p->u.class_prop.u.length = length;
|
|
|
|
lit_utf8_byte_t *buf = (lit_utf8_byte_t *) (ext_object_p + 1);
|
|
memset (buf, 0, length);
|
|
|
|
return object_p;
|
|
} /* ecma_arraybuffer_new_object */
|
|
|
|
/**
|
|
* ArrayBuffer object creation operation.
|
|
*
|
|
* See also: ES2015 24.1.1.1
|
|
*
|
|
* @return ecma value
|
|
* Returned value must be freed with ecma_free_value
|
|
*/
|
|
ecma_value_t
|
|
ecma_op_create_arraybuffer_object (const ecma_value_t *arguments_list_p, /**< list of arguments that
|
|
* are passed to String constructor */
|
|
ecma_length_t arguments_list_len) /**< length of the arguments' list */
|
|
{
|
|
JERRY_ASSERT (arguments_list_len == 0 || arguments_list_p != NULL);
|
|
|
|
uint32_t length = 0;
|
|
|
|
if (arguments_list_len > 0)
|
|
{
|
|
ecma_number_t num;
|
|
|
|
if (ecma_is_value_number (arguments_list_p[0]))
|
|
{
|
|
num = ecma_get_number_from_value (arguments_list_p[0]);
|
|
}
|
|
else
|
|
{
|
|
ecma_value_t to_number_value = ecma_op_to_number (arguments_list_p[0]);
|
|
|
|
if (ECMA_IS_VALUE_ERROR (to_number_value))
|
|
{
|
|
return to_number_value;
|
|
}
|
|
|
|
num = ecma_get_number_from_value (to_number_value);
|
|
|
|
ecma_free_value (to_number_value);
|
|
}
|
|
|
|
length = ecma_number_to_uint32 (num);
|
|
|
|
if (num != ((ecma_number_t) length)
|
|
|| length > (UINT32_MAX - sizeof (ecma_extended_object_t) - JMEM_ALIGNMENT + 1))
|
|
{
|
|
return ecma_raise_range_error (ECMA_ERR_MSG ("Invalid ArrayBuffer length."));
|
|
}
|
|
}
|
|
|
|
return ecma_make_object_value (ecma_arraybuffer_new_object (length));
|
|
} /* ecma_op_create_arraybuffer_object */
|
|
|
|
/**
|
|
* Helper function: check if the target is ArrayBuffer
|
|
*
|
|
*
|
|
* See also: ES2015 24.1.1.4
|
|
*
|
|
* @return true - if value is an ArrayBuffer object
|
|
* false - otherwise
|
|
*/
|
|
bool
|
|
ecma_is_arraybuffer (ecma_value_t target) /**< the target value */
|
|
{
|
|
return (ecma_is_value_object (target)
|
|
&& ecma_object_class_is (ecma_get_object_from_value (target),
|
|
LIT_MAGIC_STRING_ARRAY_BUFFER_UL));
|
|
} /* ecma_is_arraybuffer */
|
|
|
|
/**
|
|
* Helper function: return the length of the buffer inside the arraybuffer object
|
|
*
|
|
* @return ecma_length_t, the length of the arraybuffer
|
|
*/
|
|
ecma_length_t __attr_pure___
|
|
ecma_arraybuffer_get_length (ecma_object_t *object_p) /**< pointer to the ArrayBuffer object */
|
|
{
|
|
JERRY_ASSERT (ecma_object_class_is (object_p, LIT_MAGIC_STRING_ARRAY_BUFFER_UL));
|
|
|
|
ecma_extended_object_t *ext_object_p = (ecma_extended_object_t *) object_p;
|
|
return ext_object_p->u.class_prop.u.length;
|
|
} /* ecma_arraybuffer_get_length */
|
|
|
|
/**
|
|
* Helper function: return the pointer to the data buffer inside the arraybuffer object
|
|
*
|
|
* @return pointer to the data buffer
|
|
*/
|
|
inline lit_utf8_byte_t * __attr_pure___ __attr_always_inline___
|
|
ecma_arraybuffer_get_buffer (ecma_object_t *object_p) /**< pointer to the ArrayBuffer object */
|
|
{
|
|
JERRY_ASSERT (ecma_object_class_is (object_p, LIT_MAGIC_STRING_ARRAY_BUFFER_UL));
|
|
|
|
ecma_extended_object_t *ext_object_p = (ecma_extended_object_t *) object_p;
|
|
return (lit_utf8_byte_t *) (ext_object_p + 1);
|
|
} /* ecma_arraybuffer_get_buffer */
|
|
|
|
/**
|
|
* @}
|
|
* @}
|
|
*/
|
|
#endif /* !CONFIG_DISABLE_ES2015_TYPEDARRAY_BUILTIN */
|