2016-10-06 17:49:47 +00:00
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
*
|
2018-02-07 14:13:13 +00:00
|
|
|
Copyright (c) 2016-2018 Chung, Hyung-Hwan. All rights reserved.
|
2016-10-06 17:49:47 +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"
|
|
|
|
|
2018-02-13 16:10:41 +00:00
|
|
|
struct pf_t
|
2016-10-06 17:49:47 +00:00
|
|
|
{
|
|
|
|
hcl_oow_t minargs;
|
|
|
|
hcl_oow_t maxargs;
|
2018-02-09 04:24:50 +00:00
|
|
|
hcl_pfimpl_t impl;
|
2016-10-06 17:49:47 +00:00
|
|
|
|
|
|
|
hcl_oow_t namelen;
|
2018-04-05 04:56:52 +00:00
|
|
|
hcl_ooch_t name[32];
|
2016-10-06 17:49:47 +00:00
|
|
|
};
|
2018-02-13 16:10:41 +00:00
|
|
|
typedef struct pf_t pf_t;
|
2016-10-06 17:49:47 +00:00
|
|
|
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
|
2018-02-28 04:52:01 +00:00
|
|
|
hcl_oop_t hcl_makeprim (hcl_t* hcl, hcl_pfimpl_t primimpl, hcl_oow_t minargs, hcl_oow_t maxargs, hcl_mod_t* mod)
|
2016-10-06 17:49:47 +00:00
|
|
|
{
|
|
|
|
hcl_oop_word_t obj;
|
|
|
|
|
2018-02-28 04:52:01 +00:00
|
|
|
obj = (hcl_oop_word_t)hcl_allocwordobj (hcl, HCL_BRAND_PRIM, HCL_NULL, 4);
|
2016-10-06 17:49:47 +00:00
|
|
|
if (obj)
|
|
|
|
{
|
|
|
|
obj->slot[0] = (hcl_oow_t)primimpl;
|
|
|
|
obj->slot[1] = minargs;
|
|
|
|
obj->slot[2] = maxargs;
|
2018-02-28 05:04:42 +00:00
|
|
|
obj->slot[3] = (hcl_oow_t)mod;
|
2016-10-06 17:49:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (hcl_oop_t)obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
|
2018-04-26 04:39:20 +00:00
|
|
|
static void log_char_object (hcl_t* hcl, hcl_bitmask_t mask, hcl_oop_char_t msg)
|
2016-10-06 17:49:47 +00:00
|
|
|
{
|
|
|
|
hcl_ooi_t n;
|
|
|
|
hcl_oow_t rem;
|
|
|
|
const hcl_ooch_t* ptr;
|
|
|
|
|
2018-02-05 10:43:25 +00:00
|
|
|
HCL_ASSERT (hcl, HCL_OBJ_GET_FLAGS_TYPE(msg) == HCL_OBJ_TYPE_CHAR);
|
2016-10-06 17:49:47 +00:00
|
|
|
|
|
|
|
rem = HCL_OBJ_GET_SIZE(msg);
|
|
|
|
ptr = msg->slot;
|
|
|
|
|
|
|
|
start_over:
|
|
|
|
while (rem > 0)
|
|
|
|
{
|
|
|
|
if (*ptr == '\0')
|
|
|
|
{
|
2018-02-21 13:13:25 +00:00
|
|
|
n = hcl_logbfmt (hcl, mask, "%jc", *ptr);
|
2018-02-05 10:43:25 +00:00
|
|
|
HCL_ASSERT (hcl, n == 1);
|
2016-10-06 17:49:47 +00:00
|
|
|
rem -= n;
|
|
|
|
ptr += n;
|
|
|
|
goto start_over;
|
|
|
|
}
|
|
|
|
|
2018-02-21 13:13:25 +00:00
|
|
|
n = hcl_logbfmt (hcl, mask, "%.*js", rem, ptr);
|
2016-10-06 17:49:47 +00:00
|
|
|
if (n <= -1) break;
|
|
|
|
if (n == 0)
|
|
|
|
{
|
|
|
|
/* to skip the unprinted character.
|
|
|
|
* actually, this check is not needed because of '\0' skipping
|
|
|
|
* at the beginning of the loop */
|
2018-02-21 13:13:25 +00:00
|
|
|
n = hcl_logbfmt (hcl, mask, "%jc", *ptr);
|
2018-02-05 10:43:25 +00:00
|
|
|
HCL_ASSERT (hcl, n == 1);
|
2016-10-06 17:49:47 +00:00
|
|
|
}
|
|
|
|
rem -= n;
|
|
|
|
ptr += n;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-28 04:52:01 +00:00
|
|
|
static hcl_pfrc_t pf_log (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
2016-10-06 17:49:47 +00:00
|
|
|
{
|
|
|
|
/* TODO: accept log level */
|
2018-02-15 15:36:15 +00:00
|
|
|
hcl_oop_t msg;
|
2018-04-26 04:39:20 +00:00
|
|
|
hcl_bitmask_t mask;
|
2016-10-06 17:49:47 +00:00
|
|
|
hcl_ooi_t k;
|
|
|
|
|
|
|
|
/*level = HCL_STACK_GET(hcl, hcl->sp - nargs + 1);
|
|
|
|
if (!HCL_OOP_IS_SMOOI(level)) mask = HCL_LOG_APP | HCL_LOG_INFO;
|
|
|
|
else mask = HCL_LOG_APP | HCL_OOP_TO_SMOOI(level);*/
|
2018-02-06 10:16:01 +00:00
|
|
|
mask = HCL_LOG_APP | HCL_LOG_FATAL; /* TODO: accept logging level .. */
|
2016-10-06 17:49:47 +00:00
|
|
|
|
|
|
|
for (k = 0; k < nargs; k++)
|
|
|
|
{
|
|
|
|
msg = HCL_STACK_GETARG (hcl, nargs, k);
|
|
|
|
|
|
|
|
if (msg == hcl->_nil || msg == hcl->_true || msg == hcl->_false)
|
|
|
|
{
|
|
|
|
goto dump_object;
|
|
|
|
}
|
2018-02-21 13:13:25 +00:00
|
|
|
else if (HCL_OOP_IS_CHAR(msg))
|
|
|
|
{
|
|
|
|
hcl_logbfmt (hcl, mask, "%jc", HCL_OOP_TO_CHAR(msg));
|
|
|
|
}
|
2016-10-06 17:49:47 +00:00
|
|
|
else if (HCL_OOP_IS_POINTER(msg))
|
|
|
|
{
|
|
|
|
if (HCL_OBJ_GET_FLAGS_TYPE(msg) == HCL_OBJ_TYPE_CHAR)
|
|
|
|
{
|
|
|
|
log_char_object (hcl, mask, (hcl_oop_char_t)msg);
|
|
|
|
}
|
|
|
|
else if (HCL_OBJ_GET_FLAGS_TYPE(msg) == HCL_OBJ_TYPE_OOP)
|
|
|
|
{
|
|
|
|
/* visit only 1-level down into an array-like object */
|
2018-02-13 16:10:41 +00:00
|
|
|
hcl_oop_t inner;
|
|
|
|
hcl_oow_t i;
|
|
|
|
int brand;
|
2016-10-06 17:49:47 +00:00
|
|
|
|
2018-02-13 16:10:41 +00:00
|
|
|
brand = HCL_OBJ_GET_FLAGS_BRAND(msg);
|
|
|
|
if (brand != HCL_BRAND_ARRAY) goto dump_object;
|
2016-10-06 17:49:47 +00:00
|
|
|
|
|
|
|
for (i = 0; i < HCL_OBJ_GET_SIZE(msg); i++)
|
|
|
|
{
|
|
|
|
inner = ((hcl_oop_oop_t)msg)->slot[i];
|
|
|
|
|
|
|
|
if (i > 0) hcl_logbfmt (hcl, mask, " ");
|
2018-02-21 13:13:25 +00:00
|
|
|
if (HCL_OOP_IS_CHAR(inner))
|
|
|
|
{
|
|
|
|
hcl_logbfmt (hcl, mask, "%jc", HCL_OOP_TO_CHAR(inner));
|
|
|
|
}
|
|
|
|
else if (HCL_OOP_IS_POINTER(inner) && HCL_OBJ_GET_FLAGS_TYPE(inner) == HCL_OBJ_TYPE_CHAR)
|
2016-10-06 17:49:47 +00:00
|
|
|
{
|
|
|
|
log_char_object (hcl, mask, (hcl_oop_char_t)inner);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
hcl_logbfmt (hcl, mask, "%O", inner);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else goto dump_object;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dump_object:
|
|
|
|
hcl_logbfmt (hcl, mask, "%O", msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, hcl->_nil);
|
2018-02-08 07:40:27 +00:00
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2018-03-01 09:46:02 +00:00
|
|
|
static hcl_pfrc_t pf_logf (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
|
|
|
{
|
2019-05-31 10:54:13 +00:00
|
|
|
if (hcl_logfmtcallstack(hcl, nargs) <= -1)
|
2018-03-01 09:46:02 +00:00
|
|
|
{
|
|
|
|
HCL_STACK_SETRETTOERRNUM (hcl, nargs);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* TODO: better return code? */
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, hcl->_nil);
|
|
|
|
}
|
|
|
|
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static hcl_pfrc_t pf_printf (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
|
|
|
{
|
2019-05-31 10:54:13 +00:00
|
|
|
if (hcl_prfmtcallstack(hcl, nargs) <= -1)
|
2018-03-01 09:46:02 +00:00
|
|
|
{
|
|
|
|
HCL_STACK_SETRETTOERRNUM (hcl, nargs);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* TODO: better return code? */
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, hcl->_nil);
|
|
|
|
}
|
|
|
|
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2018-03-05 03:35:44 +00:00
|
|
|
static hcl_pfrc_t pf_sprintf (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
|
|
|
{
|
2019-05-31 10:54:13 +00:00
|
|
|
if (hcl_strfmtcallstack(hcl, nargs) <= -1)
|
2018-03-05 03:35:44 +00:00
|
|
|
{
|
|
|
|
HCL_STACK_SETRETTOERRNUM (hcl, nargs);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
hcl_oop_t str;
|
|
|
|
str = hcl_makestring (hcl, hcl->sprintf.xbuf.ptr, hcl->sprintf.xbuf.len, 0);
|
|
|
|
if (!str) return HCL_PF_FAILURE;
|
|
|
|
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, str);
|
|
|
|
}
|
|
|
|
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-03-01 09:46:02 +00:00
|
|
|
|
2018-02-28 04:52:01 +00:00
|
|
|
static hcl_pfrc_t pf_gc (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
2018-02-18 15:02:57 +00:00
|
|
|
{
|
|
|
|
hcl_gc (hcl);
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, hcl->_nil);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
2018-02-24 04:01:19 +00:00
|
|
|
|
2018-02-08 07:40:27 +00:00
|
|
|
/* ------------------------------------------------------------------------- */
|
2018-04-07 04:43:56 +00:00
|
|
|
|
2018-02-28 04:52:01 +00:00
|
|
|
static hcl_pfrc_t pf_eqv (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
2018-02-08 07:40:27 +00:00
|
|
|
{
|
|
|
|
hcl_oop_t a0, a1, rv;
|
|
|
|
|
|
|
|
a0 = HCL_STACK_GETARG(hcl, nargs, 0);
|
|
|
|
a1 = HCL_STACK_GETARG(hcl, nargs, 1);
|
|
|
|
|
|
|
|
rv = (a0 == a1? hcl->_true: hcl->_false);
|
|
|
|
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, rv);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2018-02-28 04:52:01 +00:00
|
|
|
static hcl_pfrc_t pf_eql (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
2018-02-08 07:40:27 +00:00
|
|
|
{
|
|
|
|
int n;
|
|
|
|
n = hcl_equalobjs(hcl, HCL_STACK_GETARG(hcl, nargs, 0), HCL_STACK_GETARG(hcl, nargs, 1));
|
|
|
|
if (n <= -1) return HCL_PF_FAILURE;
|
|
|
|
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, (n? hcl->_true: hcl->_false));
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2018-02-28 04:52:01 +00:00
|
|
|
static hcl_pfrc_t pf_eqk (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
2018-02-23 07:17:23 +00:00
|
|
|
{
|
|
|
|
/* equal kind? */
|
|
|
|
hcl_oop_t a0, a1, rv;
|
|
|
|
|
|
|
|
a0 = HCL_STACK_GETARG(hcl, nargs, 0);
|
|
|
|
a1 = HCL_STACK_GETARG(hcl, nargs, 1);
|
|
|
|
|
|
|
|
rv = (HCL_BRANDOF(hcl, a0) == HCL_BRANDOF(hcl, a1)? hcl->_true: hcl->_false);
|
|
|
|
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, rv);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2018-03-28 03:15:20 +00:00
|
|
|
static hcl_pfrc_t pf_nqv (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
|
|
|
{
|
|
|
|
hcl_oop_t a0, a1, rv;
|
|
|
|
|
|
|
|
a0 = HCL_STACK_GETARG(hcl, nargs, 0);
|
|
|
|
a1 = HCL_STACK_GETARG(hcl, nargs, 1);
|
|
|
|
|
|
|
|
rv = (a0 != a1? hcl->_true: hcl->_false);
|
|
|
|
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, rv);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static hcl_pfrc_t pf_nql (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
|
|
|
{
|
|
|
|
int n;
|
|
|
|
n = hcl_equalobjs(hcl, HCL_STACK_GETARG(hcl, nargs, 0), HCL_STACK_GETARG(hcl, nargs, 1));
|
|
|
|
if (n <= -1) return HCL_PF_FAILURE;
|
|
|
|
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, (!n? hcl->_true: hcl->_false));
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static hcl_pfrc_t pf_nqk (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
|
|
|
{
|
|
|
|
/* not equal kind? */
|
|
|
|
hcl_oop_t a0, a1, rv;
|
|
|
|
|
|
|
|
a0 = HCL_STACK_GETARG(hcl, nargs, 0);
|
|
|
|
a1 = HCL_STACK_GETARG(hcl, nargs, 1);
|
|
|
|
|
|
|
|
rv = (HCL_BRANDOF(hcl, a0) != HCL_BRANDOF(hcl, a1)? hcl->_true: hcl->_false);
|
|
|
|
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, rv);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2018-04-07 04:43:56 +00:00
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
static hcl_pfrc_t pf_is_null (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
|
|
|
{
|
|
|
|
hcl_oop_t rv;
|
|
|
|
rv = (HCL_STACK_GETARG(hcl, nargs, 0) == hcl->_nil)? hcl->_true: hcl->_false;
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, rv);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static hcl_pfrc_t pf_is_boolean (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
|
|
|
{
|
|
|
|
hcl_oop_t rv, x;
|
|
|
|
x = HCL_STACK_GETARG(hcl, nargs, 0);
|
|
|
|
rv = (HCL_IS_TRUE(hcl, x) || HCL_IS_FALSE(hcl, x))? hcl->_true: hcl->_false;
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, rv);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static hcl_pfrc_t pf_is_character (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
|
|
|
{
|
|
|
|
hcl_oop_t rv, x;
|
|
|
|
x = HCL_STACK_GETARG(hcl, nargs, 0);
|
|
|
|
rv = (HCL_OOP_IS_CHAR(x))? hcl->_true: hcl->_false;
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, rv);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static hcl_pfrc_t pf_is_error (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
|
|
|
{
|
|
|
|
hcl_oop_t rv, x;
|
|
|
|
x = HCL_STACK_GETARG(hcl, nargs, 0);
|
|
|
|
rv = (HCL_OOP_IS_ERROR(x))? hcl->_true: hcl->_false;
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, rv);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static hcl_pfrc_t pf_is_smptr (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
|
|
|
{
|
|
|
|
hcl_oop_t rv, x;
|
|
|
|
x = HCL_STACK_GETARG(hcl, nargs, 0);
|
|
|
|
rv = (HCL_OOP_IS_SMPTR(x))? hcl->_true: hcl->_false;
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, rv);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static hcl_pfrc_t pf_is_integer (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
|
|
|
{
|
|
|
|
hcl_oop_t rv, x;
|
|
|
|
x = HCL_STACK_GETARG(hcl, nargs, 0);
|
|
|
|
rv = (hcl_isint(hcl, x))? hcl->_true: hcl->_false;
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, rv);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static hcl_pfrc_t pf_is_numeric(hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
|
|
|
{
|
|
|
|
hcl_oop_t rv, x;
|
|
|
|
x = HCL_STACK_GETARG(hcl, nargs, 0);
|
|
|
|
rv = (hcl_isint(hcl, x) || HCL_IS_FPDEC(hcl, x))? hcl->_true: hcl->_false;
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, rv);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static hcl_pfrc_t pf_is_string (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
|
|
|
{
|
|
|
|
hcl_oop_t rv, x;
|
|
|
|
x = HCL_STACK_GETARG(hcl, nargs, 0);
|
|
|
|
rv = (HCL_IS_STRING(hcl, x))? hcl->_true: hcl->_false;
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, rv);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static hcl_pfrc_t pf_is_array (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
|
|
|
{
|
|
|
|
hcl_oop_t rv, x;
|
|
|
|
x = HCL_STACK_GETARG(hcl, nargs, 0);
|
|
|
|
rv = (HCL_IS_ARRAY(hcl, x))? hcl->_true: hcl->_false;
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, rv);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static hcl_pfrc_t pf_is_bytearray (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
|
|
|
{
|
|
|
|
hcl_oop_t rv, x;
|
|
|
|
x = HCL_STACK_GETARG(hcl, nargs, 0);
|
|
|
|
rv = (HCL_IS_BYTEARRAY(hcl, x))? hcl->_true: hcl->_false;
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, rv);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static hcl_pfrc_t pf_is_dictionary (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
|
|
|
{
|
|
|
|
hcl_oop_t rv, x;
|
|
|
|
x = HCL_STACK_GETARG(hcl, nargs, 0);
|
|
|
|
rv = (HCL_IS_DIC(hcl, x))? hcl->_true: hcl->_false;
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, rv);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
2018-04-07 15:21:05 +00:00
|
|
|
|
|
|
|
static hcl_pfrc_t pf_is_lambda (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
|
|
|
{
|
|
|
|
hcl_oop_t rv, x;
|
|
|
|
x = HCL_STACK_GETARG(hcl, nargs, 0);
|
|
|
|
rv = (HCL_IS_CONTEXT(hcl, x))? hcl->_true: hcl->_false;
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, rv);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2018-04-07 04:43:56 +00:00
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
|
2018-02-28 04:52:01 +00:00
|
|
|
static hcl_pfrc_t pf_not (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
2018-02-08 07:40:27 +00:00
|
|
|
{
|
|
|
|
hcl_oop_t arg, rv;
|
|
|
|
|
|
|
|
arg = HCL_STACK_GETARG(hcl, nargs, 0);
|
|
|
|
if (arg == hcl->_true) rv = hcl->_false;
|
|
|
|
else if (arg == hcl->_false) rv = hcl->_true;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
hcl_seterrbfmt (hcl, HCL_EINVAL, "boolean parameter expected - %O", arg);
|
|
|
|
return HCL_PF_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, rv);
|
|
|
|
return HCL_PF_SUCCESS;
|
2016-10-06 17:49:47 +00:00
|
|
|
}
|
|
|
|
|
2018-02-28 04:52:01 +00:00
|
|
|
static hcl_pfrc_t pf_and (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
2018-02-12 10:50:44 +00:00
|
|
|
{
|
|
|
|
hcl_oop_t arg, rv;
|
2018-02-26 15:52:15 +00:00
|
|
|
hcl_ooi_t i;
|
2018-02-12 10:50:44 +00:00
|
|
|
|
|
|
|
rv = hcl->_true;
|
|
|
|
for (i = 1; i < nargs; i++)
|
|
|
|
{
|
|
|
|
arg = HCL_STACK_GETARG(hcl, nargs, i);
|
|
|
|
if (arg == hcl->_true)
|
|
|
|
{
|
|
|
|
/* do nothing */
|
|
|
|
}
|
|
|
|
else if (arg == hcl->_false)
|
|
|
|
{
|
|
|
|
rv = hcl->_false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
hcl_seterrbfmt (hcl, HCL_EINVAL, "boolean parameter expected - %O", arg);
|
|
|
|
return HCL_PF_FAILURE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, rv);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2018-02-28 04:52:01 +00:00
|
|
|
static hcl_pfrc_t pf_or (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
2018-02-12 10:50:44 +00:00
|
|
|
{
|
|
|
|
hcl_oop_t arg, rv;
|
2018-02-26 15:52:15 +00:00
|
|
|
hcl_ooi_t i;
|
2018-02-12 10:50:44 +00:00
|
|
|
|
|
|
|
rv = hcl->_false;
|
|
|
|
for (i = 1; i < nargs; i++)
|
|
|
|
{
|
2018-02-21 13:13:25 +00:00
|
|
|
arg = HCL_STACK_GETARG(hcl, nargs, i);
|
2018-02-12 10:50:44 +00:00
|
|
|
if (arg == hcl->_true)
|
|
|
|
{
|
|
|
|
rv = hcl->_true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (arg == hcl->_false)
|
|
|
|
{
|
|
|
|
/* do nothing */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
hcl_seterrbfmt (hcl, HCL_EINVAL, "boolean parameter expected - %O", arg);
|
|
|
|
return HCL_PF_FAILURE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, rv);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2016-10-06 17:49:47 +00:00
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
|
2018-04-02 12:52:10 +00:00
|
|
|
static hcl_pfrc_t pf_number_add (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
2016-10-25 13:44:38 +00:00
|
|
|
{
|
2018-02-26 15:52:15 +00:00
|
|
|
hcl_ooi_t i;
|
2016-10-25 13:44:38 +00:00
|
|
|
hcl_oop_t arg, ret;
|
|
|
|
|
2018-02-13 16:10:41 +00:00
|
|
|
ret = HCL_STACK_GETARG(hcl, nargs, 0);
|
2018-02-12 10:50:44 +00:00
|
|
|
for (i = 1; i < nargs; i++)
|
2016-10-25 13:44:38 +00:00
|
|
|
{
|
|
|
|
arg = HCL_STACK_GETARG(hcl, nargs, i);
|
2018-03-28 16:40:42 +00:00
|
|
|
/*ret = hcl_addints(hcl, ret, arg);*/
|
|
|
|
ret = hcl_addnums(hcl, ret, arg);
|
2018-02-13 16:10:41 +00:00
|
|
|
if (!ret) return HCL_PF_FAILURE;
|
2016-10-25 13:44:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, ret);
|
2018-02-08 07:40:27 +00:00
|
|
|
return HCL_PF_SUCCESS;
|
2016-10-25 13:44:38 +00:00
|
|
|
}
|
|
|
|
|
2018-04-02 12:52:10 +00:00
|
|
|
static hcl_pfrc_t pf_number_sub (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
2018-02-12 10:50:44 +00:00
|
|
|
{
|
2018-02-26 15:52:15 +00:00
|
|
|
hcl_ooi_t i;
|
2018-02-12 10:50:44 +00:00
|
|
|
hcl_oop_t arg, ret;
|
|
|
|
|
2018-02-13 16:10:41 +00:00
|
|
|
ret = HCL_STACK_GETARG(hcl, nargs, 0);
|
2018-02-12 10:50:44 +00:00
|
|
|
for (i = 1; i < nargs; i++)
|
|
|
|
{
|
|
|
|
arg = HCL_STACK_GETARG(hcl, nargs, i);
|
2018-03-28 16:40:42 +00:00
|
|
|
/*ret = hcl_subints(hcl, ret, arg);*/
|
|
|
|
ret = hcl_subnums(hcl, ret, arg);
|
2018-02-13 16:10:41 +00:00
|
|
|
if (!ret) return HCL_PF_FAILURE;
|
2018-02-12 10:50:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, ret);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2018-04-02 12:52:10 +00:00
|
|
|
static hcl_pfrc_t pf_number_mul (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
2018-02-12 10:50:44 +00:00
|
|
|
{
|
2018-02-26 15:52:15 +00:00
|
|
|
hcl_ooi_t i;
|
2018-02-12 10:50:44 +00:00
|
|
|
hcl_oop_t arg, ret;
|
|
|
|
|
2018-02-13 16:10:41 +00:00
|
|
|
ret = HCL_STACK_GETARG(hcl, nargs, 0);
|
2018-02-12 10:50:44 +00:00
|
|
|
for (i = 1; i < nargs; i++)
|
|
|
|
{
|
|
|
|
arg = HCL_STACK_GETARG(hcl, nargs, i);
|
2018-03-30 15:43:09 +00:00
|
|
|
/*ret = hcl_mulints(hcl, ret, arg);*/
|
|
|
|
ret = hcl_mulnums(hcl, ret, arg);
|
|
|
|
if (!ret) return HCL_PF_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, ret);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2018-04-02 12:52:10 +00:00
|
|
|
static hcl_pfrc_t pf_number_mlt (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
|
|
|
{
|
|
|
|
hcl_ooi_t i;
|
|
|
|
hcl_oop_t arg, ret;
|
|
|
|
|
|
|
|
ret = HCL_STACK_GETARG(hcl, nargs, 0);
|
|
|
|
for (i = 1; i < nargs; i++)
|
|
|
|
{
|
|
|
|
arg = HCL_STACK_GETARG(hcl, nargs, i);
|
|
|
|
ret = hcl_mltnums(hcl, ret, arg);
|
|
|
|
if (!ret) return HCL_PF_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, ret);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static hcl_pfrc_t pf_number_div (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
2018-03-30 15:43:09 +00:00
|
|
|
{
|
|
|
|
hcl_ooi_t i;
|
|
|
|
hcl_oop_t arg, ret;
|
|
|
|
|
|
|
|
ret = HCL_STACK_GETARG(hcl, nargs, 0);
|
|
|
|
for (i = 1; i < nargs; i++)
|
|
|
|
{
|
|
|
|
arg = HCL_STACK_GETARG(hcl, nargs, i);
|
|
|
|
ret = hcl_divnums(hcl, ret, arg);
|
2018-02-13 16:10:41 +00:00
|
|
|
if (!ret) return HCL_PF_FAILURE;
|
2018-02-12 10:50:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, ret);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2018-04-08 17:56:25 +00:00
|
|
|
static hcl_pfrc_t pf_integer_quo (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
2018-02-12 10:50:44 +00:00
|
|
|
{
|
2018-02-26 15:52:15 +00:00
|
|
|
hcl_ooi_t i;
|
2018-02-12 10:50:44 +00:00
|
|
|
hcl_oop_t arg, ret;
|
|
|
|
|
2018-02-13 16:10:41 +00:00
|
|
|
ret = HCL_STACK_GETARG(hcl, nargs, 0);
|
2018-02-12 10:50:44 +00:00
|
|
|
for (i = 1; i < nargs; i++)
|
|
|
|
{
|
|
|
|
arg = HCL_STACK_GETARG(hcl, nargs, i);
|
2018-02-13 16:10:41 +00:00
|
|
|
ret = hcl_divints(hcl, ret, arg, 0, HCL_NULL);
|
|
|
|
if (!ret) return HCL_PF_FAILURE;
|
2018-02-12 10:50:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, ret);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2018-04-08 17:56:25 +00:00
|
|
|
static hcl_pfrc_t pf_integer_rem (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
2016-10-25 13:44:38 +00:00
|
|
|
{
|
2018-02-26 15:52:15 +00:00
|
|
|
hcl_ooi_t i;
|
2018-02-13 16:10:41 +00:00
|
|
|
hcl_oop_t arg, ret, rem;
|
2016-10-25 13:44:38 +00:00
|
|
|
|
2018-02-13 16:10:41 +00:00
|
|
|
ret = HCL_STACK_GETARG(hcl, nargs, 0);
|
2018-02-12 10:50:44 +00:00
|
|
|
for (i = 1; i < nargs; i++)
|
2016-10-25 13:44:38 +00:00
|
|
|
{
|
2018-02-12 10:50:44 +00:00
|
|
|
arg = HCL_STACK_GETARG(hcl, nargs, i);
|
2018-02-13 16:10:41 +00:00
|
|
|
ret = hcl_divints(hcl, ret, arg, 0, &rem);
|
|
|
|
if (!ret) return HCL_PF_FAILURE;
|
|
|
|
ret = rem;
|
2016-10-25 13:44:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, ret);
|
2018-02-08 07:40:27 +00:00
|
|
|
return HCL_PF_SUCCESS;
|
2016-10-25 13:44:38 +00:00
|
|
|
}
|
|
|
|
|
2018-04-08 17:56:25 +00:00
|
|
|
static hcl_pfrc_t pf_integer_mquo (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
|
|
|
{
|
|
|
|
hcl_ooi_t i;
|
|
|
|
hcl_oop_t arg, ret;
|
|
|
|
|
|
|
|
ret = HCL_STACK_GETARG(hcl, nargs, 0);
|
|
|
|
for (i = 1; i < nargs; i++)
|
|
|
|
{
|
|
|
|
arg = HCL_STACK_GETARG(hcl, nargs, i);
|
|
|
|
ret = hcl_divints(hcl, ret, arg, 1, HCL_NULL);
|
|
|
|
if (!ret) return HCL_PF_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, ret);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
2018-04-08 17:35:21 +00:00
|
|
|
|
2018-04-08 17:56:25 +00:00
|
|
|
static hcl_pfrc_t pf_integer_mod (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
2018-04-08 17:35:21 +00:00
|
|
|
{
|
|
|
|
hcl_ooi_t i;
|
|
|
|
hcl_oop_t arg, ret, rem;
|
|
|
|
|
|
|
|
ret = HCL_STACK_GETARG(hcl, nargs, 0);
|
|
|
|
for (i = 1; i < nargs; i++)
|
|
|
|
{
|
|
|
|
arg = HCL_STACK_GETARG(hcl, nargs, i);
|
|
|
|
ret = hcl_divints(hcl, ret, arg, 1, &rem);
|
|
|
|
if (!ret) return HCL_PF_FAILURE;
|
|
|
|
ret = rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, ret);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2018-04-03 14:02:40 +00:00
|
|
|
static hcl_pfrc_t pf_number_sqrt (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
|
|
|
{
|
|
|
|
hcl_oop_t ret;
|
2018-04-07 02:28:38 +00:00
|
|
|
ret = hcl_sqrtnum(hcl, HCL_STACK_GETARG(hcl, nargs, 0));
|
|
|
|
if (!ret) return HCL_PF_FAILURE;
|
|
|
|
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, ret);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static hcl_pfrc_t pf_number_abs (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
|
|
|
{
|
|
|
|
hcl_oop_t ret;
|
|
|
|
ret = hcl_absnum(hcl, HCL_STACK_GETARG(hcl, nargs, 0));
|
2018-04-03 14:02:40 +00:00
|
|
|
if (!ret) return HCL_PF_FAILURE;
|
|
|
|
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, ret);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2018-04-02 12:52:10 +00:00
|
|
|
static hcl_pfrc_t pf_number_gt (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
2018-03-28 03:15:20 +00:00
|
|
|
{
|
|
|
|
hcl_oop_t ret;
|
2018-04-02 12:28:09 +00:00
|
|
|
ret = hcl_gtnums(hcl, HCL_STACK_GETARG(hcl, nargs, 0), HCL_STACK_GETARG(hcl, nargs, 1));
|
2018-03-28 03:15:20 +00:00
|
|
|
if (!ret) return HCL_PF_FAILURE;
|
|
|
|
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, ret);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-04-02 12:52:10 +00:00
|
|
|
static hcl_pfrc_t pf_number_ge (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
2018-03-28 03:15:20 +00:00
|
|
|
{
|
|
|
|
hcl_oop_t ret;
|
2018-04-02 12:28:09 +00:00
|
|
|
ret = hcl_genums(hcl, HCL_STACK_GETARG(hcl, nargs, 0), HCL_STACK_GETARG(hcl, nargs, 1));
|
2018-03-28 03:15:20 +00:00
|
|
|
if (!ret) return HCL_PF_FAILURE;
|
|
|
|
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, ret);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2018-04-02 12:52:10 +00:00
|
|
|
static hcl_pfrc_t pf_number_lt (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
2018-03-28 03:15:20 +00:00
|
|
|
{
|
|
|
|
hcl_oop_t ret;
|
2018-04-02 12:28:09 +00:00
|
|
|
ret = hcl_ltnums(hcl, HCL_STACK_GETARG(hcl, nargs, 0), HCL_STACK_GETARG(hcl, nargs, 1));
|
2018-03-28 03:15:20 +00:00
|
|
|
if (!ret) return HCL_PF_FAILURE;
|
|
|
|
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, ret);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
2018-04-02 12:52:10 +00:00
|
|
|
static hcl_pfrc_t pf_number_le (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
2018-03-28 03:15:20 +00:00
|
|
|
{
|
|
|
|
hcl_oop_t ret;
|
2018-04-02 12:28:09 +00:00
|
|
|
ret = hcl_lenums(hcl, HCL_STACK_GETARG(hcl, nargs, 0), HCL_STACK_GETARG(hcl, nargs, 1));
|
2018-03-28 03:15:20 +00:00
|
|
|
if (!ret) return HCL_PF_FAILURE;
|
|
|
|
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, ret);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
2018-04-02 12:52:10 +00:00
|
|
|
static hcl_pfrc_t pf_number_eq (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
2018-03-28 03:15:20 +00:00
|
|
|
{
|
|
|
|
hcl_oop_t ret;
|
2018-04-02 12:28:09 +00:00
|
|
|
ret = hcl_eqnums(hcl, HCL_STACK_GETARG(hcl, nargs, 0), HCL_STACK_GETARG(hcl, nargs, 1));
|
2018-03-28 03:15:20 +00:00
|
|
|
if (!ret) return HCL_PF_FAILURE;
|
|
|
|
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, ret);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
2018-04-02 12:52:10 +00:00
|
|
|
static hcl_pfrc_t pf_number_ne (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
2018-03-28 03:15:20 +00:00
|
|
|
{
|
|
|
|
hcl_oop_t ret;
|
2018-04-02 12:28:09 +00:00
|
|
|
ret = hcl_nenums(hcl, HCL_STACK_GETARG(hcl, nargs, 0), HCL_STACK_GETARG(hcl, nargs, 1));
|
2018-03-28 03:15:20 +00:00
|
|
|
if (!ret) return HCL_PF_FAILURE;
|
|
|
|
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, ret);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
2018-04-05 04:56:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static hcl_pfrc_t pf_integer_band (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
|
|
|
{
|
|
|
|
hcl_oop_t ret;
|
|
|
|
ret = hcl_bitandints(hcl, HCL_STACK_GETARG(hcl, nargs, 0), HCL_STACK_GETARG(hcl, nargs, 1));
|
|
|
|
if (!ret) return HCL_PF_FAILURE;
|
|
|
|
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, ret);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static hcl_pfrc_t pf_integer_bor (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
|
|
|
{
|
|
|
|
hcl_oop_t ret;
|
|
|
|
ret = hcl_bitorints(hcl, HCL_STACK_GETARG(hcl, nargs, 0), HCL_STACK_GETARG(hcl, nargs, 1));
|
|
|
|
if (!ret) return HCL_PF_FAILURE;
|
|
|
|
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, ret);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
static hcl_pfrc_t pf_integer_bxor (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
|
|
|
{
|
|
|
|
hcl_oop_t ret;
|
|
|
|
ret = hcl_bitxorints(hcl, HCL_STACK_GETARG(hcl, nargs, 0), HCL_STACK_GETARG(hcl, nargs, 1));
|
|
|
|
if (!ret) return HCL_PF_FAILURE;
|
|
|
|
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, ret);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
static hcl_pfrc_t pf_integer_bnot (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
|
|
|
{
|
|
|
|
hcl_oop_t ret;
|
|
|
|
ret = hcl_bitinvint(hcl, HCL_STACK_GETARG(hcl, nargs, 0));
|
|
|
|
if (!ret) return HCL_PF_FAILURE;
|
|
|
|
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, ret);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
static hcl_pfrc_t pf_integer_bshift (hcl_t* hcl, hcl_mod_t* mod, hcl_ooi_t nargs)
|
|
|
|
{
|
|
|
|
hcl_oop_t ret;
|
|
|
|
ret = hcl_bitshiftint(hcl, HCL_STACK_GETARG(hcl, nargs, 0), HCL_STACK_GETARG(hcl, nargs, 1));
|
|
|
|
if (!ret) return HCL_PF_FAILURE;
|
|
|
|
|
|
|
|
HCL_STACK_SETRET (hcl, nargs, ret);
|
|
|
|
return HCL_PF_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2018-02-24 04:01:19 +00:00
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
|
2018-02-13 16:10:41 +00:00
|
|
|
static pf_t builtin_prims[] =
|
2016-10-06 17:49:47 +00:00
|
|
|
{
|
2018-04-05 04:56:52 +00:00
|
|
|
{ 0, HCL_TYPE_MAX(hcl_oow_t), pf_log, 3, { 'l','o','g' } },
|
|
|
|
{ 1, HCL_TYPE_MAX(hcl_oow_t), pf_logf, 4, { 'l','o','g','f' } },
|
|
|
|
{ 1, HCL_TYPE_MAX(hcl_oow_t), pf_printf, 6, { 'p','r','i','n','t','f' } },
|
|
|
|
{ 1, HCL_TYPE_MAX(hcl_oow_t), pf_sprintf, 7, { 's','p','r','i','n','t','f' } },
|
|
|
|
|
|
|
|
{ 0, 0, pf_gc, 2, { 'g','c' } },
|
|
|
|
|
|
|
|
{ 1, 1, pf_not, 3, { 'n','o','t' } },
|
|
|
|
/* this is a long-circuit logical and the short-curcuit 'and' is treated as a special form */
|
|
|
|
{ 2, HCL_TYPE_MAX(hcl_oow_t), pf_and, 4, { '_','a','n','d' } },
|
|
|
|
/* this is a long-cirtuit logical or. the short-circuit 'or' is treated as a special form */
|
|
|
|
{ 2, HCL_TYPE_MAX(hcl_oow_t), pf_or, 3, { '_','o','r' } },
|
|
|
|
|
|
|
|
{ 2, 2, pf_eqv, 4, { 'e','q','v','?' } },
|
|
|
|
{ 2, 2, pf_eql, 4, { 'e','q','l','?' } },
|
|
|
|
{ 2, 2, pf_eqk, 4, { 'e','q','k','?' } },
|
|
|
|
{ 2, 2, pf_nqv, 4, { 'n','q','v','?' } },
|
|
|
|
{ 2, 2, pf_nql, 4, { 'n','q','l','?' } },
|
|
|
|
{ 2, 2, pf_nqk, 4, { 'n','q','k','?' } },
|
|
|
|
|
2018-04-07 02:28:38 +00:00
|
|
|
{ 1, 1, pf_is_null, 4, { 'n','u','l','l','?' } },
|
2018-04-07 04:43:56 +00:00
|
|
|
{ 1, 1, pf_is_boolean, 8, { 'b','o','o','l','e','a','n','?' } },
|
|
|
|
{ 1, 1, pf_is_character, 10, { 'c','h','a','r','a','c','t','e','r','?' } },
|
|
|
|
{ 1, 1, pf_is_error, 6, { 'e','r','r','o','r','?' } },
|
|
|
|
{ 1, 1, pf_is_smptr, 6, { 's','m','p','t','r','?' } },
|
2018-04-07 02:28:38 +00:00
|
|
|
{ 1, 1, pf_is_integer, 8, { 'i','n','t','e','g','e','r','?' } },
|
2018-04-07 04:43:56 +00:00
|
|
|
{ 1, 1, pf_is_numeric, 8, { 'n','u','m','e','r','i','c','?' } },
|
2018-04-07 02:28:38 +00:00
|
|
|
{ 1, 1, pf_is_string, 7, { 's','t','r','i','n','g','?' } },
|
2018-04-07 04:43:56 +00:00
|
|
|
{ 1, 1, pf_is_array, 6, { 'a','r','r','a','y','?' } },
|
|
|
|
{ 1, 1, pf_is_bytearray, 10, { 'b','y','t','e','a','r','r','a','y','?' } },
|
|
|
|
{ 1, 1, pf_is_dictionary, 11, { 'd','i','c','t','i','o','n','a','r','y','?' } },
|
2018-04-07 15:21:05 +00:00
|
|
|
{ 1, 1, pf_is_lambda, 7, { 'l','a','m','b','d','a','?' } },
|
2018-04-07 04:43:56 +00:00
|
|
|
|
2018-04-07 02:28:38 +00:00
|
|
|
|
2018-04-05 04:56:52 +00:00
|
|
|
{ 1, HCL_TYPE_MAX(hcl_oow_t), pf_number_add, 1, { '+' } },
|
|
|
|
{ 1, HCL_TYPE_MAX(hcl_oow_t), pf_number_sub, 1, { '-' } },
|
|
|
|
{ 1, HCL_TYPE_MAX(hcl_oow_t), pf_number_mul, 1, { '*' } },
|
|
|
|
{ 1, HCL_TYPE_MAX(hcl_oow_t), pf_number_mlt, 3, { 'm','l','t' } },
|
|
|
|
{ 1, HCL_TYPE_MAX(hcl_oow_t), pf_number_div, 1, { '/' } },
|
|
|
|
{ 1, 1, pf_number_sqrt, 4, { 's','q','r','t' } },
|
2018-04-07 02:28:38 +00:00
|
|
|
{ 1, 1, pf_number_abs, 3, { 'a','b','s' } },
|
2018-04-05 04:56:52 +00:00
|
|
|
|
|
|
|
{ 2, 2, pf_number_gt, 1, { '>' } },
|
|
|
|
{ 2, 2, pf_number_ge, 2, { '>','=' } },
|
|
|
|
{ 2, 2, pf_number_lt, 1, { '<' } },
|
|
|
|
{ 2, 2, pf_number_le, 2, { '<','=' } },
|
|
|
|
{ 2, 2, pf_number_eq, 1, { '=' } },
|
|
|
|
{ 2, 2, pf_number_ne, 2, { '/','=' } },
|
|
|
|
|
|
|
|
/* bitwise operations are supported for integers only */
|
2018-04-05 07:11:21 +00:00
|
|
|
{ 2, 2, pf_integer_band, 7, { 'b','i','t','-','a','n','d' } },
|
|
|
|
{ 2, 2, pf_integer_bor, 6, { 'b','i','t','-','o','r' } },
|
|
|
|
{ 2, 2, pf_integer_bxor, 7, { 'b','i','t','-','x','o','r' } },
|
|
|
|
{ 1, 1, pf_integer_bnot, 7, { 'b','i','t','-','n','o','t' } },
|
|
|
|
{ 2, 2, pf_integer_bshift, 9, { 'b','i','t','-','s','h','i','f','t' } },
|
2018-04-08 17:56:25 +00:00
|
|
|
|
|
|
|
{ 1, HCL_TYPE_MAX(hcl_oow_t), pf_integer_quo, 3, { 'd','i','v' } },
|
|
|
|
{ 2, HCL_TYPE_MAX(hcl_oow_t), pf_integer_rem, 3, { 'r','e','m' } },
|
|
|
|
{ 1, HCL_TYPE_MAX(hcl_oow_t), pf_integer_mquo, 4, { 'm','d','i','v' } },
|
|
|
|
{ 2, HCL_TYPE_MAX(hcl_oow_t), pf_integer_mod, 3, { 'm','o','d' } },
|
2016-10-06 17:49:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
int hcl_addbuiltinprims (hcl_t* hcl)
|
|
|
|
{
|
|
|
|
hcl_oow_t i;
|
|
|
|
hcl_oop_t prim, name;
|
2018-02-15 01:39:00 +00:00
|
|
|
hcl_oop_cons_t cons;
|
2016-10-06 17:49:47 +00:00
|
|
|
|
|
|
|
for (i = 0; i < HCL_COUNTOF(builtin_prims); i++)
|
|
|
|
{
|
2018-02-28 04:52:01 +00:00
|
|
|
prim = hcl_makeprim(hcl, builtin_prims[i].impl, builtin_prims[i].minargs, builtin_prims[i].maxargs, HCL_NULL);
|
2016-10-06 17:49:47 +00:00
|
|
|
if (!prim) return -1;
|
|
|
|
|
|
|
|
hcl_pushtmp (hcl, &prim);
|
2018-02-08 07:40:27 +00:00
|
|
|
name = hcl_makesymbol(hcl, builtin_prims[i].name, builtin_prims[i].namelen);
|
2016-10-06 17:49:47 +00:00
|
|
|
hcl_poptmp (hcl);
|
|
|
|
if (!name) return -1;
|
|
|
|
|
2018-02-15 01:39:00 +00:00
|
|
|
hcl_pushtmp (hcl, &name);
|
|
|
|
cons = hcl_putatsysdic(hcl, name, prim);
|
|
|
|
hcl_poptmp (hcl);
|
|
|
|
if (!cons) return -1;
|
|
|
|
|
|
|
|
/* turn on the kernel bit in the symbol associated with a primitive
|
|
|
|
* function. 'set' prevents this symbol from being used as a variable
|
|
|
|
* name */
|
2018-03-08 14:18:30 +00:00
|
|
|
HCL_OBJ_SET_FLAGS_KERNEL (name, 2);
|
2016-10-06 17:49:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-02-12 16:51:38 +00:00
|
|
|
|