jerryscript/jerry-ext/handle-scope/handle-scope-allocator.c
2019-05-08 11:42:02 +02:00

225 lines
6.7 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 <stdlib.h>
#include "handle-scope-internal.h"
static jerryx_handle_scope_t jerryx_handle_scope_root =
{
.prelist_handle_count = 0,
.handle_ptr = NULL,
};
static jerryx_handle_scope_t *jerryx_handle_scope_current = &jerryx_handle_scope_root;
static jerryx_handle_scope_pool_t jerryx_handle_scope_pool =
{
.count = 0,
.start = NULL,
};
#define JERRYX_HANDLE_SCOPE_POOL_PRELIST_LAST \
jerryx_handle_scope_pool.prelist + JERRYX_SCOPE_PRELIST_SIZE - 1
#define JERRYX_HANDLE_SCOPE_PRELIST_IDX(scope) (scope - jerryx_handle_scope_pool.prelist)
/**
* Get current handle scope top of stack.
*/
jerryx_handle_scope_t *
jerryx_handle_scope_get_current (void)
{
return jerryx_handle_scope_current;
} /* jerryx_handle_scope_get_current */
/**
* Get root handle scope.
*/
jerryx_handle_scope_t *
jerryx_handle_scope_get_root (void)
{
return &jerryx_handle_scope_root;
} /* jerryx_handle_scope_get_root */
/**
* Determines if given handle scope is located in pre-allocated list.
*
* @param scope - the one to be determined.
*/
static bool
jerryx_handle_scope_is_in_prelist (jerryx_handle_scope_t *scope)
{
return (jerryx_handle_scope_pool.prelist <= scope)
&& (scope <= (jerryx_handle_scope_pool.prelist + JERRYX_SCOPE_PRELIST_SIZE - 1));
} /** jerryx_handle_scope_is_in_prelist */
/**
* Get the parent of given handle scope.
* If given handle scope is in prelist, the parent must be in prelist too;
* if given is the first item of heap chain list, the parent must be the last one of prelist;
* the parent must be in chain list otherwise.
*
* @param scope - the one to be permformed on.
* @returns - the parent of the given scope.
*/
jerryx_handle_scope_t *
jerryx_handle_scope_get_parent (jerryx_handle_scope_t *scope)
{
if (scope == &jerryx_handle_scope_root)
{
return NULL;
}
if (!jerryx_handle_scope_is_in_prelist (scope))
{
jerryx_handle_scope_dynamic_t *dy_scope = (jerryx_handle_scope_dynamic_t *) scope;
if (dy_scope == jerryx_handle_scope_pool.start)
{
return JERRYX_HANDLE_SCOPE_POOL_PRELIST_LAST;
}
jerryx_handle_scope_dynamic_t *parent = dy_scope->parent;
return (jerryx_handle_scope_t *) parent;
}
if (scope == jerryx_handle_scope_pool.prelist)
{
return &jerryx_handle_scope_root;
}
return jerryx_handle_scope_pool.prelist + JERRYX_HANDLE_SCOPE_PRELIST_IDX (scope) - 1;
} /** jerryx_handle_scope_get_parent */
/**
* Get the child of given handle scope.
* If the given handle scope is in heap chain list, its child must be in heap chain list too;
* if the given handle scope is the last one of prelist, its child must be the first item of chain list;
* the children are in prelist otherwise.
*
* @param scope - the one to be permformed on.
* @returns the child of the given scope.
*/
jerryx_handle_scope_t *
jerryx_handle_scope_get_child (jerryx_handle_scope_t *scope)
{
if (scope == &jerryx_handle_scope_root)
{
if (jerryx_handle_scope_pool.count > 0)
{
return jerryx_handle_scope_pool.prelist;
}
return NULL;
}
if (!jerryx_handle_scope_is_in_prelist (scope))
{
jerryx_handle_scope_dynamic_t *child = ((jerryx_handle_scope_dynamic_t *) scope)->child;
return (jerryx_handle_scope_t *) child;
}
if (scope == JERRYX_HANDLE_SCOPE_POOL_PRELIST_LAST)
{
return (jerryx_handle_scope_t *) jerryx_handle_scope_pool.start;
}
long idx = JERRYX_HANDLE_SCOPE_PRELIST_IDX (scope);
if (idx < 0)
{
return NULL;
}
if ((unsigned long) idx >= jerryx_handle_scope_pool.count - 1)
{
return NULL;
}
return jerryx_handle_scope_pool.prelist + idx + 1;
} /** jerryx_handle_scope_get_child */
/**
* Claims a handle scope either from prelist or allocating a new memory block,
* and increment pool's scope count by 1, and set current scope to the newly claimed one.
* If there are still available spaces in prelist, claims a block in prelist;
* otherwise allocates a new memory block from heap and sets its fields to default values,
* and link it to previously dynamically allocated scope, or link it to pool's start pointer.
*
* @returns the newly claimed handle scope pointer.
*/
jerryx_handle_scope_t *
jerryx_handle_scope_alloc (void)
{
jerryx_handle_scope_t *scope;
if (jerryx_handle_scope_pool.count < JERRYX_SCOPE_PRELIST_SIZE)
{
scope = jerryx_handle_scope_pool.prelist + jerryx_handle_scope_pool.count;
}
else
{
jerryx_handle_scope_dynamic_t *dy_scope = malloc (sizeof (jerryx_handle_scope_dynamic_t));
JERRYX_HANDLE_SCOPE_ASSERT (dy_scope != NULL);
dy_scope->child = NULL;
if (jerryx_handle_scope_pool.count != JERRYX_SCOPE_PRELIST_SIZE)
{
jerryx_handle_scope_dynamic_t *dy_current = (jerryx_handle_scope_dynamic_t *) jerryx_handle_scope_current;
dy_scope->parent = dy_current;
dy_current->child = dy_scope;
}
else
{
jerryx_handle_scope_pool.start = dy_scope;
dy_scope->parent = NULL;
}
scope = (jerryx_handle_scope_t *) dy_scope;
}
scope->prelist_handle_count = 0;
scope->escaped = false;
scope->handle_ptr = NULL;
jerryx_handle_scope_current = scope;
++jerryx_handle_scope_pool.count;
return (jerryx_handle_scope_t *) scope;
} /** jerryx_handle_scope_alloc */
/**
* Deannounce a previously claimed handle scope, return it to pool
* or free the allocated memory block.
*
* @param scope - the one to be freed.
*/
void
jerryx_handle_scope_free (jerryx_handle_scope_t *scope)
{
if (scope == &jerryx_handle_scope_root)
{
return;
}
--jerryx_handle_scope_pool.count;
if (scope == jerryx_handle_scope_current)
{
jerryx_handle_scope_current = jerryx_handle_scope_get_parent (scope);
}
if (!jerryx_handle_scope_is_in_prelist (scope))
{
jerryx_handle_scope_dynamic_t *dy_scope = (jerryx_handle_scope_dynamic_t *) scope;
if (dy_scope == jerryx_handle_scope_pool.start)
{
jerryx_handle_scope_pool.start = dy_scope->child;
}
else if (dy_scope->parent != NULL)
{
dy_scope->parent->child = dy_scope->child;
}
free (dy_scope);
return;
}
/**
* Nothing to do with scopes in prelist
*/
} /** jerryx_handle_scope_free */