1105b43c22
This patch reworks several structures: - Fulfill and reject reactions are combined into one collection. The values in this collection are compressed: a capability followed by an optional fulfill and reject functions. - Fulfill and reject reactions are directly stored, no need to allocate an object for them. - The job queue directly stores its items, this saves a pointer to the value, and the callback is replaced by an uint8 type. - Promise status and already resolved is stored in extra_info. JerryScript-DCO-1.0-Signed-off-by: Zoltan Herczeg zherczeg.u-szeged@partner.samsung.com
59 lines
1.6 KiB
C
59 lines
1.6 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.
|
|
*/
|
|
|
|
#ifndef ECMA_JOB_QUEUE_H
|
|
#define ECMA_JOB_QUEUE_H
|
|
|
|
#if ENABLED (JERRY_ES2015_BUILTIN_PROMISE)
|
|
|
|
/** \addtogroup ecma ECMA
|
|
* @{
|
|
*
|
|
* \addtogroup ecmajobqueue ECMA Job Queue related routines
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* Job queue item types.
|
|
*/
|
|
typedef enum
|
|
{
|
|
ECMA_JOB_PROMISE_REACTION, /**< promise reaction job */
|
|
ECMA_JOB_PROMISE_THENABLE, /**< promise thenable job */
|
|
} ecma_job_queue_item_type_t;
|
|
|
|
/**
|
|
* Description of the job queue item.
|
|
*/
|
|
typedef struct
|
|
{
|
|
uintptr_t next_and_type; /**< next and type members of a queue item */
|
|
} ecma_job_queue_item_t;
|
|
|
|
void ecma_job_queue_init (void);
|
|
|
|
void ecma_enqueue_promise_reaction_job (ecma_value_t capability, ecma_value_t handler, ecma_value_t argument);
|
|
void ecma_enqueue_promise_resolve_thenable_job (ecma_value_t promise, ecma_value_t thenable, ecma_value_t then);
|
|
void ecma_free_all_enqueued_jobs (void);
|
|
|
|
ecma_value_t ecma_process_all_enqueued_jobs (void);
|
|
|
|
/**
|
|
* @}
|
|
* @}
|
|
*/
|
|
#endif /* ENABLED (JERRY_ES2015_BUILTIN_PROMISE) */
|
|
#endif /* !ECMA_JOB_QUEUE_H */
|