Robert Fancsik 9b33fc8cbd Revise the usage of the global error value/exception flag (#3426)
This patch also fixes #3422.

JerryScript-DCO-1.0-Signed-off-by: Robert Fancsik frobert@inf.u-szeged.hu
2019-12-10 14:42:10 +01:00

148 lines
3.8 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 "jcontext.h"
/** \addtogroup context Context
* @{
*/
/**
* Check the existence of the ECMA_STATUS_EXCEPTION flag.
*
* @return true - if the flag is set
* false - otherwise
*/
extern inline bool JERRY_ATTR_ALWAYS_INLINE
jcontext_has_pending_exception (void)
{
return JERRY_CONTEXT (status_flags) & ECMA_STATUS_EXCEPTION;
} /* jcontext_has_pending_exception */
/**
* Check the existence of the ECMA_STATUS_ABORT flag.
*
* @return true - if the flag is set
* false - otherwise
*/
extern inline bool JERRY_ATTR_ALWAYS_INLINE
jcontext_has_pending_abort (void)
{
return JERRY_CONTEXT (status_flags) & ECMA_STATUS_ABORT;
} /* jcontext_has_pending_abort */
/**
* Set the abort flag for the context.
*/
extern inline void JERRY_ATTR_ALWAYS_INLINE
jcontext_set_abort_flag (bool is_abort) /**< true - if the abort flag should be set
* false - if the abort flag should be removed */
{
JERRY_ASSERT (jcontext_has_pending_exception ());
if (is_abort)
{
JERRY_CONTEXT (status_flags) |= ECMA_STATUS_ABORT;
}
else
{
JERRY_CONTEXT (status_flags) &= (uint32_t) ~ECMA_STATUS_ABORT;
}
} /* jcontext_set_abort_flag */
/**
* Set the exception flag for the context.
*/
extern inline void JERRY_ATTR_ALWAYS_INLINE
jcontext_set_exception_flag (bool is_exception) /**< true - if the exception flag should be set
* false - if the exception flag should be removed */
{
if (is_exception)
{
JERRY_CONTEXT (status_flags) |= ECMA_STATUS_EXCEPTION;
}
else
{
JERRY_CONTEXT (status_flags) &= (uint32_t) ~ECMA_STATUS_EXCEPTION;
}
} /* jcontext_set_exception_flag */
/**
* Raise exception from the given error value.
*/
extern inline void JERRY_ATTR_ALWAYS_INLINE
jcontext_raise_exception (ecma_value_t error) /**< error to raise */
{
JERRY_ASSERT (!jcontext_has_pending_exception ());
JERRY_ASSERT (!jcontext_has_pending_abort ());
JERRY_CONTEXT (error_value) = error;
jcontext_set_exception_flag (true);
} /* jcontext_raise_exception */
/**
* Release the current exception/abort of the context.
*/
void
jcontext_release_exception (void)
{
JERRY_ASSERT (jcontext_has_pending_exception ());
ecma_free_value (jcontext_take_exception ());
} /* jcontext_release_exception */
/**
* Take the current exception/abort of context.
*
* @return current exception as an ecma-value
*/
ecma_value_t
jcontext_take_exception (void)
{
JERRY_ASSERT (jcontext_has_pending_exception ());
jcontext_set_abort_flag (false);
jcontext_set_exception_flag (false);
return JERRY_CONTEXT (error_value);
} /* jcontext_take_exception */
#if !ENABLED (JERRY_EXTERNAL_CONTEXT)
/**
* Global context.
*/
jerry_context_t jerry_global_context;
#if !ENABLED (JERRY_SYSTEM_ALLOCATOR)
/**
* Check size of heap is corresponding to configuration
*/
JERRY_STATIC_ASSERT (sizeof (jmem_heap_t) <= JMEM_HEAP_SIZE,
size_of_mem_heap_must_be_less_than_or_equal_to_JMEM_HEAP_SIZE);
/**
* Global heap.
*/
jmem_heap_t jerry_global_heap JERRY_ATTR_ALIGNED (JMEM_ALIGNMENT) JERRY_ATTR_GLOBAL_HEAP;
#endif /* !ENABLED (JERRY_SYSTEM_ALLOCATOR) */
#endif /* !ENABLED (JERRY_EXTERNAL_CONTEXT) */
/**
* @}
*/