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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _HCL_H_
|
|
|
|
#define _HCL_H_
|
|
|
|
|
2020-12-31 17:48:47 +00:00
|
|
|
#include <hcl-cmn.h>
|
|
|
|
#include <hcl-rbt.h>
|
|
|
|
#include <hcl-xma.h>
|
2018-03-14 10:14:38 +00:00
|
|
|
#include <stdarg.h>
|
2016-09-28 14:40:37 +00:00
|
|
|
|
|
|
|
/* TODO: move this macro out to the build files.... */
|
|
|
|
#define HCL_INCLUDE_COMPILER
|
|
|
|
|
|
|
|
/* ========================================================================== */
|
|
|
|
|
2018-02-28 04:52:01 +00:00
|
|
|
typedef struct hcl_mod_t hcl_mod_t;
|
2019-05-31 10:54:13 +00:00
|
|
|
|
2018-02-28 04:52:01 +00:00
|
|
|
/* ========================================================================== */
|
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
/**
|
|
|
|
* The hcl_errnum_t type defines the error codes.
|
|
|
|
*/
|
|
|
|
enum hcl_errnum_t
|
|
|
|
{
|
2016-10-06 17:49:47 +00:00
|
|
|
HCL_ENOERR, /**< no error */
|
2018-02-05 10:43:25 +00:00
|
|
|
HCL_EGENERIC, /**< generic error */
|
2016-10-06 17:49:47 +00:00
|
|
|
HCL_ENOIMPL, /**< not implemented */
|
|
|
|
HCL_ESYSERR, /**< subsystem error */
|
|
|
|
HCL_EINTERN, /**< internal error */
|
2021-03-28 03:44:27 +00:00
|
|
|
|
2016-10-06 17:49:47 +00:00
|
|
|
HCL_ESYSMEM, /**< insufficient system memory */
|
|
|
|
HCL_EOOMEM, /**< insufficient object memory */
|
2018-02-05 10:43:25 +00:00
|
|
|
HCL_ETYPE, /**< invalid class/type */
|
|
|
|
HCL_EINVAL, /**< invalid parameter or data */
|
|
|
|
HCL_ENOENT, /**< data not found */
|
2021-03-28 03:44:27 +00:00
|
|
|
|
2018-02-05 10:43:25 +00:00
|
|
|
HCL_EEXIST, /**< existing/duplicate data */
|
2021-03-28 03:44:27 +00:00
|
|
|
HCL_EBUSY,
|
2018-02-05 10:43:25 +00:00
|
|
|
HCL_EACCES,
|
|
|
|
HCL_EPERM,
|
|
|
|
HCL_ENOTDIR,
|
2021-03-28 03:44:27 +00:00
|
|
|
|
2018-02-05 10:43:25 +00:00
|
|
|
HCL_EINTR,
|
|
|
|
HCL_EPIPE,
|
|
|
|
HCL_EAGAIN,
|
|
|
|
HCL_EBADHND,
|
2022-01-08 09:26:54 +00:00
|
|
|
HCL_EFRMFLOOD, /**< too many frames */
|
|
|
|
|
|
|
|
HCL_EMSGRCV, /**< mesasge receiver error */
|
|
|
|
HCL_EMSGSND, /**< message sending error. even doesNotUnderstand: is not found */
|
|
|
|
HCL_ENUMARGS, /**< wrong number of arguments */
|
|
|
|
HCL_ERANGE, /**< range error. overflow and underflow */
|
|
|
|
HCL_EBCFULL, /**< byte-code full */
|
|
|
|
|
|
|
|
HCL_EDFULL, /**< dictionary full */
|
|
|
|
HCL_EPFULL, /**< processor full */
|
|
|
|
HCL_EFINIS, /**< unexpected end of data/input/stream/etc */
|
|
|
|
HCL_EFLOOD, /**< too many items/data */
|
|
|
|
HCL_EDIVBY0, /**< divide by zero */
|
|
|
|
|
|
|
|
HCL_EIOERR, /**< I/O error */
|
|
|
|
HCL_EECERR, /**< encoding conversion error */
|
|
|
|
HCL_EBUFFULL, /**< buffer full */
|
|
|
|
HCL_ESYNERR, /**< syntax error */
|
|
|
|
HCL_ECALL, /**< runtime error - cannot call */
|
|
|
|
HCL_ECALLARG, /**< runtime error - wrong number of arguments to call */
|
|
|
|
HCL_ECALLRET, /**< runtime error - wrong number of return variables to call */
|
|
|
|
HCL_ESEMFLOOD, /**< runtime error - too many semaphores */
|
|
|
|
HCL_EEXCEPT, /**< runtime error - exception not handled */
|
|
|
|
HCL_ESTKOVRFLW, /**< runtime error - stack overflow */
|
2022-05-05 04:03:56 +00:00
|
|
|
HCL_ESTKUNDFLW, /**< runtime error - stack overflow */
|
|
|
|
HCL_EUNDEFVAR, /**< runtime error - undefined variable access */
|
2016-09-28 14:40:37 +00:00
|
|
|
};
|
|
|
|
typedef enum hcl_errnum_t hcl_errnum_t;
|
|
|
|
|
|
|
|
enum hcl_synerrnum_t
|
|
|
|
{
|
|
|
|
HCL_SYNERR_NOERR,
|
2021-01-17 17:45:39 +00:00
|
|
|
HCL_SYNERR_INTERN, /* internal error */
|
2021-05-09 15:32:54 +00:00
|
|
|
HCL_SYNERR_CNODE, /* unexpected compiler node */
|
2016-09-28 14:40:37 +00:00
|
|
|
HCL_SYNERR_ILCHR, /* illegal character */
|
2018-04-06 14:59:44 +00:00
|
|
|
HCL_SYNERR_ILTOK, /* invalid token */
|
2016-09-28 14:40:37 +00:00
|
|
|
HCL_SYNERR_CMTNC, /* comment not closed */
|
|
|
|
HCL_SYNERR_CHARLIT, /* wrong character literal */
|
2022-07-22 08:02:14 +00:00
|
|
|
HCL_SYNERR_STRLIT, /* wrong string literal */
|
|
|
|
HCL_SYNERR_HASHLIT, /* wrong hashed literal */
|
2018-03-30 17:37:40 +00:00
|
|
|
HCL_SYNERR_NUMLIT , /* invalid numeric literal */
|
2018-03-28 08:57:49 +00:00
|
|
|
HCL_SYNERR_NUMRANGE, /* number range error */
|
2021-01-06 09:37:29 +00:00
|
|
|
HCL_SYNERR_ERRLIT, /* wrong error literal */
|
2018-02-17 16:01:27 +00:00
|
|
|
HCL_SYNERR_SMPTRLIT, /* wrong smptr literal */
|
2018-04-06 08:33:25 +00:00
|
|
|
HCL_SYNERR_MSEGIDENT, /* wrong multi-segment identifier */
|
2021-01-17 17:45:39 +00:00
|
|
|
HCL_SYNERR_RADIX, /* invalid radix for a numeric literal */
|
2016-09-28 14:40:37 +00:00
|
|
|
|
|
|
|
HCL_SYNERR_EOF, /* sudden end of input */
|
2022-01-03 17:59:55 +00:00
|
|
|
HCL_SYNERR_EOX, /* sudden end of expression */
|
2016-09-28 14:40:37 +00:00
|
|
|
HCL_SYNERR_LPAREN, /* ( expected */
|
|
|
|
HCL_SYNERR_RPAREN, /* ) expected */
|
|
|
|
HCL_SYNERR_RBRACK, /* ] expected */
|
2018-02-06 10:16:01 +00:00
|
|
|
HCL_SYNERR_RBRACE, /* } expected */
|
2016-10-01 04:36:48 +00:00
|
|
|
HCL_SYNERR_VBAR, /* | expected */
|
2016-09-28 14:40:37 +00:00
|
|
|
|
|
|
|
HCL_SYNERR_STRING, /* string expected */
|
|
|
|
HCL_SYNERR_BYTERANGE, /* byte too small or too large */
|
|
|
|
HCL_SYNERR_NESTING, /* nesting level too deep */
|
|
|
|
|
2018-04-06 08:33:25 +00:00
|
|
|
HCL_SYNERR_COMMA, /* , expected */
|
2016-10-01 04:36:48 +00:00
|
|
|
HCL_SYNERR_VBARBANNED, /* | disallowed */
|
2016-09-28 14:40:37 +00:00
|
|
|
HCL_SYNERR_DOTBANNED, /* . disallowed */
|
2018-04-06 08:33:25 +00:00
|
|
|
HCL_SYNERR_COMMABANNED, /* , disallowed */
|
|
|
|
HCL_SYNERR_COLONBANNED, /* : disallowed */
|
|
|
|
HCL_SYNERR_COMMANOVALUE, /* no value after , */
|
|
|
|
HCL_SYNERR_COLONNOVALUE, /* no value after : */
|
2022-01-03 17:59:55 +00:00
|
|
|
HCL_SYNERR_NOSEP, /* no separator between array/dictionary elements */
|
2016-09-28 14:40:37 +00:00
|
|
|
HCL_SYNERR_INCLUDE, /* #include error */
|
|
|
|
|
2021-05-07 08:53:01 +00:00
|
|
|
HCL_SYNERR_ELLIPSISBANNED, /* ... disallowed */
|
2021-05-09 15:32:54 +00:00
|
|
|
HCL_SYNERR_TRPCOLONSBANNED, /* ::: disallowed */
|
2016-10-15 08:49:27 +00:00
|
|
|
HCL_SYNERR_LOOPFLOOD, /* loop body too big */
|
|
|
|
HCL_SYNERR_IFFLOOD, /* if body too big */
|
2016-09-28 14:40:37 +00:00
|
|
|
HCL_SYNERR_BLKFLOOD, /* lambda block too big */
|
2016-09-29 13:20:09 +00:00
|
|
|
HCL_SYNERR_BLKDEPTH, /* lambda block too deep */
|
2016-10-01 04:36:48 +00:00
|
|
|
HCL_SYNERR_ARGNAMELIST, /* argument name list expected */
|
|
|
|
HCL_SYNERR_ARGNAME, /* argument name expected */
|
|
|
|
HCL_SYNERR_ARGNAMEDUP, /* duplicate argument name */
|
2016-09-28 14:40:37 +00:00
|
|
|
HCL_SYNERR_VARNAME, /* variable name expected */
|
2016-09-29 13:20:09 +00:00
|
|
|
HCL_SYNERR_ARGCOUNT, /* wrong number of arguments */
|
2016-10-01 04:36:48 +00:00
|
|
|
HCL_SYNERR_ARGFLOOD, /* too many arguments defined */
|
|
|
|
HCL_SYNERR_VARFLOOD, /* too many variables defined */
|
|
|
|
HCL_SYNERR_VARDCLBANNED, /* variable declaration disallowed */
|
2016-10-12 09:54:07 +00:00
|
|
|
HCL_SYNERR_VARNAMEDUP, /* duplicate variable name */
|
|
|
|
|
2016-10-13 09:48:32 +00:00
|
|
|
HCL_SYNERR_BANNEDVARNAME, /* disallowed varible name */
|
|
|
|
HCL_SYNERR_BANNEDARGNAME, /* disallowed argument name */
|
2021-05-13 15:54:30 +00:00
|
|
|
HCL_SYNERR_BANNED, /* prohibited */
|
2016-10-13 09:48:32 +00:00
|
|
|
|
2016-10-18 17:00:35 +00:00
|
|
|
HCL_SYNERR_ELIF, /* elif without if */
|
|
|
|
HCL_SYNERR_ELSE, /* else without if */
|
2018-02-06 10:16:01 +00:00
|
|
|
HCL_SYNERR_BREAK, /* break outside loop */
|
|
|
|
|
2018-02-07 07:35:30 +00:00
|
|
|
HCL_SYNERR_CALLABLE, /* invalid callable */
|
2018-02-07 13:55:22 +00:00
|
|
|
HCL_SYNERR_UNBALKV, /* unbalanced key/value pair */
|
2018-02-12 10:50:44 +00:00
|
|
|
HCL_SYNERR_UNBALPBB, /* unbalanced parenthesis/brace/bracket */
|
2022-01-14 16:09:52 +00:00
|
|
|
HCL_SYNERR_EMPTYXLIST, /* empty x-list */
|
|
|
|
HCL_SYNERR_EMPTYMLIST /* empty m-list */
|
2016-09-28 14:40:37 +00:00
|
|
|
};
|
|
|
|
typedef enum hcl_synerrnum_t hcl_synerrnum_t;
|
|
|
|
|
|
|
|
enum hcl_option_t
|
|
|
|
{
|
|
|
|
HCL_TRAIT,
|
|
|
|
HCL_LOG_MASK,
|
2018-02-05 10:43:25 +00:00
|
|
|
HCL_LOG_MAXCAPA,
|
2021-07-19 18:59:17 +00:00
|
|
|
|
|
|
|
HCL_LOG_TARGET_BCSTR,
|
|
|
|
HCL_LOG_TARGET_UCSTR,
|
|
|
|
HCL_LOG_TARGET_BCS,
|
|
|
|
HCL_LOG_TARGET_UCS,
|
2021-07-19 07:11:41 +00:00
|
|
|
#if defined(HCL_OOCH_IS_UCH)
|
2021-07-19 18:59:17 +00:00
|
|
|
# define HCL_LOG_TARGET HCL_LOG_TARGET_UCSTR
|
|
|
|
# define HCL_LOG_TARGET_OOCSTR HCL_LOG_TARGET_UCSTR
|
|
|
|
# define HCL_LOG_TARGET_OOCS HCL_LOG_TARGET_UCS
|
2021-07-19 07:11:41 +00:00
|
|
|
#else
|
2021-07-19 18:59:17 +00:00
|
|
|
# define HCL_LOG_TARGET HCL_LOG_TARGET_BCSTR
|
|
|
|
# define HCL_LOG_TARGET_OOCSTR HCL_LOG_TARGET_BCSTR
|
|
|
|
# define HCL_LOG_TARGET_OOCS HCL_LOG_TARGET_BCS
|
2021-07-19 07:11:41 +00:00
|
|
|
#endif
|
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
HCL_SYMTAB_SIZE, /* default system table size */
|
|
|
|
HCL_SYSDIC_SIZE, /* default system dictionary size */
|
2018-04-09 15:54:54 +00:00
|
|
|
HCL_PROCSTK_SIZE, /* default process stack size */
|
|
|
|
HCL_MOD_INCTX
|
2016-09-28 14:40:37 +00:00
|
|
|
};
|
|
|
|
typedef enum hcl_option_t hcl_option_t;
|
|
|
|
|
2018-02-05 10:43:25 +00:00
|
|
|
/* [NOTE] ensure that it is a power of 2 */
|
|
|
|
#define HCL_LOG_CAPA_ALIGN 512
|
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
enum hcl_option_dflval_t
|
|
|
|
{
|
2018-02-05 10:43:25 +00:00
|
|
|
HCL_DFL_LOG_MAXCAPA = HCL_LOG_CAPA_ALIGN * 16,
|
2016-09-28 14:40:37 +00:00
|
|
|
HCL_DFL_SYMTAB_SIZE = 5000,
|
|
|
|
HCL_DFL_SYSDIC_SIZE = 5000,
|
|
|
|
HCL_DFL_PROCSTK_SIZE = 5000
|
|
|
|
};
|
|
|
|
typedef enum hcl_option_dflval_t hcl_option_dflval_t;
|
|
|
|
|
|
|
|
enum hcl_trait_t
|
|
|
|
{
|
2018-02-21 09:30:18 +00:00
|
|
|
#if defined(HCL_BUILD_DEBUG)
|
2020-09-28 15:44:04 +00:00
|
|
|
HCL_TRAIT_DEBUG_GC = (1u << 0),
|
2021-02-01 03:32:09 +00:00
|
|
|
HCL_TRAIT_DEBUG_BIGINT = (1u << 1),
|
2018-02-05 10:43:25 +00:00
|
|
|
#endif
|
|
|
|
|
2020-09-28 15:44:04 +00:00
|
|
|
HCL_TRAIT_INTERACTIVE = (1u << 7),
|
|
|
|
|
2021-03-28 03:44:27 +00:00
|
|
|
/* perform no garbage collection when the heap is full.
|
2016-09-28 14:40:37 +00:00
|
|
|
* you still can use hcl_gc() explicitly. */
|
2020-09-28 15:44:04 +00:00
|
|
|
HCL_TRAIT_NOGC = (1u << 8),
|
2016-09-28 14:40:37 +00:00
|
|
|
|
|
|
|
/* wait for running process when exiting from the main method */
|
2020-09-28 15:44:04 +00:00
|
|
|
HCL_TRAIT_AWAIT_PROCS = (1u << 9)
|
2016-09-28 14:40:37 +00:00
|
|
|
};
|
|
|
|
typedef enum hcl_trait_t hcl_trait_t;
|
|
|
|
|
2019-03-06 01:50:46 +00:00
|
|
|
/* =========================================================================
|
|
|
|
* SPECIALIZED OOP TYPES
|
|
|
|
* ========================================================================= */
|
|
|
|
|
|
|
|
/* hcl_oop_t defined in hcl-cmn.h
|
|
|
|
* hcl_obj_t defined further down */
|
2016-09-28 14:40:37 +00:00
|
|
|
|
|
|
|
/* these are more specialized types for hcl_obj_t */
|
|
|
|
typedef struct hcl_obj_oop_t hcl_obj_oop_t;
|
|
|
|
typedef struct hcl_obj_char_t hcl_obj_char_t;
|
|
|
|
typedef struct hcl_obj_byte_t hcl_obj_byte_t;
|
|
|
|
typedef struct hcl_obj_halfword_t hcl_obj_halfword_t;
|
|
|
|
typedef struct hcl_obj_word_t hcl_obj_word_t;
|
|
|
|
|
|
|
|
/* these are more specialized types for hcl_oop_t */
|
|
|
|
typedef struct hcl_obj_oop_t* hcl_oop_oop_t;
|
|
|
|
typedef struct hcl_obj_char_t* hcl_oop_char_t;
|
|
|
|
typedef struct hcl_obj_byte_t* hcl_oop_byte_t;
|
|
|
|
typedef struct hcl_obj_halfword_t* hcl_oop_halfword_t;
|
|
|
|
typedef struct hcl_obj_word_t* hcl_oop_word_t;
|
|
|
|
|
2019-05-04 17:56:45 +00:00
|
|
|
#define HCL_OOP_BITS (HCL_SIZEOF_OOP_T * HCL_BITS_PER_BYTE)
|
2016-09-28 14:40:37 +00:00
|
|
|
|
2019-03-06 01:50:46 +00:00
|
|
|
/* =========================================================================
|
|
|
|
* BIGINT TYPES AND MACROS
|
|
|
|
* ========================================================================= */
|
2019-04-17 05:51:36 +00:00
|
|
|
#if defined(HCL_ENABLE_FULL_LIW) && (HCL_SIZEOF_UINTMAX_T > HCL_SIZEOF_OOW_T)
|
2019-05-04 17:56:45 +00:00
|
|
|
# define HCL_USE_OOW_FOR_LIW
|
2016-09-28 14:40:37 +00:00
|
|
|
#endif
|
|
|
|
|
2019-05-04 17:56:45 +00:00
|
|
|
#if defined(HCL_USE_OOW_FOR_LIW)
|
2016-09-28 14:40:37 +00:00
|
|
|
typedef hcl_oow_t hcl_liw_t; /* large integer word */
|
2018-02-05 10:43:25 +00:00
|
|
|
typedef hcl_ooi_t hcl_lii_t;
|
2016-09-28 14:40:37 +00:00
|
|
|
typedef hcl_uintmax_t hcl_lidw_t; /* large integer double word */
|
2018-02-05 10:43:25 +00:00
|
|
|
typedef hcl_intmax_t hcl_lidi_t;
|
2016-09-28 14:40:37 +00:00
|
|
|
# define HCL_SIZEOF_LIW_T HCL_SIZEOF_OOW_T
|
|
|
|
# define HCL_SIZEOF_LIDW_T HCL_SIZEOF_UINTMAX_T
|
|
|
|
# define HCL_LIW_BITS HCL_OOW_BITS
|
2021-03-28 03:44:27 +00:00
|
|
|
# define HCL_LIDW_BITS (HCL_SIZEOF_UINTMAX_T * HCL_BITS_PER_BYTE)
|
2016-09-28 14:40:37 +00:00
|
|
|
|
|
|
|
typedef hcl_oop_word_t hcl_oop_liword_t;
|
|
|
|
# define HCL_OBJ_TYPE_LIWORD HCL_OBJ_TYPE_WORD
|
|
|
|
|
|
|
|
#else
|
|
|
|
typedef hcl_oohw_t hcl_liw_t;
|
2018-02-05 10:43:25 +00:00
|
|
|
typedef hcl_oohi_t hcl_lii_t;
|
2016-09-28 14:40:37 +00:00
|
|
|
typedef hcl_oow_t hcl_lidw_t;
|
2018-02-05 10:43:25 +00:00
|
|
|
typedef hcl_ooi_t hcl_lidi_t;
|
2016-09-28 14:40:37 +00:00
|
|
|
# define HCL_SIZEOF_LIW_T HCL_SIZEOF_OOHW_T
|
|
|
|
# define HCL_SIZEOF_LIDW_T HCL_SIZEOF_OOW_T
|
|
|
|
# define HCL_LIW_BITS HCL_OOHW_BITS
|
|
|
|
# define HCL_LIDW_BITS HCL_OOW_BITS
|
|
|
|
|
|
|
|
typedef hcl_oop_halfword_t hcl_oop_liword_t;
|
|
|
|
# define HCL_OBJ_TYPE_LIWORD HCL_OBJ_TYPE_HALFWORD
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2020-12-31 17:48:47 +00:00
|
|
|
/* =========================================================================
|
|
|
|
* HEADER FOR GC IMPLEMENTATION
|
|
|
|
* ========================================================================= */
|
|
|
|
typedef struct hcl_gchdr_t hcl_gchdr_t;
|
|
|
|
struct hcl_gchdr_t
|
|
|
|
{
|
|
|
|
hcl_gchdr_t* next;
|
|
|
|
};
|
|
|
|
/* The size of hcl_gchdr_t must be aligned to HCL_SIZEOF_OOP_T */
|
|
|
|
|
2019-03-06 01:50:46 +00:00
|
|
|
/* =========================================================================
|
|
|
|
* OBJECT STRUCTURE
|
|
|
|
* ========================================================================= */
|
2016-09-28 14:40:37 +00:00
|
|
|
enum hcl_obj_type_t
|
|
|
|
{
|
|
|
|
HCL_OBJ_TYPE_OOP,
|
|
|
|
HCL_OBJ_TYPE_CHAR,
|
|
|
|
HCL_OBJ_TYPE_BYTE,
|
|
|
|
HCL_OBJ_TYPE_HALFWORD,
|
|
|
|
HCL_OBJ_TYPE_WORD
|
|
|
|
|
|
|
|
/*
|
|
|
|
HCL_OBJ_TYPE_UINT8,
|
|
|
|
HCL_OBJ_TYPE_UINT16,
|
|
|
|
HCL_OBJ_TYPE_UINT32,
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* NOTE: you can have HCL_OBJ_SHORT, HCL_OBJ_INT
|
2021-03-28 03:44:27 +00:00
|
|
|
* HCL_OBJ_LONG, HCL_OBJ_FLOAT, HCL_OBJ_DOUBLE, etc
|
2016-09-28 14:40:37 +00:00
|
|
|
* type type field being 6 bits long, you can have up to 64 different types.
|
|
|
|
|
|
|
|
HCL_OBJ_TYPE_SHORT,
|
|
|
|
HCL_OBJ_TYPE_INT,
|
|
|
|
HCL_OBJ_TYPE_LONG,
|
|
|
|
HCL_OBJ_TYPE_FLOAT,
|
|
|
|
HCL_OBJ_TYPE_DOUBLE */
|
|
|
|
};
|
|
|
|
typedef enum hcl_obj_type_t hcl_obj_type_t;
|
|
|
|
|
|
|
|
/* =========================================================================
|
2021-03-28 03:44:27 +00:00
|
|
|
* Object header structure
|
|
|
|
*
|
2016-09-28 14:40:37 +00:00
|
|
|
* _flags:
|
2021-03-28 03:44:27 +00:00
|
|
|
* type: the type of a payload item.
|
|
|
|
* one of HCL_OBJ_TYPE_OOP, HCL_OBJ_TYPE_CHAR,
|
2016-09-28 14:40:37 +00:00
|
|
|
* HCL_OBJ_TYPE_BYTE, HCL_OBJ_TYPE_HALFWORD, HCL_OBJ_TYPE_WORD
|
2021-03-28 03:44:27 +00:00
|
|
|
* unit: the size of a payload item in bytes.
|
2016-09-28 14:40:37 +00:00
|
|
|
* extra: 0 or 1. 1 indicates that the payload contains 1 more
|
2021-03-28 03:44:27 +00:00
|
|
|
* item than the value of the size field. used for a
|
2016-09-28 14:40:37 +00:00
|
|
|
* terminating null in a variable-char object. internel
|
|
|
|
* use only.
|
2018-03-08 14:18:30 +00:00
|
|
|
* kernel: 0 - ordinary object.
|
|
|
|
* 1 - kernel object. can survive hcl_reset().
|
2021-03-28 03:44:27 +00:00
|
|
|
* 2 - kernel object. can survive hcl_reset().
|
2018-03-08 14:18:30 +00:00
|
|
|
* a symbol object with 2 in the kernel bits cannot be assigned a
|
|
|
|
* value with the 'set' special form.
|
2016-09-28 14:40:37 +00:00
|
|
|
* moved: 0 or 1. used by GC. internal use only.
|
|
|
|
* ngc: 0 or 1, used by GC. internal use only.
|
|
|
|
* trailer: 0 or 1. indicates that there are trailing bytes
|
|
|
|
* after the object payload. internal use only.
|
|
|
|
*
|
|
|
|
* _size: the number of payload items in an object.
|
|
|
|
* it doesn't include the header size.
|
2021-03-28 03:44:27 +00:00
|
|
|
*
|
2016-09-28 14:40:37 +00:00
|
|
|
* The total number of bytes occupied by an object can be calculated
|
|
|
|
* with this fomula:
|
|
|
|
* sizeof(hcl_obj_t) + ALIGN((size + extra) * unit), sizeof(hcl_oop_t))
|
2021-03-28 03:44:27 +00:00
|
|
|
*
|
|
|
|
* If the type is known to be not HCL_OBJ_TYPE_CHAR, you can assume that
|
2016-09-28 14:40:37 +00:00
|
|
|
* 'extra' is 0. So you can simplify the fomula in such a context.
|
|
|
|
* sizeof(hcl_obj_t) + ALIGN(size * unit), sizeof(hcl_oop_t))
|
|
|
|
*
|
|
|
|
* The ALIGN() macro is used above since allocation adjusts the payload
|
|
|
|
* size to a multiple of sizeof(hcl_oop_t). it assumes that sizeof(hcl_obj_t)
|
|
|
|
* is a multiple of sizeof(hcl_oop_t). See the HCL_BYTESOF() macro.
|
2021-03-28 03:44:27 +00:00
|
|
|
*
|
2016-09-28 14:40:37 +00:00
|
|
|
* Due to the header structure, an object can only contain items of
|
2021-03-28 03:44:27 +00:00
|
|
|
* homogeneous data types in the payload.
|
2016-09-28 14:40:37 +00:00
|
|
|
*
|
|
|
|
* It's actually possible to split the size field into 2. For example,
|
|
|
|
* the upper half contains the number of oops and the lower half contains
|
|
|
|
* the number of bytes/chars. This way, a variable-byte class or a variable-char
|
|
|
|
* class can have normal instance variables. On the contrary, the actual byte
|
2021-03-28 03:44:27 +00:00
|
|
|
* size calculation and the access to the payload fields become more complex.
|
2016-09-28 14:40:37 +00:00
|
|
|
* Therefore, i've dropped the idea.
|
|
|
|
* ========================================================================= */
|
|
|
|
#define HCL_OBJ_FLAGS_TYPE_BITS 6
|
|
|
|
#define HCL_OBJ_FLAGS_UNIT_BITS 5
|
|
|
|
#define HCL_OBJ_FLAGS_EXTRA_BITS 1
|
|
|
|
#define HCL_OBJ_FLAGS_KERNEL_BITS 2
|
2020-12-31 17:48:47 +00:00
|
|
|
#define HCL_OBJ_FLAGS_MOVED_BITS 2
|
2016-09-28 14:40:37 +00:00
|
|
|
#define HCL_OBJ_FLAGS_NGC_BITS 1
|
|
|
|
#define HCL_OBJ_FLAGS_TRAILER_BITS 1
|
2022-02-05 17:35:10 +00:00
|
|
|
#define HCL_OBJ_FLAGS_SYNCODE_BITS 5
|
2016-09-28 14:40:37 +00:00
|
|
|
#define HCL_OBJ_FLAGS_BRAND_BITS 6
|
|
|
|
|
|
|
|
|
|
|
|
#define HCL_OBJ_FLAGS_TYPE_SHIFT (HCL_OBJ_FLAGS_UNIT_BITS + HCL_OBJ_FLAGS_UNIT_SHIFT)
|
|
|
|
#define HCL_OBJ_FLAGS_UNIT_SHIFT (HCL_OBJ_FLAGS_EXTRA_BITS + HCL_OBJ_FLAGS_EXTRA_SHIFT)
|
|
|
|
#define HCL_OBJ_FLAGS_EXTRA_SHIFT (HCL_OBJ_FLAGS_KERNEL_BITS + HCL_OBJ_FLAGS_KERNEL_SHIFT)
|
|
|
|
#define HCL_OBJ_FLAGS_KERNEL_SHIFT (HCL_OBJ_FLAGS_MOVED_BITS + HCL_OBJ_FLAGS_MOVED_SHIFT)
|
|
|
|
#define HCL_OBJ_FLAGS_MOVED_SHIFT (HCL_OBJ_FLAGS_NGC_BITS + HCL_OBJ_FLAGS_NGC_SHIFT)
|
|
|
|
#define HCL_OBJ_FLAGS_NGC_SHIFT (HCL_OBJ_FLAGS_TRAILER_BITS + HCL_OBJ_FLAGS_TRAILER_SHIFT)
|
|
|
|
#define HCL_OBJ_FLAGS_TRAILER_SHIFT (HCL_OBJ_FLAGS_SYNCODE_BITS + HCL_OBJ_FLAGS_SYNCODE_SHIFT)
|
|
|
|
#define HCL_OBJ_FLAGS_SYNCODE_SHIFT (HCL_OBJ_FLAGS_BRAND_BITS + HCL_OBJ_FLAGS_BRAND_SHIFT)
|
|
|
|
#define HCL_OBJ_FLAGS_BRAND_SHIFT (0)
|
|
|
|
|
|
|
|
#define HCL_OBJ_GET_FLAGS_TYPE(oop) HCL_GETBITS(hcl_oow_t, (oop)->_flags, HCL_OBJ_FLAGS_TYPE_SHIFT, HCL_OBJ_FLAGS_TYPE_BITS)
|
|
|
|
#define HCL_OBJ_GET_FLAGS_UNIT(oop) HCL_GETBITS(hcl_oow_t, (oop)->_flags, HCL_OBJ_FLAGS_UNIT_SHIFT, HCL_OBJ_FLAGS_UNIT_BITS)
|
|
|
|
#define HCL_OBJ_GET_FLAGS_EXTRA(oop) HCL_GETBITS(hcl_oow_t, (oop)->_flags, HCL_OBJ_FLAGS_EXTRA_SHIFT, HCL_OBJ_FLAGS_EXTRA_BITS)
|
|
|
|
#define HCL_OBJ_GET_FLAGS_KERNEL(oop) HCL_GETBITS(hcl_oow_t, (oop)->_flags, HCL_OBJ_FLAGS_KERNEL_SHIFT, HCL_OBJ_FLAGS_KERNEL_BITS)
|
|
|
|
#define HCL_OBJ_GET_FLAGS_MOVED(oop) HCL_GETBITS(hcl_oow_t, (oop)->_flags, HCL_OBJ_FLAGS_MOVED_SHIFT, HCL_OBJ_FLAGS_MOVED_BITS)
|
|
|
|
#define HCL_OBJ_GET_FLAGS_NGC(oop) HCL_GETBITS(hcl_oow_t, (oop)->_flags, HCL_OBJ_FLAGS_NGC_SHIFT, HCL_OBJ_FLAGS_NGC_BITS)
|
|
|
|
#define HCL_OBJ_GET_FLAGS_TRAILER(oop) HCL_GETBITS(hcl_oow_t, (oop)->_flags, HCL_OBJ_FLAGS_TRAILER_SHIFT, HCL_OBJ_FLAGS_TRAILER_BITS)
|
|
|
|
#define HCL_OBJ_GET_FLAGS_SYNCODE(oop) HCL_GETBITS(hcl_oow_t, (oop)->_flags, HCL_OBJ_FLAGS_SYNCODE_SHIFT, HCL_OBJ_FLAGS_SYNCODE_BITS)
|
|
|
|
#define HCL_OBJ_GET_FLAGS_BRAND(oop) HCL_GETBITS(hcl_oow_t, (oop)->_flags, HCL_OBJ_FLAGS_BRAND_SHIFT, HCL_OBJ_FLAGS_BRAND_BITS)
|
|
|
|
|
|
|
|
#define HCL_OBJ_SET_FLAGS_TYPE(oop,v) HCL_SETBITS(hcl_oow_t, (oop)->_flags, HCL_OBJ_FLAGS_TYPE_SHIFT, HCL_OBJ_FLAGS_TYPE_BITS, v)
|
|
|
|
#define HCL_OBJ_SET_FLAGS_UNIT(oop,v) HCL_SETBITS(hcl_oow_t, (oop)->_flags, HCL_OBJ_FLAGS_UNIT_SHIFT, HCL_OBJ_FLAGS_UNIT_BITS, v)
|
|
|
|
#define HCL_OBJ_SET_FLAGS_EXTRA(oop,v) HCL_SETBITS(hcl_oow_t, (oop)->_flags, HCL_OBJ_FLAGS_EXTRA_SHIFT, HCL_OBJ_FLAGS_EXTRA_BITS, v)
|
|
|
|
#define HCL_OBJ_SET_FLAGS_KERNEL(oop,v) HCL_SETBITS(hcl_oow_t, (oop)->_flags, HCL_OBJ_FLAGS_KERNEL_SHIFT, HCL_OBJ_FLAGS_KERNEL_BITS, v)
|
|
|
|
#define HCL_OBJ_SET_FLAGS_MOVED(oop,v) HCL_SETBITS(hcl_oow_t, (oop)->_flags, HCL_OBJ_FLAGS_MOVED_SHIFT, HCL_OBJ_FLAGS_MOVED_BITS, v)
|
|
|
|
#define HCL_OBJ_SET_FLAGS_NGC(oop,v) HCL_SETBITS(hcl_oow_t, (oop)->_flags, HCL_OBJ_FLAGS_NGC_SHIFT, HCL_OBJ_FLAGS_NGC_BITS, v)
|
|
|
|
#define HCL_OBJ_SET_FLAGS_TRAILER(oop,v) HCL_SETBITS(hcl_oow_t, (oop)->_flags, HCL_OBJ_FLAGS_TRAILER_SHIFT, HCL_OBJ_FLAGS_TRAILER_BITS, v)
|
|
|
|
#define HCL_OBJ_SET_FLAGS_SYNCODE(oop,v) HCL_SETBITS(hcl_oow_t, (oop)->_flags, HCL_OBJ_FLAGS_SYNCODE_SHIFT, HCL_OBJ_FLAGS_SYNCODE_BITS, v)
|
|
|
|
#define HCL_OBJ_SET_FLAGS_BRAND(oop,v) HCL_SETBITS(hcl_oow_t, (oop)->_flags, HCL_OBJ_FLAGS_BRAND_SHIFT, HCL_OBJ_FLAGS_BRAND_BITS, v)
|
|
|
|
|
|
|
|
#define HCL_OBJ_GET_SIZE(oop) ((oop)->_size)
|
2021-05-21 16:21:23 +00:00
|
|
|
#define HCL_OBJ_GET_CLASS(oop) ((oop)->_class)
|
2016-09-28 14:40:37 +00:00
|
|
|
|
|
|
|
#define HCL_OBJ_SET_SIZE(oop,v) ((oop)->_size = (v))
|
|
|
|
#define HCL_OBJ_SET_CLASS(oop,c) ((oop)->_class = (c))
|
|
|
|
|
|
|
|
/* [NOTE] this macro doesn't include the size of the trailer */
|
|
|
|
#define HCL_OBJ_BYTESOF(oop) ((HCL_OBJ_GET_SIZE(oop) + HCL_OBJ_GET_FLAGS_EXTRA(oop)) * HCL_OBJ_GET_FLAGS_UNIT(oop))
|
|
|
|
|
2018-08-02 17:09:32 +00:00
|
|
|
#define HCL_OBJ_IS_OOP_POINTER(oop) (HCL_OOP_IS_POINTER(oop) && (HCL_OBJ_GET_FLAGS_TYPE(oop) == HCL_OBJ_TYPE_OOP))
|
|
|
|
#define HCL_OBJ_IS_CHAR_POINTER(oop) (HCL_OOP_IS_POINTER(oop) && (HCL_OBJ_GET_FLAGS_TYPE(oop) == HCL_OBJ_TYPE_CHAR))
|
|
|
|
#define HCL_OBJ_IS_BYTE_POINTER(oop) (HCL_OOP_IS_POINTER(oop) && (HCL_OBJ_GET_FLAGS_TYPE(oop) == HCL_OBJ_TYPE_BYTE))
|
|
|
|
#define HCL_OBJ_IS_HALFWORD_POINTER(oop) (HCL_OOP_IS_POINTER(oop) && (HCL_OBJ_GET_FLAGS_TYPE(oop) == HCL_OBJ_TYPE_HALFWORD))
|
|
|
|
#define HCL_OBJ_IS_WORD_POINTER(oop) (HCL_OOP_IS_POINTER(oop) && (HCL_OBJ_GET_FLAGS_TYPE(oop) == HCL_OBJ_TYPE_WORD))
|
|
|
|
|
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
/* [NOTE] this macro doesn't check the range of the actual value.
|
2021-03-28 03:44:27 +00:00
|
|
|
* make sure that the value of each bit fields given falls within the
|
2016-09-28 14:40:37 +00:00
|
|
|
* possible range of the defined bits */
|
|
|
|
#define HCL_OBJ_MAKE_FLAGS(t,u,e,k,m,g,r,b) ( \
|
|
|
|
(((hcl_oow_t)(t)) << HCL_OBJ_FLAGS_TYPE_SHIFT) | \
|
|
|
|
(((hcl_oow_t)(u)) << HCL_OBJ_FLAGS_UNIT_SHIFT) | \
|
|
|
|
(((hcl_oow_t)(e)) << HCL_OBJ_FLAGS_EXTRA_SHIFT) | \
|
|
|
|
(((hcl_oow_t)(k)) << HCL_OBJ_FLAGS_KERNEL_SHIFT) | \
|
|
|
|
(((hcl_oow_t)(m)) << HCL_OBJ_FLAGS_MOVED_SHIFT) | \
|
|
|
|
(((hcl_oow_t)(g)) << HCL_OBJ_FLAGS_NGC_SHIFT) | \
|
|
|
|
(((hcl_oow_t)(r)) << HCL_OBJ_FLAGS_TRAILER_SHIFT) | \
|
|
|
|
(((hcl_oow_t)(b)) << HCL_OBJ_FLAGS_BRAND_SHIFT) \
|
|
|
|
)
|
|
|
|
|
|
|
|
#define HCL_OBJ_HEADER \
|
|
|
|
hcl_oow_t _flags; \
|
2021-05-21 16:21:23 +00:00
|
|
|
hcl_oow_t _size; \
|
|
|
|
hcl_oop_t _class
|
2016-09-28 14:40:37 +00:00
|
|
|
|
|
|
|
struct hcl_obj_t
|
|
|
|
{
|
|
|
|
HCL_OBJ_HEADER;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct hcl_obj_oop_t
|
|
|
|
{
|
|
|
|
HCL_OBJ_HEADER;
|
|
|
|
hcl_oop_t slot[1];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct hcl_obj_char_t
|
|
|
|
{
|
|
|
|
HCL_OBJ_HEADER;
|
|
|
|
hcl_ooch_t slot[1];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct hcl_obj_byte_t
|
|
|
|
{
|
|
|
|
HCL_OBJ_HEADER;
|
|
|
|
hcl_oob_t slot[1];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct hcl_obj_halfword_t
|
|
|
|
{
|
|
|
|
HCL_OBJ_HEADER;
|
|
|
|
hcl_oohw_t slot[1];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct hcl_obj_word_t
|
|
|
|
{
|
|
|
|
HCL_OBJ_HEADER;
|
|
|
|
hcl_oow_t slot[1];
|
|
|
|
};
|
|
|
|
|
2018-02-05 15:59:32 +00:00
|
|
|
#define HCL_OBJ_GET_OOP_SLOT(oop) (((hcl_oop_oop_t)(oop))->slot)
|
|
|
|
#define HCL_OBJ_GET_CHAR_SLOT(oop) (((hcl_oop_char_t)(oop))->slot)
|
|
|
|
#define HCL_OBJ_GET_BYTE_SLOT(oop) (((hcl_oop_byte_t)(oop))->slot)
|
|
|
|
#define HCL_OBJ_GET_HALFWORD_SLOT(oop) (((hcl_oop_halfword_t)(oop))->slot)
|
|
|
|
#define HCL_OBJ_GET_WORD_SLOT(oop) (((hcl_oop_word_t)(oop))->slot)
|
2019-08-13 07:15:12 +00:00
|
|
|
#define HCL_OBJ_GET_LIWORD_SLOT(oop) (((hcl_oop_liword_t)(oop))->slot)
|
|
|
|
|
|
|
|
#define HCL_OBJ_GET_OOP_PTR(oop,idx) (&(((hcl_oop_oop_t)(oop))->slot)[idx])
|
|
|
|
#define HCL_OBJ_GET_CHAR_PTR(oop,idx) (&(((hcl_oop_char_t)(oop))->slot)[idx])
|
|
|
|
#define HCL_OBJ_GET_BYTE_PTR(oop,idx) (&(((hcl_oop_byte_t)(oop))->slot)[idx])
|
|
|
|
#define HCL_OBJ_GET_HALFWORD_PTR(oop,idx) (&(((hcl_oop_halfword_t)(oop))->slot)[idx])
|
|
|
|
#define HCL_OBJ_GET_WORD_PTR(oop,idx) (&(((hcl_oop_word_t)(oop))->slot)[idx])
|
|
|
|
#define HCL_OBJ_GET_LIWORD_PTR(oop,idx) (&(((hcl_oop_liword_t)(oop))->slot)[idx])
|
|
|
|
|
|
|
|
#define HCL_OBJ_GET_OOP_VAL(oop,idx) ((((hcl_oop_oop_t)(oop))->slot)[idx])
|
|
|
|
#define HCL_OBJ_GET_CHAR_VAL(oop,idx) ((((hcl_oop_char_t)(oop))->slot)[idx])
|
|
|
|
#define HCL_OBJ_GET_BYTE_VAL(oop,idx) ((((hcl_oop_byte_t)(oop))->slot)[idx])
|
|
|
|
#define HCL_OBJ_GET_HALFWORD_VAL(oop,idx) ((((hcl_oop_halfword_t)(oop))->slot)[idx])
|
|
|
|
#define HCL_OBJ_GET_WORD_VAL(oop,idx) ((((hcl_oop_word_t)(oop))->slot)[idx])
|
|
|
|
#define HCL_OBJ_GET_LIWORD_VAL(oop,idx) ((((hcl_oop_liword_t)(oop))->slot)[idx])
|
|
|
|
|
2021-05-21 16:21:23 +00:00
|
|
|
#define HCL_OBJ_SET_OOP_VAL(oop,idx,val) ((((hcl_oop_oop_t)(oop))->slot)[idx] = (val))
|
2019-08-13 07:15:12 +00:00
|
|
|
#define HCL_OBJ_SET_CHAR_VAL(oop,idx,val) ((((hcl_oop_char_t)(oop))->slot)[idx] = (val))
|
|
|
|
#define HCL_OBJ_SET_BYTE_VAL(oop,idx,val) ((((hcl_oop_byte_t)(oop))->slot)[idx] = (val))
|
|
|
|
#define HCL_OBJ_SET_HALFWORD_VAL(oop,idx,val) ((((hcl_oop_halfword_t)(oop))->slot)[idx] = (val))
|
|
|
|
#define HCL_OBJ_SET_WORD_VAL(oop,idx,val) ((((hcl_oop_word_t)(oop))->slot)[idx] = (val))
|
|
|
|
#define HCL_OBJ_SET_LIWORD_VAL(oop,idx,val) ((((hcl_oop_liword_t)(oop))->slot)[idx] = (val))
|
2018-02-05 15:59:32 +00:00
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
typedef struct hcl_trailer_t hcl_trailer_t;
|
|
|
|
struct hcl_trailer_t
|
|
|
|
{
|
|
|
|
hcl_oow_t size;
|
|
|
|
hcl_oob_t slot[1];
|
|
|
|
};
|
|
|
|
|
2020-10-04 18:21:05 +00:00
|
|
|
#define HCL_OBJ_GET_TRAILER_BYTE(oop) ((hcl_oob_t*)&((hcl_oop_oop_t)oop)->slot[HCL_OBJ_GET_SIZE(oop) + 1])
|
|
|
|
#define HCL_OBJ_GET_TRAILER_SIZE(oop) ((hcl_oow_t)((hcl_oop_oop_t)oop)->slot[HCL_OBJ_GET_SIZE(oop)])
|
|
|
|
|
2021-02-03 14:50:51 +00:00
|
|
|
#define HCL_PRIM_NUM_WORDS 4
|
|
|
|
typedef struct hcl_prim_t hcl_prim_t;
|
|
|
|
typedef struct hcl_prim_t* hcl_oop_prim_t;
|
|
|
|
struct hcl_prim_t
|
|
|
|
{
|
|
|
|
HCL_OBJ_HEADER;
|
|
|
|
hcl_oow_t impl;
|
|
|
|
hcl_oow_t min_nargs;
|
|
|
|
hcl_oow_t max_nargs;
|
|
|
|
hcl_oow_t mod;
|
|
|
|
};
|
2020-10-04 18:21:05 +00:00
|
|
|
|
2018-02-12 16:51:38 +00:00
|
|
|
#define HCL_CONS_NAMED_INSTVARS 2
|
|
|
|
typedef struct hcl_cons_t hcl_cons_t;
|
|
|
|
typedef struct hcl_cons_t* hcl_oop_cons_t;
|
|
|
|
struct hcl_cons_t
|
|
|
|
{
|
|
|
|
HCL_OBJ_HEADER;
|
|
|
|
hcl_oop_t car;
|
|
|
|
hcl_oop_t cdr;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define HCL_DIC_NAMED_INSTVARS 2
|
|
|
|
typedef struct hcl_dic_t hcl_dic_t;
|
|
|
|
typedef struct hcl_dic_t* hcl_oop_dic_t;
|
|
|
|
struct hcl_dic_t
|
2016-09-28 14:40:37 +00:00
|
|
|
{
|
|
|
|
HCL_OBJ_HEADER;
|
|
|
|
hcl_oop_t tally; /* SmallInteger */
|
|
|
|
hcl_oop_oop_t bucket; /* Array */
|
|
|
|
};
|
|
|
|
|
2018-03-28 08:57:49 +00:00
|
|
|
#define HCL_FPDEC_NAMED_INSTVARS 2
|
|
|
|
typedef struct hcl_fpdec_t hcl_fpdec_t;
|
|
|
|
typedef struct hcl_fpdec_t* hcl_oop_fpdec_t;
|
|
|
|
struct hcl_fpdec_t
|
|
|
|
{
|
|
|
|
HCL_OBJ_HEADER;
|
|
|
|
hcl_oop_t value; /* smooi or bigint */
|
|
|
|
hcl_oop_t scale; /* smooi, positive */
|
|
|
|
};
|
|
|
|
|
2020-10-04 19:34:53 +00:00
|
|
|
/* the first byte after the main payload is the trailer size
|
|
|
|
* the code bytes are placed after the trailer size.
|
|
|
|
*
|
|
|
|
* code bytes -> ((hcl_oob_t*)&((hcl_oop_oop_t)m)->slot[HCL_OBJ_GET_SIZE(m) + 1]) or
|
|
|
|
* ((hcl_oob_t*)&((hcl_oop_function_t)m)->literal_frame[HCL_OBJ_GET_SIZE(m) + 1 - HCL_METHOD_NAMED_INSTVARS])
|
|
|
|
* size -> ((hcl_oow_t)((hcl_oop_oop_t)m)->slot[HCL_OBJ_GET_SIZE(m)])*/
|
|
|
|
#define HCL_FUNCTION_GET_CODE_BYTE(m) HCL_OBJ_GET_TRAILER_BYTE(m)
|
|
|
|
#define HCL_FUNCTION_GET_CODE_SIZE(m) HCL_OBJ_GET_TRAILER_SIZE(m)
|
|
|
|
|
2021-05-13 14:43:40 +00:00
|
|
|
#define HCL_FUNCTION_NAMED_INSTVARS 3 /* this excludes literal frames and byte codes */
|
2020-10-04 18:21:05 +00:00
|
|
|
typedef struct hcl_function_t hcl_function_t;
|
|
|
|
typedef struct hcl_function_t* hcl_oop_function_t;
|
2020-10-04 19:34:53 +00:00
|
|
|
|
2021-05-13 14:43:40 +00:00
|
|
|
#define HCL_BLOCK_NAMED_INSTVARS 3
|
2020-10-09 07:14:32 +00:00
|
|
|
typedef struct hcl_block_t hcl_block_t;
|
|
|
|
typedef struct hcl_block_t* hcl_oop_block_t;
|
|
|
|
|
2022-02-06 16:06:48 +00:00
|
|
|
#define HCL_CONTEXT_NAMED_INSTVARS 9
|
2020-10-04 19:34:53 +00:00
|
|
|
typedef struct hcl_context_t hcl_context_t;
|
|
|
|
typedef struct hcl_context_t* hcl_oop_context_t;
|
|
|
|
|
2021-05-03 15:31:19 +00:00
|
|
|
#define HCL_CALL_FLAG_VA (1 << 0)
|
|
|
|
|
2020-10-04 18:21:05 +00:00
|
|
|
struct hcl_function_t
|
|
|
|
{
|
|
|
|
HCL_OBJ_HEADER;
|
|
|
|
|
2022-03-17 13:22:17 +00:00
|
|
|
hcl_oop_t attr_mask; /* smooi */
|
2020-10-04 19:34:53 +00:00
|
|
|
hcl_oop_context_t home; /* home context. nil for the initial function */
|
2020-10-04 18:21:05 +00:00
|
|
|
|
2021-01-26 15:47:22 +00:00
|
|
|
hcl_oop_t dbgi; /* byte array containing debug information. nil if not available */
|
2021-01-26 10:10:18 +00:00
|
|
|
|
2020-10-04 18:21:05 +00:00
|
|
|
/* == variable indexed part == */
|
|
|
|
hcl_oop_t literal_frame[1]; /* it stores literals. it may not exist */
|
|
|
|
|
|
|
|
/* after the literal frame comes the actual byte code */
|
|
|
|
};
|
|
|
|
|
2020-10-09 07:14:32 +00:00
|
|
|
/* hcl_function_t copies the byte codes and literal frames into itself
|
2021-03-28 03:44:27 +00:00
|
|
|
* hlc_block_t contains minimal information(ip) for referening byte codes
|
2020-10-09 07:14:32 +00:00
|
|
|
* and literal frames available in home->origin.
|
|
|
|
*/
|
|
|
|
struct hcl_block_t
|
|
|
|
{
|
|
|
|
HCL_OBJ_HEADER;
|
2021-05-03 15:31:19 +00:00
|
|
|
|
2022-03-17 13:22:17 +00:00
|
|
|
hcl_oop_t attr_mask; /* smooi */
|
2021-05-05 14:37:01 +00:00
|
|
|
hcl_oop_context_t home; /* home context */
|
2022-02-27 19:35:47 +00:00
|
|
|
hcl_oop_t ip; /* smooi. instruction pointer where the byte code begins in home->base */
|
2020-10-09 07:14:32 +00:00
|
|
|
};
|
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
struct hcl_context_t
|
|
|
|
{
|
|
|
|
HCL_OBJ_HEADER;
|
|
|
|
|
2021-05-13 14:43:40 +00:00
|
|
|
/* SmallInteger */
|
|
|
|
hcl_oop_t req_nrets;
|
2021-02-24 16:57:26 +00:00
|
|
|
|
2021-05-05 14:37:01 +00:00
|
|
|
/* SmallInteger. */
|
2022-03-17 13:22:17 +00:00
|
|
|
hcl_oop_t attr_mask;
|
2021-05-05 14:37:01 +00:00
|
|
|
|
|
|
|
/* SmallInteger, instruction pointer */
|
|
|
|
hcl_oop_t ip;
|
|
|
|
|
2022-02-05 17:35:10 +00:00
|
|
|
/* the initial context is created with the initial function object in this field.
|
|
|
|
* a function-based context is created with the activating function object.
|
|
|
|
* a block-based context is created with the function object that the base field of
|
|
|
|
* the home context of the activating block context points to. */
|
|
|
|
hcl_oop_function_t base; /* function */
|
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
/* it points to the active context at the moment when
|
|
|
|
* this context object has been activated. a new method context
|
|
|
|
* is activated as a result of normal message sending and a block
|
|
|
|
* context is activated when it is sent 'value'. it's set to
|
|
|
|
* nil if a block context created hasn't received 'value'. */
|
2020-10-04 19:34:53 +00:00
|
|
|
hcl_oop_context_t sender; /* context or nil */
|
2016-09-28 14:40:37 +00:00
|
|
|
|
|
|
|
/* it points to the receiver of the message for a method context.
|
2020-10-09 07:14:32 +00:00
|
|
|
* a block context points to a block object and a function context
|
|
|
|
* points to a function object */
|
2022-02-03 00:57:36 +00:00
|
|
|
hcl_oop_t receiver;
|
2016-09-28 14:40:37 +00:00
|
|
|
|
2022-02-07 15:13:38 +00:00
|
|
|
/* it is set to itself for a method context.
|
2021-03-28 03:44:27 +00:00
|
|
|
* for a block context, it points to the active context at the
|
|
|
|
* moment the block context was created. that is, it points to
|
|
|
|
* a method context where the base block has been defined.
|
2020-10-04 18:21:05 +00:00
|
|
|
* an activated block context copies this field from the base block context. */
|
2022-02-05 17:35:10 +00:00
|
|
|
hcl_oop_context_t home; /* context or nil */
|
2016-09-28 14:40:37 +00:00
|
|
|
|
2022-02-07 15:13:38 +00:00
|
|
|
/* instance variable access instructions hold the index to a variable within
|
|
|
|
* the the containing class. If the class inherits from a superclass and the
|
|
|
|
* superclass chain contains instance variables, the actual index must be
|
|
|
|
* added with the number of instance variables in the superclass chain.
|
|
|
|
*
|
|
|
|
* for example, the following instruction accesses the instance variable slot
|
|
|
|
* at index 3. if the class of the instance has 4 instance variables in the
|
|
|
|
* superclass side, the method context activated has 4 in thie field.
|
|
|
|
* therefore, the instruction accesses the instance variable slot at index 7.
|
2022-02-17 12:40:22 +00:00
|
|
|
* push_ivar 3
|
|
|
|
* the debug output shows this instruction as "push_ivar 3; [4]"
|
2022-02-07 15:13:38 +00:00
|
|
|
*/
|
|
|
|
hcl_oop_t ivaroff;
|
2022-02-06 16:06:48 +00:00
|
|
|
|
2022-02-17 12:40:22 +00:00
|
|
|
/* method owner if this context is created of a message send. nil otherwise */
|
|
|
|
hcl_oop_t owner; /* class(hcl_oop_class_t) or nil */
|
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
/* variable indexed part */
|
2021-05-03 15:31:19 +00:00
|
|
|
hcl_oop_t slot[1]; /* arguments, return variables, local variables, other arguments, etc */
|
2016-09-28 14:40:37 +00:00
|
|
|
};
|
|
|
|
|
2021-06-25 15:19:11 +00:00
|
|
|
#define HCL_PROCESS_NAMED_INSTVARS 15
|
2016-09-28 14:40:37 +00:00
|
|
|
typedef struct hcl_process_t hcl_process_t;
|
|
|
|
typedef struct hcl_process_t* hcl_oop_process_t;
|
|
|
|
|
2020-10-15 12:57:05 +00:00
|
|
|
#define HCL_SEMAPHORE_NAMED_INSTVARS 11
|
2016-09-28 14:40:37 +00:00
|
|
|
typedef struct hcl_semaphore_t hcl_semaphore_t;
|
|
|
|
typedef struct hcl_semaphore_t* hcl_oop_semaphore_t;
|
|
|
|
|
2020-10-15 12:57:05 +00:00
|
|
|
#define HCL_SEMAPHORE_GROUP_NAMED_INSTVARS 8
|
|
|
|
typedef struct hcl_semaphore_group_t hcl_semaphore_group_t;
|
|
|
|
typedef struct hcl_semaphore_group_t* hcl_oop_semaphore_group_t;
|
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
struct hcl_process_t
|
|
|
|
{
|
|
|
|
HCL_OBJ_HEADER;
|
|
|
|
hcl_oop_context_t initial_context;
|
|
|
|
hcl_oop_context_t current_context;
|
|
|
|
|
2018-02-08 09:21:18 +00:00
|
|
|
hcl_oop_t id; /* SmallInteger */
|
2016-09-28 14:40:37 +00:00
|
|
|
hcl_oop_t state; /* SmallInteger */
|
2021-06-25 15:19:11 +00:00
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
hcl_oop_t sp; /* stack pointer. SmallInteger */
|
2021-06-25 15:19:11 +00:00
|
|
|
hcl_oop_t st; /* stack top */
|
|
|
|
|
2021-04-14 16:20:18 +00:00
|
|
|
hcl_oop_t exsp; /* exception stack pointer. SmallInteger */
|
2021-06-25 15:19:11 +00:00
|
|
|
hcl_oop_t exst; /* exception stack top */
|
|
|
|
|
|
|
|
hcl_oop_t clsp; /* class stack pointer */
|
|
|
|
hcl_oop_t clst; /* class stack top */
|
2016-09-28 14:40:37 +00:00
|
|
|
|
2020-10-15 12:57:05 +00:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
hcl_oop_process_t prev;
|
|
|
|
hcl_oop_process_t next;
|
|
|
|
} ps; /* links to use with the process scheduler */
|
2016-09-28 14:40:37 +00:00
|
|
|
|
2020-10-15 12:57:05 +00:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
hcl_oop_process_t prev;
|
|
|
|
hcl_oop_process_t next;
|
|
|
|
} sem_wait; /* links to use with a semaphore */
|
|
|
|
|
|
|
|
hcl_oop_t sem; /* nil, semaphore, or semaphore group */
|
2016-09-28 14:40:37 +00:00
|
|
|
|
|
|
|
/* == variable indexed part == */
|
|
|
|
hcl_oop_t slot[1]; /* process stack */
|
2021-04-14 16:20:18 +00:00
|
|
|
|
|
|
|
/* after the process stack comes the exception stack.
|
|
|
|
* the exception stack is composed of instruction pointers and some context values.
|
|
|
|
* the instruction pointers are OOPs of small integers. safe without GC.
|
|
|
|
* the context values must be referenced by the active call chain. GC doesn't need to scan this area.
|
|
|
|
* If this assumption is not correct, GC code must be modified.
|
|
|
|
* so the garbage collector is free to ignore the exception stack */
|
2016-09-28 14:40:37 +00:00
|
|
|
};
|
|
|
|
|
2020-10-15 12:57:05 +00:00
|
|
|
enum hcl_semaphore_subtype_t
|
|
|
|
{
|
|
|
|
HCL_SEMAPHORE_SUBTYPE_TIMED = 0,
|
|
|
|
HCL_SEMAPHORE_SUBTYPE_IO = 1
|
|
|
|
};
|
|
|
|
typedef enum hcl_semaphore_subtype_t hcl_semaphore_subtype_t;
|
|
|
|
|
|
|
|
enum hcl_semaphore_io_type_t
|
|
|
|
{
|
|
|
|
HCL_SEMAPHORE_IO_TYPE_INPUT = 0,
|
|
|
|
HCL_SEMAPHORE_IO_TYPE_OUTPUT = 1
|
|
|
|
};
|
|
|
|
typedef enum hcl_semaphore_io_type_t hcl_semaphore_io_type_t;
|
|
|
|
|
|
|
|
enum hcl_semaphore_io_mask_t
|
|
|
|
{
|
|
|
|
HCL_SEMAPHORE_IO_MASK_INPUT = (1 << 0),
|
|
|
|
HCL_SEMAPHORE_IO_MASK_OUTPUT = (1 << 1),
|
|
|
|
HCL_SEMAPHORE_IO_MASK_HANGUP = (1 << 2),
|
|
|
|
HCL_SEMAPHORE_IO_MASK_ERROR = (1 << 3)
|
|
|
|
};
|
|
|
|
typedef enum hcl_semaphore_io_mask_t hcl_semaphore_io_mask_t;
|
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
struct hcl_semaphore_t
|
|
|
|
{
|
|
|
|
HCL_OBJ_HEADER;
|
2020-10-15 12:57:05 +00:00
|
|
|
|
|
|
|
/* [IMPORTANT] make sure that the position of 'waiting' in hcl_semaphore_t
|
|
|
|
* must be exactly the same as its position in hcl_semaphore_group_t */
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
hcl_oop_process_t first;
|
|
|
|
hcl_oop_process_t last;
|
|
|
|
} waiting; /* list of processes waiting on this semaphore */
|
|
|
|
/* [END IMPORTANT] */
|
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
hcl_oop_t count; /* SmallInteger */
|
2020-10-15 12:57:05 +00:00
|
|
|
|
2021-03-28 03:44:27 +00:00
|
|
|
/* nil for normal. SmallInteger if associated with
|
2020-10-15 12:57:05 +00:00
|
|
|
* timer(HCL_SEMAPHORE_SUBTYPE_TIMED) or IO(HCL_SEMAPHORE_SUBTYPE_IO). */
|
2021-03-28 03:44:27 +00:00
|
|
|
hcl_oop_t subtype;
|
2020-10-15 12:57:05 +00:00
|
|
|
|
|
|
|
union
|
|
|
|
{
|
2021-03-28 03:44:27 +00:00
|
|
|
struct
|
2020-10-15 12:57:05 +00:00
|
|
|
{
|
|
|
|
hcl_oop_t index; /* index to the heap that stores timed semaphores */
|
|
|
|
hcl_oop_t ftime_sec; /* firing time */
|
|
|
|
hcl_oop_t ftime_nsec; /* firing time */
|
|
|
|
} timed;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
hcl_oop_t index; /* index to sem_io_tuple */
|
|
|
|
hcl_oop_t handle;
|
|
|
|
hcl_oop_t type; /* SmallInteger */
|
|
|
|
} io;
|
|
|
|
} u;
|
|
|
|
|
|
|
|
hcl_oop_t signal_action;
|
|
|
|
|
|
|
|
hcl_oop_semaphore_group_t group; /* nil or belonging semaphore group */
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
hcl_oop_semaphore_t prev;
|
|
|
|
hcl_oop_semaphore_t next;
|
|
|
|
} grm; /* group membership chain */
|
|
|
|
};
|
|
|
|
|
|
|
|
#define HCL_SEMAPHORE_GROUP_SEMS_UNSIG 0
|
|
|
|
#define HCL_SEMAPHORE_GROUP_SEMS_SIG 1
|
|
|
|
|
|
|
|
struct hcl_semaphore_group_t
|
|
|
|
{
|
|
|
|
HCL_OBJ_HEADER;
|
|
|
|
|
|
|
|
/* [IMPORTANT] make sure that the position of 'waiting' in hcl_semaphore_group_t
|
|
|
|
* must be exactly the same as its position in hcl_semaphore_t */
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
hcl_oop_process_t first;
|
2021-03-28 03:44:27 +00:00
|
|
|
hcl_oop_process_t last;
|
2020-10-15 12:57:05 +00:00
|
|
|
} waiting; /* list of processes waiting on this semaphore group */
|
|
|
|
/* [END IMPORTANT] */
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
hcl_oop_semaphore_t first;
|
|
|
|
hcl_oop_semaphore_t last;
|
|
|
|
} sems[2]; /* sems[0] - unsignaled semaphores, sems[1] - signaled semaphores */
|
|
|
|
|
|
|
|
hcl_oop_t sem_io_count; /* the number of io semaphores in the group */
|
|
|
|
hcl_oop_t sem_count; /* the total number of semaphores in the group */
|
2016-09-28 14:40:37 +00:00
|
|
|
};
|
|
|
|
|
2020-10-15 12:57:05 +00:00
|
|
|
#define HCL_PROCESS_SCHEDULER_NAMED_INSTVARS 8
|
2016-09-28 14:40:37 +00:00
|
|
|
typedef struct hcl_process_scheduler_t hcl_process_scheduler_t;
|
|
|
|
typedef struct hcl_process_scheduler_t* hcl_oop_process_scheduler_t;
|
|
|
|
struct hcl_process_scheduler_t
|
|
|
|
{
|
|
|
|
HCL_OBJ_HEADER;
|
2020-10-15 12:57:05 +00:00
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
hcl_oop_process_t active; /* pointer to an active process in the runnable process list */
|
2020-10-15 12:57:05 +00:00
|
|
|
hcl_oop_t total_count; /* smooi, total number of processes - runnable/running/suspended */
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
hcl_oop_t count; /* smooi, the number of runnable/running processes */
|
|
|
|
hcl_oop_process_t first; /* runnable process list */
|
|
|
|
hcl_oop_process_t last; /* runnable process list */
|
|
|
|
} runnable;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
hcl_oop_t count; /* smooi, the number of suspended processes */
|
|
|
|
hcl_oop_process_t first; /* suspended process list */
|
|
|
|
hcl_oop_process_t last; /* suspended process list */
|
|
|
|
} suspended;
|
2016-09-28 14:40:37 +00:00
|
|
|
};
|
|
|
|
|
2021-05-21 09:59:35 +00:00
|
|
|
|
2022-03-17 13:22:17 +00:00
|
|
|
#define HCL_CLASS_NAMED_INSTVARS 7
|
2021-05-21 09:59:35 +00:00
|
|
|
typedef struct hcl_class_t hcl_class_t;
|
|
|
|
typedef struct hcl_class_t* hcl_oop_class_t;
|
|
|
|
struct hcl_class_t
|
|
|
|
{
|
|
|
|
HCL_OBJ_HEADER;
|
|
|
|
|
2022-03-17 13:22:17 +00:00
|
|
|
hcl_oop_t mdic; /* method dictioanry. nil or a dictionary object */
|
2021-05-21 09:59:35 +00:00
|
|
|
|
|
|
|
hcl_oop_t superclass;
|
|
|
|
hcl_oop_t nivars; /* smooi. */
|
|
|
|
hcl_oop_t ncvars; /* smooi. */
|
2022-02-06 16:06:48 +00:00
|
|
|
hcl_oop_t nivars_super; /* smooi */
|
2021-05-21 09:59:35 +00:00
|
|
|
|
|
|
|
hcl_oop_char_t ivarnames;
|
|
|
|
hcl_oop_char_t cvarnames;
|
|
|
|
|
2022-01-25 07:54:11 +00:00
|
|
|
/* indexed part afterwards - not included in HCL_CLASS_NAMED_INSTVARS */
|
2021-05-21 09:59:35 +00:00
|
|
|
hcl_oop_t cvar[1]; /* class variables. */
|
|
|
|
};
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
struct hcl_class_t
|
|
|
|
{
|
|
|
|
HCL_OBJ_HEADER;
|
|
|
|
|
|
|
|
/* === the following five fields must be in sync with hcl_methowner_t === */
|
|
|
|
hcl_oop_char_t name; /* Symbol */
|
|
|
|
|
|
|
|
/* [0] - instance methods, MethodDictionary
|
|
|
|
* [1] - class methods, MethodDictionary */
|
|
|
|
hcl_oop_dic_t mthdic[2];
|
|
|
|
|
|
|
|
hcl_oop_nsdic_t nsup; /* pointer to the upper namespace */
|
|
|
|
hcl_oop_nsdic_t nsdic; /* dictionary used for namespacing - may be nil when there are no subitems underneath */
|
|
|
|
/* ===================================================================== */
|
|
|
|
|
|
|
|
hcl_oop_t spec; /* SmallInteger. instance specification */
|
|
|
|
hcl_oop_t selfspec; /* SmallInteger. specification of the class object itself */
|
|
|
|
|
|
|
|
hcl_oop_t superclass; /* Another class */
|
|
|
|
hcl_oop_t subclasses; /* Array of subclasses */
|
|
|
|
|
|
|
|
hcl_oop_t modname; /* Symbol if importing a module. nil if not. */
|
|
|
|
|
|
|
|
/* == NEVER CHANGE THIS ORDER OF 3 ITEMS BELOW == */
|
|
|
|
hcl_oop_char_t ivars; /* String */
|
|
|
|
hcl_oop_char_t civars; /* String */
|
|
|
|
hcl_oop_char_t cvars; /* String */
|
|
|
|
/* == NEVER CHANGE THE ORDER OF 3 ITEMS ABOVE == */
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
hcl_oop_char_t pooldics; /* String - pool dictionaries imported */
|
|
|
|
|
|
|
|
hcl_oop_t trsize; /* trailer size for new instances */
|
|
|
|
hcl_oop_t trgc; /* trailer gc callback */
|
|
|
|
|
|
|
|
/* [0] - initial values for instance variables of new instances
|
|
|
|
* [1] - initial values for class instance variables */
|
|
|
|
hcl_oop_t initv[2];
|
|
|
|
#endif
|
|
|
|
/* indexed part afterwards */
|
|
|
|
hcl_oop_t cvar[1]; /* class instance variables and class variables. */
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
/**
|
|
|
|
* The HCL_BRANDOF() macro return the brand of an object including a numeric
|
|
|
|
* object encoded into a pointer.
|
|
|
|
*/
|
2018-11-03 16:02:38 +00:00
|
|
|
#define HCL_BRANDOF(hcl,oop) \
|
2018-02-23 07:17:23 +00:00
|
|
|
(HCL_OOP_GET_TAG(oop)? ((hcl)->tagged_brands[HCL_OOP_GET_TAG(oop)]): HCL_OBJ_GET_FLAGS_BRAND(oop))
|
2016-09-28 14:40:37 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The HCL_BYTESOF() macro returns the size of the payload of
|
2021-03-28 03:44:27 +00:00
|
|
|
* an object in bytes. If the pointer given encodes a numeric value,
|
2016-09-28 14:40:37 +00:00
|
|
|
* it returns the size of #hcl_oow_t in bytes.
|
|
|
|
*/
|
|
|
|
#define HCL_BYTESOF(hcl,oop) \
|
|
|
|
(HCL_OOP_IS_NUMERIC(oop)? HCL_SIZEOF(hcl_oow_t): HCL_OBJ_BYTESOF(oop))
|
|
|
|
|
2018-02-23 07:17:23 +00:00
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
/**
|
|
|
|
* The HCL_ISTYPEOF() macro is a safe replacement for HCL_OBJ_GET_FLAGS_TYPE()
|
|
|
|
*/
|
|
|
|
#define HCL_ISTYPEOF(hcl,oop,type) \
|
|
|
|
(!HCL_OOP_IS_NUMERIC(oop) && HCL_OBJ_GET_FLAGS_TYPE(oop) == (type))
|
|
|
|
|
2019-03-06 01:50:46 +00:00
|
|
|
/* =========================================================================
|
|
|
|
* HEAP
|
|
|
|
* ========================================================================= */
|
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
typedef struct hcl_heap_t hcl_heap_t;
|
|
|
|
|
|
|
|
struct hcl_heap_t
|
|
|
|
{
|
|
|
|
hcl_uint8_t* base; /* start of a heap */
|
2020-12-31 17:48:47 +00:00
|
|
|
hcl_oow_t size;
|
|
|
|
hcl_xma_t* xma;
|
|
|
|
hcl_mmgr_t xmmgr;
|
2016-09-28 14:40:37 +00:00
|
|
|
};
|
|
|
|
|
2018-04-26 04:39:20 +00:00
|
|
|
/* =========================================================================
|
2019-03-06 01:50:46 +00:00
|
|
|
* VM LOGGING
|
2018-04-26 04:39:20 +00:00
|
|
|
* ========================================================================= */
|
|
|
|
|
|
|
|
enum hcl_log_mask_t
|
|
|
|
{
|
2021-07-24 15:28:59 +00:00
|
|
|
HCL_LOG_DEBUG = ((hcl_bitmask_t)1 << 0),
|
|
|
|
HCL_LOG_INFO = ((hcl_bitmask_t)1 << 1),
|
|
|
|
HCL_LOG_WARN = ((hcl_bitmask_t)1 << 2),
|
|
|
|
HCL_LOG_ERROR = ((hcl_bitmask_t)1 << 3),
|
|
|
|
HCL_LOG_FATAL = ((hcl_bitmask_t)1 << 4),
|
|
|
|
|
|
|
|
HCL_LOG_UNTYPED = ((hcl_bitmask_t)1 << 6), /* only to be used by HCL_DEBUGx() and HCL_INFOx() */
|
|
|
|
HCL_LOG_COMPILER = ((hcl_bitmask_t)1 << 7),
|
|
|
|
HCL_LOG_VM = ((hcl_bitmask_t)1 << 8),
|
|
|
|
HCL_LOG_MNEMONIC = ((hcl_bitmask_t)1 << 9), /* bytecode mnemonic */
|
|
|
|
HCL_LOG_GC = ((hcl_bitmask_t)1 << 10),
|
|
|
|
HCL_LOG_IC = ((hcl_bitmask_t)1 << 11), /* instruction cycle, fetch-decode-execute */
|
|
|
|
HCL_LOG_PRIMITIVE = ((hcl_bitmask_t)1 << 12),
|
|
|
|
|
|
|
|
HCL_LOG_APP = ((hcl_bitmask_t)1 << 13), /* hcl applications, set by hcl logging primitive */
|
|
|
|
HCL_LOG_APP_X1 = ((hcl_bitmask_t)1 << 14), /* more hcl applications, you can choose to use one of APP_X? randomly */
|
|
|
|
HCL_LOG_APP_X2 = ((hcl_bitmask_t)1 << 15),
|
|
|
|
HCL_LOG_APP_X3 = ((hcl_bitmask_t)1 << 16),
|
2018-04-26 04:39:20 +00:00
|
|
|
|
|
|
|
HCL_LOG_ALL_LEVELS = (HCL_LOG_DEBUG | HCL_LOG_INFO | HCL_LOG_WARN | HCL_LOG_ERROR | HCL_LOG_FATAL),
|
|
|
|
HCL_LOG_ALL_TYPES = (HCL_LOG_UNTYPED | HCL_LOG_COMPILER | HCL_LOG_VM | HCL_LOG_MNEMONIC | HCL_LOG_GC | HCL_LOG_IC | HCL_LOG_PRIMITIVE | HCL_LOG_APP | HCL_LOG_APP_X1 | HCL_LOG_APP_X2 | HCL_LOG_APP_X3),
|
|
|
|
|
|
|
|
|
2021-07-24 15:28:59 +00:00
|
|
|
HCL_LOG_STDOUT = ((hcl_bitmask_t)1 << 20), /* write log messages to stdout without timestamp. HCL_LOG_STDOUT wins over HCL_LOG_STDERR. */
|
|
|
|
HCL_LOG_STDERR = ((hcl_bitmask_t)1 << 21), /* write log messages to stderr without timestamp. */
|
2018-04-26 04:39:20 +00:00
|
|
|
|
2021-07-24 15:28:59 +00:00
|
|
|
HCL_LOG_PREFER_JSON = ((hcl_bitmask_t)1 << 30) /* write a object in the json format. don't set this explicitly. use %J instead */
|
2018-04-26 04:39:20 +00:00
|
|
|
};
|
|
|
|
typedef enum hcl_log_mask_t hcl_log_mask_t;
|
|
|
|
|
|
|
|
/* all bits must be set to get enabled */
|
|
|
|
#define HCL_LOG_ENABLED(hcl,mask) (((hcl)->option.log_mask & (mask)) == (mask))
|
|
|
|
|
|
|
|
#define HCL_LOG0(hcl,mask,fmt) do { if (HCL_LOG_ENABLED(hcl,mask)) hcl_logbfmt(hcl, mask, fmt); } while(0)
|
|
|
|
#define HCL_LOG1(hcl,mask,fmt,a1) do { if (HCL_LOG_ENABLED(hcl,mask)) hcl_logbfmt(hcl, mask, fmt, a1); } while(0)
|
|
|
|
#define HCL_LOG2(hcl,mask,fmt,a1,a2) do { if (HCL_LOG_ENABLED(hcl,mask)) hcl_logbfmt(hcl, mask, fmt, a1, a2); } while(0)
|
|
|
|
#define HCL_LOG3(hcl,mask,fmt,a1,a2,a3) do { if (HCL_LOG_ENABLED(hcl,mask)) hcl_logbfmt(hcl, mask, fmt, a1, a2, a3); } while(0)
|
|
|
|
#define HCL_LOG4(hcl,mask,fmt,a1,a2,a3,a4) do { if (HCL_LOG_ENABLED(hcl,mask)) hcl_logbfmt(hcl, mask, fmt, a1, a2, a3, a4); } while(0)
|
|
|
|
#define HCL_LOG5(hcl,mask,fmt,a1,a2,a3,a4,a5) do { if (HCL_LOG_ENABLED(hcl,mask)) hcl_logbfmt(hcl, mask, fmt, a1, a2, a3, a4, a5); } while(0)
|
|
|
|
#define HCL_LOG6(hcl,mask,fmt,a1,a2,a3,a4,a5,a6) do { if (HCL_LOG_ENABLED(hcl,mask)) hcl_logbfmt(hcl, mask, fmt, a1, a2, a3, a4, a5, a6); } while(0)
|
2021-05-05 17:37:26 +00:00
|
|
|
#define HCL_LOG7(hcl,mask,fmt,a1,a2,a3,a4,a5,a6,a7) do { if (HCL_LOG_ENABLED(hcl,mask)) hcl_logbfmt(hcl, mask, fmt, a1, a2, a3, a4, a5, a6, a7); } while(0)
|
2021-12-25 15:33:49 +00:00
|
|
|
#define HCL_LOG8(hcl,mask,fmt,a1,a2,a3,a4,a5,a6,a7,a8) do { if (HCL_LOG_ENABLED(hcl,mask)) hcl_logbfmt(hcl, mask, fmt, a1, a2, a3, a4, a5, a6, a7, a8); } while(0)
|
|
|
|
#define HCL_LOG9(hcl,mask,fmt,a1,a2,a3,a4,a5,a6,a7,a8,a9) do { if (HCL_LOG_ENABLED(hcl,mask)) hcl_logbfmt(hcl, mask, fmt, a1, a2, a3, a4, a5, a6, a7, a8, a9); } while(0)
|
2018-04-26 04:39:20 +00:00
|
|
|
|
|
|
|
#if defined(HCL_BUILD_RELEASE)
|
|
|
|
/* [NOTE]
|
|
|
|
* get rid of debugging message totally regardless of
|
|
|
|
* the log mask in the release build.
|
|
|
|
*/
|
|
|
|
# define HCL_DEBUG0(hcl,fmt)
|
|
|
|
# define HCL_DEBUG1(hcl,fmt,a1)
|
|
|
|
# define HCL_DEBUG2(hcl,fmt,a1,a2)
|
|
|
|
# define HCL_DEBUG3(hcl,fmt,a1,a2,a3)
|
|
|
|
# define HCL_DEBUG4(hcl,fmt,a1,a2,a3,a4)
|
|
|
|
# define HCL_DEBUG5(hcl,fmt,a1,a2,a3,a4,a5)
|
|
|
|
# define HCL_DEBUG6(hcl,fmt,a1,a2,a3,a4,a5,a6)
|
2021-05-21 16:21:23 +00:00
|
|
|
# define HCL_DEBUG7(hcl,fmt,a1,a2,a3,a4,a5,a6,a7)
|
2021-12-25 15:33:49 +00:00
|
|
|
# define HCL_DEBUG8(hcl,fmt,a1,a2,a3,a4,a5,a6,a7,a8)
|
|
|
|
# define HCL_DEBUG9(hcl,fmt,a1,a2,a3,a4,a5,a6,a7,a8,a9)
|
2018-04-26 04:39:20 +00:00
|
|
|
#else
|
|
|
|
# define HCL_DEBUG0(hcl,fmt) HCL_LOG0(hcl, HCL_LOG_DEBUG | HCL_LOG_UNTYPED, fmt)
|
|
|
|
# define HCL_DEBUG1(hcl,fmt,a1) HCL_LOG1(hcl, HCL_LOG_DEBUG | HCL_LOG_UNTYPED, fmt, a1)
|
|
|
|
# define HCL_DEBUG2(hcl,fmt,a1,a2) HCL_LOG2(hcl, HCL_LOG_DEBUG | HCL_LOG_UNTYPED, fmt, a1, a2)
|
|
|
|
# define HCL_DEBUG3(hcl,fmt,a1,a2,a3) HCL_LOG3(hcl, HCL_LOG_DEBUG | HCL_LOG_UNTYPED, fmt, a1, a2, a3)
|
|
|
|
# define HCL_DEBUG4(hcl,fmt,a1,a2,a3,a4) HCL_LOG4(hcl, HCL_LOG_DEBUG | HCL_LOG_UNTYPED, fmt, a1, a2, a3, a4)
|
|
|
|
# define HCL_DEBUG5(hcl,fmt,a1,a2,a3,a4,a5) HCL_LOG5(hcl, HCL_LOG_DEBUG | HCL_LOG_UNTYPED, fmt, a1, a2, a3, a4, a5)
|
|
|
|
# define HCL_DEBUG6(hcl,fmt,a1,a2,a3,a4,a5,a6) HCL_LOG6(hcl, HCL_LOG_DEBUG | HCL_LOG_UNTYPED, fmt, a1, a2, a3, a4, a5, a6)
|
2021-12-25 15:33:49 +00:00
|
|
|
# define HCL_DEBUG7(hcl,fmt,a1,a2,a3,a4,a5,a6,a7) HCL_LOG7(hcl, HCL_LOG_DEBUG | HCL_LOG_UNTYPED, fmt, a1, a2, a3, a4, a5, a6, a7)
|
|
|
|
# define HCL_DEBUG8(hcl,fmt,a1,a2,a3,a4,a5,a6,a7,a8) HCL_LOG8(hcl, HCL_LOG_DEBUG | HCL_LOG_UNTYPED, fmt, a1, a2, a3, a4, a5, a6, a7, a8)
|
|
|
|
# define HCL_DEBUG9(hcl,fmt,a1,a2,a3,a4,a5,a6,a7,a8,a9) HCL_LOG9(hcl, HCL_LOG_DEBUG | HCL_LOG_UNTYPED, fmt, a1, a2, a3, a4, a5, a6, a7, a8, a9)
|
2018-04-26 04:39:20 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define HCL_INFO0(hcl,fmt) HCL_LOG0(hcl, HCL_LOG_INFO | HCL_LOG_UNTYPED, fmt)
|
|
|
|
#define HCL_INFO1(hcl,fmt,a1) HCL_LOG1(hcl, HCL_LOG_INFO | HCL_LOG_UNTYPED, fmt, a1)
|
|
|
|
#define HCL_INFO2(hcl,fmt,a1,a2) HCL_LOG2(hcl, HCL_LOG_INFO | HCL_LOG_UNTYPED, fmt, a1, a2)
|
|
|
|
#define HCL_INFO3(hcl,fmt,a1,a2,a3) HCL_LOG3(hcl, HCL_LOG_INFO | HCL_LOG_UNTYPED, fmt, a1, a2, a3)
|
|
|
|
#define HCL_INFO4(hcl,fmt,a1,a2,a3,a4) HCL_LOG4(hcl, HCL_LOG_INFO | HCL_LOG_UNTYPED, fmt, a1, a2, a3, a4)
|
|
|
|
#define HCL_INFO5(hcl,fmt,a1,a2,a3,a4,a5) HCL_LOG5(hcl, HCL_LOG_INFO | HCL_LOG_UNTYPED, fmt, a1, a2, a3, a4, a5)
|
|
|
|
#define HCL_INFO6(hcl,fmt,a1,a2,a3,a4,a5,a6) HCL_LOG6(hcl, HCL_LOG_INFO | HCL_LOG_UNTYPED, fmt, a1, a2, a3, a4, a5, a6)
|
2021-12-25 15:33:49 +00:00
|
|
|
#define HCL_INFO7(hcl,fmt,a1,a2,a3,a4,a5,a6,a7) HCL_LOG7(hcl, HCL_LOG_INFO | HCL_LOG_UNTYPED, fmt, a1, a2, a3, a4, a5, a6, a7)
|
|
|
|
#define HCL_INFO8(hcl,fmt,a1,a2,a3,a4,a5,a6,a7,a8) HCL_LOG8(hcl, HCL_LOG_INFO | HCL_LOG_UNTYPED, fmt, a1, a2, a3, a4, a5, a6, a7, a8)
|
|
|
|
#define HCL_INFO9(hcl,fmt,a1,a2,a3,a4,a5,a6,a7,a8,a9) HCL_LOG9(hcl, HCL_LOG_INFO | HCL_LOG_UNTYPED, fmt, a1, a2, a3, a4, a5, a6, a7, a8, a9)
|
2018-04-26 04:39:20 +00:00
|
|
|
|
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
/* =========================================================================
|
|
|
|
* VIRTUAL MACHINE PRIMITIVES
|
|
|
|
* ========================================================================= */
|
2018-03-01 14:47:12 +00:00
|
|
|
|
2018-03-28 08:57:49 +00:00
|
|
|
typedef void* (*hcl_alloc_heap_t) (
|
|
|
|
hcl_t* hcl,
|
2021-02-09 14:54:54 +00:00
|
|
|
hcl_oow_t* size /* [IN] requested size, [OUT] allocated size */
|
2018-03-28 08:57:49 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
typedef void (*hcl_free_heap_t) (
|
|
|
|
hcl_t* hcl,
|
|
|
|
void* ptr
|
|
|
|
);
|
2018-03-01 14:47:12 +00:00
|
|
|
|
2018-03-28 08:57:49 +00:00
|
|
|
typedef void (*hcl_log_write_t) (
|
|
|
|
hcl_t* hcl,
|
2018-04-26 04:39:20 +00:00
|
|
|
hcl_bitmask_t mask,
|
2018-03-28 08:57:49 +00:00
|
|
|
const hcl_ooch_t* msg,
|
|
|
|
hcl_oow_t len
|
|
|
|
);
|
|
|
|
|
2018-11-02 14:15:28 +00:00
|
|
|
typedef hcl_errnum_t (*hcl_syserrstrb_t) (
|
2018-03-28 08:57:49 +00:00
|
|
|
hcl_t* hcl,
|
2018-11-02 14:15:28 +00:00
|
|
|
int syserr_type,
|
|
|
|
int syserr_code,
|
2018-03-28 08:57:49 +00:00
|
|
|
hcl_bch_t* buf,
|
|
|
|
hcl_oow_t len
|
|
|
|
);
|
|
|
|
|
2018-11-02 14:15:28 +00:00
|
|
|
typedef hcl_errnum_t (*hcl_syserrstru_t) (
|
2018-03-28 08:57:49 +00:00
|
|
|
hcl_t* hcl,
|
2018-11-02 14:15:28 +00:00
|
|
|
int syserr_type,
|
|
|
|
int syserr_code,
|
2018-03-28 08:57:49 +00:00
|
|
|
hcl_uch_t* buf,
|
|
|
|
hcl_oow_t len
|
|
|
|
);
|
2018-03-01 14:47:12 +00:00
|
|
|
|
2018-11-03 14:05:37 +00:00
|
|
|
typedef void (*hcl_assertfail_t) (
|
|
|
|
hcl_t* hcl,
|
|
|
|
const hcl_bch_t* expr,
|
|
|
|
const hcl_bch_t* file,
|
|
|
|
hcl_oow_t line
|
|
|
|
);
|
|
|
|
|
2018-04-12 02:50:37 +00:00
|
|
|
enum hcl_vmprim_dlopen_flag_t
|
2018-02-09 03:48:30 +00:00
|
|
|
{
|
2018-04-12 02:50:37 +00:00
|
|
|
HCL_VMPRIM_DLOPEN_PFMOD = (1 << 0)
|
2018-02-09 03:48:30 +00:00
|
|
|
};
|
2018-04-12 02:50:37 +00:00
|
|
|
typedef enum hcl_vmprim_dlopen_flag_t hcl_vmprim_dlopen_flag_t;
|
2016-09-28 14:40:37 +00:00
|
|
|
|
2018-11-03 15:57:14 +00:00
|
|
|
typedef void (*hcl_vmprim_dlstartup_t) (
|
|
|
|
hcl_t* hcl
|
|
|
|
);
|
|
|
|
|
|
|
|
typedef void (*hcl_vmprim_dlcleanup_t) (
|
|
|
|
hcl_t* hcl
|
|
|
|
);
|
|
|
|
|
2018-03-28 08:57:49 +00:00
|
|
|
typedef void* (*hcl_vmprim_dlopen_t) (
|
|
|
|
hcl_t* hcl,
|
|
|
|
const hcl_ooch_t* name,
|
|
|
|
int flags
|
|
|
|
);
|
|
|
|
|
|
|
|
typedef void (*hcl_vmprim_dlclose_t) (
|
|
|
|
hcl_t* hcl,
|
|
|
|
void* handle
|
|
|
|
);
|
|
|
|
|
|
|
|
typedef void* (*hcl_vmprim_dlgetsym_t) (
|
|
|
|
hcl_t* hcl,
|
|
|
|
void* handle,
|
|
|
|
const hcl_ooch_t* name
|
|
|
|
);
|
|
|
|
|
|
|
|
typedef void (*hcl_vmprim_gettime_t) (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_ntime_t* now
|
|
|
|
);
|
2018-02-05 10:43:25 +00:00
|
|
|
|
2020-10-15 12:57:05 +00:00
|
|
|
typedef int (*hcl_vmprim_muxadd_t) (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_ooi_t io_handle,
|
|
|
|
hcl_ooi_t masks
|
|
|
|
);
|
|
|
|
|
|
|
|
typedef int (*hcl_vmprim_muxmod_t) (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_ooi_t io_handle,
|
|
|
|
hcl_ooi_t masks
|
|
|
|
);
|
|
|
|
|
|
|
|
typedef int (*hcl_vmprim_muxdel_t) (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_ooi_t io_handle
|
|
|
|
);
|
|
|
|
|
|
|
|
typedef void (*hcl_vmprim_muxwait_cb_t) (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_ooi_t io_handle,
|
|
|
|
hcl_ooi_t masks
|
|
|
|
);
|
|
|
|
|
|
|
|
typedef void (*hcl_vmprim_muxwait_t) (
|
|
|
|
hcl_t* hcl,
|
|
|
|
const hcl_ntime_t* duration,
|
|
|
|
hcl_vmprim_muxwait_cb_t muxwcb
|
|
|
|
);
|
|
|
|
|
|
|
|
typedef int (*hcl_vmprim_sleep_t) (
|
2018-03-28 08:57:49 +00:00
|
|
|
hcl_t* hcl,
|
2018-11-03 15:57:14 +00:00
|
|
|
const hcl_ntime_t* duration
|
|
|
|
);
|
2018-02-08 14:40:56 +00:00
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
struct hcl_vmprim_t
|
|
|
|
{
|
2018-03-01 14:47:12 +00:00
|
|
|
/* The alloc_heap callback function is called very earlier
|
|
|
|
* before hcl is fully initialized. so few features are availble
|
|
|
|
* in this callback function. If it's not provided, the default
|
|
|
|
* implementation is used. */
|
2018-11-03 15:57:14 +00:00
|
|
|
hcl_alloc_heap_t alloc_heap; /* optional */
|
2018-03-01 14:47:12 +00:00
|
|
|
|
|
|
|
/* If you customize the heap allocator by providing the alloc_heap
|
|
|
|
* callback, you should implement the heap freer. otherwise the default
|
2021-03-28 03:44:27 +00:00
|
|
|
* implementation doesn't know how to free the heap allocated by
|
2018-03-01 14:47:12 +00:00
|
|
|
* the allocator callback. */
|
2018-11-03 15:57:14 +00:00
|
|
|
hcl_free_heap_t free_heap; /* optional */
|
2018-02-08 14:40:56 +00:00
|
|
|
|
2018-11-03 15:57:14 +00:00
|
|
|
hcl_log_write_t log_write; /* required */
|
|
|
|
hcl_syserrstrb_t syserrstrb; /* one of syserrstrb or syserrstru required */
|
|
|
|
hcl_syserrstru_t syserrstru;
|
|
|
|
hcl_assertfail_t assertfail;
|
2018-02-08 14:40:56 +00:00
|
|
|
|
2018-11-03 15:57:14 +00:00
|
|
|
hcl_vmprim_dlstartup_t dl_startup; /* optional */
|
|
|
|
hcl_vmprim_dlcleanup_t dl_cleanup; /* optional */
|
|
|
|
hcl_vmprim_dlopen_t dl_open; /* required */
|
|
|
|
hcl_vmprim_dlclose_t dl_close; /* required */
|
|
|
|
hcl_vmprim_dlgetsym_t dl_getsym; /* requried */
|
2018-02-08 14:40:56 +00:00
|
|
|
|
2020-10-15 12:57:05 +00:00
|
|
|
hcl_vmprim_gettime_t vm_gettime; /* required */
|
|
|
|
hcl_vmprim_muxadd_t vm_muxadd;
|
|
|
|
hcl_vmprim_muxdel_t vm_muxdel;
|
|
|
|
hcl_vmprim_muxmod_t vm_muxmod;
|
|
|
|
hcl_vmprim_muxwait_t vm_muxwait;
|
|
|
|
hcl_vmprim_sleep_t vm_sleep; /* required */
|
2016-09-28 14:40:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct hcl_vmprim_t hcl_vmprim_t;
|
|
|
|
|
|
|
|
/* =========================================================================
|
|
|
|
* IO MANIPULATION
|
|
|
|
* ========================================================================= */
|
|
|
|
|
|
|
|
enum hcl_iocmd_t
|
|
|
|
{
|
|
|
|
HCL_IO_OPEN,
|
|
|
|
HCL_IO_CLOSE,
|
|
|
|
HCL_IO_READ,
|
2019-04-17 05:37:56 +00:00
|
|
|
HCL_IO_WRITE,
|
|
|
|
HCL_IO_FLUSH
|
2016-09-28 14:40:37 +00:00
|
|
|
};
|
|
|
|
typedef enum hcl_iocmd_t hcl_iocmd_t;
|
|
|
|
|
|
|
|
struct hcl_ioloc_t
|
|
|
|
{
|
2018-04-12 02:50:37 +00:00
|
|
|
hcl_oow_t line; /**< line */
|
|
|
|
hcl_oow_t colm; /**< column */
|
2016-09-28 14:40:37 +00:00
|
|
|
const hcl_ooch_t* file; /**< file specified in #include */
|
|
|
|
};
|
|
|
|
typedef struct hcl_ioloc_t hcl_ioloc_t;
|
|
|
|
|
|
|
|
struct hcl_iolxc_t
|
|
|
|
{
|
|
|
|
hcl_ooci_t c; /**< character */
|
|
|
|
hcl_ioloc_t l; /**< location */
|
|
|
|
};
|
|
|
|
typedef struct hcl_iolxc_t hcl_iolxc_t;
|
|
|
|
|
|
|
|
typedef struct hcl_ioinarg_t hcl_ioinarg_t;
|
|
|
|
struct hcl_ioinarg_t
|
|
|
|
{
|
2021-03-28 03:44:27 +00:00
|
|
|
/**
|
2016-09-28 14:40:37 +00:00
|
|
|
* [IN] I/O object name.
|
|
|
|
* It is #HCL_NULL for the main stream and points to a non-NULL string
|
|
|
|
* for an included stream.
|
|
|
|
*/
|
2021-03-28 03:44:27 +00:00
|
|
|
const hcl_ooch_t* name;
|
2016-09-28 14:40:37 +00:00
|
|
|
|
2021-03-28 03:44:27 +00:00
|
|
|
/**
|
|
|
|
* [OUT] I/O handle set by a handler.
|
2016-09-28 14:40:37 +00:00
|
|
|
* The source stream handler can set this field when it opens a stream.
|
|
|
|
* All subsequent operations on the stream see this field as set
|
|
|
|
* during opening.
|
|
|
|
*/
|
|
|
|
void* handle;
|
|
|
|
|
|
|
|
/**
|
2018-03-09 05:05:09 +00:00
|
|
|
* [OUT] place data here for #HCL_IO_READ
|
2016-09-28 14:40:37 +00:00
|
|
|
*/
|
2021-01-30 16:13:27 +00:00
|
|
|
hcl_ooch_t buf[2048]; /* TODO: resize this if necessary */
|
2018-03-09 05:05:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* [OUT] place the number of characters read here for #HCL_IO_READ
|
|
|
|
*/
|
|
|
|
hcl_oow_t xlen;
|
2016-09-28 14:40:37 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* [IN] points to the data of the includer. It is #HCL_NULL for the
|
|
|
|
* main stream.
|
|
|
|
*/
|
|
|
|
hcl_ioinarg_t* includer;
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------------*/
|
|
|
|
/*----------- from here down, internal use only -------------------*/
|
|
|
|
struct
|
|
|
|
{
|
2018-03-09 05:05:09 +00:00
|
|
|
hcl_oow_t pos;
|
|
|
|
hcl_oow_t len;
|
2016-09-28 14:40:37 +00:00
|
|
|
} b;
|
|
|
|
|
2018-04-12 02:50:37 +00:00
|
|
|
hcl_oow_t line;
|
|
|
|
hcl_oow_t colm;
|
2016-09-28 14:40:37 +00:00
|
|
|
hcl_ooci_t nl;
|
|
|
|
|
|
|
|
hcl_iolxc_t lxc;
|
|
|
|
/*-----------------------------------------------------------------*/
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct hcl_iooutarg_t hcl_iooutarg_t;
|
|
|
|
struct hcl_iooutarg_t
|
|
|
|
{
|
2021-03-28 03:44:27 +00:00
|
|
|
/**
|
|
|
|
* [OUT] I/O handle set by a handler.
|
2018-03-09 05:05:09 +00:00
|
|
|
* The source stream handler can set this field when it opens a stream.
|
|
|
|
* All subsequent operations on the stream see this field as set
|
|
|
|
* during opening.
|
|
|
|
*/
|
2016-09-28 14:40:37 +00:00
|
|
|
void* handle;
|
2018-03-09 05:05:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* [IN] the pointer to the beginning of the character string
|
|
|
|
* to write
|
|
|
|
*/
|
2016-09-28 14:40:37 +00:00
|
|
|
hcl_ooch_t* ptr;
|
2018-03-09 05:05:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* [IN] total number of characters to write
|
|
|
|
*/
|
2021-03-28 03:44:27 +00:00
|
|
|
hcl_oow_t len;
|
2018-03-09 05:05:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* [OUT] place the number of characters written here for HCL_IO_WRITE
|
|
|
|
*/
|
|
|
|
hcl_oow_t xlen;
|
2016-09-28 14:40:37 +00:00
|
|
|
};
|
|
|
|
|
2021-03-28 03:44:27 +00:00
|
|
|
/**
|
2018-03-09 05:05:09 +00:00
|
|
|
* The hcl_ioimpl_t type defines a callback function prototype
|
|
|
|
* for I/O operations.
|
|
|
|
*/
|
|
|
|
typedef int (*hcl_ioimpl_t) (
|
2016-09-28 14:40:37 +00:00
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_iocmd_t cmd,
|
2021-03-28 03:44:27 +00:00
|
|
|
void* arg /* hcl_ioinarg_t* or hcl_iooutarg_t* */
|
2016-09-28 14:40:37 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
/* =========================================================================
|
|
|
|
* CALLBACK MANIPULATION
|
|
|
|
* ========================================================================= */
|
2018-03-10 17:53:44 +00:00
|
|
|
|
|
|
|
|
2021-02-07 17:57:35 +00:00
|
|
|
typedef void (*hcl_cb_opt_set_t) (hcl_t* hcl, hcl_option_t id, const void* val);
|
2018-03-10 17:53:44 +00:00
|
|
|
typedef void (*hcl_cb_fini_t) (hcl_t* hcl);
|
|
|
|
typedef void (*hcl_cb_gc_t) (hcl_t* hcl);
|
|
|
|
typedef int (*hcl_cb_vm_startup_t) (hcl_t* hcl);
|
|
|
|
typedef void (*hcl_cb_vm_cleanup_t) (hcl_t* hcl);
|
2018-03-11 11:16:28 +00:00
|
|
|
typedef void (*hcl_cb_vm_checkbc_t) (hcl_t* hcl, hcl_oob_t bcode);
|
2016-09-28 14:40:37 +00:00
|
|
|
|
|
|
|
typedef struct hcl_cb_t hcl_cb_t;
|
|
|
|
struct hcl_cb_t
|
|
|
|
{
|
2021-02-07 17:57:35 +00:00
|
|
|
hcl_cb_opt_set_t opt_set;
|
2018-03-10 17:53:44 +00:00
|
|
|
hcl_cb_gc_t gc;
|
|
|
|
hcl_cb_fini_t fini;
|
2018-04-10 09:17:00 +00:00
|
|
|
|
2018-03-10 17:53:44 +00:00
|
|
|
hcl_cb_vm_startup_t vm_startup;
|
|
|
|
hcl_cb_vm_cleanup_t vm_cleanup;
|
2018-03-11 11:16:28 +00:00
|
|
|
hcl_cb_vm_checkbc_t vm_checkbc;
|
2016-09-28 14:40:37 +00:00
|
|
|
|
|
|
|
/* private below */
|
|
|
|
hcl_cb_t* prev;
|
|
|
|
hcl_cb_t* next;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* =========================================================================
|
2018-02-09 04:24:50 +00:00
|
|
|
* PRIMITIVE FUNCTIONS
|
2016-09-28 14:40:37 +00:00
|
|
|
* ========================================================================= */
|
2018-02-08 07:40:27 +00:00
|
|
|
enum hcl_pfrc_t
|
|
|
|
{
|
|
|
|
HCL_PF_FAILURE = -1,
|
|
|
|
HCL_PF_SUCCESS = 0
|
|
|
|
};
|
|
|
|
typedef enum hcl_pfrc_t hcl_pfrc_t;
|
|
|
|
|
2018-02-28 04:52:01 +00:00
|
|
|
typedef hcl_pfrc_t (*hcl_pfimpl_t) (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_mod_t* mod,
|
2018-03-08 14:18:30 +00:00
|
|
|
hcl_ooi_t nargs
|
|
|
|
);
|
2016-09-28 14:40:37 +00:00
|
|
|
|
2018-03-08 14:18:30 +00:00
|
|
|
enum hcl_pfbase_type_t
|
|
|
|
{
|
|
|
|
HCL_PFBASE_FUNC = 0,
|
|
|
|
HCL_PFBASE_VAR = 1,
|
|
|
|
HCL_PFBASE_CONST = 2
|
|
|
|
};
|
|
|
|
typedef enum hcl_pfbase_type_t hcl_pfbase_type_t;
|
2016-09-28 14:40:37 +00:00
|
|
|
|
2018-02-09 04:24:50 +00:00
|
|
|
typedef struct hcl_pfbase_t hcl_pfbase_t;
|
|
|
|
struct hcl_pfbase_t
|
|
|
|
{
|
2018-03-08 14:18:30 +00:00
|
|
|
hcl_pfbase_type_t type;
|
|
|
|
hcl_pfimpl_t handler;
|
|
|
|
hcl_oow_t minargs;
|
|
|
|
hcl_oow_t maxargs;
|
2018-02-09 04:24:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct hcl_pfinfo_t hcl_pfinfo_t;
|
|
|
|
struct hcl_pfinfo_t
|
|
|
|
{
|
|
|
|
hcl_ooch_t mthname[32];
|
|
|
|
hcl_pfbase_t base;
|
|
|
|
};
|
|
|
|
/* =========================================================================
|
|
|
|
* PRIMITIVE MODULE MANIPULATION
|
|
|
|
* ========================================================================= */
|
|
|
|
#define HCL_MOD_NAME_LEN_MAX 120
|
|
|
|
|
|
|
|
typedef int (*hcl_mod_load_t) (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_mod_t* mod
|
2016-09-28 14:40:37 +00:00
|
|
|
);
|
|
|
|
|
2018-02-09 04:24:50 +00:00
|
|
|
typedef hcl_pfbase_t* (*hcl_mod_query_t) (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_mod_t* mod,
|
|
|
|
const hcl_ooch_t* name,
|
|
|
|
hcl_oow_t namelen
|
|
|
|
);
|
|
|
|
|
|
|
|
typedef void (*hcl_mod_unload_t) (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_mod_t* mod
|
|
|
|
);
|
|
|
|
|
|
|
|
typedef void (*hcl_mod_gc_t) (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_mod_t* mod
|
2016-09-28 14:40:37 +00:00
|
|
|
);
|
|
|
|
|
2018-02-09 04:24:50 +00:00
|
|
|
struct hcl_mod_t
|
2016-09-28 14:40:37 +00:00
|
|
|
{
|
2018-02-09 04:24:50 +00:00
|
|
|
/* input */
|
2018-04-09 15:54:54 +00:00
|
|
|
hcl_ooch_t name[HCL_MOD_NAME_LEN_MAX + 1];
|
|
|
|
void* inctx;
|
2018-02-09 04:24:50 +00:00
|
|
|
|
2018-04-09 15:54:54 +00:00
|
|
|
/* user-defined data - the module intializer shoudl fill in the following fields. */
|
2018-02-09 04:24:50 +00:00
|
|
|
hcl_mod_query_t query;
|
|
|
|
hcl_mod_unload_t unload;
|
|
|
|
hcl_mod_gc_t gc;
|
|
|
|
void* ctx;
|
2016-09-28 14:40:37 +00:00
|
|
|
};
|
|
|
|
|
2021-03-28 03:44:27 +00:00
|
|
|
struct hcl_mod_data_t
|
2016-09-28 14:40:37 +00:00
|
|
|
{
|
2018-02-09 04:24:50 +00:00
|
|
|
void* handle;
|
|
|
|
hcl_rbt_pair_t* pair; /* internal backreference to hcl->modtab */
|
|
|
|
hcl_mod_t mod;
|
2016-09-28 14:40:37 +00:00
|
|
|
};
|
2018-02-09 04:24:50 +00:00
|
|
|
typedef struct hcl_mod_data_t hcl_mod_data_t;
|
2016-09-28 14:40:37 +00:00
|
|
|
|
2020-10-15 12:57:05 +00:00
|
|
|
|
|
|
|
struct hcl_sem_tuple_t
|
|
|
|
{
|
|
|
|
hcl_oop_semaphore_t sem[2]; /* [0] input, [1] output */
|
|
|
|
hcl_ooi_t handle; /* io handle */
|
|
|
|
hcl_ooi_t mask;
|
|
|
|
};
|
|
|
|
typedef struct hcl_sem_tuple_t hcl_sem_tuple_t;
|
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
/* =========================================================================
|
|
|
|
* HCL VM
|
|
|
|
* ========================================================================= */
|
|
|
|
typedef struct hcl_synerr_t hcl_synerr_t;
|
|
|
|
struct hcl_synerr_t
|
|
|
|
{
|
|
|
|
hcl_synerrnum_t num;
|
|
|
|
hcl_ioloc_t loc;
|
2021-01-22 14:43:47 +00:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
hcl_ooch_t val[256];
|
|
|
|
hcl_oow_t len;
|
|
|
|
} tgt;
|
2016-09-28 14:40:37 +00:00
|
|
|
};
|
|
|
|
|
2021-01-27 08:47:08 +00:00
|
|
|
|
2021-02-01 03:32:09 +00:00
|
|
|
typedef struct hcl_dbgi_t hcl_dbgi_t;
|
|
|
|
struct hcl_dbgi_t
|
2021-01-27 08:47:08 +00:00
|
|
|
{
|
|
|
|
const hcl_ooch_t* fname; /* file name */
|
|
|
|
hcl_oow_t sline; /* source line in the file */
|
|
|
|
};
|
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
#if defined(HCL_INCLUDE_COMPILER)
|
|
|
|
typedef struct hcl_compiler_t hcl_compiler_t;
|
2021-01-15 09:12:28 +00:00
|
|
|
typedef struct hcl_cnode_t hcl_cnode_t;
|
2021-04-24 13:50:51 +00:00
|
|
|
|
2022-07-29 11:29:47 +00:00
|
|
|
typedef int (*hcl_on_cnode_t) (hcl_t* hcl, hcl_cnode_t* obj);
|
|
|
|
|
2021-04-24 13:50:51 +00:00
|
|
|
enum hcl_compile_flag_t
|
|
|
|
{
|
|
|
|
/* clear byte codes at the beginnign of hcl_compile() */
|
|
|
|
HCL_COMPILE_CLEAR_CODE = (1 << 0),
|
|
|
|
|
|
|
|
/* clear the top-level function block at the end of hcl_compile() */
|
|
|
|
HCL_COMPILE_CLEAR_FNBLK = (1 << 1)
|
|
|
|
};
|
|
|
|
typedef enum hcl_compile_flag_t hcl_compile_flag_t;
|
2016-09-28 14:40:37 +00:00
|
|
|
#endif
|
|
|
|
|
2018-03-14 14:56:15 +00:00
|
|
|
#define HCL_ERRMSG_CAPA (2048)
|
2018-03-14 14:54:10 +00:00
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
struct hcl_t
|
|
|
|
{
|
2019-06-21 12:36:25 +00:00
|
|
|
hcl_oow_t _instsize;
|
|
|
|
hcl_mmgr_t* _mmgr;
|
|
|
|
hcl_cmgr_t* _cmgr;
|
2016-09-28 14:40:37 +00:00
|
|
|
|
2018-02-22 04:35:55 +00:00
|
|
|
hcl_errnum_t errnum;
|
2018-02-05 10:43:25 +00:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
union
|
|
|
|
{
|
2018-03-14 14:54:10 +00:00
|
|
|
hcl_ooch_t ooch[HCL_ERRMSG_CAPA];
|
|
|
|
hcl_bch_t bch[HCL_ERRMSG_CAPA];
|
|
|
|
hcl_uch_t uch[HCL_ERRMSG_CAPA];
|
2018-02-05 10:43:25 +00:00
|
|
|
} tmpbuf;
|
2018-03-14 14:54:10 +00:00
|
|
|
hcl_ooch_t buf[HCL_ERRMSG_CAPA];
|
2018-02-05 10:43:25 +00:00
|
|
|
hcl_oow_t len;
|
|
|
|
} errmsg;
|
2018-02-22 04:35:55 +00:00
|
|
|
int shuterr;
|
2018-02-05 10:43:25 +00:00
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
struct
|
|
|
|
{
|
2018-04-26 04:39:20 +00:00
|
|
|
hcl_bitmask_t trait;
|
|
|
|
hcl_bitmask_t log_mask;
|
2018-02-05 10:43:25 +00:00
|
|
|
hcl_oow_t log_maxcapa;
|
2021-07-19 07:11:41 +00:00
|
|
|
hcl_bch_t* log_target_b;
|
|
|
|
hcl_uch_t* log_target_u;
|
2016-09-28 14:40:37 +00:00
|
|
|
hcl_oow_t dfl_symtab_size;
|
|
|
|
hcl_oow_t dfl_sysdic_size;
|
2021-03-28 03:44:27 +00:00
|
|
|
hcl_oow_t dfl_procstk_size;
|
2018-04-09 15:54:54 +00:00
|
|
|
void* mod_inctx;
|
2018-02-05 10:43:25 +00:00
|
|
|
|
2018-02-21 09:30:18 +00:00
|
|
|
#if defined(HCL_BUILD_DEBUG)
|
2018-02-05 10:43:25 +00:00
|
|
|
/* set automatically when trait is set */
|
2018-02-26 15:52:15 +00:00
|
|
|
hcl_oow_t karatsuba_cutoff;
|
2018-02-21 09:30:18 +00:00
|
|
|
#endif
|
2016-09-28 14:40:37 +00:00
|
|
|
} option;
|
|
|
|
|
|
|
|
hcl_vmprim_t vmprim;
|
|
|
|
|
2018-03-11 11:16:28 +00:00
|
|
|
hcl_oow_t vm_checkbc_cb_count;
|
2016-09-28 14:40:37 +00:00
|
|
|
hcl_cb_t* cblist;
|
2018-02-09 04:24:50 +00:00
|
|
|
hcl_rbt_t modtab; /* primitive module table */
|
2016-09-28 14:40:37 +00:00
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
hcl_ooch_t* ptr;
|
|
|
|
hcl_oow_t len;
|
|
|
|
hcl_oow_t capa;
|
2018-04-26 04:39:20 +00:00
|
|
|
hcl_bitmask_t last_mask;
|
|
|
|
hcl_bitmask_t default_type_mask;
|
2016-09-28 14:40:37 +00:00
|
|
|
} log;
|
|
|
|
/* ========================= */
|
|
|
|
|
2020-12-31 17:48:47 +00:00
|
|
|
hcl_heap_t* heap;
|
2016-09-28 14:40:37 +00:00
|
|
|
|
|
|
|
/* ========================= */
|
2022-05-05 04:03:56 +00:00
|
|
|
hcl_oop_t _undef; /* special internal value for uninitialized global variables */
|
2016-09-28 14:40:37 +00:00
|
|
|
hcl_oop_t _nil; /* pointer to the nil object */
|
|
|
|
hcl_oop_t _true;
|
|
|
|
hcl_oop_t _false;
|
|
|
|
|
2018-03-03 03:28:10 +00:00
|
|
|
hcl_oop_t _and; /* symbol */
|
2016-10-18 17:00:35 +00:00
|
|
|
hcl_oop_t _break; /* symbol */
|
2022-02-05 17:35:10 +00:00
|
|
|
hcl_oop_t _catch; /* symbol */
|
2021-01-29 08:13:18 +00:00
|
|
|
hcl_oop_t _continue; /* symbol */
|
2021-05-29 05:44:29 +00:00
|
|
|
hcl_oop_t _defclass; /* symbol */
|
2016-10-18 17:00:35 +00:00
|
|
|
hcl_oop_t _defun; /* symbol */
|
2018-03-03 03:28:10 +00:00
|
|
|
hcl_oop_t _do; /* symbol */
|
2016-10-18 17:00:35 +00:00
|
|
|
hcl_oop_t _elif; /* symbol */
|
|
|
|
hcl_oop_t _else; /* symbol */
|
2016-09-28 14:40:37 +00:00
|
|
|
hcl_oop_t _if; /* symbol */
|
|
|
|
hcl_oop_t _lambda; /* symbol */
|
2018-03-03 03:28:10 +00:00
|
|
|
hcl_oop_t _or; /* symbol */
|
2022-03-21 15:38:31 +00:00
|
|
|
hcl_oop_t _plus; /* symbol */
|
2016-10-10 11:36:24 +00:00
|
|
|
hcl_oop_t _return; /* symbol */
|
2020-10-10 17:36:33 +00:00
|
|
|
hcl_oop_t _return_from_home; /* symbol */
|
2016-10-18 17:00:35 +00:00
|
|
|
hcl_oop_t _set; /* symbol */
|
2021-05-15 05:31:36 +00:00
|
|
|
hcl_oop_t _set_r; /* symbol */
|
2021-02-28 06:43:22 +00:00
|
|
|
hcl_oop_t _throw; /* symbol */
|
2021-02-18 15:48:44 +00:00
|
|
|
hcl_oop_t _try; /* symbol */
|
2016-10-18 17:00:35 +00:00
|
|
|
hcl_oop_t _until; /* symbol */
|
|
|
|
hcl_oop_t _while; /* symbol */
|
2016-09-28 14:40:37 +00:00
|
|
|
|
2018-02-07 10:55:20 +00:00
|
|
|
hcl_oop_dic_t symtab; /* system-wide symbol table. */
|
|
|
|
hcl_oop_dic_t sysdic; /* system dictionary. */
|
2016-09-28 14:40:37 +00:00
|
|
|
hcl_oop_process_scheduler_t processor; /* instance of ProcessScheduler */
|
|
|
|
hcl_oop_process_t nil_process; /* instance of Process */
|
|
|
|
|
2020-10-15 12:57:05 +00:00
|
|
|
/* ============================================================================= */
|
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
/* pending asynchronous semaphores */
|
|
|
|
hcl_oop_semaphore_t* sem_list;
|
|
|
|
hcl_oow_t sem_list_count;
|
|
|
|
hcl_oow_t sem_list_capa;
|
|
|
|
|
2021-03-28 03:44:27 +00:00
|
|
|
/* semaphores sorted according to time-out.
|
2020-10-15 12:57:05 +00:00
|
|
|
* organize entries using heap as the earliest entry
|
|
|
|
* needs to be checked first */
|
2016-09-28 14:40:37 +00:00
|
|
|
hcl_oop_semaphore_t* sem_heap;
|
|
|
|
hcl_oow_t sem_heap_count;
|
|
|
|
hcl_oow_t sem_heap_capa;
|
|
|
|
|
2020-10-15 12:57:05 +00:00
|
|
|
/* semaphores for I/O handling. plain array */
|
|
|
|
/*hcl_oop_semaphore_t* sem_io;*/
|
|
|
|
hcl_sem_tuple_t* sem_io_tuple;
|
|
|
|
hcl_oow_t sem_io_tuple_count;
|
|
|
|
hcl_oow_t sem_io_tuple_capa;
|
|
|
|
|
|
|
|
hcl_oow_t sem_io_count;
|
|
|
|
hcl_oow_t sem_io_wait_count; /* number of processes waiting on an IO semaphore */
|
|
|
|
|
|
|
|
hcl_ooi_t* sem_io_map;
|
|
|
|
hcl_oow_t sem_io_map_capa;
|
|
|
|
/* ============================================================================= */
|
|
|
|
|
2018-02-08 09:21:18 +00:00
|
|
|
hcl_oop_t* proc_map;
|
|
|
|
hcl_oow_t proc_map_capa;
|
2020-10-15 12:57:05 +00:00
|
|
|
hcl_oow_t proc_map_used;
|
2018-02-08 09:21:18 +00:00
|
|
|
hcl_ooi_t proc_map_free_first;
|
|
|
|
hcl_ooi_t proc_map_free_last;
|
|
|
|
|
2018-02-23 07:17:23 +00:00
|
|
|
/* 2 tag bits(lo) + 2 extended tag bits(hi). not all slots are used
|
|
|
|
* because the 2 high extended bits are used only if the low tag bits
|
|
|
|
* are 3 */
|
|
|
|
int tagged_brands[16];
|
|
|
|
|
2020-12-31 17:48:47 +00:00
|
|
|
hcl_oop_t* volat_stack[256]; /* stack for temporaries */
|
|
|
|
hcl_oow_t volat_count;
|
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
/* == EXECUTION REGISTERS == */
|
2020-10-04 18:21:05 +00:00
|
|
|
hcl_oop_function_t initial_function;
|
2016-10-04 17:56:28 +00:00
|
|
|
hcl_oop_context_t initial_context; /* fake initial context */
|
2016-09-28 14:40:37 +00:00
|
|
|
hcl_oop_context_t active_context;
|
2020-10-04 18:21:05 +00:00
|
|
|
hcl_oop_function_t active_function;
|
|
|
|
hcl_oob_t* active_code;
|
2016-09-28 14:40:37 +00:00
|
|
|
hcl_ooi_t sp;
|
|
|
|
hcl_ooi_t ip;
|
2020-10-15 12:57:05 +00:00
|
|
|
int no_proc_switch; /* process switching disabled */
|
2016-09-28 14:40:37 +00:00
|
|
|
int proc_switched; /* TODO: this is temporary. implement something else to skip immediate context switching */
|
2016-10-04 17:56:28 +00:00
|
|
|
int switch_proc;
|
2018-03-10 17:53:44 +00:00
|
|
|
int abort_req;
|
2018-02-08 14:40:56 +00:00
|
|
|
hcl_ntime_t exec_start_time;
|
|
|
|
hcl_ntime_t exec_end_time;
|
2020-10-15 12:57:05 +00:00
|
|
|
hcl_oop_t last_retv;
|
2016-09-28 14:40:37 +00:00
|
|
|
/* == END EXECUTION REGISTERS == */
|
|
|
|
|
|
|
|
/* == BIGINT CONVERSION == */
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
int safe_ndigits;
|
|
|
|
hcl_oow_t multiplier;
|
|
|
|
} bigint[37];
|
2018-02-15 06:58:36 +00:00
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
2018-02-26 15:24:45 +00:00
|
|
|
hcl_ooch_t* ptr;
|
2018-02-15 06:58:36 +00:00
|
|
|
hcl_oow_t capa;
|
2018-02-15 08:05:48 +00:00
|
|
|
hcl_oow_t len;
|
2018-02-15 06:58:36 +00:00
|
|
|
} xbuf;
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
hcl_liw_t* ptr;
|
|
|
|
hcl_oow_t capa;
|
|
|
|
} t;
|
|
|
|
} inttostr;
|
2016-09-28 14:40:37 +00:00
|
|
|
/* == END BIGINT CONVERSION == */
|
|
|
|
|
2018-03-05 03:35:44 +00:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
hcl_ooch_t* ptr;
|
|
|
|
hcl_oow_t capa;
|
|
|
|
hcl_oow_t len;
|
|
|
|
} xbuf; /* buffer to support sprintf */
|
|
|
|
} sprintf;
|
|
|
|
|
2020-09-24 08:24:47 +00:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
2020-10-08 09:25:54 +00:00
|
|
|
hcl_oob_t* ptr; /* byte code array */
|
2020-09-24 08:24:47 +00:00
|
|
|
hcl_oow_t len;
|
2020-10-08 09:25:54 +00:00
|
|
|
hcl_oow_t capa;
|
2020-09-24 08:24:47 +00:00
|
|
|
} bc;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
hcl_oop_oop_t arr; /* literal array - not part of object memory */
|
|
|
|
hcl_oow_t len;
|
|
|
|
} lit;
|
2021-01-03 13:51:23 +00:00
|
|
|
|
2021-04-23 07:17:40 +00:00
|
|
|
/* the cumulative number of temporaries collected at the global(top-level) level */
|
|
|
|
hcl_oow_t ngtmprs;
|
2021-01-27 08:47:08 +00:00
|
|
|
|
2021-04-23 07:17:40 +00:00
|
|
|
/* array that holds the location of the byte code emitted */
|
2021-02-01 03:32:09 +00:00
|
|
|
hcl_dbgi_t* dbgi;
|
2020-09-24 08:24:47 +00:00
|
|
|
} code;
|
2016-09-28 14:40:37 +00:00
|
|
|
|
|
|
|
/* == PRINTER == */
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
void* ptr;
|
|
|
|
hcl_oow_t capa;
|
|
|
|
hcl_oow_t size;
|
|
|
|
} s;
|
|
|
|
hcl_oop_t e; /* top entry being printed */
|
|
|
|
} p;
|
|
|
|
/* == PRINTER == */
|
|
|
|
|
2020-12-31 17:48:47 +00:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
hcl_gchdr_t* b; /* object blocks allocated */
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
hcl_gchdr_t* curr;
|
|
|
|
hcl_gchdr_t* prev;
|
|
|
|
} ls;
|
|
|
|
hcl_oow_t bsz; /* total size of object blocks allocated */
|
|
|
|
hcl_oow_t threshold;
|
|
|
|
int lazy_sweep;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
hcl_oop_t* ptr;
|
|
|
|
hcl_oow_t capa;
|
|
|
|
hcl_oow_t len;
|
|
|
|
hcl_oow_t max;
|
|
|
|
} stack;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
hcl_ntime_t alloc;
|
|
|
|
hcl_ntime_t mark;
|
|
|
|
hcl_ntime_t sweep;
|
|
|
|
} stat;
|
|
|
|
} gci;
|
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
#if defined(HCL_INCLUDE_COMPILER)
|
|
|
|
hcl_compiler_t* c;
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2016-10-04 17:56:28 +00:00
|
|
|
|
|
|
|
/* TODO: stack bound check when pushing */
|
|
|
|
#define HCL_STACK_PUSH(hcl,v) \
|
|
|
|
do { \
|
2021-06-25 15:19:11 +00:00
|
|
|
if ((hcl)->sp >= HCL_OOP_TO_SMOOI((hcl)->processor->active->st)) \
|
2021-02-03 14:50:51 +00:00
|
|
|
{ \
|
|
|
|
hcl_seterrbfmt (hcl, HCL_EOOMEM, "process stack overflow"); \
|
|
|
|
(hcl)->abort_req = -1; \
|
|
|
|
} \
|
2021-04-14 16:20:18 +00:00
|
|
|
(hcl)->sp = (hcl)->sp + 1; \
|
2016-10-04 17:56:28 +00:00
|
|
|
(hcl)->processor->active->slot[(hcl)->sp] = v; \
|
|
|
|
} while (0)
|
|
|
|
|
2022-02-27 19:35:47 +00:00
|
|
|
#define HCL_STACK_GET(hcl,sp_) ((hcl)->processor->active->slot[sp_])
|
|
|
|
#define HCL_STACK_SET(hcl,sp_,obj_) ((hcl)->processor->active->slot[sp_] = obj_)
|
2016-10-04 17:56:28 +00:00
|
|
|
|
|
|
|
#define HCL_STACK_GETTOP(hcl) HCL_STACK_GET(hcl, (hcl)->sp)
|
2022-02-27 19:35:47 +00:00
|
|
|
#define HCL_STACK_SETTOP(hcl,obj_) HCL_STACK_SET(hcl, (hcl)->sp, obj_)
|
2016-10-04 17:56:28 +00:00
|
|
|
|
2022-02-27 19:35:47 +00:00
|
|
|
/* [NOTE]
|
|
|
|
* the following macros don't commit the active stack pointer(hcl->sp)
|
|
|
|
* to hcl->processor->active->sp immediately.
|
|
|
|
*/
|
2016-10-04 17:56:28 +00:00
|
|
|
#define HCL_STACK_POP(hcl) ((hcl)->sp = (hcl)->sp - 1)
|
|
|
|
#define HCL_STACK_POPS(hcl,count) ((hcl)->sp = (hcl)->sp - (count))
|
2021-06-27 17:47:51 +00:00
|
|
|
#define HCL_STACK_POP_TO(hcl,v) \
|
|
|
|
do { \
|
|
|
|
v = HCL_STACK_GETTOP(hcl); \
|
|
|
|
HCL_STACK_POP (hcl); \
|
|
|
|
} while(0)
|
2022-02-27 19:35:47 +00:00
|
|
|
|
2021-12-25 15:33:49 +00:00
|
|
|
#define HCL_STACK_GET_ST(hcl) HCL_OOP_TO_SMOOI((hcl)->processor->active->st)
|
|
|
|
#define HCL_STACK_GET_SP(hcl) ((hcl)->sp)
|
|
|
|
#define HCL_STACK_IS_EMPTY(hcl) ((hcl)->sp <= -1)
|
2016-10-04 17:56:28 +00:00
|
|
|
|
2021-02-03 14:50:51 +00:00
|
|
|
/* get the stack pointer of the argument at the given index */
|
|
|
|
#define HCL_STACK_GETARGSP(hcl,nargs,idx) ((hcl)->sp - ((nargs) - (idx) - 1))
|
|
|
|
/* get the argument at the given index */
|
2016-10-04 17:56:28 +00:00
|
|
|
#define HCL_STACK_GETARG(hcl,nargs,idx) HCL_STACK_GET(hcl, (hcl)->sp - ((nargs) - (idx) - 1))
|
2021-02-03 14:50:51 +00:00
|
|
|
/* get the receiver of a message */
|
2022-01-22 15:40:38 +00:00
|
|
|
#define HCL_STACK_GETRCV(hcl,nargs) HCL_STACK_GET(hcl, (hcl)->sp - nargs - 1)
|
|
|
|
/* get the operator such as the called function/block/method */
|
|
|
|
#define HCL_STACK_GETOP(hcl,nargs) HCL_STACK_GET(hcl, (hcl)->sp - nargs)
|
|
|
|
|
2022-03-17 13:22:17 +00:00
|
|
|
/* change the receiver of a message */
|
|
|
|
#define HCL_STACK_SETRCV(hcl,nargs,newrcv) HCL_STACK_SET(hcl, (hcl)->sp - nargs - 1, newrcv)
|
|
|
|
|
2022-01-22 15:40:38 +00:00
|
|
|
/*
|
|
|
|
* .....
|
|
|
|
* argument 1
|
|
|
|
* argument 0
|
|
|
|
* operator
|
|
|
|
* receiver
|
|
|
|
*/
|
2016-10-04 17:56:28 +00:00
|
|
|
|
2021-03-28 03:44:27 +00:00
|
|
|
/* you can't access arguments and receiver after this macro.
|
2016-10-04 17:56:28 +00:00
|
|
|
* also you must not call this macro more than once */
|
2018-02-08 07:40:27 +00:00
|
|
|
|
|
|
|
#define HCL_STACK_SETRET(hcl,nargs,retv) \
|
|
|
|
do { \
|
2022-01-22 15:40:38 +00:00
|
|
|
HCL_STACK_POPS(hcl, nargs + 1); \
|
2018-02-08 07:40:27 +00:00
|
|
|
HCL_STACK_SETTOP(hcl, (retv)); \
|
|
|
|
} while(0)
|
|
|
|
|
2018-02-17 16:45:17 +00:00
|
|
|
#define HCL_STACK_SETRETTOERRNUM(hcl,nargs) HCL_STACK_SETRET(hcl, nargs, HCL_ERROR_TO_OOP(hcl->errnum))
|
|
|
|
#define HCL_STACK_SETRETTOERROR(hcl,nargs,ec) HCL_STACK_SETRET(hcl, nargs, HCL_ERROR_TO_OOP(ec))
|
2016-10-04 17:56:28 +00:00
|
|
|
|
2018-02-05 10:43:25 +00:00
|
|
|
/* =========================================================================
|
|
|
|
* HCL ASSERTION
|
|
|
|
* ========================================================================= */
|
2018-02-21 09:30:18 +00:00
|
|
|
#if defined(HCL_BUILD_RELEASE)
|
2018-02-05 10:43:25 +00:00
|
|
|
# define HCL_ASSERT(hcl,expr) ((void)0)
|
|
|
|
#else
|
2018-11-03 14:05:37 +00:00
|
|
|
# define HCL_ASSERT(hcl,expr) ((void)((expr) || ((hcl)->vmprim.assertfail (hcl, #expr, __FILE__, __LINE__), 0)))
|
2018-02-05 10:43:25 +00:00
|
|
|
#endif
|
2016-09-28 14:40:37 +00:00
|
|
|
|
|
|
|
/* =========================================================================
|
|
|
|
* HCL COMMON OBJECTS
|
|
|
|
* ========================================================================= */
|
2018-02-15 06:58:36 +00:00
|
|
|
enum hcl_brand_t
|
2016-09-28 14:40:37 +00:00
|
|
|
{
|
2018-02-23 07:17:23 +00:00
|
|
|
HCL_BRAND_SMOOI = 1, /* never used as a small integer is encoded in an object pointer */
|
|
|
|
HCL_BRAND_SMPTR,
|
|
|
|
HCL_BRAND_ERROR,
|
|
|
|
HCL_BRAND_CHARACTER,
|
|
|
|
|
2022-05-05 04:03:56 +00:00
|
|
|
HCL_BRAND_UNDEF,
|
2018-02-23 07:17:23 +00:00
|
|
|
HCL_BRAND_NIL,
|
2016-09-28 14:40:37 +00:00
|
|
|
HCL_BRAND_TRUE,
|
|
|
|
HCL_BRAND_FALSE,
|
2018-02-23 07:17:23 +00:00
|
|
|
|
2018-02-13 16:10:41 +00:00
|
|
|
HCL_BRAND_PBIGINT, /* positive big integer */
|
|
|
|
HCL_BRAND_NBIGINT, /* negative big integer */
|
2016-09-28 14:40:37 +00:00
|
|
|
HCL_BRAND_CONS,
|
|
|
|
HCL_BRAND_ARRAY,
|
|
|
|
HCL_BRAND_BYTE_ARRAY,
|
2016-10-01 04:36:48 +00:00
|
|
|
HCL_BRAND_SYMBOL_ARRAY, /* special. internal use only */
|
2016-09-28 14:40:37 +00:00
|
|
|
HCL_BRAND_SYMBOL,
|
|
|
|
HCL_BRAND_STRING,
|
2018-02-07 10:55:20 +00:00
|
|
|
HCL_BRAND_DIC,
|
2018-03-28 08:57:49 +00:00
|
|
|
HCL_BRAND_FPDEC, /* fixed-point decimal */
|
2016-09-28 14:40:37 +00:00
|
|
|
|
2016-10-06 17:49:47 +00:00
|
|
|
HCL_BRAND_PRIM,
|
2016-09-28 14:40:37 +00:00
|
|
|
|
2020-10-04 18:21:05 +00:00
|
|
|
HCL_BRAND_FUNCTION,
|
2020-10-09 07:14:32 +00:00
|
|
|
HCL_BRAND_BLOCK,
|
2016-10-04 17:56:28 +00:00
|
|
|
HCL_BRAND_CONTEXT,
|
|
|
|
HCL_BRAND_PROCESS,
|
|
|
|
HCL_BRAND_PROCESS_SCHEDULER,
|
2020-10-15 12:57:05 +00:00
|
|
|
HCL_BRAND_SEMAPHORE,
|
2021-05-21 09:59:35 +00:00
|
|
|
HCL_BRAND_SEMAPHORE_GROUP,
|
2021-05-21 16:21:23 +00:00
|
|
|
HCL_BRAND_CLASS,
|
|
|
|
HCL_BRAND_INSTANCE
|
2022-05-05 04:03:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* [NOTE] each enumerator must not exceed the maximum value that can be
|
|
|
|
* represented with HCL_OBJ_FLAGS_BRAND_BITS bits */
|
2016-09-28 14:40:37 +00:00
|
|
|
};
|
2018-02-15 06:58:36 +00:00
|
|
|
typedef enum hcl_brand_t hcl_brand_t;
|
2016-09-28 14:40:37 +00:00
|
|
|
|
2018-02-15 06:58:36 +00:00
|
|
|
enum hcl_syncode_t
|
2016-09-28 14:40:37 +00:00
|
|
|
{
|
|
|
|
/* SYNCODE 0 means it's not a syncode object. so it begins with 1 */
|
2021-01-03 17:58:57 +00:00
|
|
|
/* these enumerators can be set in the SYNCODE flags for a symbol */
|
2018-03-03 03:28:10 +00:00
|
|
|
HCL_SYNCODE_AND = 1,
|
|
|
|
HCL_SYNCODE_BREAK,
|
2021-02-18 15:48:44 +00:00
|
|
|
HCL_SYNCODE_CATCH,
|
2021-01-29 08:13:18 +00:00
|
|
|
HCL_SYNCODE_CONTINUE,
|
2021-05-29 05:44:29 +00:00
|
|
|
HCL_SYNCODE_DEFCLASS,
|
2016-09-28 14:40:37 +00:00
|
|
|
HCL_SYNCODE_DEFUN,
|
2018-02-06 10:16:01 +00:00
|
|
|
HCL_SYNCODE_DO,
|
2016-10-18 17:00:35 +00:00
|
|
|
HCL_SYNCODE_ELIF,
|
|
|
|
HCL_SYNCODE_ELSE,
|
2016-09-28 14:40:37 +00:00
|
|
|
HCL_SYNCODE_IF,
|
|
|
|
HCL_SYNCODE_LAMBDA,
|
2018-03-03 03:28:10 +00:00
|
|
|
HCL_SYNCODE_OR,
|
2022-03-21 15:38:31 +00:00
|
|
|
HCL_SYNCODE_PLUS,
|
2016-10-10 11:36:24 +00:00
|
|
|
HCL_SYNCODE_RETURN,
|
2020-10-10 17:36:33 +00:00
|
|
|
HCL_SYNCODE_RETURN_FROM_HOME,
|
2016-10-10 11:36:24 +00:00
|
|
|
HCL_SYNCODE_SET,
|
2021-05-15 05:31:36 +00:00
|
|
|
HCL_SYNCODE_SET_R,
|
2021-02-28 06:43:22 +00:00
|
|
|
HCL_SYNCODE_THROW,
|
2021-02-18 15:48:44 +00:00
|
|
|
HCL_SYNCODE_TRY,
|
2016-10-12 07:30:54 +00:00
|
|
|
HCL_SYNCODE_UNTIL,
|
2022-02-05 17:37:06 +00:00
|
|
|
HCL_SYNCODE_WHILE
|
2022-02-05 17:35:10 +00:00
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
};
|
2018-02-15 06:58:36 +00:00
|
|
|
typedef enum hcl_syncode_t hcl_syncode_t;
|
2016-09-28 14:40:37 +00:00
|
|
|
|
2018-02-15 06:58:36 +00:00
|
|
|
enum hcl_concode_t
|
2018-02-06 10:16:01 +00:00
|
|
|
{
|
2021-01-03 17:58:57 +00:00
|
|
|
/* these can be set in the SYNCODE flags for a cons cell */
|
2022-01-14 16:09:52 +00:00
|
|
|
HCL_CONCODE_XLIST = 0, /* ( ) - executable list */
|
|
|
|
HCL_CONCODE_MLIST, /* (: ) - message send list */
|
|
|
|
HCL_CONCODE_ARRAY, /* [ ] */
|
|
|
|
HCL_CONCODE_BYTEARRAY, /* #[ ] */
|
|
|
|
HCL_CONCODE_DIC, /* { } */
|
|
|
|
HCL_CONCODE_QLIST, /* #( ) - data list */
|
2021-01-13 09:54:44 +00:00
|
|
|
HCL_CONCODE_VLIST /* | | - symbol list */
|
2018-02-06 10:16:01 +00:00
|
|
|
};
|
2018-02-15 06:58:36 +00:00
|
|
|
typedef enum hcl_concode_t hcl_concode_t;
|
2018-02-06 10:16:01 +00:00
|
|
|
|
2022-05-05 04:03:56 +00:00
|
|
|
#define HCL_IS_UNDEF(hcl,v) (v == (hcl)->_undef)
|
2016-09-28 14:40:37 +00:00
|
|
|
#define HCL_IS_NIL(hcl,v) (v == (hcl)->_nil)
|
2018-02-06 10:16:01 +00:00
|
|
|
#define HCL_IS_TRUE(hcl,v) (v == (hcl)->_true)
|
|
|
|
#define HCL_IS_FALSE(hcl,v) (v == (hcl)->_false)
|
2016-09-28 14:40:37 +00:00
|
|
|
#define HCL_IS_SYMBOL(hcl,v) (HCL_OOP_IS_POINTER(v) && HCL_OBJ_GET_FLAGS_BRAND(v) == HCL_BRAND_SYMBOL)
|
2016-10-01 04:36:48 +00:00
|
|
|
#define HCL_IS_SYMBOL_ARRAY(hcl,v) (HCL_OOP_IS_POINTER(v) && HCL_OBJ_GET_FLAGS_BRAND(v) == HCL_BRAND_SYMBOL_ARRAY)
|
2016-10-04 17:56:28 +00:00
|
|
|
#define HCL_IS_CONTEXT(hcl,v) (HCL_OOP_IS_POINTER(v) && HCL_OBJ_GET_FLAGS_BRAND(v) == HCL_BRAND_CONTEXT)
|
2020-10-04 18:21:05 +00:00
|
|
|
#define HCL_IS_FUNCTION(hcl,v) (HCL_OOP_IS_POINTER(v) && HCL_OBJ_GET_FLAGS_BRAND(v) == HCL_BRAND_FUNCTION)
|
2020-10-09 07:14:32 +00:00
|
|
|
#define HCL_IS_BLOCK(hcl,v) (HCL_OOP_IS_POINTER(v) && HCL_OBJ_GET_FLAGS_BRAND(v) == HCL_BRAND_BLOCK)
|
2021-06-27 17:47:51 +00:00
|
|
|
#define HCL_IS_CLASS(hcl,v) (HCL_OOP_IS_POINTER(v) && HCL_OBJ_GET_FLAGS_BRAND(v) == HCL_BRAND_CLASS)
|
2022-01-09 16:47:38 +00:00
|
|
|
#define HCL_IS_INSTANCE(hcl,v) (HCL_OOP_IS_POINTER(v) && HCL_OBJ_GET_FLAGS_BRAND(v) == HCL_BRAND_INSTANCE)
|
2016-10-04 17:56:28 +00:00
|
|
|
#define HCL_IS_PROCESS(hcl,v) (HCL_OOP_IS_POINTER(v) && HCL_OBJ_GET_FLAGS_BRAND(v) == HCL_BRAND_PROCESS)
|
2016-10-01 04:36:48 +00:00
|
|
|
#define HCL_IS_CONS(hcl,v) (HCL_OOP_IS_POINTER(v) && HCL_OBJ_GET_FLAGS_BRAND(v) == HCL_BRAND_CONS)
|
2018-08-07 11:04:38 +00:00
|
|
|
#define HCL_IS_CONS_CONCODED(hcl,v,concode) (HCL_IS_CONS(hcl,v) && HCL_OBJ_GET_FLAGS_SYNCODE(v) == (concode))
|
2016-10-04 17:56:28 +00:00
|
|
|
#define HCL_IS_ARRAY(hcl,v) (HCL_OOP_IS_POINTER(v) && HCL_OBJ_GET_FLAGS_BRAND(v) == HCL_BRAND_ARRAY)
|
2018-04-07 04:43:56 +00:00
|
|
|
#define HCL_IS_BYTEARRAY(hcl,v) (HCL_OOP_IS_POINTER(v) && HCL_OBJ_GET_FLAGS_BRAND(v) == HCL_BRAND_BYTE_ARRAY)
|
2018-02-12 16:51:38 +00:00
|
|
|
#define HCL_IS_DIC(hcl,v) (HCL_OOP_IS_POINTER(v) && HCL_OBJ_GET_FLAGS_BRAND(v) == HCL_BRAND_DIC)
|
2016-10-06 17:49:47 +00:00
|
|
|
#define HCL_IS_PRIM(hcl,v) (HCL_OOP_IS_POINTER(v) && HCL_OBJ_GET_FLAGS_BRAND(v) == HCL_BRAND_PRIM)
|
2018-02-13 11:48:16 +00:00
|
|
|
#define HCL_IS_PBIGINT(hcl,v) (HCL_OOP_IS_POINTER(v) && HCL_OBJ_GET_FLAGS_BRAND(v) == HCL_BRAND_PBIGINT)
|
|
|
|
#define HCL_IS_NBIGINT(hcl,v) (HCL_OOP_IS_POINTER(v) && HCL_OBJ_GET_FLAGS_BRAND(v) == HCL_BRAND_NBIGINT)
|
2018-02-13 16:10:41 +00:00
|
|
|
#define HCL_IS_BIGINT(hcl,v) (HCL_OOP_IS_POINTER(v) && (HCL_OBJ_GET_FLAGS_BRAND(v) == HCL_BRAND_PBIGINT || HCL_OBJ_GET_FLAGS_BRAND(v) == HCL_BRAND_NBIGINT))
|
2018-02-15 15:36:15 +00:00
|
|
|
#define HCL_IS_STRING(hcl,v) (HCL_OOP_IS_POINTER(v) && HCL_OBJ_GET_FLAGS_BRAND(v) == HCL_BRAND_STRING)
|
2018-03-28 16:40:42 +00:00
|
|
|
#define HCL_IS_FPDEC(hcl,v) (HCL_OOP_IS_POINTER(v) && HCL_OBJ_GET_FLAGS_BRAND(v) == HCL_BRAND_FPDEC)
|
2020-10-15 12:57:05 +00:00
|
|
|
#define HCL_IS_PROCESS(hcl,v) (HCL_OOP_IS_POINTER(v) && HCL_OBJ_GET_FLAGS_BRAND(v) == HCL_BRAND_PROCESS)
|
|
|
|
#define HCL_IS_SEMAPHORE(hcl,v) (HCL_OOP_IS_POINTER(v) && HCL_OBJ_GET_FLAGS_BRAND(v) == HCL_BRAND_SEMAPHORE)
|
|
|
|
#define HCL_IS_SEMAPHORE_GROUP(hcl,v) (HCL_OOP_IS_POINTER(v) && HCL_OBJ_GET_FLAGS_BRAND(v) == HCL_BRAND_SEMAPHORE_GROUP)
|
2016-10-06 17:49:47 +00:00
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
#define HCL_CONS_CAR(v) (((hcl_cons_t*)(v))->car)
|
|
|
|
#define HCL_CONS_CDR(v) (((hcl_cons_t*)(v))->cdr)
|
|
|
|
|
2018-02-12 16:51:38 +00:00
|
|
|
typedef int (*hcl_dic_walker_t) (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oop_dic_t dic,
|
|
|
|
hcl_oop_cons_t pair,
|
|
|
|
void* ctx
|
|
|
|
);
|
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
#if defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_t* hcl_open (
|
|
|
|
hcl_mmgr_t* mmgr,
|
|
|
|
hcl_oow_t xtnsize,
|
|
|
|
const hcl_vmprim_t* vmprim,
|
|
|
|
hcl_errnum_t* errnum
|
|
|
|
);
|
|
|
|
|
2021-02-08 09:41:40 +00:00
|
|
|
HCL_EXPORT hcl_t* hcl_openstdwithmmgr (
|
|
|
|
hcl_mmgr_t* mmgr,
|
|
|
|
hcl_oow_t xtnsize,
|
|
|
|
hcl_errnum_t* errnum
|
|
|
|
);
|
|
|
|
|
2021-02-07 17:57:35 +00:00
|
|
|
HCL_EXPORT hcl_t* hcl_openstd (
|
|
|
|
hcl_oow_t xtnsize,
|
|
|
|
hcl_errnum_t* errnum
|
|
|
|
);
|
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
HCL_EXPORT void hcl_close (
|
|
|
|
hcl_t* vm
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT int hcl_init (
|
2018-03-08 10:00:57 +00:00
|
|
|
hcl_t* hcl,
|
2016-09-28 14:40:37 +00:00
|
|
|
hcl_mmgr_t* mmgr,
|
|
|
|
const hcl_vmprim_t* vmprim
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT void hcl_fini (
|
2018-03-08 10:00:57 +00:00
|
|
|
hcl_t* hcl
|
2016-09-28 14:40:37 +00:00
|
|
|
);
|
|
|
|
|
2018-03-08 14:18:30 +00:00
|
|
|
/**
|
|
|
|
* The hcl_reset() function some internal states back to the initial state.
|
|
|
|
* The affected internal states include byte code buffer, literal frame,
|
|
|
|
* ordinary global variables. You should take extra precaution as it is
|
|
|
|
* a risky function. For instance, a global variable inserted manually
|
|
|
|
* with hcl_putatsysdic() gets deleted if the kernel bit is not set on
|
|
|
|
* the variable symbol.
|
|
|
|
*/
|
|
|
|
HCL_EXPORT void hcl_reset (
|
2018-04-12 02:50:37 +00:00
|
|
|
hcl_t* hcl
|
|
|
|
);
|
|
|
|
|
2018-02-05 10:43:25 +00:00
|
|
|
#if defined(HCL_HAVE_INLINE)
|
2019-06-24 11:38:58 +00:00
|
|
|
static HCL_INLINE void* hcl_getxtn (hcl_t* hcl) { return (void*)((hcl_uint8_t*)hcl + hcl->_instsize); }
|
|
|
|
static HCL_INLINE hcl_mmgr_t* hcl_getmmgr (hcl_t* hcl) { return hcl->_mmgr; }
|
|
|
|
static HCL_INLINE hcl_cmgr_t* hcl_getcmgr (hcl_t* hcl) { return hcl->_cmgr; }
|
|
|
|
static HCL_INLINE void hcl_setcmgr (hcl_t* hcl, hcl_cmgr_t* cmgr) { hcl->_cmgr = cmgr; }
|
|
|
|
static HCL_INLINE hcl_errnum_t hcl_geterrnum (hcl_t* hcl) { return hcl->errnum; }
|
2018-02-05 10:43:25 +00:00
|
|
|
#else
|
2019-06-21 12:36:25 +00:00
|
|
|
# define hcl_getxtn(hcl) ((void*)((hcl_uint8_t*)hcl + ((hcl_t*)hcl)->_instsize))
|
2019-06-24 11:36:07 +00:00
|
|
|
# define hcl_getmmgr(hcl) (((hcl_t*)(hcl))->_mmgr)
|
2019-06-21 12:36:25 +00:00
|
|
|
# define hcl_getcmgr(hcl) (((hcl_t*)(hcl))->_cmgr)
|
|
|
|
# define hcl_setcmgr(hcl,cmgr) (((hcl_t*)(hcl))->_cmgr = (cmgr))
|
2019-04-13 01:02:20 +00:00
|
|
|
# define hcl_geterrnum(hcl) (((hcl_t*)(hcl))->errnum)
|
2018-02-05 10:43:25 +00:00
|
|
|
#endif
|
|
|
|
|
2018-02-22 04:35:55 +00:00
|
|
|
HCL_EXPORT void hcl_seterrnum (
|
2021-03-28 03:44:27 +00:00
|
|
|
hcl_t* hcl,
|
2018-02-22 04:35:55 +00:00
|
|
|
hcl_errnum_t errnum
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT void hcl_seterrwithsyserr (
|
2018-03-08 10:00:57 +00:00
|
|
|
hcl_t* hcl,
|
2018-11-02 14:15:28 +00:00
|
|
|
int syserr_type,
|
|
|
|
int syserr_code
|
2018-02-22 04:35:55 +00:00
|
|
|
);
|
|
|
|
|
2021-02-08 09:16:53 +00:00
|
|
|
void hcl_seterrbfmtwithsyserr (
|
2021-03-28 03:44:27 +00:00
|
|
|
hcl_t* hcl,
|
|
|
|
int syserr_type,
|
2021-02-08 09:16:53 +00:00
|
|
|
int syserr_code,
|
|
|
|
const hcl_bch_t* fmt,
|
|
|
|
...
|
|
|
|
);
|
|
|
|
|
|
|
|
void hcl_seterrufmtwithsyserr (
|
2021-03-28 03:44:27 +00:00
|
|
|
hcl_t* hcl,
|
|
|
|
int syserr_type,
|
2021-02-08 09:16:53 +00:00
|
|
|
int syserr_code,
|
|
|
|
const hcl_uch_t* fmt,
|
|
|
|
...
|
|
|
|
);
|
|
|
|
|
2018-02-05 10:43:25 +00:00
|
|
|
HCL_EXPORT void hcl_seterrbfmt (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_errnum_t errnum,
|
|
|
|
const hcl_bch_t* fmt,
|
|
|
|
...
|
2016-09-28 14:40:37 +00:00
|
|
|
);
|
|
|
|
|
2018-02-05 10:43:25 +00:00
|
|
|
HCL_EXPORT void hcl_seterrufmt (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_errnum_t errnum,
|
|
|
|
const hcl_uch_t* fmt,
|
|
|
|
...
|
2016-09-28 14:40:37 +00:00
|
|
|
);
|
|
|
|
|
2018-03-14 14:40:05 +00:00
|
|
|
HCL_EXPORT void hcl_seterrbfmtv (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_errnum_t errnum,
|
|
|
|
const hcl_bch_t* fmt,
|
|
|
|
va_list ap
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT void hcl_seterrufmtv (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_errnum_t errnum,
|
|
|
|
const hcl_uch_t* fmt,
|
|
|
|
va_list ap
|
|
|
|
);
|
|
|
|
|
2018-02-05 10:43:25 +00:00
|
|
|
HCL_EXPORT const hcl_ooch_t* hcl_geterrstr (
|
2016-09-28 14:40:37 +00:00
|
|
|
hcl_t* hcl
|
|
|
|
);
|
|
|
|
|
2018-02-05 10:43:25 +00:00
|
|
|
HCL_EXPORT const hcl_ooch_t* hcl_geterrmsg (
|
|
|
|
hcl_t* hcl
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT const hcl_ooch_t* hcl_backuperrmsg (
|
|
|
|
hcl_t* hcl
|
2016-09-28 14:40:37 +00:00
|
|
|
);
|
|
|
|
|
2018-03-14 10:14:38 +00:00
|
|
|
HCL_EXPORT const hcl_ooch_t* hcl_errnum_to_errstr (
|
|
|
|
hcl_errnum_t errnum
|
|
|
|
);
|
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
/**
|
|
|
|
* The hcl_getoption() function gets the value of an option
|
|
|
|
* specified by \a id into the buffer pointed to by \a value.
|
|
|
|
*
|
|
|
|
* \return 0 on success, -1 on failure
|
|
|
|
*/
|
|
|
|
HCL_EXPORT int hcl_getoption (
|
2018-02-05 10:43:25 +00:00
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_option_t id,
|
2016-09-28 14:40:37 +00:00
|
|
|
void* value
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
2021-03-28 03:44:27 +00:00
|
|
|
* The hcl_setoption() function sets the value of an option
|
2016-09-28 14:40:37 +00:00
|
|
|
* specified by \a id to the value pointed to by \a value.
|
|
|
|
*
|
|
|
|
* \return 0 on success, -1 on failure
|
|
|
|
*/
|
|
|
|
HCL_EXPORT int hcl_setoption (
|
2018-02-05 10:43:25 +00:00
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_option_t id,
|
2016-09-28 14:40:37 +00:00
|
|
|
const void* value
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_cb_t* hcl_regcb (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_cb_t* tmpl
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT void hcl_deregcb (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_cb_t* cb
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The hcl_gc() function performs garbage collection.
|
2020-09-28 15:44:04 +00:00
|
|
|
* It is not affected by #HCL_TRAIT_NOGC.
|
2016-09-28 14:40:37 +00:00
|
|
|
*/
|
|
|
|
HCL_EXPORT void hcl_gc (
|
2020-12-31 17:48:47 +00:00
|
|
|
hcl_t* hcl,
|
|
|
|
int full
|
2016-09-28 14:40:37 +00:00
|
|
|
);
|
|
|
|
|
2018-03-08 14:18:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The hcl_moveoop() function is used to move a live object to a new
|
|
|
|
* location in hcl_gc(). When hcl_gc() invokes registered gc callbacks,
|
|
|
|
* you may call this function to protect extra objects you might have
|
|
|
|
* allocated manually.
|
|
|
|
*/
|
|
|
|
hcl_oop_t hcl_moveoop (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oop_t oop
|
|
|
|
);
|
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
HCL_EXPORT hcl_oop_t hcl_shallowcopy (
|
2021-02-09 17:47:22 +00:00
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oop_t oop
|
2016-09-28 14:40:37 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The hcl_ignite() function creates key initial objects.
|
|
|
|
*/
|
|
|
|
HCL_EXPORT int hcl_ignite (
|
2021-02-09 17:47:22 +00:00
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oow_t heapsize
|
2016-09-28 14:40:37 +00:00
|
|
|
);
|
|
|
|
|
2018-03-19 09:22:12 +00:00
|
|
|
HCL_EXPORT int hcl_addbuiltinprims (
|
2021-02-09 17:47:22 +00:00
|
|
|
hcl_t* hcl
|
2018-03-19 09:22:12 +00:00
|
|
|
);
|
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
/**
|
|
|
|
* The hcl_execute() function executes an activated context.
|
|
|
|
*/
|
2018-02-22 12:57:31 +00:00
|
|
|
HCL_EXPORT hcl_oop_t hcl_execute (
|
2016-09-28 14:40:37 +00:00
|
|
|
hcl_t* hcl
|
|
|
|
);
|
|
|
|
|
2018-03-10 17:53:44 +00:00
|
|
|
HCL_EXPORT void hcl_abort (
|
|
|
|
hcl_t* hcl
|
|
|
|
);
|
|
|
|
|
2018-04-07 04:43:56 +00:00
|
|
|
|
|
|
|
#if defined(HCL_HAVE_INLINE)
|
|
|
|
static HCL_INLINE void hcl_switchprocess (hcl_t* hcl) { hcl->switch_proc = 1; }
|
|
|
|
#else
|
|
|
|
# define hcl_switchprocess(hcl) ((hcl)->switch_proc = 1)
|
|
|
|
#endif
|
|
|
|
|
2022-07-31 13:17:44 +00:00
|
|
|
HCL_EXPORT hcl_ioinarg_t* hcl_getbaseinarg (
|
2022-07-29 14:41:00 +00:00
|
|
|
hcl_t* hcl
|
|
|
|
);
|
2018-04-07 04:43:56 +00:00
|
|
|
|
2022-07-31 13:17:44 +00:00
|
|
|
HCL_EXPORT void hcl_setbaseinloc (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oow_t line,
|
|
|
|
hcl_oow_t colm
|
|
|
|
);
|
|
|
|
|
2022-08-02 13:41:13 +00:00
|
|
|
/* if you should read charcters from the input stream before hcl_read(),
|
|
|
|
* you can call hcl_readbaseinchar() */
|
|
|
|
HCL_EXPORT hcl_iolxc_t* hcl_readbaseinchar (
|
|
|
|
hcl_t* hcl
|
|
|
|
);
|
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
HCL_EXPORT int hcl_attachio (
|
2022-07-29 11:29:47 +00:00
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_ioimpl_t reader,
|
|
|
|
hcl_ioimpl_t printer
|
2016-09-28 14:40:37 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT void hcl_detachio (
|
|
|
|
hcl_t* hcl
|
|
|
|
);
|
|
|
|
|
2019-04-17 05:37:56 +00:00
|
|
|
HCL_EXPORT void hcl_flushio (
|
|
|
|
hcl_t* hcl
|
|
|
|
);
|
2016-09-28 14:40:37 +00:00
|
|
|
|
2021-01-29 08:40:10 +00:00
|
|
|
HCL_EXPORT hcl_cnode_t* hcl_read (
|
2021-01-15 09:12:28 +00:00
|
|
|
hcl_t* hcl
|
|
|
|
);
|
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
HCL_EXPORT int hcl_print (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oop_t obj
|
|
|
|
);
|
|
|
|
|
2018-03-16 17:27:24 +00:00
|
|
|
HCL_EXPORT hcl_ooi_t hcl_proutbfmt (
|
|
|
|
hcl_t* hcl,
|
2018-04-26 04:39:20 +00:00
|
|
|
hcl_bitmask_t mask,
|
2018-03-16 17:27:24 +00:00
|
|
|
const hcl_bch_t* fmt,
|
|
|
|
...
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_ooi_t hcl_proutufmt (
|
|
|
|
hcl_t* hcl,
|
2018-04-26 04:39:20 +00:00
|
|
|
hcl_bitmask_t mask,
|
2018-03-16 17:27:24 +00:00
|
|
|
const hcl_uch_t* fmt,
|
|
|
|
...
|
|
|
|
);
|
|
|
|
|
2021-04-24 13:50:51 +00:00
|
|
|
#if defined(HCL_INCLUDE_COMPILER)
|
2022-05-25 14:23:43 +00:00
|
|
|
|
2022-07-29 11:29:47 +00:00
|
|
|
HCL_EXPORT void hcl_freecnode (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_cnode_t* cnode
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT void hcl_beginfeed (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_on_cnode_t on_cnode
|
|
|
|
);
|
|
|
|
|
2022-05-25 14:23:43 +00:00
|
|
|
HCL_EXPORT int hcl_feed (
|
|
|
|
hcl_t* hcl,
|
|
|
|
const hcl_ooch_t* data,
|
|
|
|
hcl_oow_t len
|
|
|
|
);
|
|
|
|
|
|
|
|
#define hcl_endfeed(hcl) (hcl_feed((hcl), HCL_NULL, 0))
|
|
|
|
|
2021-01-29 08:40:10 +00:00
|
|
|
HCL_EXPORT int hcl_compile (
|
2016-09-28 14:40:37 +00:00
|
|
|
hcl_t* hcl,
|
2021-04-24 13:50:51 +00:00
|
|
|
hcl_cnode_t* obj,
|
|
|
|
int flags
|
2016-09-28 14:40:37 +00:00
|
|
|
);
|
2021-04-24 13:50:51 +00:00
|
|
|
#endif
|
2016-09-28 14:40:37 +00:00
|
|
|
|
2018-03-11 11:16:28 +00:00
|
|
|
/**
|
2021-03-28 03:44:27 +00:00
|
|
|
* The hcl_decode() function decodes instructions from the position
|
2018-03-11 11:16:28 +00:00
|
|
|
* \a start to the position \a end - 1, and prints the decoded instructions
|
2021-03-28 03:44:27 +00:00
|
|
|
* in the textual form.
|
2018-03-11 11:16:28 +00:00
|
|
|
*/
|
2016-09-28 14:40:37 +00:00
|
|
|
HCL_EXPORT int hcl_decode (
|
2018-03-11 11:16:28 +00:00
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oow_t start,
|
|
|
|
hcl_oow_t end
|
2016-09-28 14:40:37 +00:00
|
|
|
);
|
|
|
|
|
2018-03-11 11:16:28 +00:00
|
|
|
#if defined(HCL_HAVE_INLINE)
|
|
|
|
static HCL_INLINE hcl_oow_t hcl_getbclen (hcl_t* hcl) { return hcl->code.bc.len; }
|
|
|
|
static HCL_INLINE hcl_oow_t hcl_getlflen (hcl_t* hcl) { return hcl->code.lit.len; }
|
|
|
|
static HCL_INLINE hcl_ooi_t hcl_getip (hcl_t* hcl) { return hcl->ip; }
|
|
|
|
#else
|
|
|
|
# define hcl_getbclen(hcl) ((hcl)->code.bc.len)
|
|
|
|
# define hcl_getlflen(hcl) ((hcl)->code.lit.len)
|
|
|
|
# define hcl_getip(hcl) ((hcl)->ip)
|
|
|
|
#endif
|
|
|
|
|
2018-03-04 14:43:23 +00:00
|
|
|
|
2018-02-12 16:51:38 +00:00
|
|
|
/* =========================================================================
|
|
|
|
* SYNTAX ERROR HANDLING
|
|
|
|
* ========================================================================= */
|
2016-09-28 14:40:37 +00:00
|
|
|
HCL_EXPORT void hcl_getsynerr (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_synerr_t* synerr
|
|
|
|
);
|
|
|
|
|
2018-07-28 04:08:09 +00:00
|
|
|
HCL_EXPORT hcl_synerrnum_t hcl_getsynerrnum (
|
|
|
|
hcl_t* hcl
|
|
|
|
);
|
2018-02-06 10:16:01 +00:00
|
|
|
|
|
|
|
HCL_EXPORT void hcl_setsynerrbfmt (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_synerrnum_t num,
|
|
|
|
const hcl_ioloc_t* loc,
|
|
|
|
const hcl_oocs_t* tgt,
|
|
|
|
const hcl_bch_t* msgfmt,
|
|
|
|
...
|
2016-09-28 14:40:37 +00:00
|
|
|
);
|
|
|
|
|
2018-02-06 10:16:01 +00:00
|
|
|
HCL_EXPORT void hcl_setsynerrufmt (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_synerrnum_t num,
|
|
|
|
const hcl_ioloc_t* loc,
|
|
|
|
const hcl_oocs_t* tgt,
|
|
|
|
const hcl_uch_t* msgfmt,
|
|
|
|
...
|
|
|
|
);
|
|
|
|
|
|
|
|
#if defined(HCL_HAVE_INLINE)
|
2018-02-26 15:24:45 +00:00
|
|
|
static HCL_INLINE void hcl_setsynerr (hcl_t* hcl, hcl_synerrnum_t num, const hcl_ioloc_t* loc, const hcl_oocs_t* tgt)
|
2018-02-06 10:16:01 +00:00
|
|
|
{
|
|
|
|
hcl_setsynerrbfmt (hcl, num, loc, tgt, HCL_NULL);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
# define hcl_setsynerr(hcl,num,loc,tgt) hcl_setsynerrbfmt(hcl,num,loc,tgt,HCL_NULL)
|
|
|
|
#endif
|
|
|
|
|
2018-02-12 16:51:38 +00:00
|
|
|
/* =========================================================================
|
|
|
|
* TEMPORARY OOP MANAGEMENT FUNCTIONS
|
|
|
|
* ========================================================================= */
|
2020-12-31 17:48:47 +00:00
|
|
|
HCL_EXPORT void hcl_pushvolat (
|
2018-02-12 16:51:38 +00:00
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oop_t* oop_ptr
|
|
|
|
);
|
|
|
|
|
2020-12-31 17:48:47 +00:00
|
|
|
HCL_EXPORT void hcl_popvolat (
|
2018-02-12 16:51:38 +00:00
|
|
|
hcl_t* hcl
|
|
|
|
);
|
|
|
|
|
2020-12-31 17:48:47 +00:00
|
|
|
HCL_EXPORT void hcl_popvolats (
|
2018-02-12 16:51:38 +00:00
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oow_t count
|
|
|
|
);
|
|
|
|
|
|
|
|
/* =========================================================================
|
|
|
|
* SYSTEM MEMORY MANAGEMENT FUCNTIONS VIA MMGR
|
|
|
|
* ========================================================================= */
|
2016-09-28 14:40:37 +00:00
|
|
|
HCL_EXPORT void* hcl_allocmem (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oow_t size
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT void* hcl_callocmem (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oow_t size
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT void* hcl_reallocmem (
|
|
|
|
hcl_t* hcl,
|
|
|
|
void* ptr,
|
|
|
|
hcl_oow_t size
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT void hcl_freemem (
|
|
|
|
hcl_t* hcl,
|
|
|
|
void* ptr
|
|
|
|
);
|
|
|
|
|
2018-02-12 16:51:38 +00:00
|
|
|
|
|
|
|
/* =========================================================================
|
|
|
|
* PRIMITIVE FUNCTION MANIPULATION
|
|
|
|
* ========================================================================= */
|
|
|
|
HCL_EXPORT hcl_pfbase_t* hcl_findpfbase (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_pfinfo_t* pfinfo,
|
|
|
|
hcl_oow_t pfcount,
|
|
|
|
const hcl_ooch_t* name,
|
|
|
|
hcl_oow_t namelen
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/* =========================================================================
|
|
|
|
* LOGGING
|
|
|
|
* ========================================================================= */
|
2018-03-14 10:14:38 +00:00
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
HCL_EXPORT hcl_ooi_t hcl_logbfmt (
|
|
|
|
hcl_t* hcl,
|
2018-04-26 04:39:20 +00:00
|
|
|
hcl_bitmask_t mask,
|
2016-09-28 14:40:37 +00:00
|
|
|
const hcl_bch_t* fmt,
|
|
|
|
...
|
|
|
|
);
|
|
|
|
|
2018-03-14 10:14:38 +00:00
|
|
|
HCL_EXPORT hcl_ooi_t hcl_logbfmtv (
|
|
|
|
hcl_t* hcl,
|
2018-04-26 04:39:20 +00:00
|
|
|
hcl_bitmask_t mask,
|
2018-03-14 10:14:38 +00:00
|
|
|
const hcl_bch_t* fmt,
|
|
|
|
va_list ap
|
|
|
|
);
|
|
|
|
|
2018-02-26 10:49:31 +00:00
|
|
|
HCL_EXPORT hcl_ooi_t hcl_logufmt (
|
|
|
|
hcl_t* hcl,
|
2018-04-26 04:39:20 +00:00
|
|
|
hcl_bitmask_t mask,
|
2018-02-26 10:49:31 +00:00
|
|
|
const hcl_uch_t* fmt,
|
2016-09-28 14:40:37 +00:00
|
|
|
...
|
|
|
|
);
|
|
|
|
|
2018-03-14 10:14:38 +00:00
|
|
|
HCL_EXPORT hcl_ooi_t hcl_logufmtv (
|
|
|
|
hcl_t* hcl,
|
2018-04-26 04:39:20 +00:00
|
|
|
hcl_bitmask_t mask,
|
2018-03-14 10:14:38 +00:00
|
|
|
const hcl_uch_t* fmt,
|
|
|
|
va_list ap
|
|
|
|
);
|
|
|
|
|
2018-02-12 16:51:38 +00:00
|
|
|
#if defined(HCL_OOCH_IS_UCH)
|
|
|
|
# define hcl_logoofmt hcl_logufmt
|
2018-03-14 10:14:38 +00:00
|
|
|
# define hcl_logoofmtv hcl_logufmtv
|
2018-02-12 16:51:38 +00:00
|
|
|
#else
|
|
|
|
# define hcl_logoofmt hcl_logbfmt
|
2018-03-14 10:14:38 +00:00
|
|
|
# define hcl_logoofmtv hcl_logbfmtv
|
2018-02-12 16:51:38 +00:00
|
|
|
#endif
|
|
|
|
|
2019-05-31 10:54:13 +00:00
|
|
|
HCL_EXPORT hcl_ooi_t hcl_prbfmt (
|
|
|
|
hcl_t* hcl,
|
|
|
|
const hcl_bch_t* fmt,
|
|
|
|
...
|
|
|
|
);
|
|
|
|
|
2019-06-02 05:06:08 +00:00
|
|
|
HCL_EXPORT hcl_ooi_t hcl_prbfmtv (
|
|
|
|
hcl_t* hcl,
|
|
|
|
const hcl_bch_t* fmt,
|
|
|
|
va_list ap
|
|
|
|
);
|
|
|
|
|
2019-05-31 10:54:13 +00:00
|
|
|
HCL_EXPORT hcl_ooi_t hcl_prufmt (
|
|
|
|
hcl_t* hcl,
|
|
|
|
const hcl_uch_t* fmt,
|
|
|
|
...
|
|
|
|
);
|
2016-09-28 14:40:37 +00:00
|
|
|
|
2019-06-02 05:06:08 +00:00
|
|
|
HCL_EXPORT hcl_ooi_t hcl_prufmtv (
|
|
|
|
hcl_t* hcl,
|
|
|
|
const hcl_uch_t* fmt,
|
|
|
|
va_list ap
|
|
|
|
);
|
|
|
|
|
|
|
|
#if defined(HCL_OOCH_IS_UCH)
|
|
|
|
# define hcl_proofmt hcl_prufmt
|
|
|
|
# define hcl_proofmtv hcl_prufmtv
|
|
|
|
#else
|
|
|
|
# define hcl_proofmt hcl_prbfmt
|
|
|
|
# define hcl_proofmtv hcl_prbfmtv
|
|
|
|
#endif
|
2021-03-30 05:37:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* =========================================================================
|
|
|
|
* STRING FORMATTING
|
|
|
|
* ========================================================================= */
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_oow_t hcl_vfmttoucstr (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_uch_t* buf,
|
|
|
|
hcl_oow_t bufsz,
|
|
|
|
const hcl_uch_t* fmt,
|
2022-08-02 13:41:13 +00:00
|
|
|
va_list ap
|
2021-03-30 05:37:00 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_oow_t hcl_fmttoucstr (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_uch_t* buf,
|
|
|
|
hcl_oow_t bufsz,
|
|
|
|
const hcl_uch_t* fmt,
|
|
|
|
...
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_oow_t hcl_vfmttobcstr (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_bch_t* buf,
|
|
|
|
hcl_oow_t bufsz,
|
|
|
|
const hcl_bch_t* fmt,
|
2022-08-02 13:41:13 +00:00
|
|
|
va_list ap
|
2021-03-30 05:37:00 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_oow_t hcl_fmttobcstr (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_bch_t* buf,
|
|
|
|
hcl_oow_t bufsz,
|
|
|
|
const hcl_bch_t* fmt,
|
|
|
|
...
|
|
|
|
);
|
|
|
|
|
|
|
|
#if defined(HCL_OOCH_IS_UCH)
|
|
|
|
# define hcl_vfmttooocstr hcl_vfmttoucstr
|
|
|
|
# define hcl_fmttooocstr hcl_fmttoucstr
|
|
|
|
#else
|
|
|
|
# define hcl_vfmttooocstr hcl_vfmttobcstr
|
|
|
|
# define hcl_fmttooocstr hcl_fmttobcstr
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2018-02-12 16:51:38 +00:00
|
|
|
/* =========================================================================
|
|
|
|
* OBJECT MANAGEMENT
|
|
|
|
* ========================================================================= */
|
2022-05-05 04:03:56 +00:00
|
|
|
HCL_EXPORT hcl_oop_t hcl_makeundef (
|
|
|
|
hcl_t* hcl
|
|
|
|
);
|
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
HCL_EXPORT hcl_oop_t hcl_makenil (
|
|
|
|
hcl_t* hcl
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_oop_t hcl_maketrue (
|
|
|
|
hcl_t* hcl
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_oop_t hcl_makefalse (
|
|
|
|
hcl_t* hcl
|
|
|
|
);
|
|
|
|
|
2018-02-13 11:48:16 +00:00
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
HCL_EXPORT hcl_oop_t hcl_makecons (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oop_t car,
|
|
|
|
hcl_oop_t cdr
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_oop_t hcl_makearray (
|
|
|
|
hcl_t* hcl,
|
2018-02-22 07:41:03 +00:00
|
|
|
hcl_oow_t size,
|
|
|
|
int ngc
|
2016-09-28 14:40:37 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_oop_t hcl_makebytearray (
|
|
|
|
hcl_t* hcl,
|
|
|
|
const hcl_oob_t* ptr,
|
|
|
|
hcl_oow_t len
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_oop_t hcl_makestring (
|
|
|
|
hcl_t* hcl,
|
|
|
|
const hcl_ooch_t* ptr,
|
2018-02-13 16:10:41 +00:00
|
|
|
hcl_oow_t len,
|
|
|
|
int ngc
|
2016-09-28 14:40:37 +00:00
|
|
|
);
|
|
|
|
|
2018-03-28 16:40:42 +00:00
|
|
|
HCL_EXPORT hcl_oop_t hcl_makefpdec (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oop_t value,
|
|
|
|
hcl_ooi_t scale
|
|
|
|
);
|
|
|
|
|
2018-02-07 10:55:20 +00:00
|
|
|
HCL_EXPORT hcl_oop_t hcl_makedic (
|
2021-03-28 03:44:27 +00:00
|
|
|
hcl_t* hcl,
|
2016-09-28 14:40:37 +00:00
|
|
|
hcl_oow_t inisize /* initial bucket size */
|
|
|
|
);
|
|
|
|
|
2016-10-04 17:56:28 +00:00
|
|
|
HCL_EXPORT hcl_oop_t hcl_makecontext (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_ooi_t ntmprs
|
|
|
|
);
|
|
|
|
|
2021-05-21 09:59:35 +00:00
|
|
|
HCL_EXPORT hcl_oop_t hcl_makeclass (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oop_t superclass,
|
|
|
|
hcl_ooi_t nivars,
|
2021-06-27 17:47:51 +00:00
|
|
|
hcl_ooi_t ncvars,
|
|
|
|
hcl_oop_t ivars_str,
|
|
|
|
hcl_oop_t cvars_str
|
2021-05-21 09:59:35 +00:00
|
|
|
);
|
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
HCL_EXPORT void hcl_freengcobj (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oop_t obj
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_oop_t hcl_makengcbytearray (
|
|
|
|
hcl_t* hcl,
|
|
|
|
const hcl_oob_t* ptr,
|
|
|
|
hcl_oow_t len
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_oop_t hcl_remakengcbytearray (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oop_t obj,
|
|
|
|
hcl_oow_t newsz
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_oop_t hcl_makengcarray (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oow_t len
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_oop_t hcl_remakengcarray (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oop_t obj,
|
|
|
|
hcl_oow_t newsz
|
|
|
|
);
|
|
|
|
|
2018-02-12 16:51:38 +00:00
|
|
|
HCL_EXPORT hcl_oop_t hcl_makeprim (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_pfimpl_t primimpl,
|
|
|
|
hcl_oow_t minargs,
|
2018-02-28 04:52:01 +00:00
|
|
|
hcl_oow_t maxargs,
|
|
|
|
hcl_mod_t* mod
|
2018-02-12 16:51:38 +00:00
|
|
|
);
|
2016-09-28 14:40:37 +00:00
|
|
|
|
2018-02-19 16:17:46 +00:00
|
|
|
|
|
|
|
HCL_EXPORT hcl_oop_t hcl_makebigint (
|
2021-03-28 03:44:27 +00:00
|
|
|
hcl_t* hcl,
|
2018-02-19 16:17:46 +00:00
|
|
|
int brand,
|
|
|
|
const hcl_liw_t* ptr,
|
|
|
|
hcl_oow_t len
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_oop_t hcl_oowtoint (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oow_t w
|
|
|
|
);
|
|
|
|
|
2019-08-13 07:15:12 +00:00
|
|
|
HCL_EXPORT hcl_oop_t hcl_ooitoint (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_ooi_t i
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT int hcl_inttooow (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oop_t x,
|
|
|
|
hcl_oow_t* w
|
|
|
|
);
|
2018-02-28 10:17:05 +00:00
|
|
|
|
|
|
|
HCL_EXPORT int hcl_inttoooi (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oop_t x,
|
|
|
|
hcl_ooi_t* i
|
|
|
|
);
|
|
|
|
|
2021-03-28 03:44:27 +00:00
|
|
|
#if (HCL_SIZEOF_UINTMAX_T == HCL_SIZEOF_OOW_T)
|
|
|
|
# define hcl_inttouintmax hcl_inttooow
|
|
|
|
# define hcl_inttointmax hcl_inttoooi
|
|
|
|
# define hcl_uintmaxtoint hcl_oowtoint
|
|
|
|
# define hcl_intmaxtoint hcl_ooitoint
|
|
|
|
#else
|
|
|
|
|
2019-08-13 07:15:12 +00:00
|
|
|
HCL_EXPORT hcl_oop_t hcl_intmaxtoint (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_intmax_t i
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_oop_t hcl_uintmaxtoint (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_uintmax_t i
|
2018-02-28 10:17:05 +00:00
|
|
|
);
|
|
|
|
|
2019-08-13 07:15:12 +00:00
|
|
|
HCL_EXPORT int hcl_inttouintmax (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oop_t x,
|
|
|
|
hcl_uintmax_t* w
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT int hcl_inttointmax (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oop_t x,
|
|
|
|
hcl_intmax_t* i
|
|
|
|
);
|
|
|
|
#endif
|
|
|
|
|
2018-02-12 16:51:38 +00:00
|
|
|
/* =========================================================================
|
|
|
|
* CONS OBJECT UTILITIES
|
|
|
|
* ========================================================================= */
|
2016-09-28 14:40:37 +00:00
|
|
|
HCL_EXPORT hcl_oow_t hcl_countcons (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oop_t cons
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_oop_t hcl_getlastconscdr (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oop_t cons
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_oop_t hcl_reversecons (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oop_t cons
|
|
|
|
);
|
|
|
|
|
2018-02-12 16:51:38 +00:00
|
|
|
/* =========================================================================
|
|
|
|
* DICTIONARY ACCESS FUNCTIONS
|
|
|
|
* ========================================================================= */
|
|
|
|
HCL_EXPORT hcl_oop_cons_t hcl_putatsysdic (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oop_t key,
|
|
|
|
hcl_oop_t value
|
2016-10-06 17:49:47 +00:00
|
|
|
);
|
|
|
|
|
2018-02-12 16:51:38 +00:00
|
|
|
HCL_EXPORT hcl_oop_cons_t hcl_getatsysdic (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oop_t key
|
|
|
|
);
|
|
|
|
|
2022-01-25 07:54:11 +00:00
|
|
|
HCL_EXPORT hcl_oop_cons_t hcl_lookupsysdicforsymbol (
|
2021-01-22 14:43:47 +00:00
|
|
|
hcl_t* hcl,
|
|
|
|
const hcl_oocs_t* name
|
|
|
|
);
|
|
|
|
|
2022-01-25 07:54:11 +00:00
|
|
|
HCL_EXPORT hcl_oop_cons_t hcl_lookupsysdicforsymbol_noseterr (
|
2021-01-22 14:43:47 +00:00
|
|
|
hcl_t* hcl,
|
|
|
|
const hcl_oocs_t* name
|
|
|
|
);
|
|
|
|
|
2018-03-08 14:18:30 +00:00
|
|
|
HCL_EXPORT int hcl_zapatsysdic (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oop_t key
|
|
|
|
);
|
|
|
|
|
2022-01-25 07:54:11 +00:00
|
|
|
HCL_EXPORT hcl_oop_cons_t hcl_lookupdicforsymbol (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oop_dic_t dic,
|
|
|
|
const hcl_oocs_t* name
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_oop_cons_t hcl_lookupdicforsymbol_noseterr (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oop_dic_t dic,
|
|
|
|
const hcl_oocs_t* name
|
|
|
|
);
|
|
|
|
|
2018-02-12 16:51:38 +00:00
|
|
|
HCL_EXPORT hcl_oop_cons_t hcl_putatdic (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oop_dic_t dic,
|
|
|
|
hcl_oop_t key,
|
|
|
|
hcl_oop_t value
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_oop_cons_t hcl_getatdic (
|
|
|
|
hcl_t* hcl,
|
2018-03-08 14:18:30 +00:00
|
|
|
hcl_oop_dic_t dic,
|
|
|
|
hcl_oop_t key
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
HCL_EXPORT int hcl_zapatdic (
|
|
|
|
hcl_t* hcl,
|
2018-02-12 16:51:38 +00:00
|
|
|
hcl_oop_dic_t dic,
|
|
|
|
hcl_oop_t key
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT int hcl_walkdic (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oop_dic_t dic,
|
|
|
|
hcl_dic_walker_t walker,
|
|
|
|
void* ctx
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* =========================================================================
|
|
|
|
* OBJECT HASHING AND COMPARISION
|
|
|
|
* ========================================================================= */
|
|
|
|
|
2018-02-07 07:35:30 +00:00
|
|
|
HCL_EXPORT int hcl_hashobj (
|
2021-03-28 03:44:27 +00:00
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oop_t obj,
|
2018-02-07 07:35:30 +00:00
|
|
|
hcl_oow_t* xhv
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT int hcl_equalobjs (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oop_t rcv,
|
|
|
|
hcl_oop_t arg
|
|
|
|
);
|
2018-02-05 10:43:25 +00:00
|
|
|
|
2018-02-12 16:51:38 +00:00
|
|
|
|
|
|
|
/* =========================================================================
|
|
|
|
* STRING ENCODING CONVERSION
|
|
|
|
* ========================================================================= */
|
|
|
|
|
|
|
|
#if defined(HCL_OOCH_IS_UCH)
|
|
|
|
# define hcl_convootobchars(hcl,oocs,oocslen,bcs,bcslen) hcl_convutobchars(hcl,oocs,oocslen,bcs,bcslen)
|
|
|
|
# define hcl_convbtooochars(hcl,bcs,bcslen,oocs,oocslen) hcl_convbtouchars(hcl,bcs,bcslen,oocs,oocslen)
|
|
|
|
# define hcl_convootobcstr(hcl,oocs,oocslen,bcs,bcslen) hcl_convutobcstr(hcl,oocs,oocslen,bcs,bcslen)
|
|
|
|
# define hcl_convbtooocstr(hcl,bcs,bcslen,oocs,oocslen) hcl_convbtoucstr(hcl,bcs,bcslen,oocs,oocslen)
|
|
|
|
#else
|
2018-02-26 10:49:31 +00:00
|
|
|
# define hcl_convootouchars(hcl,oocs,oocslen,ucs,ucslen) hcl_convbtouchars(hcl,oocs,oocslen,ucs,ucslen)
|
|
|
|
# define hcl_convutooochars(hcl,ucs,ucslen,oocs,oocslen) hcl_convutobchars(hcl,ucs,ucslen,oocs,oocslen)
|
|
|
|
# define hcl_convootoucstr(hcl,oocs,oocslen,ucs,ucslen) hcl_convbtoucstr(hcl,oocs,oocslen,ucs,ucslen)
|
|
|
|
# define hcl_convutooocstr(hcl,ucs,ucslen,oocs,oocslen) hcl_convutobcstr(hcl,ucs,ucslen,oocs,oocslen)
|
2018-02-12 16:51:38 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
HCL_EXPORT int hcl_convbtouchars (
|
|
|
|
hcl_t* hcl,
|
|
|
|
const hcl_bch_t* bcs,
|
|
|
|
hcl_oow_t* bcslen,
|
|
|
|
hcl_uch_t* ucs,
|
|
|
|
hcl_oow_t* ucslen
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT int hcl_convutobchars (
|
|
|
|
hcl_t* hcl,
|
|
|
|
const hcl_uch_t* ucs,
|
|
|
|
hcl_oow_t* ucslen,
|
|
|
|
hcl_bch_t* bcs,
|
|
|
|
hcl_oow_t* bcslen
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2021-03-28 03:44:27 +00:00
|
|
|
* The hcl_convbtoucstr() function converts a null-terminated byte string
|
2018-02-12 16:51:38 +00:00
|
|
|
* to a wide string.
|
|
|
|
*/
|
|
|
|
HCL_EXPORT int hcl_convbtoucstr (
|
|
|
|
hcl_t* hcl,
|
|
|
|
const hcl_bch_t* bcs,
|
|
|
|
hcl_oow_t* bcslen,
|
|
|
|
hcl_uch_t* ucs,
|
|
|
|
hcl_oow_t* ucslen
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The hcl_convutobcstr() function converts a null-terminated wide string
|
|
|
|
* to a byte string.
|
|
|
|
*/
|
2018-03-12 16:45:42 +00:00
|
|
|
HCL_EXPORT int hcl_convutobcstr (
|
2018-02-12 16:51:38 +00:00
|
|
|
hcl_t* hcl,
|
|
|
|
const hcl_uch_t* ucs,
|
|
|
|
hcl_oow_t* ucslen,
|
|
|
|
hcl_bch_t* bcs,
|
|
|
|
hcl_oow_t* bcslen
|
|
|
|
);
|
|
|
|
|
|
|
|
#if defined(HCL_OOCH_IS_UCH)
|
|
|
|
# define hcl_dupootobcharswithheadroom(hcl,hrb,oocs,oocslen,bcslen) hcl_duputobcharswithheadroom(hcl,hrb,oocs,oocslen,bcslen)
|
|
|
|
# define hcl_dupbtooocharswithheadroom(hcl,hrb,bcs,bcslen,oocslen) hcl_dupbtoucharswithheadroom(hcl,hrb,bcs,bcslen,oocslen)
|
|
|
|
# define hcl_dupootobchars(hcl,oocs,oocslen,bcslen) hcl_duputobchars(hcl,oocs,oocslen,bcslen)
|
|
|
|
# define hcl_dupbtooochars(hcl,bcs,bcslen,oocslen) hcl_dupbtouchars(hcl,bcs,bcslen,oocslen)
|
|
|
|
|
|
|
|
# define hcl_dupootobcstrwithheadroom(hcl,hrb,oocs,bcslen) hcl_duputobcstrwithheadroom(hcl,hrb,oocs,bcslen)
|
|
|
|
# define hcl_dupbtooocstrwithheadroom(hcl,hrb,bcs,oocslen) hcl_dupbtoucstrwithheadroom(hcl,hrb,bcs,oocslen)
|
|
|
|
# define hcl_dupootobcstr(hcl,oocs,bcslen) hcl_duputobcstr(hcl,oocs,bcslen)
|
|
|
|
# define hcl_dupbtooocstr(hcl,bcs,oocslen) hcl_dupbtoucstr(hcl,bcs,oocslen)
|
2021-03-28 18:12:07 +00:00
|
|
|
|
|
|
|
# define hcl_dupootoucstr(hcl,oocs,ucslen) hcl_dupucstr(hcl,oocs,ucslen)
|
|
|
|
# define hcl_duputooocstr(hcl,ucs,oocslen) hcl_dupucstr(hcl,ucs,oocslen)
|
2018-02-12 16:51:38 +00:00
|
|
|
#else
|
|
|
|
# define hcl_dupootoucharswithheadroom(hcl,hrb,oocs,oocslen,ucslen) hcl_dupbtoucharswithheadroom(hcl,hrb,oocs,oocslen,ucslen)
|
|
|
|
# define hcl_duputooocharswithheadroom(hcl,hrb,ucs,ucslen,oocslen) hcl_duputobcharswithheadroom(hcl,hrb,ucs,ucslen,oocslen)
|
|
|
|
# define hcl_dupootouchars(hcl,oocs,oocslen,ucslen) hcl_dupbtouchars(hcl,oocs,oocslen,ucslen)
|
|
|
|
# define hcl_duputooochars(hcl,ucs,ucslen,oocslen) hcl_duputobchars(hcl,ucs,ucslen,oocslen)
|
|
|
|
|
|
|
|
# define hcl_dupootoucstrwithheadroom(hcl,hrb,oocs,ucslen) hcl_dupbtoucstrwithheadroom(hcl,hrb,oocs,ucslen)
|
|
|
|
# define hcl_duputooocstrwithheadroom(hcl,hrb,ucs,oocslen) hcl_duputobcstrwithheadroom(hcl,hrb,ucs,oocslen)
|
|
|
|
# define hcl_dupootoucstr(hcl,oocs,ucslen) hcl_dupbtoucstr(hcl,oocs,ucslen)
|
|
|
|
# define hcl_duputooocstr(hcl,ucs,oocslen) hcl_duputobcstr(hcl,ucs,oocslen)
|
2021-03-28 18:12:07 +00:00
|
|
|
|
|
|
|
# define hcl_dupootobcstr(hcl,oocs,bcslen) hcl_dupbcstr(hcl,oocs,bcslen)
|
|
|
|
# define hcl_dupbtooocstr(hcl,bcs,oocslen) hcl_dupbcstr(hcl,bcs,oocslen)
|
2018-02-12 16:51:38 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_uch_t* hcl_dupbtoucharswithheadroom (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oow_t headroom_bytes,
|
|
|
|
const hcl_bch_t* bcs,
|
|
|
|
hcl_oow_t bcslen,
|
|
|
|
hcl_oow_t* ucslen
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_bch_t* hcl_duputobcharswithheadroom (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oow_t headroom_bytes,
|
|
|
|
const hcl_uch_t* ucs,
|
|
|
|
hcl_oow_t ucslen,
|
|
|
|
hcl_oow_t* bcslen
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_uch_t* hcl_dupbtouchars (
|
|
|
|
hcl_t* hcl,
|
|
|
|
const hcl_bch_t* bcs,
|
|
|
|
hcl_oow_t bcslen,
|
|
|
|
hcl_oow_t* ucslen
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_bch_t* hcl_duputobchars (
|
|
|
|
hcl_t* hcl,
|
|
|
|
const hcl_uch_t* ucs,
|
|
|
|
hcl_oow_t ucslen,
|
|
|
|
hcl_oow_t* bcslen
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_uch_t* hcl_dupbtoucstrwithheadroom (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oow_t headroom_bytes,
|
|
|
|
const hcl_bch_t* bcs,
|
|
|
|
hcl_oow_t* ucslen
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_bch_t* hcl_duputobcstrwithheadroom (
|
|
|
|
hcl_t* hcl,
|
|
|
|
hcl_oow_t headroom_bytes,
|
|
|
|
const hcl_uch_t* ucs,
|
|
|
|
hcl_oow_t* bcslen
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_uch_t* hcl_dupbtoucstr (
|
|
|
|
hcl_t* hcl,
|
|
|
|
const hcl_bch_t* bcs,
|
|
|
|
hcl_oow_t* ucslen /* optional: length of returned string */
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_bch_t* hcl_duputobcstr (
|
|
|
|
hcl_t* hcl,
|
|
|
|
const hcl_uch_t* ucs,
|
|
|
|
hcl_oow_t* bcslen /* optional: length of returned string */
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
#if defined(HCL_OOCH_IS_UCH)
|
|
|
|
# define hcl_dupoochars(hcl,oocs,oocslen) hcl_dupuchars(hcl,oocs,oocslen)
|
2021-03-28 18:12:07 +00:00
|
|
|
# define hcl_dupoocstr(hcl,oocs,oocslen) hcl_dupucstr(hcl,oocs,oocslen)
|
2018-02-12 16:51:38 +00:00
|
|
|
#else
|
|
|
|
# define hcl_dupoochars(hcl,oocs,oocslen) hcl_dupbchars(hcl,oocs,oocslen)
|
2021-03-28 18:12:07 +00:00
|
|
|
# define hcl_dupoocstr(hcl,oocs,oocslen) hcl_dupbcstr(hcl,oocs,oocslen)
|
2018-02-12 16:51:38 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_uch_t* hcl_dupuchars (
|
2021-03-28 18:12:07 +00:00
|
|
|
hcl_t* hcl,
|
|
|
|
const hcl_uch_t* ucs,
|
|
|
|
hcl_oow_t ucslen
|
2018-02-12 16:51:38 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_bch_t* hcl_dupbchars (
|
2021-03-28 18:12:07 +00:00
|
|
|
hcl_t* hcl,
|
|
|
|
const hcl_bch_t* bcs,
|
|
|
|
hcl_oow_t bcslen
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_uch_t* hcl_dupucstr (
|
|
|
|
hcl_t* hcl,
|
|
|
|
const hcl_uch_t* ucs,
|
|
|
|
hcl_oow_t* ucslen
|
|
|
|
);
|
|
|
|
|
|
|
|
HCL_EXPORT hcl_bch_t* hcl_dupbcstr (
|
|
|
|
hcl_t* hcl,
|
|
|
|
const hcl_bch_t* bcs,
|
|
|
|
hcl_oow_t* bcslen
|
2018-02-12 16:51:38 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
/* =========================================================================
|
|
|
|
* ASSERTION SUPPORT
|
|
|
|
* ========================================================================= */
|
2018-02-05 10:43:25 +00:00
|
|
|
HCL_EXPORT void hcl_assertfailed (
|
|
|
|
hcl_t* hcl,
|
|
|
|
const hcl_bch_t* expr,
|
|
|
|
const hcl_bch_t* file,
|
|
|
|
hcl_oow_t line
|
|
|
|
);
|
|
|
|
|
2016-09-28 14:40:37 +00:00
|
|
|
#if defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|