2016-09-28 14:40:37 +00:00
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
*
|
2018-02-07 14:13:13 +00:00
|
|
|
Copyright (c) 2016-2018 Chung, Hyung-Hwan. All rights reserved.
|
2016-09-28 14:40:37 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "hcl-prv.h"
|
|
|
|
|
|
|
|
|
|
|
|
hcl_t* hcl_open (hcl_mmgr_t* mmgr, hcl_oow_t xtnsize, hcl_oow_t heapsize, const hcl_vmprim_t* vmprim, hcl_errnum_t* errnum)
|
|
|
|
{
|
|
|
|
hcl_t* hcl;
|
|
|
|
|
|
|
|
/* if this assertion fails, correct the type definition in hcl.h */
|
2018-02-05 10:43:25 +00:00
|
|
|
HCL_ASSERT (hcl, HCL_SIZEOF(hcl_oow_t) == HCL_SIZEOF(hcl_oop_t));
|
2016-09-28 14:40:37 +00:00
|
|
|
|
|
|
|
hcl = HCL_MMGR_ALLOC (mmgr, HCL_SIZEOF(*hcl) + xtnsize);
|
|
|
|
if (hcl)
|
|
|
|
{
|
|
|
|
if (hcl_init(hcl, mmgr, heapsize, vmprim) <= -1)
|
|
|
|
{
|
|
|
|
if (errnum) *errnum = hcl->errnum;
|
|
|
|
HCL_MMGR_FREE (mmgr, hcl);
|
|
|
|
hcl = HCL_NULL;
|
|
|
|
}
|
|
|
|
else HCL_MEMSET (hcl + 1, 0, xtnsize);
|
|
|
|
}
|
|
|
|
else if (errnum) *errnum = HCL_ESYSMEM;
|
|
|
|
|
|
|
|
return hcl;
|
|
|
|
}
|
|
|
|
|
|
|
|
void hcl_close (hcl_t* hcl)
|
|
|
|
{
|
|
|
|
hcl_fini (hcl);
|
|
|
|
HCL_MMGR_FREE (hcl->mmgr, hcl);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void fill_bigint_tables (hcl_t* hcl)
|
|
|
|
{
|
|
|
|
int radix, safe_ndigits;
|
|
|
|
hcl_oow_t ub, w;
|
|
|
|
hcl_oow_t multiplier;
|
|
|
|
|
|
|
|
for (radix = 2; radix <= 36; radix++)
|
|
|
|
{
|
|
|
|
w = 0;
|
|
|
|
ub = (hcl_oow_t)HCL_TYPE_MAX(hcl_liw_t) / radix - (radix - 1);
|
|
|
|
multiplier = 1;
|
|
|
|
safe_ndigits = 0;
|
|
|
|
|
|
|
|
while (w <= ub)
|
|
|
|
{
|
|
|
|
w = w * radix + (radix - 1);
|
|
|
|
multiplier *= radix;
|
|
|
|
safe_ndigits++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* safe_ndigits contains the number of digits that never
|
|
|
|
* cause overflow when computed normally with a native type. */
|
|
|
|
hcl->bigint[radix].safe_ndigits = safe_ndigits;
|
|
|
|
hcl->bigint[radix].multiplier = multiplier;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int hcl_init (hcl_t* hcl, hcl_mmgr_t* mmgr, hcl_oow_t heapsz, const hcl_vmprim_t* vmprim)
|
|
|
|
{
|
|
|
|
HCL_MEMSET (hcl, 0, HCL_SIZEOF(*hcl));
|
|
|
|
hcl->mmgr = mmgr;
|
2018-02-05 10:43:25 +00:00
|
|
|
hcl->cmgr = hcl_getutf8cmgr();
|
2016-09-28 14:40:37 +00:00
|
|
|
hcl->vmprim = *vmprim;
|
|
|
|
|
|
|
|
hcl->option.log_mask = ~0u;
|
2018-02-05 10:43:25 +00:00
|
|
|
hcl->option.log_maxcapa = HCL_DFL_LOG_MAXCAPA;
|
2016-09-28 14:40:37 +00:00
|
|
|
hcl->option.dfl_symtab_size = HCL_DFL_SYMTAB_SIZE;
|
|
|
|
hcl->option.dfl_sysdic_size = HCL_DFL_SYSDIC_SIZE;
|
|
|
|
hcl->option.dfl_procstk_size = HCL_DFL_PROCSTK_SIZE;
|
|
|
|
|
2018-02-05 10:43:25 +00:00
|
|
|
hcl->log.capa = HCL_ALIGN_POW2(1, HCL_LOG_CAPA_ALIGN); /* TODO: is this a good initial size? */
|
|
|
|
/* alloate the log buffer in advance though it may get reallocated
|
|
|
|
* in put_oocs and put_ooch in logfmt.c. this is to let the logging
|
|
|
|
* routine still function despite some side-effects when
|
|
|
|
* reallocation fails */
|
|
|
|
/* +1 required for consistency with put_oocs and put_ooch in logfmt.c */
|
|
|
|
hcl->log.ptr = hcl_allocmem (hcl, (hcl->log.capa + 1) * HCL_SIZEOF(*hcl->log.ptr));
|
|
|
|
if (!hcl->log.ptr) goto oops;
|
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
/*hcl->permheap = hcl_makeheap (hcl, what is the best size???);
|
|
|
|
if (!hcl->curheap) goto oops; */
|
|
|
|
hcl->curheap = hcl_makeheap (hcl, heapsz);
|
|
|
|
if (!hcl->curheap) goto oops;
|
|
|
|
hcl->newheap = hcl_makeheap (hcl, heapsz);
|
|
|
|
if (!hcl->newheap) goto oops;
|
|
|
|
|
2018-02-05 10:43:25 +00:00
|
|
|
if (hcl_rbt_init (&hcl->pmtable, hcl, HCL_SIZEOF(hcl_ooch_t), 1) <= -1) goto oops;
|
2016-09-28 14:40:37 +00:00
|
|
|
hcl_rbt_setstyle (&hcl->pmtable, hcl_getrbtstyle(HCL_RBT_STYLE_INLINE_COPIERS));
|
|
|
|
|
|
|
|
fill_bigint_tables (hcl);
|
2018-02-08 09:21:18 +00:00
|
|
|
|
|
|
|
hcl->proc_map_free_first = -1;
|
|
|
|
hcl->proc_map_free_last = -1;
|
2016-09-28 14:40:37 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
oops:
|
|
|
|
if (hcl->newheap) hcl_killheap (hcl, hcl->newheap);
|
|
|
|
if (hcl->curheap) hcl_killheap (hcl, hcl->curheap);
|
|
|
|
if (hcl->permheap) hcl_killheap (hcl, hcl->permheap);
|
2018-02-05 10:43:25 +00:00
|
|
|
if (hcl->log.ptr) hcl_freemem (hcl, hcl->log.ptr);
|
|
|
|
hcl->log.capa = 0;
|
2016-09-28 14:40:37 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static hcl_rbt_walk_t unload_primitive_module (hcl_rbt_t* rbt, hcl_rbt_pair_t* pair, void* ctx)
|
|
|
|
{
|
|
|
|
hcl_t* hcl = (hcl_t*)ctx;
|
|
|
|
hcl_prim_mod_data_t* md;
|
|
|
|
|
|
|
|
md = HCL_RBT_VPTR(pair);
|
|
|
|
if (md->mod.unload) md->mod.unload (hcl, &md->mod);
|
2018-02-05 10:43:25 +00:00
|
|
|
if (md->handle) hcl->vmprim.dl_close (hcl, md->handle);
|
2016-09-28 14:40:37 +00:00
|
|
|
|
|
|
|
return HCL_RBT_WALK_FORWARD;
|
|
|
|
}
|
|
|
|
|
|
|
|
void hcl_fini (hcl_t* hcl)
|
|
|
|
{
|
|
|
|
hcl_cb_t* cb;
|
|
|
|
|
2018-02-05 10:43:25 +00:00
|
|
|
hcl_rbt_walk (&hcl->pmtable, unload_primitive_module, hcl);
|
|
|
|
hcl_rbt_fini (&hcl->pmtable);
|
|
|
|
|
|
|
|
if (hcl->log.len > 0)
|
|
|
|
{
|
|
|
|
/* flush pending log messages just in case. */
|
|
|
|
HCL_ASSERT (hcl, hcl->log.ptr != HCL_NULL);
|
|
|
|
hcl->vmprim.log_write (hcl, hcl->log.last_mask, hcl->log.ptr, hcl->log.len);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (cb = hcl->cblist; cb; cb = cb->next)
|
|
|
|
{
|
|
|
|
if (cb->fini) cb->fini (hcl);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hcl->log.len > 0)
|
|
|
|
{
|
|
|
|
/* flush pending log message that could be generated by the fini
|
|
|
|
* callbacks. however, the actual logging might not be produced at
|
|
|
|
* this point because one of the callbacks could arrange to stop
|
|
|
|
* logging */
|
|
|
|
HCL_ASSERT (hcl, hcl->log.ptr != HCL_NULL);
|
|
|
|
hcl->vmprim.log_write (hcl, hcl->log.last_mask, hcl->log.ptr, hcl->log.len);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* deregister all callbacks */
|
|
|
|
while (hcl->cblist) hcl_deregcb (hcl, hcl->cblist);
|
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
if (hcl->sem_list)
|
|
|
|
{
|
|
|
|
hcl_freemem (hcl, hcl->sem_list);
|
|
|
|
hcl->sem_list_capa = 0;
|
|
|
|
hcl->sem_list_count = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hcl->sem_heap)
|
|
|
|
{
|
|
|
|
hcl_freemem (hcl, hcl->sem_heap);
|
|
|
|
hcl->sem_heap_capa = 0;
|
|
|
|
hcl->sem_heap_count = 0;
|
|
|
|
}
|
|
|
|
|
2018-02-08 09:21:18 +00:00
|
|
|
if (hcl->proc_map)
|
|
|
|
{
|
|
|
|
hcl_freemem (hcl, hcl->proc_map);
|
|
|
|
hcl->proc_map_capa = 0;
|
|
|
|
hcl->proc_map_free_first = -1;
|
|
|
|
hcl->proc_map_free_last = -1;
|
|
|
|
}
|
2016-09-28 14:40:37 +00:00
|
|
|
|
|
|
|
if (hcl->code.bc.arr)
|
|
|
|
{
|
|
|
|
hcl_freengcobj (hcl, hcl->code.bc.arr);
|
|
|
|
hcl->code.bc.arr = HCL_NULL;
|
|
|
|
hcl->code.bc.len = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hcl->code.lit.arr)
|
|
|
|
{
|
|
|
|
hcl_freengcobj (hcl, hcl->code.lit.arr);
|
|
|
|
hcl->code.lit.arr = HCL_NULL;
|
|
|
|
hcl->code.lit.len = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hcl->p.s.ptr)
|
|
|
|
{
|
|
|
|
hcl_freemem (hcl, hcl->p.s.ptr);
|
|
|
|
hcl->p.s.ptr= HCL_NULL;
|
|
|
|
hcl->p.s.capa = 0;
|
|
|
|
hcl->p.s.size = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
hcl_killheap (hcl, hcl->newheap);
|
|
|
|
hcl_killheap (hcl, hcl->curheap);
|
|
|
|
hcl_killheap (hcl, hcl->permheap);
|
|
|
|
|
|
|
|
if (hcl->log.ptr)
|
|
|
|
{
|
|
|
|
hcl_freemem (hcl, hcl->log.ptr);
|
|
|
|
hcl->log.capa = 0;
|
|
|
|
hcl->log.len = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int hcl_setoption (hcl_t* hcl, hcl_option_t id, const void* value)
|
|
|
|
{
|
|
|
|
switch (id)
|
|
|
|
{
|
|
|
|
case HCL_TRAIT:
|
2018-02-05 10:43:25 +00:00
|
|
|
hcl->option.trait = *(const unsigned int*)value;
|
|
|
|
#if !defined(NDEBUG)
|
|
|
|
hcl->option.karatsuba_cutoff = ((hcl->option.trait & HCL_DEBUG_BIGINT)? HCL_KARATSUBA_CUTOFF_DEBUG: HCL_KARATSUBA_CUTOFF);
|
|
|
|
#endif
|
2016-09-28 14:40:37 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
case HCL_LOG_MASK:
|
|
|
|
hcl->option.log_mask = *(const unsigned int*)value;
|
|
|
|
return 0;
|
|
|
|
|
2018-02-05 10:43:25 +00:00
|
|
|
case HCL_LOG_MAXCAPA:
|
|
|
|
hcl->option.log_maxcapa = *(hcl_oow_t*)value;
|
|
|
|
return 0;
|
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
case HCL_SYMTAB_SIZE:
|
|
|
|
{
|
|
|
|
hcl_oow_t w;
|
|
|
|
|
|
|
|
w = *(hcl_oow_t*)value;
|
|
|
|
if (w <= 0 || w > HCL_SMOOI_MAX) goto einval;
|
|
|
|
|
|
|
|
hcl->option.dfl_symtab_size = *(hcl_oow_t*)value;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
case HCL_SYSDIC_SIZE:
|
|
|
|
{
|
|
|
|
hcl_oow_t w;
|
|
|
|
|
|
|
|
w = *(hcl_oow_t*)value;
|
|
|
|
if (w <= 0 || w > HCL_SMOOI_MAX) goto einval;
|
|
|
|
|
|
|
|
hcl->option.dfl_sysdic_size = *(hcl_oow_t*)value;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
case HCL_PROCSTK_SIZE:
|
|
|
|
{
|
|
|
|
hcl_oow_t w;
|
|
|
|
|
|
|
|
w = *(hcl_oow_t*)value;
|
|
|
|
if (w <= 0 || w > HCL_SMOOI_MAX) goto einval;
|
|
|
|
|
|
|
|
hcl->option.dfl_procstk_size = *(hcl_oow_t*)value;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
einval:
|
2018-02-05 10:43:25 +00:00
|
|
|
hcl_seterrnum (hcl, HCL_EINVAL);
|
2016-09-28 14:40:37 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int hcl_getoption (hcl_t* hcl, hcl_option_t id, void* value)
|
|
|
|
{
|
|
|
|
switch (id)
|
|
|
|
{
|
|
|
|
case HCL_TRAIT:
|
2018-02-05 10:43:25 +00:00
|
|
|
*(unsigned int*)value = hcl->option.trait;
|
2016-09-28 14:40:37 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
case HCL_LOG_MASK:
|
|
|
|
*(unsigned int*)value = hcl->option.log_mask;
|
|
|
|
return 0;
|
|
|
|
|
2018-02-05 10:43:25 +00:00
|
|
|
case HCL_LOG_MAXCAPA:
|
|
|
|
*(hcl_oow_t*)value = hcl->option.log_maxcapa;
|
|
|
|
return 0;
|
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
case HCL_SYMTAB_SIZE:
|
|
|
|
*(hcl_oow_t*)value = hcl->option.dfl_symtab_size;
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case HCL_SYSDIC_SIZE:
|
|
|
|
*(hcl_oow_t*)value = hcl->option.dfl_sysdic_size;
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case HCL_PROCSTK_SIZE:
|
|
|
|
*(hcl_oow_t*)value = hcl->option.dfl_procstk_size;
|
|
|
|
return 0;
|
|
|
|
};
|
|
|
|
|
2018-02-05 10:43:25 +00:00
|
|
|
hcl_seterrnum (hcl, HCL_EINVAL);
|
2016-09-28 14:40:37 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
hcl_cb_t* hcl_regcb (hcl_t* hcl, hcl_cb_t* tmpl)
|
|
|
|
{
|
|
|
|
hcl_cb_t* actual;
|
|
|
|
|
|
|
|
actual = hcl_allocmem (hcl, HCL_SIZEOF(*actual));
|
|
|
|
if (!actual) return HCL_NULL;
|
|
|
|
|
|
|
|
*actual = *tmpl;
|
|
|
|
actual->next = hcl->cblist;
|
|
|
|
actual->prev = HCL_NULL;
|
|
|
|
hcl->cblist = actual;
|
|
|
|
|
|
|
|
return actual;
|
|
|
|
}
|
|
|
|
|
|
|
|
void hcl_deregcb (hcl_t* hcl, hcl_cb_t* cb)
|
|
|
|
{
|
|
|
|
if (cb == hcl->cblist)
|
|
|
|
{
|
|
|
|
hcl->cblist = hcl->cblist->next;
|
|
|
|
if (hcl->cblist) hcl->cblist->prev = HCL_NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (cb->next) cb->next->prev = cb->prev;
|
|
|
|
if (cb->prev) cb->prev->next = cb->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
hcl_freemem (hcl, cb);
|
|
|
|
}
|
|
|
|
|
|
|
|
void* hcl_allocmem (hcl_t* hcl, hcl_oow_t size)
|
|
|
|
{
|
|
|
|
void* ptr;
|
|
|
|
|
|
|
|
ptr = HCL_MMGR_ALLOC (hcl->mmgr, size);
|
2018-02-05 10:43:25 +00:00
|
|
|
if (!ptr) hcl_seterrnum (hcl, HCL_ESYSMEM);
|
2016-09-28 14:40:37 +00:00
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void* hcl_callocmem (hcl_t* hcl, hcl_oow_t size)
|
|
|
|
{
|
|
|
|
void* ptr;
|
|
|
|
|
|
|
|
ptr = HCL_MMGR_ALLOC (hcl->mmgr, size);
|
2018-02-05 10:43:25 +00:00
|
|
|
if (!ptr) hcl_seterrnum (hcl, HCL_ESYSMEM);
|
2016-09-28 14:40:37 +00:00
|
|
|
else HCL_MEMSET (ptr, 0, size);
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void* hcl_reallocmem (hcl_t* hcl, void* ptr, hcl_oow_t size)
|
|
|
|
{
|
|
|
|
ptr = HCL_MMGR_REALLOC (hcl->mmgr, ptr, size);
|
2018-02-05 10:43:25 +00:00
|
|
|
if (!ptr) hcl_seterrnum (hcl, HCL_ESYSMEM);
|
2016-09-28 14:40:37 +00:00
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void hcl_freemem (hcl_t* hcl, void* ptr)
|
|
|
|
{
|
|
|
|
HCL_MMGR_FREE (hcl->mmgr, ptr);
|
|
|
|
}
|
|
|
|
|