805 lines
24 KiB
C
805 lines
24 KiB
C
/*
|
|
* $Id$
|
|
*
|
|
Copyright (c) 2014-2015 Chung, Hyung-Hwan. All rights reserved.
|
|
|
|
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 _STIX_PRV_H_
|
|
#define _STIX_PRV_H_
|
|
|
|
#include "stix.h"
|
|
|
|
/* this is useful for debugging. stix_gc() can be called
|
|
* while stix has not been fully initialized when this is defined*/
|
|
#define STIX_SUPPORT_GC_DURING_IGNITION
|
|
#define STIX_DEBUG_GC_1
|
|
|
|
|
|
#include <stdio.h> /* TODO: delete these header inclusion lines */
|
|
#include <string.h>
|
|
#include <assert.h>
|
|
|
|
#define STIX_MEMSET(dst,src,size) memset(dst,src,size)
|
|
#define STIX_MEMCPY(dst,src,size) memcpy(dst,src,size)
|
|
#define STIX_ASSERT(x) assert(x)
|
|
|
|
#define STIX_ALIGN(x,y) ((((x) + (y) - 1) / (y)) * (y))
|
|
|
|
/* ========================================================================= */
|
|
/* CLASS SPEC ENCODING */
|
|
/* ========================================================================= */
|
|
|
|
/*
|
|
* The spec field of a class object encodes the number of the fixed part
|
|
* and the type of the indexed part. The fixed part is the number of
|
|
* named instance variables. If the spec of a class is indexed, the object
|
|
* of the class can be i nstantiated with the size of the indexed part.
|
|
*
|
|
* For example, on a platform where sizeof(stix_oow_t) is 4,
|
|
* the layout of the spec field of a class as an OOP value looks like this:
|
|
*
|
|
* 31 10 9 8 7 6 5 4 3 2 1 0
|
|
* |number of named instance variables|indexed-type|indexability|oop-tag|
|
|
*
|
|
* the number of named instance variables is stored in high 23 bits.
|
|
* the indexed type takes up bit 3 to bit 8. And the indexability is
|
|
* stored in bit 2.
|
|
*
|
|
* The maximum number of named(fixed) instance variables for a class is:
|
|
* 2 ^ ((BITS-IN-OOW - STIX_OOP_TAG_BITS) - STIX_OBJ_TYPE_BITS - 1) - 1
|
|
*
|
|
* STIX_OOP_TAG_BITS are decremented from the number of bits in OOW because
|
|
* the spec field is always encoded as a small integer.
|
|
*
|
|
* The number of named instance variables can be greater than 0 if the
|
|
* class spec is not indexed or if it's a pointer indexed class
|
|
* (indexed_type == STIX_OBJ_TYPE_OOP)
|
|
*
|
|
* indexed_type is one of the #stix_obj_type_t enumerators.
|
|
*/
|
|
|
|
/*
|
|
* The STIX_CLASS_SPEC_MAKE() macro creates a class spec value.
|
|
* _class->spec = STIX_OOP_FROM_SMINT(STIX_CLASS_SPEC_MAKE(0, 1, STIX_OBJ_TYPE_CHAR));
|
|
*/
|
|
#define STIX_CLASS_SPEC_MAKE(named_instvar,is_indexed,indexed_type) ( \
|
|
(((stix_oow_t)(named_instvar)) << (STIX_OBJ_FLAGS_TYPE_BITS + 1)) | \
|
|
(((stix_oow_t)(indexed_type)) << 1) | (((stix_oow_t)is_indexed) & 1) )
|
|
|
|
/* what is the number of named instance variables?
|
|
* STIX_CLASS_SPEC_NAMED_INSTVAR(STIX_OOP_TO_SMINT(_class->spec))
|
|
*/
|
|
#define STIX_CLASS_SPEC_NAMED_INSTVAR(spec) \
|
|
(((stix_oow_t)(spec)) >> (STIX_OBJ_FLAGS_TYPE_BITS + 1))
|
|
|
|
/* is it a user-indexable class?
|
|
* all objects can be indexed with basicAt:.
|
|
* this indicates if an object can be instantiated with a dynamic size
|
|
* (new: size) and and can be indexed with at:.
|
|
*/
|
|
#define STIX_CLASS_SPEC_IS_INDEXED(spec) (((stix_oow_t)(spec)) & 1)
|
|
|
|
/* if so, what is the indexing type? character? pointer? etc? */
|
|
#define STIX_CLASS_SPEC_INDEXED_TYPE(spec) \
|
|
((((stix_oow_t)(spec)) >> 1) & STIX_LBMASK(stix_oow_t, STIX_OBJ_FLAGS_TYPE_BITS))
|
|
|
|
/* What is the maximum number of named instance variables?
|
|
* This limit is set so because the number must be encoded into the spec field
|
|
* of the class with limited number of bits assigned to the number of
|
|
* named instance variables. the trailing -1 in the calculation of number of
|
|
* bits is to consider the signness of a small-integer which is a typical
|
|
* type of the spec field in the class object.
|
|
*/
|
|
#define STIX_MAX_NAMED_INSTVARS \
|
|
STIX_BITS_MAX(stix_oow_t, STIX_OOW_BITS - STIX_OOP_TAG_BITS - (STIX_OBJ_FLAGS_TYPE_BITS + 1) - 1)
|
|
|
|
/* Given the number of named instance variables, what is the maximum number
|
|
* of indexed instance variables? The number of indexed instance variables
|
|
* is not stored in the spec field of the class. It only affects the actual
|
|
* size of an object(obj->_size) selectively combined with the number of
|
|
* named instance variables. So it's the maximum value of obj->_size minus
|
|
* the number of named instance variables.
|
|
*/
|
|
#define STIX_MAX_INDEXED_INSTVARS(named_instvar) ((~(stix_oow_t)0) - named_instvar)
|
|
|
|
|
|
#define STIX_CLASS_SELFSPEC_MAKE(class_var,classinst_var) \
|
|
(((stix_oow_t)class_var) << ((STIX_OOW_BITS - STIX_OOP_TAG_BITS) / 2)) | ((stix_oow_t)classinst_var)
|
|
|
|
#define STIX_CLASS_SELFSPEC_CLASSVAR(spec) ((stix_oow_t)spec >> ((STIX_OOW_BITS - STIX_OOP_TAG_BITS) / 2))
|
|
#define STIX_CLASS_SELFSPEC_CLASSINSTVAR(spec) (((stix_oow_t)spec) & STIX_LBMASK(stix_oow_t, (STIX_OOW_BITS - STIX_OOP_TAG_BITS) / 2))
|
|
|
|
/*
|
|
* yet another -1 in the calculation of the bit numbers for signed nature of
|
|
* a small-integer
|
|
*/
|
|
#define STIX_MAX_CLASSVARS STIX_BITS_MAX(stix_oow_t, (STIX_OOW_BITS - STIX_OOP_TAG_BITS - 1) / 2)
|
|
#define STIX_MAX_CLASSINSTVARS STIX_BITS_MAX(stix_oow_t, (STIX_OOW_BITS - STIX_OOP_TAG_BITS - 1) / 2)
|
|
|
|
#if defined(STIX_INCLUDE_COMPILER)
|
|
|
|
/* ========================================================================= */
|
|
/* SOURCE CODE I/O FOR COMPILER */
|
|
/* ========================================================================= */
|
|
|
|
enum stix_iocmd_t
|
|
{
|
|
STIX_IO_OPEN,
|
|
STIX_IO_CLOSE,
|
|
STIX_IO_READ
|
|
};
|
|
typedef enum stix_iocmd_t stix_iocmd_t;
|
|
|
|
struct stix_ioloc_t
|
|
{
|
|
unsigned long line; /**< line */
|
|
unsigned long colm; /**< column */
|
|
const stix_uch_t* file; /**< file specified in #include */
|
|
};
|
|
typedef struct stix_ioloc_t stix_ioloc_t;
|
|
|
|
struct stix_iolxc_t
|
|
{
|
|
stix_uci_t c; /**< character */
|
|
stix_ioloc_t l; /**< location */
|
|
};
|
|
typedef struct stix_iolxc_t stix_iolxc_t;
|
|
|
|
/*
|
|
enum stix_ioarg_flag_t
|
|
{
|
|
STIX_IO_INCLUDED = (1 << 0)
|
|
};
|
|
typedef enum stix_ioarg_flag_t stix_ioarg_flag_t; */
|
|
|
|
typedef struct stix_ioarg_t stix_ioarg_t;
|
|
struct stix_ioarg_t
|
|
{
|
|
/**
|
|
* [IN] I/O object name.
|
|
* It is #STIX_NULL for the main stream and points to a non-NULL string
|
|
* for an included stream.
|
|
*/
|
|
const stix_uch_t* name;
|
|
|
|
/**
|
|
* [OUT] I/O handle set by a handler.
|
|
* 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;
|
|
|
|
/**
|
|
* [OUT] place data here
|
|
*/
|
|
stix_uch_t buf[1024];
|
|
|
|
/**
|
|
* [IN] points to the data of the includer. It is #STIX_NULL for the
|
|
* main stream.
|
|
*/
|
|
stix_ioarg_t* includer;
|
|
|
|
/*-----------------------------------------------------------------*/
|
|
/*----------- from here down, internal use only -------------------*/
|
|
struct
|
|
{
|
|
int pos, len, state;
|
|
} b;
|
|
|
|
unsigned long line;
|
|
unsigned long colm;
|
|
|
|
stix_iolxc_t lxc;
|
|
/*-----------------------------------------------------------------*/
|
|
};
|
|
|
|
typedef stix_ssize_t (*stix_ioimpl_t) (
|
|
stix_t* stix,
|
|
stix_iocmd_t cmd,
|
|
stix_ioarg_t* arg
|
|
);
|
|
|
|
struct stix_iotok_t
|
|
{
|
|
enum
|
|
{
|
|
STIX_IOTOK_EOF,
|
|
STIX_IOTOK_CHRLIT,
|
|
STIX_IOTOK_STRLIT,
|
|
STIX_IOTOK_SYMLIT,
|
|
STIX_IOTOK_NUMLIT,
|
|
STIX_IOTOK_RADNUMLIT,
|
|
STIX_IOTOK_NIL,
|
|
STIX_IOTOK_SELF,
|
|
STIX_IOTOK_SUPER,
|
|
STIX_IOTOK_TRUE,
|
|
STIX_IOTOK_FALSE,
|
|
STIX_IOTOK_THIS_CONTEXT,
|
|
STIX_IOTOK_IDENT,
|
|
STIX_IOTOK_BINSEL,
|
|
STIX_IOTOK_KEYWORD,
|
|
STIX_IOTOK_PRIMITIVE,
|
|
STIX_IOTOK_ASSIGN,
|
|
STIX_IOTOK_COLON,
|
|
STIX_IOTOK_RETURN,
|
|
STIX_IOTOK_LBRACE,
|
|
STIX_IOTOK_RBRACE,
|
|
STIX_IOTOK_LBRACK,
|
|
STIX_IOTOK_RBRACK,
|
|
STIX_IOTOK_LPAREN,
|
|
STIX_IOTOK_RPAREN,
|
|
STIX_IOTOK_APAREN, /* #( */
|
|
STIX_IOTOK_BPAREN, /* #[ */
|
|
STIX_IOTOK_PERIOD,
|
|
STIX_IOTOK_SEMICOLON
|
|
} type;
|
|
|
|
stix_ucs_t name;
|
|
stix_size_t name_capa;
|
|
|
|
stix_ioloc_t loc;
|
|
};
|
|
typedef struct stix_iotok_t stix_iotok_t;
|
|
|
|
enum stix_synerrnum_t
|
|
{
|
|
STIX_SYNERR_NOERR,
|
|
STIX_SYNERR_ILCHR, /* illegal character */
|
|
STIX_SYNERR_CMTNC, /* comment not closed */
|
|
STIX_SYNERR_STRNC, /* string not closed */
|
|
STIX_SYNERR_CLTNT, /* character literal not terminated */
|
|
STIX_SYNERR_HLTNT, /* hased literal not terminated */
|
|
STIX_SYNERR_CLNMS, /* colon missing */
|
|
STIX_SYNERR_STRING, /* string expected */
|
|
STIX_SYNERR_RADIX, /* invalid radix */
|
|
STIX_SYNERR_RADNUMLIT, /* invalid numeric literal with radix */
|
|
STIX_SYNERR_LBRACE, /* { expected */
|
|
STIX_SYNERR_RBRACE, /* } expected */
|
|
STIX_SYNERR_LPAREN, /* ( expected */
|
|
STIX_SYNERR_RPAREN, /* ) expected */
|
|
STIX_SYNERR_RBRACK, /* ] expected */
|
|
STIX_SYNERR_PERIOD, /* . expected */
|
|
STIX_SYNERR_VBAR, /* | expected */
|
|
STIX_SYNERR_GT, /* > expected */
|
|
STIX_SYNERR_IDENT, /* identifier expected */
|
|
STIX_SYNERR_INTEGER, /* integer expected */
|
|
STIX_SYNERR_PRIMITIVE, /* primitive: expected */
|
|
STIX_SYNERR_DIRECTIVE, /* wrong directive */
|
|
STIX_SYNERR_CLASSUNDEF, /* undefined class */
|
|
STIX_SYNERR_CLASSDUP, /* duplicate class */
|
|
STIX_SYNERR_CLASSCONTRA, /* contradictory class */
|
|
STIX_SYNERR_DCLBANNED, /* #dcl not allowed */
|
|
STIX_SYNERR_MTHNAME, /* wrong method name */
|
|
STIX_SYNERR_MTHNAMEDUP, /* duplicate method name */
|
|
STIX_SYNERR_ARGNAMEDUP, /* duplicate argument name */
|
|
STIX_SYNERR_TMPRNAMEDUP, /* duplicate temporary variable name */
|
|
STIX_SYNERR_VARNAMEDUP, /* duplicate variable name */
|
|
STIX_SYNERR_BLKARGNAMEDUP, /* duplicate block argument name */
|
|
STIX_SYNERR_VARARG, /* cannot assign to argument */
|
|
STIX_SYNERR_VARUNDCL, /* undeclared variable */
|
|
STIX_SYNERR_VARUNUSE, /* unsuable variable in compiled code */
|
|
STIX_SYNERR_VARINACC, /* inaccessible variable - e.g. accessing an instance variable from a class method is not allowed. */
|
|
STIX_SYNERR_PRIMARY, /* wrong expression primary */
|
|
STIX_SYNERR_TMPRFLOOD, /* too many temporaries */
|
|
STIX_SYNERR_ARGFLOOD, /* too many arguments */
|
|
STIX_SYNERR_BLKTMPRFLOOD, /* too many block temporaries */
|
|
STIX_SYNERR_BLKARGFLOOD, /* too many block arguments */
|
|
STIX_SYNERR_BLKFLOOD, /* too large block */
|
|
STIX_SYNERR_PRIMNO /* wrong primitive number */
|
|
};
|
|
typedef enum stix_synerrnum_t stix_synerrnum_t;
|
|
|
|
typedef struct stix_iolink_t stix_iolink_t;
|
|
struct stix_iolink_t
|
|
{
|
|
stix_iolink_t* link;
|
|
};
|
|
|
|
struct stix_synerr_t
|
|
{
|
|
stix_synerrnum_t num;
|
|
stix_ioloc_t loc;
|
|
stix_ucs_t tgt;
|
|
};
|
|
typedef struct stix_synerr_t stix_synerr_t;
|
|
|
|
|
|
struct stix_code_t
|
|
{
|
|
stix_uint8_t* ptr;
|
|
stix_size_t len;
|
|
};
|
|
typedef struct stix_code_t stix_code_t;
|
|
|
|
struct stix_compiler_t
|
|
{
|
|
/* input handler */
|
|
stix_ioimpl_t impl;
|
|
|
|
/* information about the last meaningful character read.
|
|
* this is a copy of curinp->lxc if no ungetting is performed.
|
|
* if there is something in the unget buffer, this is overwritten
|
|
* by a value from the buffer when the request to read a character
|
|
* is served */
|
|
stix_iolxc_t lxc;
|
|
|
|
/* unget buffer */
|
|
stix_iolxc_t ungot[10];
|
|
int nungots;
|
|
|
|
/* static input data buffer */
|
|
stix_ioarg_t arg;
|
|
|
|
/* pointer to the current input data. initially, it points to &arg */
|
|
stix_ioarg_t* curinp;
|
|
|
|
/* the last token read */
|
|
stix_iotok_t tok;
|
|
stix_iolink_t* io_names;
|
|
|
|
stix_synerr_t synerr;
|
|
|
|
/* temporary space to handle an illegal character */
|
|
stix_uch_t ilchr;
|
|
stix_ucs_t ilchr_ucs;
|
|
|
|
/* information about a class being compiled */
|
|
struct
|
|
{
|
|
int flags;
|
|
int indexed_type;
|
|
|
|
stix_oop_class_t self_oop;
|
|
stix_oop_t super_oop; /* this may be nil. so the type is stix_oop_t */
|
|
stix_oop_set_t mthdic_oop[2];
|
|
|
|
stix_ucs_t name;
|
|
stix_size_t name_capa;
|
|
stix_ioloc_t name_loc;
|
|
|
|
stix_ucs_t supername;
|
|
stix_size_t supername_capa;
|
|
stix_ioloc_t supername_loc;
|
|
|
|
/* instance variable, class variable, class instance variable */
|
|
stix_ucs_t vars[3];
|
|
stix_size_t vars_capa[3];
|
|
|
|
/* var_count, unlike vars above, includes superclass counts as well.
|
|
* var_count[0] - number of named instance variables
|
|
* var_count[1] - number of class variables
|
|
* var_count[2] - number of class instance variables */
|
|
stix_size_t var_count[3];
|
|
} cls;
|
|
|
|
/* information about a function being comipled */
|
|
struct
|
|
{
|
|
int type;
|
|
|
|
/* method source text */
|
|
stix_ucs_t text;
|
|
stix_size_t text_capa;
|
|
|
|
/* buffer to store identifier names to be assigned */
|
|
stix_ucs_t assignees;
|
|
stix_size_t assignees_capa;
|
|
|
|
/* buffer to store binary selectors being worked on */
|
|
stix_ucs_t binsels;
|
|
stix_size_t binsels_capa;
|
|
|
|
/* buffer to store keyword selectors being worked on */
|
|
stix_ucs_t kwsels;
|
|
stix_size_t kwsels_capa;
|
|
|
|
/* method name */
|
|
stix_ucs_t name;
|
|
stix_size_t name_capa;
|
|
stix_ioloc_t name_loc;
|
|
|
|
/* single string containing a space separated list of temporaries */
|
|
stix_ucs_t tmprs;
|
|
stix_size_t tmprs_capa;
|
|
stix_size_t tmpr_count; /* total number of temporaries including arguments */
|
|
stix_size_t tmpr_nargs;
|
|
|
|
/* literals */
|
|
stix_oop_t* literals;
|
|
stix_size_t literal_count;
|
|
stix_size_t literal_capa;
|
|
|
|
/* primitive number */
|
|
stix_ooi_t prim_no;
|
|
|
|
/* byte code */
|
|
stix_code_t code;
|
|
stix_size_t code_capa;
|
|
} mth;
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
#define MAKE_CODE(x,y) (((x) << 4) | y)
|
|
#define MAX_CODE_INDEX (0xFFFFu)
|
|
#define MAX_CODE_NTMPRS (0xFFFFu)
|
|
#define MAX_CODE_NARGS (0xFFFFu)
|
|
#define MAX_CODE_NBLKARGS (0xFFFFu)
|
|
#define MAX_CODE_NBLKTMPRS (0xFFFFu)
|
|
#define MAX_CODE_PRIMNO (0xFFFFu)
|
|
|
|
#define MIN_CODE_JUMP (-0x8000)
|
|
#define MAX_CODE_JUMP (0x7FFF)
|
|
#define MAX_CODE_BLKCODE MAX_CODE_JUMP
|
|
|
|
enum stix_cmdcode_t
|
|
{
|
|
CMD_EXTEND = 0x0,
|
|
CMD_EXTEND_DOUBLE = 0x1,
|
|
|
|
/* Single positional instructions
|
|
*
|
|
* XXXXJJJJ
|
|
* 0000XXXX JJJJJJJJ
|
|
* 0001XXXX JJJJJJJJ JJJJJJJJ
|
|
*
|
|
* XXXX is one of the following positional instructions.
|
|
* JJJJ or JJJJJJJJ is the position.
|
|
*/
|
|
CMD_PUSH_INSTVAR = 0x2,
|
|
CMD_PUSH_TEMPVAR = 0x3,
|
|
CMD_PUSH_LITERAL = 0x4,
|
|
CMD_STORE_INTO_INSTVAR = 0x5,
|
|
CMD_STORE_INTO_TEMPVAR = 0x6,
|
|
|
|
/*
|
|
* CMD_POP_INTO_INSTVAR
|
|
* CMD_POP_INTO_TEMPVAR
|
|
*/
|
|
|
|
CMD_JUMP = 0x7,
|
|
CMD_JUMP_IF_FALSE = 0x8,
|
|
|
|
/*
|
|
* Double positional instructions
|
|
*
|
|
* XXXXJJJJ KKKKKKKK
|
|
* 0000XXXX JJJJJJJJ KKKKKKKK
|
|
* 0001XXXX JJJJJJJJ JJJJJJJJ KKKKKKKK KKKKKKKK
|
|
*
|
|
* Access instance variable #JJJJ of an object at literal frame #KKKKKKKK
|
|
* Send message at literal frame #KKKKKKKK with #JJJJ arguments.
|
|
*/
|
|
CMD_PUSH_OBJVAR = 0x9,
|
|
CMD_STORE_INTO_OBJVAR = 0xA,
|
|
|
|
CMD_SEND_MESSAGE = 0xB,
|
|
CMD_SEND_MESSAGE_TO_SUPER = 0xC,
|
|
|
|
/*
|
|
* Single byte instructions
|
|
*/
|
|
CMD_PUSH_SPECIAL = 0xE,
|
|
CMD_DO_SPECIAL = 0xF,
|
|
|
|
/* sub-commands for CMD_PUSH_SPECIAL */
|
|
SUBCMD_PUSH_RECEIVER = 0x0,
|
|
SUBCMD_PUSH_NIL = 0x1,
|
|
SUBCMD_PUSH_TRUE = 0x2,
|
|
SUBCMD_PUSH_FALSE = 0x3,
|
|
SUBCMD_PUSH_CONTEXT = 0x4,
|
|
SUBCMD_PUSH_NEGONE = 0x5,
|
|
SUBCMD_PUSH_ZERO = 0x6,
|
|
SUBCMD_PUSH_ONE = 0x7,
|
|
|
|
/* sub-commands for CMD_DO_SPECIAL */
|
|
SUBCMD_DUP_STACKTOP = 0x0,
|
|
SUBCMD_POP_STACKTOP = 0x1,
|
|
SUBCMD_RETURN_STACKTOP = 0x2, /* ^something */
|
|
SUBCMD_RETURN_RECEIVER = 0x3, /* ^self */
|
|
SUBCMD_RETURN_FROM_BLOCK = 0x4, /* return the stack top from a block */
|
|
SUBCMD_SEND_BLOCK_COPY = 0xE,
|
|
SUBCMD_NOOP = 0xF
|
|
};
|
|
|
|
/* ---------------------------------- */
|
|
#define CODE_PUSH_RECEIVER MAKE_CODE(CMD_PUSH_SPECIAL, SUBCMD_PUSH_RECEIVER)
|
|
#define CODE_PUSH_NIL MAKE_CODE(CMD_PUSH_SPECIAL, SUBCMD_PUSH_NIL)
|
|
#define CODE_PUSH_TRUE MAKE_CODE(CMD_PUSH_SPECIAL, SUBCMD_PUSH_TRUE)
|
|
#define CODE_PUSH_FALSE MAKE_CODE(CMD_PUSH_SPECIAL, SUBCMD_PUSH_FALSE)
|
|
#define CODE_PUSH_CONTEXT MAKE_CODE(CMD_PUSH_SPECIAL, SUBCMD_PUSH_CONTEXT)
|
|
#define CODE_PUSH_NEGONE MAKE_CODE(CMD_PUSH_SPECIAL, SUBCMD_PUSH_NEGONE)
|
|
#define CODE_PUSH_ZERO MAKE_CODE(CMD_PUSH_SPECIAL, SUBCMD_PUSH_ZERO)
|
|
#define CODE_PUSH_ONE MAKE_CODE(CMD_PUSH_SPECIAL, SUBCMD_PUSH_ONE)
|
|
|
|
/* special code */
|
|
#define CODE_DUP_STACKTOP MAKE_CODE(CMD_DO_SPECIAL, SUBCMD_DUP_STACKTOP)
|
|
#define CODE_POP_STACKTOP MAKE_CODE(CMD_DO_SPECIAL, SUBCMD_POP_STACKTOP)
|
|
#define CODE_RETURN_STACKTOP MAKE_CODE(CMD_DO_SPECIAL, SUBCMD_RETURN_STACKTOP)
|
|
#define CODE_RETURN_RECEIVER MAKE_CODE(CMD_DO_SPECIAL, SUBCMD_RETURN_RECEIVER)
|
|
#define CODE_RETURN_FROM_BLOCK MAKE_CODE(CMD_DO_SPECIAL, SUBCMD_RETURN_FROM_BLOCK)
|
|
#define CODE_SEND_BLOCK_COPY MAKE_CODE(CMD_DO_SPECIAL, SUBCMD_SEND_BLOCK_COPY)
|
|
#define CODE_NOOP MAKE_CODE(CMD_DO_SPECIAL, SUBCMD_NOOP)
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* ========================================================================= */
|
|
/* heap.c */
|
|
/* ========================================================================= */
|
|
|
|
/**
|
|
* The stix_makeheap() function creates a new heap of the \a size bytes.
|
|
*
|
|
* \return heap pointer on success and #STIX_NULL on failure.
|
|
*/
|
|
stix_heap_t* stix_makeheap (
|
|
stix_t* stix,
|
|
stix_size_t size
|
|
);
|
|
|
|
/**
|
|
* The stix_killheap() function destroys the heap pointed to by \a heap.
|
|
*/
|
|
void stix_killheap (
|
|
stix_t* stix,
|
|
stix_heap_t* heap
|
|
);
|
|
|
|
/**
|
|
* The stix_allocheapmem() function allocates \a size bytes in the heap pointed
|
|
* to by \a heap.
|
|
*
|
|
* \return memory pointer on success and #STIX_NULL on failure.
|
|
*/
|
|
void* stix_allocheapmem (
|
|
stix_t* stix,
|
|
stix_heap_t* heap,
|
|
stix_size_t size
|
|
);
|
|
|
|
|
|
/* ========================================================================= */
|
|
/* stix.c */
|
|
/* ========================================================================= */
|
|
stix_size_t stix_hashbytes (
|
|
const stix_byte_t* ptr,
|
|
stix_size_t len
|
|
);
|
|
|
|
stix_size_t stix_hashchars (
|
|
const stix_uch_t* ptr,
|
|
stix_size_t len
|
|
);
|
|
|
|
int stix_equalchars (
|
|
const stix_uch_t* str1,
|
|
const stix_uch_t* str2,
|
|
stix_size_t len
|
|
);
|
|
|
|
void stix_copychars (
|
|
stix_uch_t* dst,
|
|
const stix_uch_t* src,
|
|
stix_size_t len
|
|
);
|
|
|
|
/* ========================================================================= */
|
|
/* gc.c */
|
|
/* ========================================================================= */
|
|
stix_oop_t stix_moveoop (
|
|
stix_t* stix,
|
|
stix_oop_t oop
|
|
);
|
|
|
|
/* ========================================================================= */
|
|
/* obj.c */
|
|
/* ========================================================================= */
|
|
void* stix_allocbytes (
|
|
stix_t* stix,
|
|
stix_size_t size
|
|
);
|
|
|
|
/**
|
|
* The stix_allocoopobj() function allocates a raw object composed of \a size
|
|
* pointer fields excluding the header.
|
|
*/
|
|
stix_oop_t stix_allocoopobj (
|
|
stix_t* stix,
|
|
stix_oow_t size
|
|
);
|
|
|
|
stix_oop_t stix_alloccharobj (
|
|
stix_t* stix,
|
|
const stix_uch_t* ptr,
|
|
stix_oow_t len
|
|
);
|
|
|
|
stix_oop_t stix_allocbyteobj (
|
|
stix_t* stix,
|
|
const stix_byte_t* ptr,
|
|
stix_oow_t len
|
|
);
|
|
|
|
stix_oop_t stix_allocwordobj (
|
|
stix_t* stix,
|
|
const stix_oow_t* ptr,
|
|
stix_oow_t len
|
|
);
|
|
|
|
/* ========================================================================= */
|
|
/* sym.c */
|
|
/* ========================================================================= */
|
|
stix_oop_t stix_makesymbol (
|
|
stix_t* stix,
|
|
const stix_uch_t* ptr,
|
|
stix_oow_t len
|
|
);
|
|
|
|
stix_oop_t stix_findsymbol (
|
|
stix_t* stix,
|
|
const stix_uch_t* ptr,
|
|
stix_oow_t len
|
|
);
|
|
|
|
stix_oop_t stix_makestring (
|
|
stix_t* stix,
|
|
const stix_uch_t* ptr,
|
|
stix_oow_t len
|
|
);
|
|
|
|
/* ========================================================================= */
|
|
/* dic.c */
|
|
/* ========================================================================= */
|
|
stix_oop_association_t stix_putatsysdic (
|
|
stix_t* stix,
|
|
stix_oop_t key,
|
|
stix_oop_t value
|
|
);
|
|
|
|
stix_oop_association_t stix_getatsysdic (
|
|
stix_t* stix,
|
|
stix_oop_t key
|
|
);
|
|
|
|
stix_oop_association_t stix_lookupsysdic (
|
|
stix_t* stix,
|
|
const stix_ucs_t* name
|
|
);
|
|
|
|
stix_oop_association_t stix_putatdic (
|
|
stix_t* stix,
|
|
stix_oop_set_t dic,
|
|
stix_oop_t key,
|
|
stix_oop_t value
|
|
);
|
|
|
|
stix_oop_association_t stix_getatdic (
|
|
stix_t* stix,
|
|
stix_oop_set_t dic,
|
|
stix_oop_t key
|
|
);
|
|
|
|
stix_oop_association_t stix_lookupdic (
|
|
stix_t* stix,
|
|
stix_oop_set_t dic,
|
|
const stix_ucs_t* name
|
|
);
|
|
|
|
stix_oop_set_t stix_makedic (
|
|
stix_t* stix,
|
|
stix_oop_t cls,
|
|
stix_oow_t size
|
|
);
|
|
|
|
/* ========================================================================= */
|
|
/* utf8.c */
|
|
/* ========================================================================= */
|
|
stix_size_t stix_uctoutf8 (
|
|
stix_uch_t uc,
|
|
stix_bch_t* utf8,
|
|
stix_size_t size
|
|
);
|
|
|
|
stix_size_t stix_utf8touc (
|
|
const stix_bch_t* utf8,
|
|
stix_size_t size,
|
|
stix_uch_t* uc
|
|
);
|
|
|
|
int stix_ucstoutf8 (
|
|
const stix_uch_t* ucs,
|
|
stix_size_t* ucslen,
|
|
stix_bch_t* bcs,
|
|
stix_size_t* bcslen
|
|
);
|
|
|
|
/**
|
|
* The stix_utf8toucs() function converts a UTF8 string to a uncide string.
|
|
*
|
|
* It never returns -2 if \a ucs is #STIX_NULL.
|
|
*
|
|
* \code
|
|
* const stix_bch_t* bcs = "test string";
|
|
* stix_uch_t ucs[100];
|
|
* qse_size_t ucslen = STIX_COUNTOF(buf), n;
|
|
* qse_size_t bcslen = 11;
|
|
* int n;
|
|
* n = qse_bcstoucs (bcs, &bcslen, ucs, &ucslen);
|
|
* if (n <= -1) { invalid/incomplenete sequence or buffer to small }
|
|
* \endcode
|
|
*
|
|
* For a null-terminated string, you can specify ~(stix_size_t)0 in
|
|
* \a bcslen. The destination buffer \a ucs also must be large enough to
|
|
* store a terminating null. Otherwise, -2 is returned.
|
|
*
|
|
* The resulting \a ucslen can still be greater than 0 even if the return
|
|
* value is negative. The value indiates the number of characters converted
|
|
* before the error has occurred.
|
|
*
|
|
* \return 0 on success.
|
|
* -1 if \a bcs contains an illegal character.
|
|
* -2 if the wide-character string buffer is too small.
|
|
* -3 if \a bcs is not a complete sequence.
|
|
*/
|
|
int stix_utf8toucs (
|
|
const stix_bch_t* bcs,
|
|
stix_size_t* bcslen,
|
|
stix_uch_t* ucs,
|
|
stix_size_t* ucslen
|
|
);
|
|
|
|
/* ========================================================================= */
|
|
/* comp.c */
|
|
/* ========================================================================= */
|
|
int stix_compile (
|
|
stix_t* stix,
|
|
stix_ioimpl_t io
|
|
);
|
|
|
|
void stix_getsynerr (
|
|
stix_t* stix,
|
|
stix_synerr_t* synerr
|
|
);
|
|
|
|
|
|
/* TODO: remove debugging functions */
|
|
/* ========================================================================= */
|
|
/* debug.c */
|
|
/* ========================================================================= */
|
|
void dump_symbol_table (stix_t* stix);
|
|
void dump_dictionary (stix_t* stix, stix_oop_set_t dic, const char* title);
|
|
void print_ucs (const stix_ucs_t* name);
|
|
void dump_object (stix_t* stix, stix_oop_t oop, const char* title);
|
|
|
|
#if defined(__cplusplus)
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif
|