moo/moo/lib/moo-prv.h

1270 lines
39 KiB
C
Raw Normal View History

2015-04-30 15:56:05 +00:00
/*
* $Id$
*
Copyright (c) 2014-2017 Chung, Hyung-Hwan. All rights reserved.
2015-04-30 15:56:05 +00:00
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
2017-01-09 09:54:49 +00:00
#ifndef _MOO_PRV_H_
#define _MOO_PRV_H_
2015-04-30 15:56:05 +00:00
2017-01-09 09:54:49 +00:00
#include "moo.h"
#include "moo-utl.h"
2015-04-30 15:56:05 +00:00
/* you can define this to either 1 or 2 */
2017-01-09 09:54:49 +00:00
#define MOO_BCODE_LONG_PARAM_SIZE 2
2017-01-09 09:54:49 +00:00
/* this is useful for debugging. moo_gc() can be called
* while moo has not been fully initialized when this is defined*/
#define MOO_SUPPORT_GC_DURING_IGNITION
/* define this to generate XXXX_CTXTEMVAR instructions */
2017-01-09 09:54:49 +00:00
#define MOO_USE_CTXTEMPVAR
/* define this to use the MAKE_BLOCK instruction instead of
* PUSH_CONTEXT, PUSH_INTLIT, PUSH_INTLIT, SEND_BLOCK_COPY */
2017-01-09 09:54:49 +00:00
#define MOO_USE_MAKE_BLOCK
#if !defined(NDEBUG)
/* this is for gc debugging */
#define MOO_DEBUG_GC
2017-01-09 09:54:49 +00:00
#define MOO_DEBUG_COMPILER
/*#define MOO_DEBUG_VM_PROCESSOR*/
/*#define MOO_DEBUG_VM_EXEC*/
#define MOO_DEBUG_BIGINT
#define MOO_PROFILE_VM
#endif
/* allow the caller to drive process switching by calling
2017-01-09 09:54:49 +00:00
* moo_switchprocess(). */
#define MOO_EXTERNAL_PROCESS_SWITCH
/* limit the maximum object size such that:
* 1. an index to an object field can be represented in a small integer.
* 2. the maximum number of bits including bit-shifts can be represented
2017-01-09 09:54:49 +00:00
* in the moo_oow_t type.
*/
2017-01-09 09:54:49 +00:00
#define MOO_LIMIT_OBJ_SIZE
2017-05-12 16:38:16 +00:00
/* TODO: delete these header inclusion lines */
2015-04-30 15:56:05 +00:00
#include <string.h>
2015-11-09 14:26:58 +00:00
#if defined(__has_builtin)
# if __has_builtin(__builtin_memset)
2017-01-09 09:54:49 +00:00
# define MOO_MEMSET(dst,src,size) __builtin_memset(dst,src,size)
2015-11-09 14:26:58 +00:00
# else
2017-01-09 09:54:49 +00:00
# define MOO_MEMSET(dst,src,size) memset(dst,src,size)
2015-11-09 14:26:58 +00:00
# endif
# if __has_builtin(__builtin_memcpy)
2017-01-09 09:54:49 +00:00
# define MOO_MEMCPY(dst,src,size) __builtin_memcpy(dst,src,size)
2015-11-09 14:26:58 +00:00
# else
2017-01-09 09:54:49 +00:00
# define MOO_MEMCPY(dst,src,size) memcpy(dst,src,size)
2015-11-09 14:26:58 +00:00
# endif
# if __has_builtin(__builtin_memmove)
2017-01-09 09:54:49 +00:00
# define MOO_MEMMOVE(dst,src,size) __builtin_memmove(dst,src,size)
2015-11-09 14:26:58 +00:00
# else
2017-01-09 09:54:49 +00:00
# define MOO_MEMMOVE(dst,src,size) memmove(dst,src,size)
2015-11-09 14:26:58 +00:00
# endif
# if __has_builtin(__builtin_memcmp)
2017-01-09 09:54:49 +00:00
# define MOO_MEMCMP(dst,src,size) __builtin_memcmp(dst,src,size)
2015-11-09 14:26:58 +00:00
# else
2017-01-09 09:54:49 +00:00
# define MOO_MEMCMP(dst,src,size) memcmp(dst,src,size)
2015-11-09 14:26:58 +00:00
# endif
#else
# if defined(HAVE___BUILTIN_MEMSET)
# define MOO_MEMSET(dst,src,size) __builtin_memset(dst,src,size)
# else
# define MOO_MEMSET(dst,src,size) memset(dst,src,size)
# endif
# if defined(HAVE___BUILTIN_MEMCPY)
# define MOO_MEMCPY(dst,src,size) __builtin_memcpy(dst,src,size)
# else
# define MOO_MEMCPY(dst,src,size) memcpy(dst,src,size)
# endif
# if defined(HAVE___BUILTIN_MEMMOVE)
# define MOO_MEMMOVE(dst,src,size) __builtin_memmove(dst,src,size)
# else
# define MOO_MEMMOVE(dst,src,size) memmove(dst,src,size)
# endif
# if defined(HAVE___BUILTIN_MEMCMP)
# define MOO_MEMCMP(dst,src,size) __builtin_memcmp(dst,src,size)
# else
# define MOO_MEMCMP(dst,src,size) memcmp(dst,src,size)
# endif
2015-11-09 14:26:58 +00:00
#endif
2015-11-11 13:31:05 +00:00
2015-04-30 15:56:05 +00:00
/* ========================================================================= */
/* CLASS SPEC ENCODING */
2015-04-30 15:56:05 +00:00
/* ========================================================================= */
/*
* The spec field of a class object encodes the number of the fixed part
2015-05-04 16:48:38 +00:00
* 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
2017-02-13 13:40:35 +00:00
* of the class can be instantiated with the size of the indexed part.
2015-04-30 15:56:05 +00:00
*
2017-01-09 09:54:49 +00:00
* For example, on a platform where sizeof(moo_oow_t) is 4,
2015-05-04 16:48:38 +00:00
* 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.
2017-01-09 09:54:49 +00:00
* the indexed type takes up bit 3 to bit 8 (assuming MOO_OBJ_TYPE_BITS is 6.
* MOO_OBJ_TYPE_XXX enumerators are used to represent actual values).
* and the indexability is stored in bit 2.
2015-04-30 15:56:05 +00:00
*
* The maximum number of named(fixed) instance variables for a class is:
* 2 ^ ((BITS-IN-OOW - MOO_OOP_TAG_BITS_LO) - MOO_OBJ_TYPE_BITS - 1) - 1
2015-05-04 16:48:38 +00:00
*
* MOO_OOP_TAG_BITS_LO are decremented from the number of bits in OOW because
2015-05-04 16:48:38 +00:00
* the spec field is always encoded as a small integer.
2015-04-30 15:56:05 +00:00
*
* 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
2017-01-09 09:54:49 +00:00
* (indexed_type == MOO_OBJ_TYPE_OOP)
2015-05-04 16:48:38 +00:00
*
2017-01-09 09:54:49 +00:00
* indexed_type is one of the #moo_obj_type_t enumerators.
2015-05-04 16:48:38 +00:00
*/
/*
2017-01-09 09:54:49 +00:00
* The MOO_CLASS_SPEC_MAKE() macro creates a class spec value.
* _class->spec = MOO_SMOOI_TO_OOP(MOO_CLASS_SPEC_MAKE(0, 1, MOO_OBJ_TYPE_CHAR));
2015-04-30 15:56:05 +00:00
*/
#define MOO_CLASS_SPEC_MAKE(named_instvar,flags,indexed_type) ( \
(((moo_oow_t)(named_instvar)) << (MOO_OBJ_FLAGS_TYPE_BITS + 2)) | \
(((moo_oow_t)(indexed_type)) << 2) | (((moo_oow_t)flags) & 3) )
2015-04-30 15:56:05 +00:00
2015-05-04 16:48:38 +00:00
/* what is the number of named instance variables?
* MOO_CLASS_SPEC_NAMED_INSTVARS(MOO_OOP_TO_SMOOI(_class->spec))
* ensure to update Class<<specNumInstVars if you change this macro. */
#define MOO_CLASS_SPEC_NAMED_INSTVARS(spec) \
(((moo_oow_t)(spec)) >> (MOO_OBJ_FLAGS_TYPE_BITS + 2))
/* 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 MOO_CLASS_SPEC_FLAGS(spec) (((moo_oow_t)(spec)) & 3)
2015-04-30 15:56:05 +00:00
/* if so, what is the indexing type? character? pointer? etc? */
2017-01-09 09:54:49 +00:00
#define MOO_CLASS_SPEC_INDEXED_TYPE(spec) \
((((moo_oow_t)(spec)) >> 2) & MOO_LBMASK(moo_oow_t, MOO_OBJ_FLAGS_TYPE_BITS))
#define MOO_CLASS_SPEC_FLAG_INDEXED (1 << 0)
#define MOO_CLASS_SPEC_FLAG_IMMUTABLE (1 << 1)
#define MOO_CLASS_SPEC_IS_INDEXED(spec) (MOO_CLASS_SPEC_FLAGS(spec) & MOO_CLASS_SPEC_FLAG_INDEXED)
#define MOO_CLASS_SPEC_IS_IMMUTABLE(spec) (MOO_CLASS_SPEC_FLAGS(spec) & MOO_CLASS_SPEC_FLAG_IMMUTABLE)
2015-05-04 16:48:38 +00:00
/* What is the maximum number of named instance variables?
2015-06-04 18:34:37 +00:00
* This limit is set so because the number must be encoded into the spec field
2015-05-04 16:48:38 +00:00
* of the class with limited number of bits assigned to the number of
2015-06-04 18:34:37 +00:00
* named instance variables. the trailing -1 in the calculation of number of
* bits is to consider the sign bit of a small-integer which is a typical
2015-06-04 18:34:37 +00:00
* type of the spec field in the class object.
2015-05-04 16:48:38 +00:00
*/
2017-01-09 09:54:49 +00:00
#define MOO_MAX_NAMED_INSTVARS \
MOO_BITS_MAX(moo_oow_t, MOO_SMOOI_ABS_BITS - (MOO_OBJ_FLAGS_TYPE_BITS + 2))
/* Given the number of named instance variables, what is the maximum number
2015-05-04 16:48:38 +00:00
* 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.
*/
2017-01-09 09:54:49 +00:00
#define MOO_MAX_INDEXED_INSTVARS(named_instvar) (MOO_OBJ_SIZE_MAX - named_instvar)
2015-05-26 16:31:47 +00:00
2015-06-04 18:34:37 +00:00
/*
* self-specification of a class
* | classinstvars | classvars | flags |
*
* When converted to a small integer
* | sign-bit | classinstvars | classvars | flags | tag |
2015-06-04 18:34:37 +00:00
*/
#define MOO_CLASS_SELFSPEC_FLAG_BITS (3)
#define MOO_CLASS_SELFSPEC_CLASSINSTVAR_BITS ((MOO_SMOOI_ABS_BITS - MOO_CLASS_SELFSPEC_FLAG_BITS) / 2)
#define MOO_CLASS_SELFSPEC_CLASSVAR_BITS (MOO_SMOOI_ABS_BITS - (MOO_CLASS_SELFSPEC_CLASSINSTVAR_BITS + MOO_CLASS_SELFSPEC_FLAG_BITS))
#define MOO_CLASS_SELFSPEC_MAKE(class_var,classinst_var,flag) \
((((moo_oow_t)class_var) << (MOO_CLASS_SELFSPEC_CLASSINSTVAR_BITS + MOO_CLASS_SELFSPEC_FLAG_BITS)) | \
(((moo_oow_t)classinst_var) << (MOO_CLASS_SELFSPEC_FLAG_BITS)) | \
(((moo_oow_t)flag) << (0)))
#define MOO_CLASS_SELFSPEC_CLASSVARS(spec) \
(((moo_oow_t)spec) >> (MOO_CLASS_SELFSPEC_CLASSINSTVAR_BITS + MOO_CLASS_SELFSPEC_FLAG_BITS))
#define MOO_CLASS_SELFSPEC_CLASSINSTVARS(spec) \
((((moo_oow_t)spec) >> MOO_CLASS_SELFSPEC_FLAG_BITS) & MOO_LBMASK(moo_oow_t, MOO_CLASS_SELFSPEC_CLASSINSTVAR_BITS))
#define MOO_CLASS_SELFSPEC_FLAGS(spec) \
(((moo_oow_t)spec) & MOO_LBMASK(moo_oow_t, MOO_CLASS_SELFSPEC_FLAG_BITS))
#define MOO_CLASS_SELFSPEC_FLAG_FINAL (1 << 0)
#define MOO_CLASS_SELFSPEC_FLAG_LIMITED (1 << 1)
#define MOO_MAX_CLASSVARS MOO_BITS_MAX(moo_oow_t, MOO_CLASS_SELFSPEC_CLASSVAR_BITS)
#define MOO_MAX_CLASSINSTVARS MOO_BITS_MAX(moo_oow_t, MOO_CLASS_SELFSPEC_CLASSINSTVAR_BITS)
2015-05-26 16:31:47 +00:00
2017-01-09 09:54:49 +00:00
#if defined(MOO_LIMIT_OBJ_SIZE)
/* limit the maximum object size such that:
* 1. an index to an object field can be represented in a small integer.
2017-01-09 09:54:49 +00:00
* 2. the maximum number of bit shifts can be represented in the moo_oow_t type.
*/
2017-01-09 09:54:49 +00:00
# define MOO_OBJ_SIZE_MAX ((moo_oow_t)MOO_SMOOI_MAX)
# define MOO_OBJ_SIZE_BITS_MAX (MOO_OBJ_SIZE_MAX * 8)
#else
2017-01-09 09:54:49 +00:00
# define MOO_OBJ_SIZE_MAX ((moo_oow_t)MOO_TYPE_MAX(moo_oow_t))
# define MOO_OBJ_SIZE_BITS_MAX (MOO_OBJ_SIZE_MAX * 8)
#endif
2017-01-09 09:54:49 +00:00
#if defined(MOO_INCLUDE_COMPILER)
/* ========================================================================= */
/* SOURCE CODE I/O FOR COMPILER */
/* ========================================================================= */
2017-01-09 09:54:49 +00:00
struct moo_iolxc_t
2015-05-19 15:16:18 +00:00
{
2017-01-09 09:54:49 +00:00
moo_ooci_t c; /**< character */
moo_ioloc_t l; /**< location */
2015-05-19 15:16:18 +00:00
};
2017-01-09 09:54:49 +00:00
typedef struct moo_iolxc_t moo_iolxc_t;
2015-06-11 12:09:10 +00:00
/*
2017-01-09 09:54:49 +00:00
enum moo_ioarg_flag_t
{
2017-01-09 09:54:49 +00:00
MOO_IO_INCLUDED = (1 << 0)
};
2017-01-09 09:54:49 +00:00
typedef enum moo_ioarg_flag_t moo_ioarg_flag_t; */
2017-01-09 09:54:49 +00:00
struct moo_ioarg_t
{
/**
* [IN] I/O object name.
2017-01-09 09:54:49 +00:00
* It is #MOO_NULL for the main stream and points to a non-NULL string
* for an included stream.
*/
2017-01-09 09:54:49 +00:00
const moo_ooch_t* name;
/**
2016-05-27 15:01:54 +00:00
* [OUT] I/O handle set by an open handler.
* [IN] I/O handle referenced in read and close 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
*/
2017-01-09 09:54:49 +00:00
moo_ooch_t buf[1024];
/**
2017-01-09 09:54:49 +00:00
* [IN] points to the data of the includer. It is #MOO_NULL for the
* main stream.
*/
2017-01-09 09:54:49 +00:00
moo_ioarg_t* includer;
/*-----------------------------------------------------------------*/
/*----------- from here down, internal use only -------------------*/
struct
{
2015-06-11 12:09:10 +00:00
int pos, len, state;
} b;
2016-09-06 16:06:22 +00:00
unsigned long int line;
unsigned long int colm;
2017-01-09 09:54:49 +00:00
moo_ooci_t nl;
2017-01-09 09:54:49 +00:00
moo_iolxc_t lxc;
/*-----------------------------------------------------------------*/
};
2017-01-09 09:54:49 +00:00
struct moo_iotok_t
2015-05-19 15:16:18 +00:00
{
enum
{
2017-01-09 09:54:49 +00:00
MOO_IOTOK_EOF,
2017-01-09 09:54:49 +00:00
MOO_IOTOK_CHARLIT,
MOO_IOTOK_STRLIT,
MOO_IOTOK_SYMLIT,
MOO_IOTOK_NUMLIT,
MOO_IOTOK_RADNUMLIT,
MOO_IOTOK_ERRLIT, /* error(NN) */
MOO_IOTOK_ERROR, /* error */
MOO_IOTOK_NIL,
MOO_IOTOK_SELF,
MOO_IOTOK_SUPER,
MOO_IOTOK_TRUE,
MOO_IOTOK_FALSE,
MOO_IOTOK_THIS_CONTEXT,
MOO_IOTOK_THIS_PROCESS,
MOO_IOTOK_IDENT,
MOO_IOTOK_IDENT_DOTTED,
MOO_IOTOK_BINSEL,
MOO_IOTOK_KEYWORD,
MOO_IOTOK_ASSIGN,
MOO_IOTOK_COLON,
MOO_IOTOK_RETURN, /* ^ */
MOO_IOTOK_LOCAL_RETURN, /* ^^ */
2017-01-09 09:54:49 +00:00
MOO_IOTOK_LBRACE,
MOO_IOTOK_RBRACE,
MOO_IOTOK_LBRACK,
MOO_IOTOK_RBRACK,
MOO_IOTOK_LPAREN,
MOO_IOTOK_RPAREN,
MOO_IOTOK_APAREN, /* #( - array literal */
MOO_IOTOK_BABRACK, /* #[ - byte array literal */
MOO_IOTOK_ABRACE, /* #{ - array expression */
MOO_IOTOK_DICBRACE, /* :{ - dictionary expression */
2017-01-09 09:54:49 +00:00
MOO_IOTOK_PERIOD,
MOO_IOTOK_COMMA,
MOO_IOTOK_SEMICOLON,
MOO_IOTOK_IF,
MOO_IOTOK_ELSE,
MOO_IOTOK_ELSIF,
MOO_IOTOK_WHILE,
2017-04-26 15:31:07 +00:00
MOO_IOTOK_UNTIL,
MOO_IOTOK_DO,
MOO_IOTOK_BREAK,
MOO_IOTOK_CONTINUE
2015-05-19 15:16:18 +00:00
} type;
2017-01-09 09:54:49 +00:00
moo_oocs_t name;
moo_oow_t name_capa;
2015-05-19 15:16:18 +00:00
2017-01-09 09:54:49 +00:00
moo_ioloc_t loc;
2015-05-19 15:16:18 +00:00
};
2017-01-09 09:54:49 +00:00
typedef struct moo_iotok_t moo_iotok_t;
2015-05-19 15:16:18 +00:00
2017-01-09 09:54:49 +00:00
typedef struct moo_iolink_t moo_iolink_t;
struct moo_iolink_t
2015-05-19 15:16:18 +00:00
{
2017-01-09 09:54:49 +00:00
moo_iolink_t* link;
2015-05-19 15:16:18 +00:00
};
typedef struct moo_code_t moo_code_t;
2017-01-09 09:54:49 +00:00
struct moo_code_t
{
2017-01-09 09:54:49 +00:00
moo_uint8_t* ptr;
moo_oow_t len;
};
typedef struct moo_oow_pool_chunk_t moo_oow_pool_chunk_t;
struct moo_oow_pool_chunk_t
{
moo_oow_t buf[16];
moo_oow_pool_chunk_t* next;
};
typedef struct moo_oow_pool_t moo_oow_pool_t;
struct moo_oow_pool_t
{
moo_oow_pool_chunk_t static_chunk;
moo_oow_pool_chunk_t* head;
moo_oow_pool_chunk_t* tail;
moo_oow_t count;
};
enum moo_loop_type_t
{
MOO_LOOP_WHILE,
MOO_LOOP_DO_WHILE
};
typedef enum moo_loop_type_t moo_loop_type_t;
typedef struct moo_loop_t moo_loop_t;
struct moo_loop_t
{
moo_loop_type_t type;
moo_oow_t startpos;
moo_oow_pool_t break_ip_pool; /* a pool that holds jump instruction pointers for break */
moo_oow_pool_t continue_ip_pool; /* a pool that hold jump instructino pointers for continue. only for do-while */
moo_oow_t blkcount; /* number of inner blocks enclosed in square brackets */
moo_loop_t* next;
};
2017-01-09 09:54:49 +00:00
struct moo_compiler_t
{
2015-05-19 15:16:18 +00:00
/* input handler */
2017-01-09 09:54:49 +00:00
moo_ioimpl_t impl;
2015-05-19 15:16:18 +00:00
/* 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 */
2017-01-09 09:54:49 +00:00
moo_iolxc_t lxc;
2015-05-19 15:16:18 +00:00
/* unget buffer */
2017-01-09 09:54:49 +00:00
moo_iolxc_t ungot[10];
int nungots;
2015-05-19 15:16:18 +00:00
/* static input data buffer */
2017-01-09 09:54:49 +00:00
moo_ioarg_t arg;
2015-05-19 15:16:18 +00:00
/* pointer to the current input data. initially, it points to &arg */
2017-01-09 09:54:49 +00:00
moo_ioarg_t* curinp;
2015-05-19 15:16:18 +00:00
/* the last token read */
2017-01-09 09:54:49 +00:00
moo_iotok_t tok;
moo_iolink_t* io_names;
int in_array;
2015-05-19 15:16:18 +00:00
2017-01-09 09:54:49 +00:00
moo_synerr_t synerr;
2015-05-19 15:16:18 +00:00
/* temporary space to handle an illegal character */
2017-01-09 09:54:49 +00:00
moo_ooch_t ilchr;
moo_oocs_t ilchr_ucs;
2015-05-21 17:07:55 +00:00
2015-05-25 17:10:49 +00:00
/* information about a class being compiled */
2015-05-21 17:07:55 +00:00
struct
{
2015-05-25 17:10:49 +00:00
int flags;
2015-05-26 16:31:47 +00:00
int indexed_type;
2015-05-25 17:10:49 +00:00
2017-01-09 09:54:49 +00:00
moo_oop_class_t self_oop;
moo_oop_t super_oop; /* this may be nil. so the type is moo_oop_t */
moo_oop_set_t pooldic_oop; /* used when compiling a pooldic definition */
moo_oop_set_t ns_oop;
moo_oocs_t fqn;
moo_oocs_t name;
moo_oow_t fqn_capa;
moo_ioloc_t fqn_loc;
moo_oop_set_t superns_oop;
moo_oocs_t superfqn;
moo_oocs_t supername;
moo_oow_t superfqn_capa;
moo_ioloc_t superfqn_loc;
2015-05-25 17:10:49 +00:00
moo_oocs_t modname; /* module name after 'from' */
moo_oow_t modname_capa;
/* instance variable, class variable, class instance variable
* var[0] - named instance variables
* var[1] - class instance variables
* var[2] - class variables */
struct
{
moo_oocs_t str; /* long string containing all variables declared delimited by a space */
moo_oow_t str_capa;
moo_oow_t count; /* the number of variables declared in this class only */
moo_oow_t total_count; /* the number of variables declared in this class and superclasses */
moo_oop_t* initv;
moo_oow_t initv_capa;
/* initv_count holds the index to the last variable with a
* default initial value defined in this class only plus one.
* inheritance is handled by the compiler separately using
* the reference to the superclass. so it doesn't include
* the variables defined in the superclass chain.
* for a definition: class ... { var a, b := 0, c },
* initv_count is set to 2 while count is 3. totoal_count
* will be 3 too if there is no variabled defined in the
* superclass chain. */
moo_oow_t initv_count;
} var[3];
/* buffer to hold pooldic import declaration */
2017-01-09 09:54:49 +00:00
moo_oocs_t pooldic;
moo_oow_t pooldic_capa;
moo_oow_t pooldic_count;
/* used to hold imported pool dictionarie objects */
2017-01-09 09:54:49 +00:00
moo_oop_set_t* pooldic_imp_oops;
moo_oow_t pooldic_imp_oops_capa;
2015-05-27 17:16:50 +00:00
} cls;
2015-05-25 17:10:49 +00:00
/* information about a method being comipled */
2015-05-25 17:10:49 +00:00
struct
{
2017-01-09 09:54:49 +00:00
moo_method_type_t type;
int primitive; /* true if method(#primitive) */
int lenient;
2015-05-25 17:10:49 +00:00
/* method source text */
2017-01-09 09:54:49 +00:00
moo_oocs_t text;
moo_oow_t text_capa;
/* buffer to store identifier names to be assigned */
2017-01-09 09:54:49 +00:00
moo_oocs_t assignees;
moo_oow_t assignees_capa;
/* buffer to store binary selectors being worked on */
2017-01-09 09:54:49 +00:00
moo_oocs_t binsels;
moo_oow_t binsels_capa;
/* buffer to store keyword selectors being worked on */
2017-01-09 09:54:49 +00:00
moo_oocs_t kwsels;
moo_oow_t kwsels_capa;
/* method name */
2017-01-09 09:54:49 +00:00
moo_oocs_t name;
moo_oow_t name_capa;
moo_ioloc_t name_loc;
2015-05-21 17:07:55 +00:00
/* is the unary method followed by parameter list? */
int variadic;
/* single string containing a space separated list of temporaries */
2017-01-09 09:54:49 +00:00
moo_oocs_t tmprs;
moo_oow_t tmprs_capa;
moo_oow_t tmpr_count; /* total number of temporaries including arguments */
moo_oow_t tmpr_nargs;
2015-05-21 17:07:55 +00:00
/* literals */
2017-01-09 09:54:49 +00:00
moo_oop_t* literals;
moo_oow_t literal_count;
moo_oow_t literal_capa;
/* byte array elements */
2017-01-09 09:54:49 +00:00
moo_oob_t* balit;
moo_oow_t balit_count;
moo_oow_t balit_capa;
/* array elements */
2017-01-09 09:54:49 +00:00
moo_oop_t* arlit;
moo_oow_t arlit_count;
moo_oow_t arlit_capa;
/* 0 for no primitive, 1 for a normal primitive, 2 for a named primitive */
int pftype;
/* primitive function number */
2017-01-09 09:54:49 +00:00
moo_ooi_t pfnum;
2015-05-25 17:10:49 +00:00
/* block depth */
2017-01-09 09:54:49 +00:00
moo_oow_t blk_depth;
moo_oow_t* blk_tmprcnt;
moo_oow_t blk_tmprcnt_capa;
/* information about loop constructs */
moo_loop_t* loop;
2015-05-31 16:44:56 +00:00
/* byte code */
2017-01-09 09:54:49 +00:00
moo_code_t code;
moo_oow_t code_capa;
2015-05-27 17:16:50 +00:00
} mth;
};
/*
2017-01-09 09:54:49 +00:00
typedef struct moo_bchbuf_t moo_bchbuf_t;
struct moo_bchbuf_t
{
2017-01-09 09:54:49 +00:00
moo_bch_t buf[128];
moo_bch_t* ptr;
moo_oow_t capa;
};
2017-01-09 09:54:49 +00:00
typedef struct moo_oochbuf_t moo_oochbuf_t;
struct moo_oochbuf_t
{
2017-01-09 09:54:49 +00:00
moo_ooch_t buf[128];
moo_ooch_t* ptr;
moo_oow_t capa;
};
*/
#endif
#if defined(MOO_USE_METHOD_TRAILER)
/* let it point to the trailer of the method */
2017-01-09 09:54:49 +00:00
# define SET_ACTIVE_METHOD_CODE(moo) ((moo)->active_code = (moo_oob_t*)&(moo)->active_method->slot[MOO_OBJ_GET_SIZE((moo)->active_method) + 1 - MOO_METHOD_NAMED_INSTVARS])
#else
/* let it point to the payload of the code byte array */
2017-01-09 09:54:49 +00:00
# define SET_ACTIVE_METHOD_CODE(moo) ((moo)->active_code = (moo)->active_method->code->slot)
#endif
2017-01-09 09:54:49 +00:00
#if defined(MOO_BCODE_LONG_PARAM_SIZE) && (MOO_BCODE_LONG_PARAM_SIZE == 1)
# define MAX_CODE_INDEX (0xFFu)
# define MAX_CODE_NTMPRS (0xFFu)
# define MAX_CODE_NARGS (0xFFu)
# define MAX_CODE_NBLKARGS (0xFFu)
# define MAX_CODE_NBLKTMPRS (0xFFu)
2015-07-01 07:21:54 +00:00
# define MAX_CODE_JUMP (0xFFu)
# define MAX_CODE_PARAM (0xFFu)
2017-01-09 09:54:49 +00:00
#elif defined(MOO_BCODE_LONG_PARAM_SIZE) && (MOO_BCODE_LONG_PARAM_SIZE == 2)
# 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)
2015-07-01 07:21:54 +00:00
# define MAX_CODE_JUMP (0xFFFFu)
# define MAX_CODE_PARAM (0xFFFFu)
#else
2017-01-09 09:54:49 +00:00
# error Unsupported MOO_BCODE_LONG_PARAM_SIZE
#endif
2015-06-25 13:37:50 +00:00
/*
----------------------------------------------------------------------------------------------------------------
SHORT INSTRUCTION CODE LONG INSTRUCTION CODE
----------------------------------------------------------------------------------------------------------------
v v
0-3 0000 00XX STORE_INTO_INSTVAR 128 1000 0000 XXXXXXXX STORE_INTO_INSTVAR_X (bit 4 off, bit 3 off)
4-7 0000 01XX STORE_INTO_INSTVAR
8-11 0000 10XX POP_INTO_INSTVAR 136 1000 1000 XXXXXXXX POP_INTO_INSTVAR_X (bit 4 off, bit 3 on)
12-15 0000 11XX POP_INTO_INSTVAR
16-19 0001 00XX PUSH_INSTVAR 144 1001 0000 XXXXXXXX PUSH_INSTVAR_X (bit 4 on)
20-23 0001 01XX PUSH_INSTVAR
v v
24-27 0001 10XX PUSH_TEMPVAR 152 1001 1000 XXXXXXXX PUSH_TEMPVAR_X (bit 4 on)
28-31 0001 11XX PUSH_TEMPVAR
32-35 0010 00XX STORE_INTO_TEMPVAR 160 1010 0000 XXXXXXXX STORE_INTO_TEMPVAR_X (bit 4 off, bit 3 off)
36-39 0010 01XX STORE_INTO_TEMPVAR
40-43 0010 10XX POP_INTO_TEMPVAR 168 1010 1000 XXXXXXXX POP_INTO_TEMPVAR_X (bit 4 off, bit 3 on)
44-47 0010 11XX POP_INTO_TEMPVAR
48-51 0011 00XX PUSH_LITERAL 176 1011 0000 XXXXXXXX PUSH_LITERAL_X
52-55 0011 01XX PUSH_LITERAL
vv
56-59 0011 10XX STORE_INTO_OBJECT 184 1011 1000 XXXXXXXX STORE_INTO_OBJECT (bit 3 on, bit 2 off)
60-63 0011 11XX POP_INTO_OBJECT 188 1011 1100 XXXXXXXX POP_INTO_OBJECT (bit 3 on, bit 2 on)
64-67 0100 00XX PUSH_OBJECT 192 1100 0000 XXXXXXXX PUSH_OBJECT (bit 3 off)
68-71 0100 01XX JUMP_FORWARD 196 1100 0100 XXXXXXXX JUMP_FORWARD_X
2017-04-26 15:31:07 +00:00
197 1000 0101 XXXXXXXX JUMP2_FORWARD
72-75 0100 10XX JUMP_BACKWARD 200 1100 1000 XXXXXXXX JUMP_BACKWARD_X
2017-04-26 15:31:07 +00:00
201 1101 1001 XXXXXXXX JUMP2_BACKWARD
76-79 0100 11XX JUMP_BACKWARD_IF_FALSE 204 1100 1100 XXXXXXXX JUMP_BACKWARD_IF_FALSE_X
2017-04-26 15:31:07 +00:00
205 1101 1101 XXXXXXXX JUMP2_BACKWARD_IF_FALSE
80-83 0101 00XX JUMP_BACKWARD_IF_TRUE 208 1101 0000 XXXXXXXX JUMP_BACKWARD_IF_TRUE_X
209 1101 0001 XXXXXXXX JUMP2_FORWARD_IF_TRUE
84-87 0101 01XX UNUSED 212 1101 0100 XXXXXXXX JUMP_FORWARD_IF_FALSE
213 1101 0101 XXXXXXXX JUMP2_FORWARD_IF_FALSE
214 1101 0110 XXXXXXXX JUMP_FORWARD_IF_TRUE
215 1101 0111 XXXXXXXX JUMP2_FORWARD_IF_TRUE
vv
88-91 0101 10XX YYYYYYYY STORE_INTO_CTXTEMPVAR 216 1101 1000 XXXXXXXX YYYYYYYY STORE_INTO_CTXTEMPVAR_X (bit 3 on, bit 2 off)
92-95 0101 11XX YYYYYYYY POP_INTO_CTXTEMPVAR 220 1101 1100 XXXXXXXX YYYYYYYY POP_INTO_CTXTEMPVAR_X (bit 3 on, bit 2 on)
96-99 0110 00XX YYYYYYYY PUSH_CTXTEMPVAR 224 1110 0000 XXXXXXXX YYYYYYYY PUSH_CTXTEMPVAR_X (bit 3 off)
# XXXth outer-frame, YYYYYYYY local variable
100-103 0110 01XX YYYYYYYY PUSH_OBJVAR 228 1110 0100 XXXXXXXX YYYYYYYY PUSH_OBJVAR_X (bit 3 off)
104-107 0110 10XX YYYYYYYY STORE_INTO_OBJVAR 232 1110 1000 XXXXXXXX YYYYYYYY STORE_INTO_OBJVAR_X (bit 3 on, bit 2 off)
108-111 0110 11XX YYYYYYYY POP_INTO_OBJVAR 236 1110 1100 XXXXXXXX YYYYYYYY POP_INTO_OBJVAR_X (bit 3 on, bit 2 on)
# XXXth instance variable of YYYYYYYY object
v
112-115 0111 00XX YYYYYYYY SEND_MESSAGE 240 1111 0000 XXXXXXXX YYYYYYYY SEND_MESSAGE_X (bit 2 off)
116-119 0111 01XX YYYYYYYY SEND_MESSAGE_TO_SUPER 244 1111 0100 XXXXXXXX YYYYYYYY SEND_MESSAGE_TO_SUPER_X (bit 2 on)
# XXX args, YYYYYYYY message
120-123 0111 10XX UNUSED
124-127 0111 11XX UNUSED
##
## "SHORT_CODE_0 | 0x80" becomes "LONG_CODE_X".
## A special single byte instruction is assigned an unused number greater than 128.
##
2015-06-25 13:37:50 +00:00
*/
2015-06-07 14:36:26 +00:00
2017-01-09 09:54:49 +00:00
enum moo_bcode_t
{
2015-07-01 07:21:54 +00:00
BCODE_STORE_INTO_INSTVAR_0 = 0x00,
BCODE_STORE_INTO_INSTVAR_1 = 0x01,
BCODE_STORE_INTO_INSTVAR_2 = 0x02,
BCODE_STORE_INTO_INSTVAR_3 = 0x03,
BCODE_STORE_INTO_INSTVAR_4 = 0x04,
BCODE_STORE_INTO_INSTVAR_5 = 0x05,
BCODE_STORE_INTO_INSTVAR_6 = 0x06,
BCODE_STORE_INTO_INSTVAR_7 = 0x07,
BCODE_POP_INTO_INSTVAR_0 = 0x08,
BCODE_POP_INTO_INSTVAR_1 = 0x09,
BCODE_POP_INTO_INSTVAR_2 = 0x0A,
BCODE_POP_INTO_INSTVAR_3 = 0x0B,
BCODE_POP_INTO_INSTVAR_4 = 0x0C,
BCODE_POP_INTO_INSTVAR_5 = 0x0D,
BCODE_POP_INTO_INSTVAR_6 = 0x0E,
BCODE_POP_INTO_INSTVAR_7 = 0x0F,
BCODE_PUSH_INSTVAR_0 = 0x10,
BCODE_PUSH_INSTVAR_1 = 0x11,
BCODE_PUSH_INSTVAR_2 = 0x12,
BCODE_PUSH_INSTVAR_3 = 0x13,
BCODE_PUSH_INSTVAR_4 = 0x14,
BCODE_PUSH_INSTVAR_5 = 0x15,
BCODE_PUSH_INSTVAR_6 = 0x16,
BCODE_PUSH_INSTVAR_7 = 0x17,
BCODE_PUSH_TEMPVAR_0 = 0x18,
BCODE_PUSH_TEMPVAR_1 = 0x19,
BCODE_PUSH_TEMPVAR_2 = 0x1A,
BCODE_PUSH_TEMPVAR_3 = 0x1B,
BCODE_PUSH_TEMPVAR_4 = 0x1C,
BCODE_PUSH_TEMPVAR_5 = 0x1D,
BCODE_PUSH_TEMPVAR_6 = 0x1E,
BCODE_PUSH_TEMPVAR_7 = 0x1F,
BCODE_STORE_INTO_TEMPVAR_0 = 0x20,
BCODE_STORE_INTO_TEMPVAR_1 = 0x21,
BCODE_STORE_INTO_TEMPVAR_2 = 0x22,
BCODE_STORE_INTO_TEMPVAR_3 = 0x23,
BCODE_STORE_INTO_TEMPVAR_4 = 0x24,
BCODE_STORE_INTO_TEMPVAR_5 = 0x25,
BCODE_STORE_INTO_TEMPVAR_6 = 0x26,
BCODE_STORE_INTO_TEMPVAR_7 = 0x27,
BCODE_POP_INTO_TEMPVAR_0 = 0x28,
BCODE_POP_INTO_TEMPVAR_1 = 0x29,
BCODE_POP_INTO_TEMPVAR_2 = 0x2A,
BCODE_POP_INTO_TEMPVAR_3 = 0x2B,
BCODE_POP_INTO_TEMPVAR_4 = 0x2C,
BCODE_POP_INTO_TEMPVAR_5 = 0x2D,
BCODE_POP_INTO_TEMPVAR_6 = 0x2E,
BCODE_POP_INTO_TEMPVAR_7 = 0x2F,
BCODE_PUSH_LITERAL_0 = 0x30,
BCODE_PUSH_LITERAL_1 = 0x31,
BCODE_PUSH_LITERAL_2 = 0x32,
BCODE_PUSH_LITERAL_3 = 0x33,
BCODE_PUSH_LITERAL_4 = 0x34,
BCODE_PUSH_LITERAL_5 = 0x35,
BCODE_PUSH_LITERAL_6 = 0x36,
BCODE_PUSH_LITERAL_7 = 0x37,
/* -------------------------------------- */
2015-07-01 07:21:54 +00:00
BCODE_STORE_INTO_OBJECT_0 = 0x38,
BCODE_STORE_INTO_OBJECT_1 = 0x39,
BCODE_STORE_INTO_OBJECT_2 = 0x3A,
BCODE_STORE_INTO_OBJECT_3 = 0x3B,
BCODE_POP_INTO_OBJECT_0 = 0x3C,
BCODE_POP_INTO_OBJECT_1 = 0x3D,
BCODE_POP_INTO_OBJECT_2 = 0x3E,
BCODE_POP_INTO_OBJECT_3 = 0x3F,
BCODE_PUSH_OBJECT_0 = 0x40,
BCODE_PUSH_OBJECT_1 = 0x41,
BCODE_PUSH_OBJECT_2 = 0x42,
BCODE_PUSH_OBJECT_3 = 0x43,
BCODE_JUMP_FORWARD_0 = 0x44, /* 68 */
BCODE_JUMP_FORWARD_1 = 0x45, /* 69 */
BCODE_JUMP_FORWARD_2 = 0x46, /* 70 */
BCODE_JUMP_FORWARD_3 = 0x47, /* 71 */
2017-04-26 15:31:07 +00:00
BCODE_JUMP_BACKWARD_0 = 0x48, /* 72 */
BCODE_JUMP_BACKWARD_1 = 0x49, /* 73 */
BCODE_JUMP_BACKWARD_2 = 0x4A, /* 74 */
BCODE_JUMP_BACKWARD_3 = 0x4B, /* 75 */
2015-07-01 07:21:54 +00:00
2017-04-26 15:31:07 +00:00
BCODE_JUMP_BACKWARD_IF_FALSE_0 = 0x4C, /* 76 */
BCODE_JUMP_BACKWARD_IF_FALSE_1 = 0x4D, /* 77 */
BCODE_JUMP_BACKWARD_IF_FALSE_2 = 0x4E, /* 78 */
BCODE_JUMP_BACKWARD_IF_FALSE_3 = 0x4F, /* 79 */
2015-07-01 07:21:54 +00:00
2017-04-26 15:31:07 +00:00
BCODE_JUMP_BACKWARD_IF_TRUE_0 = 0x50, /* 80 */
BCODE_JUMP_BACKWARD_IF_TRUE_1 = 0x51, /* 81 */
BCODE_JUMP_BACKWARD_IF_TRUE_2 = 0x52, /* 82 */
BCODE_JUMP_BACKWARD_IF_TRUE_3 = 0x53, /* 83 */
2015-07-01 07:21:54 +00:00
2017-04-26 15:31:07 +00:00
/* UNUSED 0x54 - 0x57 */
BCODE_STORE_INTO_CTXTEMPVAR_0 = 0x58, /* 88 */
BCODE_STORE_INTO_CTXTEMPVAR_1 = 0x59, /* 89 */
BCODE_STORE_INTO_CTXTEMPVAR_2 = 0x5A, /* 90 */
BCODE_STORE_INTO_CTXTEMPVAR_3 = 0x5B, /* 91 */
BCODE_POP_INTO_CTXTEMPVAR_0 = 0x5C, /* 92 */
BCODE_POP_INTO_CTXTEMPVAR_1 = 0x5D, /* 93 */
BCODE_POP_INTO_CTXTEMPVAR_2 = 0x5E, /* 94 */
BCODE_POP_INTO_CTXTEMPVAR_3 = 0x5F, /* 95 */
BCODE_PUSH_CTXTEMPVAR_0 = 0x60, /* 96 */
BCODE_PUSH_CTXTEMPVAR_1 = 0x61, /* 97 */
BCODE_PUSH_CTXTEMPVAR_2 = 0x62, /* 98 */
BCODE_PUSH_CTXTEMPVAR_3 = 0x63, /* 99 */
BCODE_PUSH_OBJVAR_0 = 0x64,
BCODE_PUSH_OBJVAR_1 = 0x65,
BCODE_PUSH_OBJVAR_2 = 0x66,
BCODE_PUSH_OBJVAR_3 = 0x67,
BCODE_STORE_INTO_OBJVAR_0 = 0x68,
BCODE_STORE_INTO_OBJVAR_1 = 0x69,
BCODE_STORE_INTO_OBJVAR_2 = 0x6A,
BCODE_STORE_INTO_OBJVAR_3 = 0x6B,
BCODE_POP_INTO_OBJVAR_0 = 0x6C,
BCODE_POP_INTO_OBJVAR_1 = 0x6D,
BCODE_POP_INTO_OBJVAR_2 = 0x6E,
BCODE_POP_INTO_OBJVAR_3 = 0x6F,
BCODE_SEND_MESSAGE_0 = 0x70,
BCODE_SEND_MESSAGE_1 = 0x71,
BCODE_SEND_MESSAGE_2 = 0x72,
BCODE_SEND_MESSAGE_3 = 0x73,
BCODE_SEND_MESSAGE_TO_SUPER_0 = 0x74,
BCODE_SEND_MESSAGE_TO_SUPER_1 = 0x75,
BCODE_SEND_MESSAGE_TO_SUPER_2 = 0x76,
BCODE_SEND_MESSAGE_TO_SUPER_3 = 0x77,
/* UNUSED 0x78 - 0x7F */
BCODE_STORE_INTO_INSTVAR_X = 0x80, /* 128 ## */
2015-07-01 07:21:54 +00:00
BCODE_PUSH_RECEIVER = 0x81, /* 129 */
BCODE_PUSH_NIL = 0x82, /* 130 */
BCODE_PUSH_TRUE = 0x83, /* 131 */
BCODE_PUSH_FALSE = 0x84, /* 132 */
BCODE_PUSH_CONTEXT = 0x85, /* 133 */
BCODE_PUSH_PROCESS = 0x86, /* 134 */
BCODE_PUSH_NEGONE = 0x87, /* 135 */
BCODE_POP_INTO_INSTVAR_X = 0x88, /* 136 ## */
BCODE_PUSH_ZERO = 0x89, /* 137 */
BCODE_PUSH_ONE = 0x8A, /* 138 */
BCODE_PUSH_TWO = 0x8B, /* 139 */
BCODE_PUSH_INSTVAR_X = 0x90, /* 144 ## */
BCODE_PUSH_TEMPVAR_X = 0x98, /* 152 ## */
BCODE_STORE_INTO_TEMPVAR_X = 0xA0, /* 160 ## */
BCODE_POP_INTO_TEMPVAR_X = 0xA8, /* 168 ## */
BCODE_PUSH_LITERAL_X = 0xB0, /* 176 ## */
/* UNUSED - 0xB1 */
BCODE_PUSH_INTLIT = 0xB2, /* 178 */
BCODE_PUSH_NEGINTLIT = 0xB3, /* 179 */
BCODE_PUSH_CHARLIT = 0xB4, /* 180 */
BCODE_STORE_INTO_OBJECT_X = 0xB8, /* 184 ## */
BCODE_POP_INTO_OBJECT_X = 0xBC, /* 188 ## */
BCODE_PUSH_OBJECT_X = 0xC0, /* 192 ## */
BCODE_JUMP_FORWARD_X = 0xC4, /* 196 ## */
BCODE_JUMP2_FORWARD = 0xC5, /* 197 */
BCODE_JUMP_BACKWARD_X = 0xC8, /* 200 ## */
BCODE_JUMP2_BACKWARD = 0xC9, /* 201 */
2017-04-26 15:31:07 +00:00
BCODE_JUMP_BACKWARD_IF_FALSE_X = 0xCC, /* 204 ## */
BCODE_JUMP2_BACKWARD_IF_FALSE = 0xCD, /* 205 */
BCODE_JUMP_BACKWARD_IF_TRUE_X = 0xD0, /* 208 ## */
BCODE_JUMP2_BACKWARD_IF_TRUE = 0xD1, /* 209 */
BCODE_JUMP_FORWARD_IF_FALSE = 0xD4, /* 212 ## */
BCODE_JUMP2_FORWARD_IF_FALSE = 0xD5, /* 213 */
BCODE_JUMP_FORWARD_IF_TRUE = 0xD6, /* 214 ## */
BCODE_JUMP2_FORWARD_IF_TRUE = 0xD7, /* 215 */
BCODE_STORE_INTO_CTXTEMPVAR_X = 0xD8, /* 216 ## */
BCODE_POP_INTO_CTXTEMPVAR_X = 0xDC, /* 220 ## */
BCODE_PUSH_CTXTEMPVAR_X = 0xE0, /* 224 ## */
BCODE_PUSH_OBJVAR_X = 0xE4, /* 228 ## */
BCODE_STORE_INTO_OBJVAR_X = 0xE8, /* 232 ## */
BCODE_POP_INTO_OBJVAR_X = 0xEC, /* 236 ## */
/* UNUSED 237 */
/* UNUSED 238 */
/* UNUSED 239 */
BCODE_SEND_MESSAGE_X = 0xF0, /* 240 ## */
/* UNUSED 241 */
BCODE_MAKE_DICTIONARY = 0xF2, /* 242 */
BCODE_POP_INTO_DICTIONARY = 0xF3, /* 243 */
BCODE_SEND_MESSAGE_TO_SUPER_X = 0xF4, /* 244 ## */
/* -------------------------------------- */
BCODE_MAKE_ARRAY = 0xF5, /* 245 */
BCODE_POP_INTO_ARRAY = 0xF6, /* 246 */
2017-04-26 15:31:07 +00:00
BCODE_DUP_STACKTOP = 0xF7, /* 247 */
BCODE_POP_STACKTOP = 0xF8,
BCODE_RETURN_STACKTOP = 0xF9, /* ^something */
BCODE_RETURN_RECEIVER = 0xFA, /* ^self */
BCODE_RETURN_FROM_BLOCK = 0xFB, /* return the stack top from a block */
BCODE_LOCAL_RETURN = 0xFC,
BCODE_MAKE_BLOCK = 0xFD,
BCODE_SEND_BLOCK_COPY = 0xFE,
BCODE_NOOP = 0xFF
};
2015-04-30 15:56:05 +00:00
#if defined(__cplusplus)
extern "C" {
#endif
2015-10-28 14:58:58 +00:00
2015-04-30 15:56:05 +00:00
/* ========================================================================= */
/* heap.c */
/* ========================================================================= */
/**
2017-01-09 09:54:49 +00:00
* The moo_makeheap() function creates a new heap of the \a size bytes.
2015-04-30 15:56:05 +00:00
*
2017-01-09 09:54:49 +00:00
* \return heap pointer on success and #MOO_NULL on failure.
2015-04-30 15:56:05 +00:00
*/
2017-01-09 09:54:49 +00:00
moo_heap_t* moo_makeheap (
moo_t* moo,
moo_oow_t size
2015-04-30 15:56:05 +00:00
);
/**
2017-01-09 09:54:49 +00:00
* The moo_killheap() function destroys the heap pointed to by \a heap.
2015-04-30 15:56:05 +00:00
*/
2017-01-09 09:54:49 +00:00
void moo_killheap (
moo_t* moo,
moo_heap_t* heap
2015-04-30 15:56:05 +00:00
);
/**
2017-01-09 09:54:49 +00:00
* The moo_allocheapmem() function allocates \a size bytes in the heap pointed
2015-04-30 15:56:05 +00:00
* to by \a heap.
*
2017-01-09 09:54:49 +00:00
* \return memory pointer on success and #MOO_NULL on failure.
2015-04-30 15:56:05 +00:00
*/
2017-01-09 09:54:49 +00:00
void* moo_allocheapmem (
moo_t* moo,
moo_heap_t* heap,
moo_oow_t size
2015-04-30 15:56:05 +00:00
);
/* ========================================================================= */
/* obj.c */
/* ========================================================================= */
2017-01-09 09:54:49 +00:00
void* moo_allocbytes (
moo_t* moo,
moo_oow_t size
);
/**
2017-01-09 09:54:49 +00:00
* The moo_allocoopobj() function allocates a raw object composed of \a size
* pointer fields excluding the header.
*/
2017-01-09 09:54:49 +00:00
moo_oop_t moo_allocoopobj (
moo_t* moo,
moo_oow_t size
2015-04-30 15:56:05 +00:00
);
#if defined(MOO_USE_METHOD_TRAILER)
2017-01-09 09:54:49 +00:00
moo_oop_t moo_allocoopobjwithtrailer (
moo_t* moo,
moo_oow_t size,
const moo_oob_t* tptr,
moo_oow_t tlen
);
#endif
2017-01-09 09:54:49 +00:00
moo_oop_t moo_alloccharobj (
moo_t* moo,
const moo_ooch_t* ptr,
moo_oow_t len
2015-04-30 15:56:05 +00:00
);
2017-01-09 09:54:49 +00:00
moo_oop_t moo_allocbyteobj (
moo_t* moo,
const moo_oob_t* ptr,
moo_oow_t len
2015-04-30 15:56:05 +00:00
);
2017-01-09 09:54:49 +00:00
moo_oop_t moo_allochalfwordobj (
moo_t* moo,
const moo_oohw_t* ptr,
moo_oow_t len
2015-05-26 16:31:47 +00:00
);
2017-01-09 09:54:49 +00:00
moo_oop_t moo_allocwordobj (
moo_t* moo,
const moo_oow_t* ptr,
moo_oow_t len
);
/* ========================================================================= */
/* sym.c */
/* ========================================================================= */
2017-01-09 09:54:49 +00:00
moo_oop_t moo_findsymbol (
moo_t* moo,
const moo_ooch_t* ptr,
moo_oow_t len
);
/* ========================================================================= */
/* dic.c */
/* ========================================================================= */
2017-01-09 09:54:49 +00:00
moo_oop_association_t moo_putatsysdic (
moo_t* moo,
moo_oop_t key,
moo_oop_t value
);
2017-01-09 09:54:49 +00:00
moo_oop_association_t moo_getatsysdic (
moo_t* moo,
moo_oop_t key
);
2017-01-09 09:54:49 +00:00
moo_oop_association_t moo_lookupsysdic (
moo_t* moo,
const moo_oocs_t* name
2015-05-25 17:10:49 +00:00
);
2017-01-09 09:54:49 +00:00
moo_oop_association_t moo_putatdic (
moo_t* moo,
moo_oop_set_t dic,
moo_oop_t key,
moo_oop_t value
);
2017-01-09 09:54:49 +00:00
moo_oop_association_t moo_getatdic (
moo_t* moo,
moo_oop_set_t dic,
moo_oop_t key
);
2017-01-09 09:54:49 +00:00
moo_oop_association_t moo_lookupdic (
moo_t* moo,
moo_oop_set_t dic,
const moo_oocs_t* name
);
2017-01-09 09:54:49 +00:00
int moo_deletedic (
moo_t* moo,
moo_oop_set_t dic,
const moo_oocs_t* name
);
2017-01-09 09:54:49 +00:00
moo_oop_set_t moo_makedic (
moo_t* moo,
moo_oop_class_t _class,
moo_oow_t size
);
/* ========================================================================= */
/* proc.c */
/* ========================================================================= */
2017-01-09 09:54:49 +00:00
moo_oop_process_t moo_makeproc (
moo_t* moo
);
2015-10-29 15:24:46 +00:00
/* ========================================================================= */
/* bigint.c */
2015-10-29 15:24:46 +00:00
/* ========================================================================= */
2017-01-09 09:54:49 +00:00
int moo_isint (
moo_t* moo,
moo_oop_t x
);
2017-01-09 09:54:49 +00:00
moo_oop_t moo_addints (
moo_t* moo,
moo_oop_t x,
moo_oop_t y
2015-10-29 15:24:46 +00:00
);
2017-01-09 09:54:49 +00:00
moo_oop_t moo_subints (
moo_t* moo,
moo_oop_t x,
moo_oop_t y
2015-10-29 15:24:46 +00:00
);
2017-01-09 09:54:49 +00:00
moo_oop_t moo_mulints (
moo_t* moo,
moo_oop_t x,
moo_oop_t y
2015-11-11 13:31:05 +00:00
);
2017-01-09 09:54:49 +00:00
moo_oop_t moo_divints (
moo_t* moo,
moo_oop_t x,
moo_oop_t y,
int modulo,
2017-01-09 09:54:49 +00:00
moo_oop_t* rem
);
2017-01-09 09:54:49 +00:00
moo_oop_t moo_negateint (
moo_t* moo,
moo_oop_t x
2015-12-25 05:09:17 +00:00
);
2017-01-09 09:54:49 +00:00
moo_oop_t moo_bitatint (
moo_t* moo,
moo_oop_t x,
moo_oop_t y
2015-12-25 05:09:17 +00:00
);
2017-01-09 09:54:49 +00:00
moo_oop_t moo_bitandints (
moo_t* moo,
moo_oop_t x,
moo_oop_t y
);
2017-01-09 09:54:49 +00:00
moo_oop_t moo_bitorints (
moo_t* moo,
moo_oop_t x,
moo_oop_t y
);
2017-01-09 09:54:49 +00:00
moo_oop_t moo_bitxorints (
moo_t* moo,
moo_oop_t x,
moo_oop_t y
);
2017-01-09 09:54:49 +00:00
moo_oop_t moo_bitinvint (
moo_t* moo,
moo_oop_t x
2015-12-17 16:37:26 +00:00
);
2017-01-09 09:54:49 +00:00
moo_oop_t moo_bitshiftint (
moo_t* moo,
moo_oop_t x,
moo_oop_t y
);
2017-01-09 09:54:49 +00:00
moo_oop_t moo_eqints (
moo_t* moo,
moo_oop_t x,
moo_oop_t y
);
2017-01-09 09:54:49 +00:00
moo_oop_t moo_neints (
moo_t* moo,
moo_oop_t x,
moo_oop_t y
);
2017-01-09 09:54:49 +00:00
moo_oop_t moo_gtints (
moo_t* moo,
moo_oop_t x,
moo_oop_t y
);
2017-01-09 09:54:49 +00:00
moo_oop_t moo_geints (
moo_t* moo,
moo_oop_t x,
moo_oop_t y
);
2017-01-09 09:54:49 +00:00
moo_oop_t moo_ltints (
moo_t* moo,
moo_oop_t x,
moo_oop_t y
);
2017-01-09 09:54:49 +00:00
moo_oop_t moo_leints (
moo_t* moo,
moo_oop_t x,
moo_oop_t y
);
2017-01-09 09:54:49 +00:00
moo_oop_t moo_strtoint (
moo_t* moo,
const moo_ooch_t* str,
moo_oow_t len,
int radix
2015-11-04 17:32:28 +00:00
);
2017-01-09 09:54:49 +00:00
moo_oop_t moo_inttostr (
moo_t* moo,
moo_oop_t num,
int radix
);
/* ========================================================================= */
/* exec.c */
/* ========================================================================= */
moo_pfbase_t* moo_getpfnum (
2017-01-09 09:54:49 +00:00
moo_t* moo,
const moo_ooch_t* ptr,
moo_oow_t len,
moo_ooi_t* pfnum
);
2015-06-11 12:09:10 +00:00
/* ========================================================================= */
/* moo.c */
/* ========================================================================= */
2017-01-09 09:54:49 +00:00
moo_mod_data_t* moo_openmod (
moo_t* moo,
const moo_ooch_t* name,
moo_oow_t namelen,
int hints /* 0 or bitwise-ORed of moo_mod_hint_t enumerators */
);
2017-01-09 09:54:49 +00:00
void moo_closemod (
moo_t* moo,
moo_mod_data_t* mdp
);
2017-01-09 09:54:49 +00:00
int moo_importmod (
moo_t* moo,
moo_oop_class_t _class,
2017-01-09 09:54:49 +00:00
const moo_ooch_t* name,
moo_oow_t len
);
/*
2017-01-09 09:54:49 +00:00
* The moo_querymod() function finds a primitive function in modules
* with a full primitive identifier.
*/
moo_pfbase_t* moo_querymod (
2017-01-09 09:54:49 +00:00
moo_t* moo,
const moo_ooch_t* pfid,
moo_oow_t pfidlen
);
/* TODO: remove the following debugging functions */
2015-06-11 12:09:10 +00:00
/* ========================================================================= */
/* debug.c */
/* ========================================================================= */
2017-01-09 09:54:49 +00:00
void moo_dumpsymtab (moo_t* moo);
void moo_dumpdic (moo_t* moo, moo_oop_set_t dic, const moo_bch_t* title);
2015-04-30 15:56:05 +00:00
#if defined(__cplusplus)
}
#endif
#endif