2015-04-30 15:56:05 +00:00
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
*
|
2019-11-19 09:40:26 +00:00
|
|
|
Copyright (c) 2014-2019 Chung, Hyung-Hwan. All rights reserved.
|
2015-04-30 15:56:05 +00:00
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
1. Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in the
|
|
|
|
documentation and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR
|
|
|
|
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2017-01-09 09:54:49 +00:00
|
|
|
#include "moo-prv.h"
|
2015-04-30 15:56:05 +00:00
|
|
|
|
2018-12-09 07:21:16 +00:00
|
|
|
#define MIN_HEAP_SIZE 65536 * 5 /* TODO: adjust this value? */
|
|
|
|
#define PERM_SPACE_SIZE 65536 * 2 /* TODO: adjust perm space size depending on what's allocated in the permspace */
|
2018-12-08 15:35:26 +00:00
|
|
|
|
2020-11-04 15:48:21 +00:00
|
|
|
static void* xma_alloc (moo_mmgr_t* mmgr, moo_oow_t size)
|
|
|
|
{
|
|
|
|
return moo_xma_alloc(mmgr->ctx, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void* xma_realloc (moo_mmgr_t* mmgr, void* ptr, moo_oow_t size)
|
|
|
|
{
|
|
|
|
return moo_xma_realloc(mmgr->ctx, ptr, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void xma_free (moo_mmgr_t* mmgr, void* ptr)
|
|
|
|
{
|
2021-02-27 10:17:30 +00:00
|
|
|
moo_xma_free (mmgr->ctx, ptr);
|
2020-11-04 15:48:21 +00:00
|
|
|
}
|
|
|
|
|
2017-01-09 09:54:49 +00:00
|
|
|
moo_heap_t* moo_makeheap (moo_t* moo, moo_oow_t size)
|
2015-04-30 15:56:05 +00:00
|
|
|
{
|
2017-01-09 09:54:49 +00:00
|
|
|
moo_heap_t* heap;
|
2021-02-11 09:35:25 +00:00
|
|
|
moo_oow_t alloc_size;
|
2018-11-30 13:37:15 +00:00
|
|
|
|
2020-11-04 15:48:21 +00:00
|
|
|
if (size < MIN_HEAP_SIZE && moo->gc_type != MOO_GC_TYPE_MARK_SWEEP) size = MIN_HEAP_SIZE;
|
2015-04-30 15:56:05 +00:00
|
|
|
|
2021-02-11 09:35:25 +00:00
|
|
|
if (size <= MOO_SIZEOF(*heap)) /* 0 or smaller than the heap header */
|
|
|
|
{
|
|
|
|
/* make a zero-sized heap using the default memory manager.
|
|
|
|
* this zero-sized heap contains only the heap header */
|
|
|
|
size = 0;
|
|
|
|
alloc_size = MOO_SIZEOF(*heap);
|
|
|
|
heap = (moo_heap_t*)moo_allocmem(moo, alloc_size);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* if a non-zero heap size is given, create the heap with
|
|
|
|
* the dedicated heap allocator which is allowed to create
|
|
|
|
* a bigger heap than requested */
|
|
|
|
alloc_size = size;
|
|
|
|
heap = (moo_heap_t*)moo->vmprim.alloc_heap(moo, &alloc_size);
|
|
|
|
}
|
2020-11-04 15:48:21 +00:00
|
|
|
if (MOO_UNLIKELY(!heap))
|
2015-04-30 15:56:05 +00:00
|
|
|
{
|
2018-11-27 13:00:01 +00:00
|
|
|
const moo_ooch_t* oldmsg = moo_backuperrmsg(moo);
|
2020-11-27 05:13:02 +00:00
|
|
|
moo_seterrbfmt (moo, moo_geterrnum(moo), "unable to allocate a heap - %js", oldmsg);
|
2017-01-09 09:54:49 +00:00
|
|
|
return MOO_NULL;
|
2015-04-30 15:56:05 +00:00
|
|
|
}
|
|
|
|
|
2021-02-09 17:37:45 +00:00
|
|
|
/* the vmprim.alloc_heap() function is allowed to create a bigger heap than the requested size.
|
|
|
|
* if the created heap is bigger than requested, the heap will be utilized in full. */
|
2021-02-11 09:35:25 +00:00
|
|
|
MOO_ASSERT (moo, alloc_size >= MOO_SIZEOF(*heap));
|
2021-02-09 17:37:45 +00:00
|
|
|
MOO_MEMSET (heap, 0, alloc_size);
|
2021-02-11 09:35:25 +00:00
|
|
|
|
|
|
|
alloc_size -= MOO_SIZEOF(*heap); /* exclude the header size */
|
2017-01-09 09:54:49 +00:00
|
|
|
heap->base = (moo_uint8_t*)(heap + 1);
|
2021-02-09 17:37:45 +00:00
|
|
|
heap->size = alloc_size;
|
2018-11-30 13:37:15 +00:00
|
|
|
|
2020-11-04 15:48:21 +00:00
|
|
|
if (moo->gc_type == MOO_GC_TYPE_MARK_SWEEP)
|
|
|
|
{
|
2021-02-11 09:35:25 +00:00
|
|
|
if (size == 0)
|
2020-11-04 15:48:21 +00:00
|
|
|
{
|
2020-11-25 14:48:26 +00:00
|
|
|
/* use the existing memory allocator */
|
2021-02-11 09:35:25 +00:00
|
|
|
MOO_ASSERT (moo, alloc_size == 0);
|
2020-11-04 15:48:21 +00:00
|
|
|
heap->xmmgr = *moo_getmmgr(moo);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-11-25 14:48:26 +00:00
|
|
|
/* create a new memory allocator over the allocated heap */
|
2020-11-04 15:48:21 +00:00
|
|
|
heap->xma = moo_xma_open(moo_getmmgr(moo), 0, heap->base, heap->size);
|
|
|
|
if (MOO_UNLIKELY(!heap->xma))
|
|
|
|
{
|
|
|
|
moo->vmprim.free_heap (moo, heap);
|
2021-02-09 17:37:45 +00:00
|
|
|
moo_seterrbfmt (moo, MOO_ESYSMEM, "unable to allocate a memory manager over a heap");
|
2020-11-04 15:48:21 +00:00
|
|
|
return MOO_NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
heap->xmmgr.alloc = xma_alloc;
|
|
|
|
heap->xmmgr.realloc = xma_realloc;
|
|
|
|
heap->xmmgr.free = xma_free;
|
|
|
|
heap->xmmgr.ctx = heap->xma;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-02-11 09:35:25 +00:00
|
|
|
moo_oow_t space_size;
|
|
|
|
|
2020-11-25 14:48:26 +00:00
|
|
|
MOO_ASSERT (moo, moo->gc_type == MOO_GC_TYPE_SEMISPACE);
|
2020-11-04 15:48:21 +00:00
|
|
|
|
2021-02-09 17:37:45 +00:00
|
|
|
space_size = (alloc_size - PERM_SPACE_SIZE) / 2;
|
2018-12-08 17:36:20 +00:00
|
|
|
|
2020-11-04 15:48:21 +00:00
|
|
|
/* TODO: consider placing permspace in a separate memory chunk in case we have to grow
|
|
|
|
* other spaces. we may be able to realloc() the entire heap region without affecting the separately
|
|
|
|
* allocated chunk. */
|
|
|
|
heap->permspace.base = (moo_uint8_t*)(heap + 1);
|
|
|
|
heap->permspace.ptr = (moo_uint8_t*)MOO_ALIGN(((moo_uintptr_t)heap->permspace.base), MOO_SIZEOF(moo_oop_t));
|
|
|
|
heap->permspace.limit = heap->permspace.base + PERM_SPACE_SIZE;
|
2018-12-08 15:35:26 +00:00
|
|
|
|
2020-11-04 15:48:21 +00:00
|
|
|
heap->curspace.base = heap->permspace.limit;
|
|
|
|
heap->curspace.ptr = (moo_uint8_t*)MOO_ALIGN(((moo_uintptr_t)heap->curspace.base), MOO_SIZEOF(moo_oop_t));
|
|
|
|
heap->curspace.limit = heap->curspace.base + space_size;
|
2015-04-30 15:56:05 +00:00
|
|
|
|
2020-11-04 15:48:21 +00:00
|
|
|
heap->newspace.base = heap->curspace.limit;
|
|
|
|
heap->newspace.ptr = (moo_uint8_t*)MOO_ALIGN(((moo_uintptr_t)heap->newspace.base), MOO_SIZEOF(moo_oop_t));
|
|
|
|
heap->newspace.limit = heap->newspace.base + space_size;
|
2015-04-30 15:56:05 +00:00
|
|
|
|
2020-11-04 15:48:21 +00:00
|
|
|
/* if size is too small, space.ptr may go past space.limit even at
|
|
|
|
* this moment depending on the alignment of space.base. subsequent
|
|
|
|
* calls to moo_allocheapspace() are bound to fail. Make sure to
|
|
|
|
* pass a heap size large enough */
|
|
|
|
}
|
2015-04-30 15:56:05 +00:00
|
|
|
|
|
|
|
return heap;
|
|
|
|
}
|
|
|
|
|
2017-01-09 09:54:49 +00:00
|
|
|
void moo_killheap (moo_t* moo, moo_heap_t* heap)
|
2015-04-30 15:56:05 +00:00
|
|
|
{
|
2021-02-11 09:35:25 +00:00
|
|
|
if (heap->size == 0)
|
|
|
|
{
|
|
|
|
moo_freemem (moo, heap);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (heap->xma) moo_xma_close (heap->xma);
|
|
|
|
moo->vmprim.free_heap (moo, heap);
|
|
|
|
}
|
2015-04-30 15:56:05 +00:00
|
|
|
}
|
|
|
|
|
2018-11-30 13:37:15 +00:00
|
|
|
void* moo_allocheapspace (moo_t* moo, moo_space_t* space, moo_oow_t size)
|
2015-04-30 15:56:05 +00:00
|
|
|
{
|
2017-01-09 09:54:49 +00:00
|
|
|
moo_uint8_t* ptr;
|
2015-04-30 15:56:05 +00:00
|
|
|
|
2020-11-25 14:48:26 +00:00
|
|
|
MOO_ASSERT (moo, moo->gc_type == MOO_GC_TYPE_SEMISPACE);
|
|
|
|
|
2018-11-30 13:37:15 +00:00
|
|
|
/* check the space size limit */
|
|
|
|
if (space->ptr >= space->limit || space->limit - space->ptr < size)
|
2015-04-30 15:56:05 +00:00
|
|
|
{
|
2018-11-30 13:37:15 +00:00
|
|
|
MOO_DEBUG5 (moo, "Cannot allocate %zd bytes from space - ptr %p limit %p size %zd free %zd\n",
|
|
|
|
size, space->ptr, space->limit, (moo_oow_t)(space->limit - space->base), (moo_oow_t)(space->limit - space->ptr));
|
2017-05-11 14:59:20 +00:00
|
|
|
moo_seterrnum (moo, MOO_EOOMEM);
|
2017-01-09 09:54:49 +00:00
|
|
|
return MOO_NULL;
|
2015-04-30 15:56:05 +00:00
|
|
|
}
|
|
|
|
|
2018-11-30 13:37:15 +00:00
|
|
|
/* allocation is as simple as moving the space pointer */
|
|
|
|
ptr = space->ptr;
|
|
|
|
space->ptr += size;
|
2015-04-30 15:56:05 +00:00
|
|
|
|
|
|
|
return ptr;
|
|
|
|
}
|
2020-11-25 14:48:26 +00:00
|
|
|
|
2020-11-29 16:12:28 +00:00
|
|
|
void* moo_callocheapmem (moo_t* moo, moo_heap_t* heap, moo_oow_t size)
|
2020-11-25 14:48:26 +00:00
|
|
|
{
|
|
|
|
void* ptr;
|
|
|
|
|
|
|
|
MOO_ASSERT (moo, moo->gc_type == MOO_GC_TYPE_MARK_SWEEP);
|
|
|
|
ptr = MOO_MMGR_ALLOC(&heap->xmmgr, size);
|
|
|
|
if (MOO_UNLIKELY(!ptr))
|
|
|
|
{
|
2020-11-29 16:12:28 +00:00
|
|
|
MOO_DEBUG2 (moo, "Cannot callocate %zd bytes from heap - ptr %p\n", size, heap);
|
2020-11-25 14:48:26 +00:00
|
|
|
moo_seterrnum (moo, MOO_EOOMEM);
|
|
|
|
}
|
2020-11-29 16:12:28 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
MOO_MEMSET (ptr, 0, size);
|
|
|
|
}
|
2020-11-25 14:48:26 +00:00
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
2020-11-29 16:12:28 +00:00
|
|
|
void* moo_callocheapmem_noerr (moo_t* moo, moo_heap_t* heap, moo_oow_t size)
|
2020-11-25 14:48:26 +00:00
|
|
|
{
|
|
|
|
void* ptr;
|
|
|
|
MOO_ASSERT (moo, moo->gc_type == MOO_GC_TYPE_MARK_SWEEP);
|
|
|
|
ptr = MOO_MMGR_ALLOC(&heap->xmmgr, size);
|
2020-11-29 16:12:28 +00:00
|
|
|
if (MOO_LIKELY(ptr)) MOO_MEMSET (ptr, 0, size);
|
2020-11-25 14:48:26 +00:00
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void moo_freeheapmem (moo_t* moo, moo_heap_t* heap, void* ptr)
|
|
|
|
{
|
|
|
|
MOO_ASSERT (moo, moo->gc_type == MOO_GC_TYPE_MARK_SWEEP);
|
|
|
|
MOO_MMGR_FREE (&heap->xmmgr, ptr);
|
|
|
|
}
|